@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
/* @import "_vars.scss"; */
/* font */
/* color */
/* mixin */
/* @include circle; */
/* @include absPosition(5px, 20px, 10px, 15px); */
/*
a{
     @include linkColor(#3cf);
}
*/
/* @include bg-gradient; */
/*サイトのメインカラー*/
/**
  @fonts.scss fonts 
--------------------------------------------------------
@include sec-read(); 
@include base-text($size); 

in your CSS
--------------------------------------------------------- */
/*-------------------------------------------
animate.css
----------------------------------------------*/
@keyframes zoomUp {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.15); /* 拡大率 */
	}
}
.add-animation {
	animation: zoomUp 10s linear 0s normal both;
}

/*-------------------------------------------
animate.css
----------------------------------------------*/
@-webkit-keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -10%, 0);
		transform: translate3d(0, -10%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -10%, 0);
		transform: translate3d(0, -10%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}

@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 10%, 0);
		transform: translate3d(0, 10%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 10%, 0);
		transform: translate3d(0, 10%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

@-webkit-keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(5%, 0, 0);
		transform: translate3d(5%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(5%, 0, 0);
		transform: translate3d(5%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
.animate__fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}

@-webkit-keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-5%, 0, 0);
		transform: translate3d(-5%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
@keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-5%, 0, 0);
		transform: translate3d(-5%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}
.animate__fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

.zoomin {
	animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@keyframes zoomIn {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}
@keyframes rotate {
	0% {
		transform: rotate(0deg) translate3d(0, 0, 0);
	}
	25% {
		transform: rotate(3deg) translate3d(0, 0, 0);
	}
	50% {
		transform: rotate(-3deg) translate3d(0, 0, 0);
	}
	75% {
		transform: rotate(1deg) translate3d(0, 0, 0);
	}
	100% {
		transform: rotate(0deg) translate3d(0, 0, 0);
	}
}
.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	opacity: 0;
}

.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.animated.delay-03s {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

.animated.delay-05s {
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}

.animated.delay-07s {
	-webkit-animation-delay: 0.7s;
	animation-delay: 0.7s;
}

.animated.delay-1s {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}

.animated.delay-2s {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}

.animated.delay-3s {
	-webkit-animation-delay: 3s;
	animation-delay: 3s;
}

.animated.delay-4s {
	-webkit-animation-delay: 4s;
	animation-delay: 4s;
}

.animated.delay-5s {
	-webkit-animation-delay: 5s;
	animation-delay: 5s;
}

.animated.fast {
	-webkit-animation-duration: 800ms;
	animation-duration: 800ms;
}

.animated.faster {
	-webkit-animation-duration: 500ms;
	animation-duration: 500ms;
}

.animated.slow {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
}

.animated.slower {
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
	.animated {
		-webkit-animation-duration: 1ms !important;
		animation-duration: 1ms !important;
		-webkit-transition-duration: 1ms !important;
		transition-duration: 1ms !important;
		-webkit-animation-iteration-count: 1 !important;
		animation-iteration-count: 1 !important;
	}
}
@media all and (max-width: 769px) {
	.animated.delay-1s,
	.animated.delay-2s,
	.animated.delay-3s,
	.animated.delay-4s,
	.animated.delay-5s {
		-webkit-animation-duration: 0.3s;
		animation-duration: 0.3s;
	}
}
/**

  @mixin
---------------------------------------------------------
  _clearfix.scss
--------------------------------------------------------
  Use @include clearfix(); in your CSS
  Use @include before(); in your CSS
--------------------------------------------------------- */
/**
  @breakpoints mixin
-----------------------------------------------------
@include for-size(phone-only){}
@include for-size(tablet-portrait-up){}
@include for-size(tablet-landscape-up){}
@include for-size(desktop){}
@include for-size(desktop-up){}
-----------------------------------------------------  
@mixin for-size($size) {
  @if $size == phone-only {//スマホオンリー
    @media all and  (max-width: 640px) { @content; }
  } @else if $size == tablet-portrait-up {
    @media all and  (min-width: 639px) { @content; }
  } @else if $size == tablet-landscape-up {
    @media all and  (min-width: 885px) { @content; }
  }  @else if $size == desktop { 
    @media all and  (min-width: 1000px) { @content; }
  }  @else if $size == desktop-up { 
    @media all and  (min-width: 1300px) { @content; }
  } 
}*/
/**
  @breakpoints mixin (PC-first)
-----------------------------------------------------

-----------------------------------------------------  */
/**
  @bgimg.scss bgimg 
--------------------------------------------------------
  Use @include bgimg(); in your CSS
--------------------------------------------------------- */
/**
  @fonts.scss fonts 
--------------------------------------------------------
@include sec-read(); 
@include base-text($size); 

@include base-text_2($size); 

@include base-text_en($size); 
@include base-text_link(); 

in your CSS
--------------------------------------------------------- */
/**
  @align-height
--------------------------------------------------------
@include align-height(); in your CSS
--------------------------------------------------------- */
/*----------------------------------------------------
レイアウトのみ
-------------------------------------------------------*/
.innerB {
	display: table;
	width: 100%;
	table-layout: fixed;
}
@media all and (max-width: 639px) {
	.innerB {
		display: block;
	}
}
.innerB .left,
.innerB .right {
	width: 48%;
	float: left;
}
@media all and (max-width: 639px) {
	.innerB .left,
	.innerB .right {
		width: 100%;
		float: none;
	}
}
.innerB .right {
	margin-left: 4%;
}
@media all and (max-width: 639px) {
	.innerB .right {
		margin-left: 0;
		margin-top: 15px;
	}
}
.innerB .left_s {
	width: 30%;
	float: left;
}
@media all and (max-width: 639px) {
	.innerB .left_s {
		width: 100%;
		float: none;
	}
}
.innerB .right_l {
	width: 66%;
	float: left;
	margin-left: 4%;
}
@media all and (max-width: 639px) {
	.innerB .right_l {
		margin-left: 0;
		margin-top: 15px;
		width: 100%;
		float: none;
	}
}

html {
	height: 100%;
	font-size: 62.5%;
}

body {
	font-family:
		-apple-system,
		BlinkMacSystemFont,
		"Helvetica Neue",
		YuGothic,
		"ヒラギノ角ゴ ProN W3",
		Hiragino Kaku Gothic ProN,
		Arial,
		"メイリオ",
		Meiryo,
		sans-serif;
	width: 100%;
	height: 100%;
	color: #111;
	font-size: 1rem;
	*font-size: small;
	*font: x-small;
	line-height: 1.8;
	margin: 0 auto;
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 15px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
}

#body {
	display: flex;
	flex-direction: column;
	font-size: 1.5rem;
	position: relative;
}
@media all and (max-width: 639px) {
	#body {
		overflow: hidden;
	}
}

#page {
	display: flex;
	flex-direction: column;
}

a:link,
a:visited,
a:hover {
	color: #686868;
	text-decoration: none;
}

.tbox {
	border: 2px solid #686868;
	padding: 15px;
	width: calc(100% - 34px);
}

.sign_ttl {
	border-bottom: 1px solid #111;
	font-size: 1.5rem;
	padding: 5px 0;
	text-align: center;
	max-width: 300px;
	margin: 0 auto;
}

header {
	width: 100%;
	z-index: 333;
	/*&.fixd {
       background: #fff;
       box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
       @include for-size(phone-only){

       }
    }*/
}
@media all and (max-width: 639px) {
	header {
		padding: 20px 10px;
	}
}
header #head {
	padding: 30px;
	margin: auto;
	/* dropdownmenu */
}
@media all and (max-width: 639px) {
	header #head {
		padding-left: 0;
		background: none;
		margin-top: 0;
		padding: 0;
		border: none;
		top: 11px;
	}
}
header #head .logo {
	width: 556px;
	transition: 0.4s;
	box-sizing: border-box;
}
@media all and (max-width: 913px) {
	header #head .logo {
		width: 215px;
	}
}
@media all and (max-width: 639px) {
	header #head .logo {
		width: auto;
		position: relative;
		top: auto;
		padding: 0;
		left: auto;
	}
}
header #head .logo a {
	display: block;
	width: 100%;
	position: relative;
}
@media all and (max-width: 639px) {
	header #head .logo a {
		width: 78%;
	}
}
header #head .logo img {
	width: 100%;
	display: block;
	margin: auto;
}
@media all and (max-width: 639px) {
	header #head .logo img {
		width: auto;
		margin-top: 0;
	}
}
header #head .head_nav {
	display: flex;
	flex-wrap: wrap;
	z-index: 2;
	justify-content: end;
	max-width: 810px;
	margin-left: auto;
	margin-right: 180px;
}
@media all and (max-width: 913px) {
	header #head .head_nav {
		display: none;
	}
}
header #head .head_nav li:nth-child(n + 2) {
	margin-left: 30px;
}
header #head .head_nav li a {
	display: block;
	color: #362f2f;
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 17px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	letter-spacing: 0;
	font-weight: 500;
	text-align: center;
	position: relative;
}
header #head .head_nav li a:before {
	content: "";
	display: block;
	position: absolute;
	background-repeat: no-repeat;
	margin: auto;
	width: 37px;
	height: 5px;
	background: #686868;
	border-radius: 30px;
	margin: auto;
	left: 0;
	right: 0;
	bottom: -16px;
	opacity: 0;
	transition: 0.4s;
}
header #head .head_nav li a:hover,
header #head .head_nav li a.active {
	color: #686868;
}
header #head .head_nav li a:hover:before {
	opacity: 1;
	transition: 0.4s;
}
header #head .head_nav li ul {
	position: absolute;
	top: 80px;
	display: block !important;
	padding-top: 0;
}
header #head .head_nav li ul li {
	visibility: hidden;
	overflow: hidden;
	display: block !important;
	width: 100%;
	height: auto;
	border-right: 0px solid #ddd;
	border-left: 0px solid #ddd;
	padding: 0 0 !important;
	margin: 0 1px 1px !important;
	width: 190px !important;
}
header #head .head_nav li ul li a {
	background: #fff;
	padding: 10px 0 10px 20px !important;
	margin: 0 0px !important;
	display: block;
	width: 100%;
	text-align: left;
	position: relative;
	font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
	font-size: 15px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0.1em;
	font-weight: 600;
	font-size: 15px !important;
	color: #362f2f;
}
header #head .head_nav li ul li a:before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f0da";
	position: absolute;
	left: 5px;
	top: 10px;
	color: #686868;
}
header #head .head_nav li ul li a:hover {
	color: #686868;
}
header #head .head_nav li:hover ul li {
	visibility: visible;
	overflow: visible;
	height: 36px;
}

/* nav */
#navi {
	margin: auto;
	width: auto;
}
#navi ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: -4px;
}
#navi li {
	list-style: none;
	text-align: center;
	margin: 0;
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 14px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	padding: 16px 44px 17px;
	letter-spacing: 0.2rem;
}
#navi li a {
	width: 100%;
	height: 100%;
	line-height: 1.3;
	display: block;
	text-align: center;
	border: none;
	letter-spacing: 1px;
	position: relative;
	cursor: pointer;
	color: #fbf9f3;
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 20px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: bold;
}
#navi li a span {
	display: block;
	font-family: "Outfit", sans-serif;
	font-weight: 500;
	font-size: 17px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0.1em;
	font-weight: 300;
	color: #362f2f;
}
#navi li a img {
	display: block;
	width: auto;
	margin: 0 auto 10px;
	height: 32px;
}
#navi li a:hover {
	color: #686868;
	opacity: 0.8;
}

/* /dropdownmenu */
.sp {
	display: none;
}

.pc {
	display: block;
	margin: 0 auto;
}

.map {
	width: 100%;
	height: 450px;
}

/*  scrollbar  */
.scrollbar-y {
	width: 100%;
	height: 350px;
	overflow-x: hidden;
	overflow-y: scroll;
	padding-right: 20px;
}
@media screen and (max-width: 768px) {
	.scrollbar-y {
		height: 200px;
	}
}
.scrollbar-y::-webkit-scrollbar {
	width: 5px;
}
.scrollbar-y::-webkit-scrollbar-track {
	border-radius: 10px;
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}
.scrollbar-y::-webkit-scrollbar-thumb {
	background-color: rgba(50, 50, 50, 0.5);
	border-radius: 10px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.mbox_white {
	background: rgba(255, 255, 255, 0.4);
	padding: 30px 20px;
}

/*link*/
/*containar*/
#contentwrap {
	width: 100%;
	flex: 1 1 auto;
	position: relative;
}
#contentwrap.kasou {
	background: #f7f3e8;
}

.single {
	position: relative;
	width: 1300px;
	margin: 0 auto;
	padding: 80px 0;
}
.single .tbox p {
	margin-bottom: 0px;
}

#page-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 990;
}
#page-top a {
	display: block;
}
#page-top a img {
	display: block;
	width: 92px;
}
@media all and (max-width: 639px) {
	#page-top a img {
		width: 22px;
	}
}

#footer {
	width: 1300px;
	margin: 0 auto 0;
	padding: 40px 0;
}
#footer address {
	margin-top: 10px;
}

/* table */
table {
	margin: 10px 0;
}
table th {
	vertical-align: middle;
	padding: 3px 10px;
	font-weight: bold;
	line-height: 1.5;
	border: #ddd 1px solid;
	background: #686868;
	color: #fff;
}
table td {
	padding: 5px 10px;
	vertical-align: middle;
	border: #ddd 1px solid;
}
table td b {
	color: #686868;
	font-size: 12px;
}

@media screen and (max-width: 800px) {
	table.rstable {
		width: 100%;
	}
	table.rstable td {
		display: block;
		text-align: center;
		width: calc(100% - 2px) !important;
		padding: 5px 0;
	}
	table.rstable th {
		display: block;
		width: calc(100% - 2px) !important;
		overflow: hidden;
		padding: 5px 0;
	}
}
table.tbl-2l {
	margin: 15px 0;
	background: rgba(255, 255, 255, 0.8);
	color: #333;
}
table.tbl-2l th {
	padding: 15px 10px;
	font-weight: bold;
	line-height: 1.5;
	border: #ddd 0px solid;
	color: #555;
	background: none !important;
}
table.tbl-2l tr:nth-child(odd) {
	background: #f2f2f2 !important;
}
table.tbl-2l td {
	padding: 15px 10px;
	border: #eee 0px solid !important;
}

@media screen and (max-width: 800px) {
	table.tbl-2l {
		margin: 15px 0;
	}
	table.tbl-2l th {
		padding: 5px 0px;
	}
	table.tbl-2l td {
		padding: 5px 5px;
		text-align: left;
		width: calc(100% - 10px) !important;
	}
}
/* mailform */
.form {
	margin: 10px 0 10px;
}
.form dt span {
	color: #fff;
	background: #ff4f4f;
	padding: 0 5px 0;
	margin-right: 5px;
	font-size: 1.1rem;
	border-radius: 2px;
	position: relative;
	top: -2px;
}
.form dl {
	margin: 10px 0;
	font-size: 1.6rem;
}
.form dt {
	float: left;
	width: 280px;
	padding-top: 20px;
}
.form dd {
	padding-left: 280px;
	padding-bottom: 20px;
	padding-top: 23px;
	line-height: 1.5;
	border-bottom: 1px solid #eee;
}
.form dd p {
	padding-top: 5px;
	color: #888;
}
.form dd:last-child {
	border-bottom: 0px;
	margin-bottom: 0px;
}

.textarea,
textarea,
.dropdown {
	border-radius: 2px;
	border: 1px solid #ddd;
}

.textarea {
	border-radius: 2px;
	border: 1px solid #ddd;
	height: 30px;
	padding: 0 5px;
}

.form-button {
	padding: 5px;
	border-radius: 5px;
	text-align: center;
	margin: 10px 0;
}

#mailform button {
	cursor: pointer;
	display: block;
	margin: 0 auto 5px;
	padding: 10px 0 10px;
	color: #fff;
	text-align: center;
	width: 250px;
	border-radius: 30px;
	background: #fbf9f3;
	font-weight: bold;
	border: 2px solid #fbf9f3;
}
#mailform button:before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f0e0";
	margin-right: 6px;
}
#mailform button:hover {
	background: #fff;
	color: #fbf9f3;
}
#mailform button * {
	-moz-transition: 0.2s;
	-ms-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}

.form-button * {
	-moz-transition: 0.2s;
	-ms-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}

/*Radio Text*/
label.radio_text {
	cursor: pointer;
	position: relative;
	margin-right: 20px;
	overflow: hidden;
	padding-left: 20px;
	display: inline-block;
}
label.radio_text:before {
	position: absolute;
	width: 15px;
	height: 15px;
	border: 1px solid #ccc;
	border-radius: 50%;
	left: 0px;
	top: 2px;
	content: "";
	z-index: 3;
}
label.radio_text:after {
	content: "";
	position: absolute;
	width: 11px;
	height: 11px;
	border-radius: 100%;
	left: 3px;
	top: 5px;
	background-color: #64bcff;
	z-index: 1;
}
label.radio_text input[type="radio"] {
	-moz-appearance: none;
	-webkit-appearance: none;
	position: absolute;
	z-index: 2;
	width: 20px;
	height: 20px;
	left: -23px;
	top: 0px;
	margin: 0px;
	box-shadow: 20px -1px #fff;
}
label.radio_text input[type="radio"]:checked {
	box-shadow: none;
}
label.radio_text input[type="radio"]:focus {
	opacity: 0.2;
	box-shadow: 20px -1px #fff;
}
label.checkbox_text {
	cursor: pointer;
	position: relative;
	padding-left: 25px;
	margin-right: 20px;
	overflow: hidden;
	display: inline-block;
	box-sizing: border-box;
}
label.checkbox_text:before {
	content: "";
	position: absolute;
	width: 18px;
	height: 18px;
	left: 0px;
	top: 0;
	border: 1px solid #ccc;
	z-index: 3;
}
label.checkbox_text:after {
	content: "";
	position: absolute;
	top: 40%;
	left: 5px;
	display: block;
	margin-top: -9px;
	width: 8px;
	height: 12px;
	border-right: 3px solid #686868;
	border-bottom: 3px solid #686868;
	transform: rotate(45deg);
	z-index: 1;
}
label.checkbox_text input[type="checkbox"] {
	-moz-appearance: none;
	-webkit-appearance: none;
	position: absolute;
	left: -40px;
	width: 20px;
	height: 20px;
	display: block;
	box-shadow: 41px 0px #fff;
	z-index: 2;
	margin: 0px;
	padding: 0px;
}
label.checkbox_text input[type="checkbox"]:checked {
	box-shadow: none;
}
label.checkbox_text input[type="checkbox"]:checked:focus {
	box-shadow: 40px 0px #666;
	opacity: 0.1;
}
label.checkbox_text input[type="checkbox"]:focus {
	box-shadow: 41px 0px #eee;
}

.fm-text {
	padding: 10px;
	margin: 10px 0;
	text-align: center;
}

/*共通ルール*/
.single_new {
	width: 96%;
	/* IE8以下とAndroid4.3以下用フォールバック */
	margin: auto;
}
@media all and (max-width: 639px) {
	.single_new {
		width: 95%;
	}
}

div,
section {
	box-sizing: border-box;
}

@media all and (max-width: 1400px) {
	.single {
		width: 95%;
	}
}

#top_main {
	width: 100%;
	position: relative;
	height: auto;
}
#top_main .top_main_vis ul.post_list li {
	padding: 0 10px;
}
#top_main .top_main_vis ul.post_list li a {
	display: block;
	width: 100%;
	position: relative;
}
#top_main .top_main_vis ul.post_list li a .tham {
	aspect-ratio: 1/1.414;
	overflow: hidden;
	width: 100%;
	position: relative;
}
#top_main .top_main_vis ul.post_list li a .tham img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	vertical-align: middle;
}
#top_main .top_main_vis ul.post_list li a .post_text {
	width: 100%;
	bottom: 0;
	height: auto;
	background: rgba(9, 25, 41, 0.6);
	padding: 20px;
	position: absolute;
}
@media all and (max-width: 639px) {
	#top_main .top_main_vis ul.post_list li a .post_text {
		padding: 20px 10px;
	}
}
#top_main .top_main_vis ul.post_list li a .post_text .data {
	color: #fff;
	font-family: "Outfit", sans-serif;
	font-weight: 500;
	font-size: 13px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0.1em;
	line-height: 1em;
}
@media all and (max-width: 639px) {
	#top_main .top_main_vis ul.post_list li a .post_text .data {
		font-family: "Outfit", sans-serif;
		font-weight: 500;
		font-size: 13px;
		/*font-size: ($size / $base) + rem;*/
		letter-spacing: 0.1em;
	}
}
#top_main .top_main_vis ul.post_list li a .post_text .post_title {
	color: #fff;
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 16px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 600;
	margin-top: 10px;
	line-height: 1.6em;
	display: -webkit-box;
	-webkit-line-clamp: 2; /* 表示したい行数 */
	-webkit-box-orient: vertical;
	overflow: hidden;
}
@media all and (max-width: 639px) {
	#top_main .top_main_vis ul.post_list li a .post_text .post_title {
		font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
		font-size: 14px;
		/*font-size: ($size / $base) + rem;*/
		letter-spacing: 0;
		font-weight: 600;
	}
}
.coll_click {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
}

#top_main .top_main_vis .slick-prev,
#top_main .top_main_vis .slick-next {
	z-index: 444;
}
@media all and (max-width: 639px) {
	#top_main .top_main_vis .slick-prev,
	#top_main .top_main_vis .slick-next {
		display: none;
	}
}
#top_main .top_main_vis .slick-prev:before,
#top_main .top_main_vis .slick-next:before {
	display: none;
}
#top_main .slick-prev,
#top_main .slick-next {
	background: none;
	border: none;
	font-size: 25px;
	background: #362f2f;
	color: #fff;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	z-index: 10;
	transition: 0.2s;
	height: 90px;
	width: 90px;
}
@media all and (max-width: 639px) {
	#top_main .slick-prev,
	#top_main .slick-next {
		width: 40px;
		height: 110px;
	}
}
#top_main .slick-prev:hover,
#top_main .slick-next:hover {
	color: #000;
}
#top_main .slick-prev {
	left: 0;
}
#top_main .slick-next {
	left: auto;
	right: 0;
}
#top_main.page_unde {
	position: relative;
}
#top_main.page_unde .page_title {
	z-index: 2;
	position: relative;
	border-bottom: 2px solid #362f2f;
	border-top: 2px solid #362f2f;
	padding: 20px 0;
}
#top_main.page_unde .single {
	padding: 0;
}
#top_main h2 {
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 19px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 800;
	color: #362f2f;
}
@media all and (max-width: 639px) {
	#top_main h2 {
		font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
		font-size: 15px;
		/*font-size: ($size / $base) + rem;*/
		letter-spacing: 0;
		font-weight: 600;
	}
}
#top_main h2 span {
	font-family: "Outfit", sans-serif;
	font-weight: 500;
	font-size: 69px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0.1em;
	font-weight: 700;
	letter-spacing: 0;
	color: #362f2f;
	line-height: 1em;
	margin-right: 20px;
}
@media all and (max-width: 639px) {
	#top_main h2 span {
		display: block;
		margin-right: 0;
		font-family: "Outfit", sans-serif;
		font-weight: 500;
		font-size: 30px;
		/*font-size: ($size / $base) + rem;*/
		letter-spacing: 0.1em;
		font-weight: 700;
		letter-spacing: 0;
	}
}

@media all and (max-width: 639px) {
	#top_1 {
		margin-top: 60px;
	}
}

.top_post_list .read {
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 19px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 600;
	color: #362f2f;
}
@media all and (max-width: 639px) {
	.top_post_list .read {
		font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
		font-size: 16px;
		/*font-size: ($size / $base) + rem;*/
		letter-spacing: 0;
		font-weight: 600;
	}
}
.top_post_list .read span {
	font-family: "Outfit", sans-serif;
	font-weight: 500;
	font-size: 69px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0.1em;
	font-weight: 700;
	letter-spacing: 0;
	margin-right: 20px;
}
@media all and (max-width: 639px) {
	.top_post_list .read span {
		display: block;
		font-family: "Outfit", sans-serif;
		font-weight: 500;
		font-size: 25px;
		/*font-size: ($size / $base) + rem;*/
		letter-spacing: 0.1em;
		font-weight: 700;
		letter-spacing: 0;
		line-height: 1em;
	}
}
.top_post_list .cat_list {
	display: flex;
	flex-wrap: wrap;
}
@media all and (max-width: 639px) {
	.top_post_list .cat_list {
		margin-top: 20px;
	}
}
.top_post_list .cat_list li {
	margin-right: 10px;
}
@media all and (max-width: 639px) {
	.top_post_list .cat_list li {
		margin-bottom: 10px;
	}
}
.top_post_list .cat_list li a {
	display: block;
	border: 1px solid #362f2f;
	color: #362f2f;
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 14px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 600;
	border-radius: 100px;
	padding: 11px 40px;
	transition: 0.5s;
}
@media all and (max-width: 639px) {
	.top_post_list .cat_list li a {
		font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
		font-size: 11px;
		/*font-size: ($size / $base) + rem;*/
		letter-spacing: 0;
		font-weight: 600;
		padding: 6px 25px;
	}
}
.top_post_list .cat_list li a i {
	margin-left: 6px;
}
.top_post_list .cat_list li a:hover {
	background: #686868;
	color: #fff;
	transition: 0.5s;
}
.top_post_list .post_list_main {
	display: flex;
	flex-wrap: wrap;
	margin-top: 60px;
}
@media all and (max-width: 639px) {
	.top_post_list .post_list_main {
		margin-top: 30px;
	}
}
.top_post_list .post_list_main li {
	width: 23.5%;
	margin-right: 2%;
}
.top_post_list .post_list_main li:nth-child(4n) {
	margin-right: 0;
}
@media all and (max-width: 639px) {
	.top_post_list .post_list_main li {
		width: 48%;
		margin-right: 0;
		margin-bottom: 60px;
	}
	.top_post_list .post_list_main li:nth-child(even) {
		margin-left: auto;
	}
}
.top_post_list .post_list_main li a {
	display: block;
}
.top_post_list .post_list_main li a .tham {
	display: block;
	aspect-ratio: 1/1.414;
	overflow: hidden;
	width: 100%;
	position: relative;
	border-radius: 4px;
}
.top_post_list .post_list_main li a .tham img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	vertical-align: middle;
	min-width: 100%;
	font-family: "object-fit: cover;";
}
.top_post_list .post_list_main li a .post_list_item_cat {
	display: block;
	background: #fff;
	width: 210px;
	position: relative;
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 14px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 600;
	color: #362f2f;
	text-align: center;
	padding: 10px 0;
	margin-top: -34px;
	border-radius: 0 4px 0 0;
}
@media all and (max-width: 639px) {
	.top_post_list .post_list_main li a .post_list_item_cat {
		font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
		font-size: 11px;
		/*font-size: ($size / $base) + rem;*/
		letter-spacing: 0;
		font-weight: 600;
		width: 90%;
	}
}
.top_post_list .post_list_main li a .post_list_item_cat:before,
.top_post_list .post_list_main li a .post_list_item_cat:after {
	content: "";
	display: block;
	position: absolute;
	background-repeat: no-repeat;
	margin: auto;
	width: 4px;
	height: 4px;
	background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27189/kado.svg);
	/*@include for-size(phone-only) {
  	display: none;
  }*/
}
.top_post_list .post_list_main li a .post_list_item_cat:before {
	left: 0;
	top: -4px;
}
.top_post_list .post_list_main li a .post_list_item_cat:after {
	right: -4px;
	bottom: 11px;
}
.top_post_list .post_list_main li a .post_list_item_title {
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 17px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 600;
	color: #362f2f;
}
@media all and (max-width: 639px) {
	.top_post_list .post_list_main li a .post_list_item_title {
		line-height: 1.6em;
		font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
		font-size: 14px;
		/*font-size: ($size / $base) + rem;*/
		letter-spacing: 0;
		font-weight: 600;
	}
}
.top_post_list .post_list_main li a .data {
	color: #686868;
	font-family: "Outfit", sans-serif;
	font-weight: 500;
	font-size: 13px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0.1em;
	line-height: 1em;
	letter-spacing: 0;
	text-align: right;
	margin-top: 10px;
}
@media all and (max-width: 639px) {
	.top_post_list .post_list_main li a .data {
		font-family: "Outfit", sans-serif;
		font-weight: 500;
		font-size: 11px;
		/*font-size: ($size / $base) + rem;*/
		letter-spacing: 0.1em;
		line-height: 1em;
		letter-spacing: 0;
	}
}
.top_post_list .pages {
	display: none;
}

footer {
	background: #091929;
	margin-top: 100px;
	padding: 40px 0 0;
}
footer .foot_logo {
	display: block;
	max-width: 565px;
	width: 100%;
}
footer .foot_nav {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
}
@media all and (max-width: 639px) {
	footer .foot_nav li {
		width: 100%;
	}
}
footer .foot_nav li:nth-child(n + 2) {
	margin-left: 20px;
}
@media all and (max-width: 639px) {
	footer .foot_nav li:nth-child(n + 2) {
		margin: 0;
	}
}
footer .foot_nav li a {
	display: block;
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 16px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 500;
	color: #fff;
}
@media all and (max-width: 639px) {
	footer .foot_nav li a {
		font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
		font-size: 15px;
		/*font-size: ($size / $base) + rem;*/
		letter-spacing: 0;
		font-weight: 500;
	}
}
footer .foot_cat_nav {
	display: flex;
	flex-wrap: wrap;
	margin-top: 60px;
	justify-content: space-between;
}
@media all and (max-width: 639px) {
	footer .foot_cat_nav {
		justify-content: baseline;
	}
}
@media all and (max-width: 639px) {
	footer .foot_cat_nav .foot_cat_nav_item {
		width: 50%;
		margin-bottom: 30px;
	}
}
footer .foot_cat_nav .foot_cat_nav_item .foot_cat_nav_item_title {
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 19px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 600;
	color: #fff;
}
@media all and (max-width: 639px) {
	footer .foot_cat_nav .foot_cat_nav_item .foot_cat_nav_item_title {
		text-align: left;
	}
}
footer .foot_cat_nav .foot_cat_nav_item .foot_cat_nav_item_link {
	margin-top: 10px;
	border-left: 2px solid #fff;
	padding-left: 14px;
}
footer .foot_cat_nav .foot_cat_nav_item .foot_cat_nav_item_link li:nth-child(n + 2) {
	margin-top: 5px;
}
footer .foot_cat_nav .foot_cat_nav_item .foot_cat_nav_item_link li a {
	display: block;
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 13px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 500;
	color: #fff;
	opacity: 0.8;
	transition: 0.4s;
}
@media all and (max-width: 639px) {
	footer .foot_cat_nav .foot_cat_nav_item .foot_cat_nav_item_link li a {
		text-align: left;
	}
}
footer .foot_cat_nav .foot_cat_nav_item .foot_cat_nav_item_link li a:hover {
	opacity: 1;
	transition: 0.4s;
}
footer .foot_cat_nav .foot_cat_nav_item .foot_cat_nav_item_link li a i {
	margin-left: 5px;
}
footer .foot_link_gaibu {
	display: flex;
	flex-wrap: wrap;
	margin-top: 40px;
}
@media all and (max-width: 639px) {
	footer .foot_link_gaibu {
		margin-top: 40px;
		justify-content: start;
		display: block;
	}
}
footer .foot_link_gaibu li:nth-child(n + 2) {
	margin-left: 50px;
}
@media all and (max-width: 639px) {
	footer .foot_link_gaibu li:nth-child(n + 2) {
		margin: 10px 0 0;
	}
}
footer .foot_link_gaibu li a {
	display: block;
}
@media all and (max-width: 639px) {
	footer .foot_link_gaibu li a {
		text-align: center;
	}
}
footer .foot_link_gaibu li a span {
	position: relative;
	display: table;
	color: #fff;
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 12px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 500;
	color: #fff;
	padding-right: 17px;
}
@media all and (max-width: 639px) {
	footer .foot_link_gaibu li a span {
		margin: auto;
	}
}
footer .foot_link_gaibu li a span:before {
	content: "";
	display: block;
	position: absolute;
	background-repeat: no-repeat;
	margin: auto;
	width: 15px;
	height: 15px;
	background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27189/foot_link_icon.svg);
	right: 0;
	margin: auto;
	top: 0;
	bottom: 0;
}
footer .copy {
	text-align: right;
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 13px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	letter-spacing: 0;
	font-weight: 500;
	z-index: 2;
	color: #fff;
	padding: 20px 0;
	margin-right: 30px;
}
@media all and (max-width: 639px) {
	footer .copy {
		text-align: center;
		margin: 0 auto;
	}
}

#nav_right {
	position: fixed;
	padding: 20px 15px 25px;
	background: #686868;
	right: 0;
	width: 96px;
	height: 82px;
	z-index: 99999;
	top: 82px;
}
@media all and (max-width: 639px) {
	#nav_right {
		width: 76px;
		height: 62px;
		padding: 14px 15px 25px;
		top: auto;
		bottom: 62px;
		display: none;
	}
}
#nav_right a {
	display: block;
	text-align: center;
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 13px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	line-height: 1em;
	color: #091929;
}
@media all and (max-width: 639px) {
	#nav_right a {
		font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
		font-size: 10px;
		/*font-size: ($size / $base) + rem;*/
		letter-spacing: 0;
	}
}
#nav_right a i {
	display: block;
	font-size: 23px;
	margin-bottom: 10px;
}
@media all and (max-width: 639px) {
	#nav_right a i {
		font-weight: 17px;
	}
}

#hanb_nav {
	position: fixed;
	height: 36px;
	right: 35px;
	top: 52px;
	width: 29px;
	z-index: 99999;
	transition: 0.8s;
}
@media all and (max-width: 913px) {
	#hanb_nav {
		display: block;
		opacity: 1;
	}
}
@media all and (max-width: 639px) {
	#hanb_nav {
		right: 20px;
		transition: 0.8s;
		top: 30px;
	}
}
#hanb_nav.fixd {
	transition: 0.8s;
}

.menu {
	position: absolute;
	height: 36px;
	width: 29px;
	cursor: pointer;
	cursor: hand;
}

.menu__line {
	background: #362f2f;
	display: block;
	height: 4px;
	position: absolute;
	border-radius: 10px;
	transition: transform 0.3s;
	width: 100%;
	top: 0;
}

.menu__line--center {
	top: 0;
	margin: auto;
	bottom: 0;
	width: 50%;
	right: 0;
}

.menu__line--bottom {
	top: auto;
	bottom: 0;
}

.menu__line--top.active {
	top: 8px;
	transform: rotate(45deg);
}

.menu__line--center.active {
	transform: scaleX(0);
	width: 100%;
}

.menu__line--bottom.active {
	bottom: 24px;
	transform: rotate(135deg);
}

/*gnav*/
.gnav {
	opacity: 0;
	height: 100%;
	position: fixed;
	width: 100%;
	z-index: 999;
	top: 0;
	left: 0;
	transform: translateY(-200%);
	transition: 0.4s cubic-bezier(0.26, 0.06, 0, 1) all;
}
.gnav.is-active {
	transform: translateY(0);
	opacity: 1;
	z-index: 2222;
}
.gnav .gnav__wrap {
	padding: 70px 0;
	display: flex;
	height: 100%;
	justify-content: center;
	position: fixed;
	flex-direction: column;
	width: 100%;
	background: #aaaaaa;
}
@media all and (max-width: 639px) {
	.gnav .gnav__wrap {
		justify-content: flex-start;
		padding: 40px 0 40px;
	}
}
.gnav .inner {
	display: flex;
	flex-wrap: wrap;
}
@media all and (max-width: 639px) {
	.gnav .inner {
		display: block;
	}
}
.gnav .inner .in_l,
.gnav .inner .in_r {
	width: 50%;
}
@media all and (max-width: 639px) {
	.gnav .inner .in_l,
	.gnav .inner .in_r {
		width: 100%;
	}
}
@media all and (max-width: 639px) {
	.gnav .inner .in_r {
		margin-top: 30px;
	}
}

.sp-logo {
	display: block;
	max-width: 240px;
	margin-left: auto;
	padding-right: 50px;
}
@media all and (max-width: 639px) {
	.sp-logo {
		margin: auto;
		padding: 0;
	}
}
.sp-logo img {
	max-width: 100%;
}
@media all and (max-width: 639px) {
	.sp-logo {
		max-width: 120px;
	}
}

.gnav__menu {
	width: 100%;
	max-width: 1000px;
	padding: 0 20px;
	margin: 0 auto;
	box-sizing: border-box;
}
@media all and (max-width: 639px) {
	.gnav__menu {
		display: block;
	}
}
.gnav__menu .gnav__menu__item:nth-child(3n) {
	margin-right: 0;
}
@media all and (max-width: 639px) {
	.gnav__menu .gnav__menu__item {
		display: block;
		width: 100%;
		margin-right: 0;
	}
}
.gnav__menu .gnav__menu__item .item_read {
	color: #fff;
	text-decoration: none;
	transition: 0.5s;
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 19px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 600;
	padding: 0;
	display: block;
	letter-spacing: 0;
	line-height: 1.2em;
	padding: 15px 0;
}
@media all and (max-width: 639px) {
	.gnav__menu .gnav__menu__item .item_read {
		font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
		font-size: 14px;
		/*font-size: ($size / $base) + rem;*/
		letter-spacing: 0;
		font-weight: 600;
		text-align: center;
	}
}
.gnav__menu .gnav__menu__item .item_read span {
	font-family: "Outfit", sans-serif;
	font-weight: 500;
	font-size: 40px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0.1em;
	font-weight: 500;
	letter-spacing: 0;
	margin-right: 24px;
}
@media all and (max-width: 639px) {
	.gnav__menu .gnav__menu__item .item_read span {
		display: block;
		font-family: "Outfit", sans-serif;
		font-weight: 500;
		font-size: 28px;
		/*font-size: ($size / $base) + rem;*/
		letter-spacing: 0.1em;
		font-weight: 500;
		letter-spacing: 0;
		margin-right: 0;
		margin-bottom: 13px;
	}
}
.gnav__menu .gnav__menu__item .item_read.js-sp-parent {
	position: relative;
	display: block;
	cursor: pointer;
}
.gnav__menu .gnav__menu__item .item_read.js-sp-parent:after {
	font-family: "Font Awesome 5 Free";
	content: "\f067";
	font-weight: 900;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #f7f3e8;
}
.gnav__menu .gnav__menu__item .item_read.js-sp-parent.is-open:after {
	content: "\f068";
}
.gnav__menu .gnav__menu__item .gnav__menu_sub {
	display: none;
}
.gnav__menu .gnav__menu__item .gnav__menu_sub li {
	margin-top: 8px;
}
.gnav__menu .gnav__menu__item .gnav__menu_sub li:first-child {
	margin-top: 0;
}
.gnav__menu .gnav__menu__item .gnav__menu_sub li a {
	display: block;
	font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
	font-size: 15px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0.1em;
	color: #362f2f;
	font-weight: 500;
	text-align: left;
}

.gnav__menu__item a:hover {
	color: #000;
}

/*--------------------------------------------------
野田建築会とは(about.php)
----------------------------------------------------*/
#about_1 {
	padding-top: 60px;
}
@media all and (max-width: 639px) {
	#about_1 {
		padding-bottom: 60px;
	}
}
#about_1 .inner {
	display: flex;
	flex-wrap: wrap;
}
@media all and (max-width: 639px) {
	#about_1 .inner {
		display: block;
	}
}
#about_1 .inner.sesc {
	margin-top: 140px;
	padding-top: 140px;
	border-top: 2px solid #362f2f;
}
#about_1 .inner .in_left {
	width: 30%;
}
@media all and (max-width: 639px) {
	#about_1 .inner .in_left {
		width: 100%;
	}
}
#about_1 .inner .in_left .about_1_read {
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 32px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 800;
	color: #362f2f;
}
@media all and (max-width: 639px) {
	#about_1 .inner .in_left .about_1_read {
		font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
		font-size: 22px;
		/*font-size: ($size / $base) + rem;*/
		letter-spacing: 0;
		font-weight: 800;
	}
}
#about_1 .inner .in_right {
	width: 70%;
}
@media all and (max-width: 639px) {
	#about_1 .inner .in_right {
		width: 100%;
	}
}
#about_1 .inner .in_right .about_1_read {
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 21px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 600;
	color: #362f2f;
	border-left: 4px solid #362f2f;
	padding-left: 10px;
	margin-bottom: 20px;
}
#about_1 .inner .in_right .about_1_read.sec {
	margin-top: 80px;
}
#about_1 .inner .in_right img {
	display: block;
	width: 100%;
}
#about_1 .inner .in_right .main {
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 17px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 600;
	color: #362f2f;
}
#about_1 .inner .in_right .history th,
#about_1 .inner .in_right .history td {
	background: none;
	border: none;
	text-align: left;
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 17px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 600;
	color: #362f2f;
	padding: 0 0 60px;
	vertical-align: text-top;
}
#about_1 .inner .in_right .member_table th,
#about_1 .inner .in_right .member_table td {
	background: none;
	border: none;
	text-align: left;
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 17px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 600;
	color: #362f2f;
	vertical-align: text-top;
}
#about_1 .inner .in_right .kaisoku li:nth-child(n + 2) {
	margin-top: 60px;
}
#about_1 .inner .in_right .kaisoku li .main {
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 16px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 600;
	color: #362f2f;
}

/*--------------------------------------------------
記事一覧(journal.php)
----------------------------------------------------*/
@media all and (max-width: 639px) {
	#journal_1 {
		padding-bottom: 60px;
	}
}
#journal_1 .tab_wrap {
	width: 100%;
	margin: 60px auto;
}
#journal_1 .tab_wrap_2 .foot_cat_nav {
	display: flex;
	flex-wrap: wrap;
	margin-top: 60px;
	justify-content: space-between;
}
@media all and (max-width: 639px) {
	#journal_1 .tab_wrap_2 .foot_cat_nav {
		display: block;
	}
}
@media all and (max-width: 639px) {
	#journal_1 .tab_wrap_2 .foot_cat_nav .foot_cat_nav_item {
		width: 100%;
		margin-bottom: 30px;
	}
}
#journal_1 .tab_wrap_2 .foot_cat_nav .foot_cat_nav_item .foot_cat_nav_item_title {
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 19px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 600;
	color: #362f2f;
}
@media all and (max-width: 639px) {
	#journal_1 .tab_wrap_2 .foot_cat_nav .foot_cat_nav_item .foot_cat_nav_item_title {
		text-align: left;
	}
}
#journal_1 .tab_wrap_2 .foot_cat_nav .foot_cat_nav_item .foot_cat_nav_item_link {
	margin-top: 10px;
}
@media all and (max-width: 639px) {
	#journal_1 .tab_wrap_2 .foot_cat_nav .foot_cat_nav_item .foot_cat_nav_item_link {
		display: flex;
		flex-wrap: wrap;
	}
}
@media all and (max-width: 639px) {
	#journal_1 .tab_wrap_2 .foot_cat_nav .foot_cat_nav_item .foot_cat_nav_item_link li {
		margin-right: 5px;
	}
}
#journal_1 .tab_wrap_2 .foot_cat_nav .foot_cat_nav_item .foot_cat_nav_item_link li:nth-child(n + 2) {
	margin-top: 5px;
}
#journal_1 .tab_wrap_2 .foot_cat_nav .foot_cat_nav_item .foot_cat_nav_item_link li a {
	display: block;
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 13px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 600;
	color: #362f2f;
	transition: 0.4s;
	border: 1px solid #362f2f;
	padding: 10px 30px;
	border-radius: 100px;
}
@media all and (max-width: 639px) {
	#journal_1 .tab_wrap_2 .foot_cat_nav .foot_cat_nav_item .foot_cat_nav_item_link li a {
		text-align: left;
		/*width: 100%;*/
		box-sizing: border-box;
		font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
		font-size: 11px;
		/*font-size: ($size / $base) + rem;*/
		letter-spacing: 0;
		padding: 6px 25px;
	}
}
#journal_1 .tab_wrap_2 .foot_cat_nav .foot_cat_nav_item .foot_cat_nav_item_link li a:hover {
	background: #362f2f;
	color: #fff;
	transition: 0.4s;
}
#journal_1 .tab_wrap_2 .foot_cat_nav .foot_cat_nav_item .foot_cat_nav_item_link li a i {
	margin-left: 5px;
}
#journal_1 .tab_menu {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 2px solid #091929;
	list-style: none;
	padding: 0;
	justify-content: center;
	margin: 0 0 20px 0;
}
#journal_1 .tab_menu li {
	width: 18%;
	text-align: center;
	padding: 15px 0;
	cursor: pointer;
	border: 2px solid #091929;
	border-bottom: none;
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 17px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 600;
	color: #091929;
	transition: 0.3s;
	box-sizing: border-box;
}
@media all and (max-width: 639px) {
	#journal_1 .tab_menu li {
		width: 32%;
		margin-left: 0;
		font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
		font-size: 14px;
		/*font-size: ($size / $base) + rem;*/
		letter-spacing: 0;
		font-weight: 600;
		margin-top: 5px;
	}
}
#journal_1 .tab_menu li:nth-child(n + 2) {
	margin-left: 1%;
}
#journal_1 .tab_menu li:hover {
	color: #000;
	background: #f7f7f7;
}
#journal_1 .tab_menu li.active {
	color: #fff;
	background: #091929;
}
#journal_1 .tab_content .tab_panel {
	display: none;
}
#journal_1 .tab_content .tab_panel.active {
	display: block;
}
#journal_1 .cat_list {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
	justify-content: center;
}
#journal_1 .cat_list li {
	margin-right: 10px;
}
@media all and (max-width: 639px) {
	#journal_1 .cat_list li {
		margin-bottom: 10px;
	}
}
#journal_1 .cat_list li a {
	display: block;
	border: 1px solid #362f2f;
	color: #362f2f;
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 14px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 600;
	border-radius: 100px;
	padding: 11px 40px;
	transition: 0.5s;
}
@media all and (max-width: 639px) {
	#journal_1 .cat_list li a {
		font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
		font-size: 12px;
		/*font-size: ($size / $base) + rem;*/
		letter-spacing: 0;
		font-weight: 600;
	}
}
#journal_1 .cat_list li a i {
	margin-left: 6px;
}
#journal_1 .cat_list li a:hover {
	background: #686868;
	color: #fff;
	transition: 0.5s;
}
#journal_1 .hyouji_cat {
	text-align: center;
	margin-top: 60px;
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 21px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 600;
	color: #091929;
}
@media all and (max-width: 639px) {
	#journal_1 .hyouji_cat {
		line-height: 1em;
	}
}
#journal_1 .hyouji_cat span {
	display: block;
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 53px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 700;
	color: #091929;
}
@media all and (max-width: 639px) {
	#journal_1 .hyouji_cat span {
		font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
		font-size: 29px;
		/*font-size: ($size / $base) + rem;*/
		letter-spacing: 0;
		font-weight: 700;
		margin-bottom: 10px;
	}
}
#journal_1 .post_list_main {
	display: flex;
	flex-wrap: wrap;
	margin-top: 60px;
}
@media all and (max-width: 639px) {
	#journal_1 .post_list_main {
		margin-top: 30px;
	}
}
#journal_1 .post_list_main li {
	width: 23.5%;
	margin-right: 2%;
}
#journal_1 .post_list_main li:nth-child(4n) {
	margin-right: 0;
}
@media all and (max-width: 639px) {
	#journal_1 .post_list_main li {
		width: 48%;
		margin-right: 0;
		margin-bottom: 60px;
	}
	#journal_1 .post_list_main li:nth-child(even) {
		margin-left: auto;
	}
}
#journal_1 .post_list_main li:nth-child(n + 5) {
	margin-top: 60px;
}
@media all and (max-width: 639px) {
	#journal_1 .post_list_main li:nth-child(n + 5) {
		margin-top: 0;
	}
}
#journal_1 .post_list_main li a {
	display: block;
}
#journal_1 .post_list_main li a .tham {
	display: block;
	aspect-ratio: 1/1.414;
	overflow: hidden;
	width: 100%;
	position: relative;
	border-radius: 4px;
}
#journal_1 .post_list_main li a .tham img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	vertical-align: middle;
	min-width: 100%;
	font-family: "object-fit: cover;";
}
#journal_1 .post_list_main li a .post_list_item_cat {
	display: block;
	background: #fff;
	width: 210px;
	position: relative;
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 14px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 600;
	color: #362f2f;
	text-align: center;
	padding: 10px 0;
	margin-top: -34px;
	border-radius: 0 4px 0 0;
}
@media all and (max-width: 639px) {
	#journal_1 .post_list_main li a .post_list_item_cat {
		font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
		font-size: 11px;
		/*font-size: ($size / $base) + rem;*/
		letter-spacing: 0;
		font-weight: 600;
		width: 90%;
	}
}
#journal_1 .post_list_main li a .post_list_item_cat:before,
#journal_1 .post_list_main li a .post_list_item_cat:after {
	content: "";
	display: block;
	position: absolute;
	background-repeat: no-repeat;
	margin: auto;
	width: 4px;
	height: 4px;
	background-image: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/27189/kado.svg);
	/*@include for-size(phone-only) {
  	display: none;
  }*/
}
#journal_1 .post_list_main li a .post_list_item_cat:before {
	left: 0;
	top: -4px;
}
#journal_1 .post_list_main li a .post_list_item_cat:after {
	right: -4px;
	bottom: 11px;
}
#journal_1 .post_list_main li a .post_list_item_title {
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 17px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 600;
	color: #362f2f;
}
@media all and (max-width: 639px) {
	#journal_1 .post_list_main li a .post_list_item_title {
		line-height: 1.6em;
		font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
		font-size: 14px;
		/*font-size: ($size / $base) + rem;*/
		letter-spacing: 0;
		font-weight: 600;
	}
}
#journal_1 .post_list_main li a .data {
	color: #686868;
	font-family: "Outfit", sans-serif;
	font-weight: 500;
	font-size: 13px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0.1em;
	line-height: 1em;
	letter-spacing: 0;
	text-align: right;
	margin-top: 10px;
}
@media all and (max-width: 639px) {
	#journal_1 .post_list_main li a .data {
		font-family: "Outfit", sans-serif;
		font-weight: 500;
		font-size: 11px;
		/*font-size: ($size / $base) + rem;*/
		letter-spacing: 0.1em;
		line-height: 1em;
		letter-spacing: 0;
	}
}
#journal_1 .pages {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 200px;
	margin: 80px auto 0;
}
#journal_1 .pages .page_next {
	margin-left: auto;
}
#journal_1 .pages a {
	display: block;
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 17px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 600;
	color: #091929;
}
#journal_1 .more_list {
	display: block;
	border: 1px solid #362f2f;
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 14px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 600;
	color: #362f2f;
	border-radius: 100px;
	padding: 11px 40px;
	transition: 0.5s;
	margin: 60px auto 0;
	max-width: 300px;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
}
#journal_1 .more_list:hover {
	background: #362f2f;
	color: #fff;
	transition: 0.5s;
}

/*--------------------------------------------------
会報誌一覧(magazine.php)
----------------------------------------------------*/
#magazine_1 {
	padding-top: 60px;
}
@media all and (max-width: 639px) {
	#magazine_1 {
		padding-bottom: 60px;
	}
}
#magazine_1 .magazine_1_list {
	display: flex;
	flex-wrap: wrap;
}
#magazine_1 .magazine_1_list li {
	width: 23.5%;
	margin-right: 2%;
	margin-bottom: 50px;
}
#magazine_1 .magazine_1_list li:nth-child(4n) {
	margin-right: 0;
}
@media all and (max-width: 639px) {
	#magazine_1 .magazine_1_list li {
		width: 32%;
		margin-right: 2%;
	}
	#magazine_1 .magazine_1_list li:nth-child(3n) {
		margin-right: 0;
	}
}
#magazine_1 .magazine_1_list li a {
	display: block;
	width: 100%;
}
#magazine_1 .magazine_1_list li a img {
	display: block;
	width: 100%;
}
#magazine_1 .magazine_1_list li .magazine_1_list_text {
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 17px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 600;
	color: #362f2f;
}
@media all and (max-width: 639px) {
	#magazine_1 .magazine_1_list li .magazine_1_list_text {
		font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
		font-size: 15px;
		/*font-size: ($size / $base) + rem;*/
		letter-spacing: 0;
		font-weight: 600;
	}
}

/*--------------------------------------------------
お問い合わせ(contact.php)
----------------------------------------------------*/
#contact_1 {
	padding-top: 60px;
}
@media all and (max-width: 639px) {
	#contact_1 {
		padding-bottom: 60px;
	}
}
#contact_1 .single {
	padding: 80px 100px;
}
@media all and (max-width: 1190px) {
	#contact_1 .single {
		padding: 50px 0;
	}
}
#contact_1 .contact_1_read {
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 21px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 600;
	color: #362f2f;
	border-left: 4px solid #362f2f;
	padding-left: 10px;
	margin-bottom: 20px;
}
#contact_1 .company_1__main {
	border: 1px solid #362f2f;
}
@media all and (max-width: 639px) {
	#contact_1 .company_1__main .form-pattern-1 {
		padding: 40px 15px;
	}
}
#contact_1 .tyokuad {
	text-align: center;
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 16px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 600;
	color: #362f2f;
	margin: 40px 0 60px;
}
#contact_1 .tyokuad a {
	text-decoration: underline;
}
#contact_1 .form-contents {
	padding: 55px 70px;
}
#contact_1 .form-contents form dl {
	font-weight: 400;
}
#contact_1 .accbox {
	margin-top: 40px;
}
#contact_1 .accbox label {
	display: block;
	cursor: pointer;
	transition: all 0.5s;
}
#contact_1 .accbox label .more {
	display: block;
	text-align: center;
	border-top: 1px solid #091929;
	border-bottom: 1px solid #091929;
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 18px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 400;
	color: #091929;
	width: 100%;
	padding: 0.8em 0;
	margin: 15px auto 0;
	transition: 0.4s;
	margin-left: auto;
}
@media all and (max-width: 639px) {
	#contact_1 .accbox label .more {
		margin-left: 0;
	}
}
#contact_1 .accbox label .more span {
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 18px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 600;
}
#contact_1 .accbox label:hover .more {
	background: #091929;
	color: #fff;
	transition: 0.4s;
}
#contact_1 .accbox label .single {
	padding: 0;
}
#contact_1 .accbox input {
	display: none;
	transition: 0.8s;
}
#contact_1 .accbox .accshow_1 {
	height: 0;
	padding: 0;
	overflow: hidden;
	opacity: 0;
	transition: 0.8s;
	position: relative;
}
#contact_1 .accbox .accshow_1 .main {
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 14px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 500;
	color: #362f2f;
	text-align: left;
	letter-spacing: 0;
	width: 85%;
	margin: auto;
}
@media all and (max-width: 639px) {
	#contact_1 .accbox .accshow_1 .main {
		line-height: 1.7em;
	}
}
#contact_1 .accbox .accshow_1 .main span {
	display: block;
	margin-top: 20px;
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 16px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 600;
	letter-spacing: 0;
	margin-bottom: 10px;
}
@media all and (max-width: 639px) {
	#contact_1 .accbox .accshow_1 .main span {
		margin-top: 35px;
	}
}
#contact_1 .cssacc_1:checked + .accshow_1 {
	height: auto;
	opacity: 1;
	transition: 0.8s;
}

/*--------------------------------------------------
会費納入(feepayment.php)
----------------------------------------------------*/
#feepayment_1 {
	padding-top: 60px;
}
@media all and (max-width: 639px) {
	#feepayment_1 {
		padding-bottom: 60px;
	}
}
#feepayment_1 .single {
	padding: 80px 100px;
}
@media all and (max-width: 1190px) {
	#feepayment_1 .single {
		padding: 50px 0;
	}
}
#feepayment_1 .read {
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 21px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 600;
	color: #362f2f;
	border-left: 4px solid #362f2f;
	padding-left: 10px;
	margin-bottom: 20px;
}
#feepayment_1 .read.sec {
	margin-top: 120px;
}
#feepayment_1 .main {
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 17px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 600;
	color: #362f2f;
}
#feepayment_1 .main span {
	display: block;
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 20px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 600;
	margin-bottom: 15px;
}

/*--------------------------------------------------
新着情報(topics_list.php)
----------------------------------------------------*/
#topics_1 .single_new {
	border-bottom: 1px solid #eee;
}
#topics_1 .inner {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
@media all and (max-width: 639px) {
	#topics_1 .inner {
		display: block;
	}
}
#topics_1 .inner .left {
	width: 67%;
}
@media all and (max-width: 639px) {
	#topics_1 .inner .left {
		width: 100%;
	}
}
#topics_1 .inner .right {
	width: 27%;
	margin-left: auto;
}
@media all and (max-width: 639px) {
	#topics_1 .inner .right {
		width: 100%;
		margin: 50px 0 0;
	}
}
#topics_1 .inner .right .side_titem {
	font-family: "Outfit", sans-serif;
	font-weight: 500;
	font-size: 25px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0.1em;
	color: #686868;
}
#topics_1 .inner .right .side_titem.sec {
	margin-top: 80px;
}
#topics_1 .inner .right .side_titem span {
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 15px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 500;
	display: block;
}
#topics_1 .inner .right ul.post_list li {
	border-bottom: 1px solid rgba(238, 238, 238, 0.2);
}
#topics_1 .inner .right ul.post_list li a {
	display: block;
	font-family: "Outfit", sans-serif;
	font-weight: 500;
	font-size: 18px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0.1em;
	position: relative;
	padding: 15px 10px;
	transition: 0.4s;
}
#topics_1 .inner .right ul.post_list li a .data {
	font-family: "Outfit", sans-serif;
	font-weight: 500;
	font-size: 13px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0.1em;
	color: #686868;
	opacity: 0.5;
	position: relative;
	letter-spacing: 0;
}
#topics_1 .inner .right ul.post_list li a .title {
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 15px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 500;
	color: #362f2f;
	display: block;
	margin-top: 4px;
}
#topics_1 .inner .right ul.post_list li a:hover {
	background: rgba(238, 238, 238, 0.4);
	transition: 0.4s;
}
#topics_1 .entry .data {
	font-family: "Outfit", sans-serif;
	font-weight: 500;
	font-size: 13px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0.1em;
	color: #686868;
}
#topics_1 .entry .title {
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 21px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	font-weight: 600;
	color: #362f2f;
	border-bottom: 1px solid #ccc;
}
#topics_1 .entry .main_cont {
	font-family: YakuHanJP, "Outfit", "Zen Kaku Gothic New", sans-serif;
	font-size: 16px;
	/*font-size: ($size / $base) + rem;*/
	letter-spacing: 0;
	margin-top: 30px;
	font-weight: 500;
	color: #362f2f;
}
#topics_1 .entry .main_cont img {
	max-width: 100%;
	display: block;
} /*# sourceMappingURL=style.css.map */

/* スマホ時のみアコーディオン化 */
@media screen and (max-width: 768px) {
	#journal_1 .tab_wrap_2 .foot_cat_nav .foot_cat_nav_item .foot_cat_nav_item_link {
		display: none;
		padding-left: 10px;
	}

	#journal_1 .tab_wrap_2 .foot_cat_nav .foot_cat_nav_item.open .foot_cat_nav_item_link {
		display: flex;
		flex-wrap: wrap;
	}

	.foot_cat_nav_item_title {
		cursor: pointer;
		position: relative;
		padding-right: 25px;
	}

	.foot_cat_nav_item_title::after {
		content: "+";
		position: absolute;
		right: 10px;
		top: 50%;
		transform: translateY(-50%);
		font-size: 18px;
		transition: transform 0.3s ease;
	}
	.foot_cat_nav_item_title::after {
		content: "+";
		position: absolute;
		right: 10px;
		top: 50%;
		transform: translateY(-50%);
		font-size: 18px;
		transition: transform 0.3s ease;
	}
	.foot_cat_nav_item.open .foot_cat_nav_item_title::after {
		content: "−";
	}
}
