@charset "UTF-8";

/* 基本 */
:root {
	--v-space: clamp(90px, 7vw, 120px);

	/*color-admin*/
	--txt-color:#222222;
	--base-color:#FFF;
	--main-color:#B1788C;
	--accent-color1:#DDAF64;
	--accent-color2:#6e6e6e;
}

body {
	margin: 0;
	color: var(--txt-color);
	font-family: sans-serif;
	background-color: var(--base-color);

	/*印刷時に背景が出るように*/
	-webkit-print-color-adjust: exact;
	print-color-adjust: exact;
}

h1, h2, h3, h4, h5, h6, p, figure, ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

p {
	line-height: 1.7;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	filter: brightness(90%) contrast(120%);
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}



/* 横幅と左右の余白 */
.w-container {
	/*width: min(92%, 1166px);*/	/*テンプレ初期値*/
	width: min(92%, 1000px);
	margin: auto;
	position: relative;
}


/* ヘッダー */
.header {
	/*height: 112px;*/	/*テンプレ初期値*/
	background-color: var(--base-color);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 110px;
}
@media (max-width: 568px) {
	.header-container {
		margin-top: 20px;
		height: 100%;
		/*margin-bottom: 10px;*/ /*logoロゴ下の余白*/
	}
}

/*========= 上部固定させるためのCSS ===============*/
@media (max-width: 568px) {
	#site-inner{
		width:100%;/*横幅指定*/
		/*以下はレイアウトのためのCSS*/
		display: flex;
		justify-content: space-between;
		align-items: center;
		background:#ffffffe3;
		text-align: center;
	}

	/*JSを使いfixedクラスが付与された際の設定*/
	#site-inner.fixed{
		position: fixed;/*fixedを設定して固定*/
		z-index: 100;/*最前面へ*/
		top:0;/*位置指定*/
		left:0;/*位置指定*/
		padding-left: 10px;
	}
	#navbtn-inner{
		/*以下はレイアウトのためのCSS*/
		display: flex;
	}
	/*JSを使いfixedクラスが付与された際の設定*/
	#navbtn-inner.fixed{
		position: fixed;/*fixedを設定して固定*/
		z-index: 110;/*最前面へ*/
		top:10px;/*位置指定*/
		right:15px;/*位置指定*/
	}
}
body.fixed {
	width: 100%;
	height: 100%;
	position: fixed;
}

/* H1 */
h1{
	margin-top: 0;
	padding-left: 20px;
	padding-right: 20px;
	box-sizing: border-box;
	font-size: 10px;
	color: var(--txt-color);
	font-weight: normal;
	background-color: #FFF;
}

/* ナビゲーションボタン */
#navbtn {
	padding: 0;
	outline: none;
	border: none;
	background: transparent;
	cursor: pointer;
	color: var(--color1);
	font-size: 30px;
}

.open #navbtn {
	z-index: 110;
	color: #ffffff;
}

#navbtn .fa-bars {
	display: revert;
}
.open #navbtn .fa-bars {
	display: none;
}

#navbtn .fa-times {
	display: none;
}
.open #navbtn .fa-times {
	display: revert;
}

@media (min-width: 569px) {
	#navbtn {
		display: none;
	}
}

/*ロゴ*/
img.logo{
	width: 300px;
}
@media (max-width: 680px) {
	img.logo{
		width: 250px;
	}
}
@media (max-width: 372px) {
	img.logo{
		width: 200px;
	}
}

/* 会社住所・TEL */
.company{
	text-align: right;
}
.tel_ico{
	color: var(--accent-color1);
	font-size: 26px;
	padding-right: 5px;
	font-weight: bold;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.tel{
	color: var(--accent-color1);
	font-size: 33px;
	font-weight: bold;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

@media (max-width: 569px) {
	.company {
		display: none;
	}
}

/* ナビゲーションメニュー：モバイル */
@media (max-width: 568px) {
	.nav {
		position: fixed;
		inset: 0 -100% 0 100%;
		z-index: 100;
	//	background-color: #373737e5;
	//	transition: transform 0.3s;
	}

	.open .nav {
		transform: translate(-100%, 0);
	}

	.open body {
		position: fixed;
		overflow: hidden;
	}

	.nav ul {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height: 100%;
		gap: 40px;
		color: #ffffff;
	}
}

/* ナビゲーションメニュー：PC */
@media (min-width: 569px) {
	.nav ul {
		display: flex;
		gap: 6%;
		color: #454545;
		justify-content: center;
		align-items: center;
		list-style: none;
		height: 50px;
		background-color: var(--base-color);
		z-index: 10;
		padding-bottom: 5px;
	}
	.nav a:hover{
		color: #707070;
		border-bottom: 2px solid var(--accent-color1);
	}
	.nav ul li{
		font-weight: 400;
	}
}

/*メニュー副題*/
nav.nav ul li::before {
	content: attr(data-en);
	display: block;
	color: var(--main-color);
	font-size: 10px;
	text-align: center;
	font-weight: normal;
	letter-spacing: 0.2em;
	font-family: "Sawarabi Gothic", "M PLUS 1p", sans-serif;
}

/* ページトップボタン */
#page_top{
	display: block;
	width: 60px;
	height: 60px;
	position: fixed;
	right: 20px;
	bottom: 15px;
	opacity: 0.6;
	z-index:99;
}
#page_top a{
	display: block;
	width: 60px;
	height: 60px;
	text-decoration: none;
}
#page_top a::before{
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f139';
	font-size: 50px;
	color: var(--color1);
}

/* ボタン */
.btn {
	display: block;
	width: 260px;
	padding: 10px;
	box-sizing: border-box;
	border-radius: 4px;
	background-color: #e8b368;
	color: #ffffff;
	font-size: 18px;
	text-align: center;
	text-shadow: 0 0 6px #00000052;
}

.btn-accent {
	background-color: #b72661;
}

/* 画像とテキスト */
.imgtext {
	/*padding: var(--v-space) 0;*/
	padding:clamp(30px, 7vw, 60px) 0; /*今回のみ*/
	background-color: rgba(255, 255, 255, 0.7);
}

.imgtext + .imgtext {
	padding-top: 0;
}

.imgtext-container {
	display: flex;
	flex-direction: column;
	/*gap: clamp(45px, 6vw, 80px);*/	/* テンプレ初期値 */
	gap: clamp(25px, 6vw, 35px);
}

.imgtext-mar{
	margin-bottom:6vw;
}

@media (min-width: 569px) {
	.imgtext-container {
		flex-direction: row;
		align-items: center;
	}

	.imgtext-container.reverse {
		flex-direction: row-reverse;
	}

	.imgtext-container > .text {
		flex: 1;
		min-width: 17em;
  	}

	.imgtext-container > .img {
		/*flex: 2;*/	/* テンプレ初期値 */
		flex: 1.8;
	}
}

/* 画像とテキスト2 */
.imgtext2 {
	/*padding: var(--v-space) 0;*/
	padding:0; /*今回のみ*/
}

.imgtext2 + .imgtext2 {
	padding-top: 0;
}

.imgtext-container2 {
	display: flex;
	flex-direction: column;
	/*gap: clamp(45px, 6vw, 80px);*/	/* テンプレ初期値 */
	/*gap: clamp(25px, 6vw, 35px);*/
}

.imgtext-mar2{
	margin-bottom:6vw;
}
.text-padding{
	padding: clamp(25px, 6vw, 35px);
}

@media (min-width: 569px) {
	.imgtext-container2 {
		flex-direction: row;
		align-items: center;
	}

	.imgtext-container2.reverse {
		flex-direction: row-reverse;
	}

	.imgtext-container2 > .text2 {
		flex: 1;
		min-width: 17em;
  	}

	.imgtext-container2 > .img {
		/*flex: 2;*/	/* テンプレ初期値 */
		flex: 1;
	}
}


/* タイトルとサブタイトル（短い線で装飾） */
.heading-decoration {
	font-family: "Zen Old Mincho", serif;
	font-style: normal;
	font-size: clamp(30px, 3vw, 35px);
	min-height: 0vw;
	font-weight: 400;
	color: var(--main-color);
}

.heading-decoration::after {
	display: block;
	content: '';
	width: 160px;
	height: 0px;
	border-top: solid 3px var(--accent-color1);
	margin-top: 0.6em;
}

.heading-decoration + p {
	font-family: "Zen Old Mincho", serif;
	font-style: normal;
	margin-top: 0.5em;
	margin-bottom: 1em;
	color: var(--txt-color);
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
}

@media screen and (max-width: 568px) {
	.heading-decoration {
		text-align:center;
	}
	.heading-decoration::after {
		margin-right:auto;
		margin-left:auto;
	}
	.heading-decoration + p {
		text-align:center;
	}
}


/* 記事一覧 */
.posts {
	padding: var(--v-space) 0;
	background-color: #f3f1ed;
}

.posts-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px 10px;
}

@media (min-width: 569px) {
	.posts-container {
		grid-template-columns: repeat(2, 1fr);
	}
}

/*PC3列、スマホ3列*/
.posts-container2 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px 10px;
}

@media (min-width: 569px) {
	.posts-container2 {
		grid-template-columns: repeat(3, 1fr);
		
		gap: 50px 10px;
	}
}

/*PC4列、スマホ2列*/
.posts-container3 {
	display: grid;
	justify-items: center;
	align-items: center;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px 25px;
}

@media (min-width: 569px) {
	.posts-container3 {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* 記事一覧の中身 */

.post a {
	display: block;
}

.post h4 {	
	position: relative;
	text-align:center;

	/*margin: 1em 0 0.5em;*/
	font-size: clamp(13px, 1vw, 20px);
	min-height: 0vw;
}

.post p {
	max-width: 20em;
	font-size: clamp(10px, 1.6vw, 14px);
	min-height: 0vw;
}

.post img {
	/*aspect-ratio: 3 / 2;*/
	object-fit: cover;
	width: 100%;
}
.post2 img {
	border: 3px solid #FFF;
}

@supports not (aspect-ratio: 3 / 2) {
	.post img {
		height: 180px;
	}
}


/* パーツの見出し */
.heading {
	position: absolute;
	top: calc((var(--v-space) + 0.9em) * -1);
	/*font-family: "Montserrat", sans-serif;*/
	/*font-size: clamp(40px, 5.2vw, 70px);*/	/*テンプレ初期値*/
	font-size: clamp(35px, 4vw, 55px);
	min-height: 0vw;
	font-weight: 400;
	font-family: "Zen Old Mincho", serif;
	font-style: normal;
	color: var(--main-color);
}
.heading span {
	display: block;
	color: #454545;
	font-size: clamp(17px, 1.5vw, 25px);
	font-weight: 400;
	font-family: "Zen Old Mincho", serif;
	font-style: normal;
}

/* フッター */
.footer {
	padding: 40px 0 0px 0;
	/*background-color: #fff;*/
	color: #666;
	font-size: 13px;
}

.footer-container {
	display: grid;
	gap: 50px;
	justify-items: center;
}

@media (min-width: 569px) {
	.footer-container {
		grid-template-columns: auto auto;
		grid-template-rows: auto auto auto;
		gap: 20px;
	}

	.footer-container > .footer-site {
		margin-bottom: 15px;
	}

	.footer-container > *:not(.footer-sns) {
		justify-self: start;
	}
	
	.footer-container > .footer-sns {
		grid-column: 2;
		grid-row: 1 / 4;
		justify-self: end;
		align-self: center;
	}
}


/* フッター：SNSメニュー */
.footer-sns {
	display: flex;
	gap: 24px;
	font-size: 24px;
}

.footer-sns a {
	display: grid;
	place-items: center;
	width: 36px;
	aspect-ratio: 1 / 1;
	background-color: #cccccc;
	color: #ffffff;
	clip-path: circle(50%);
}

@supports not (aspect-ratio: 1 / 1) {
	.footer-sns a {
		height: 36px;
	}
}


/* フッター：テキストメニュー */
.footer-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 15px;
}
.footer-menu li a:hover{
	/*display:block;*//*初期値*/
	display:inline-block;
	text-decoration: underline;
	color: var(--accent-color2);
}

@media screen and (max-width: 568px) {

	.footer-menu {
		gap: 0%;
		margin-bottom: 30px;
	}

	.footer-menu li {
		/*line-height:1;*/
		display:inline-block;
		width: 100%;
		text-align: center;
	}
	.footer-menu li a{
		display:inline-block;
		/*width: 100%;*/
		/*background-color: #eee;*/
		padding: 10px 0px;
	}

}

.footer-copy {
	display: flex;
	justify-content: center;
	background-color: var(--accent-color2);
	align-items: center;
	height:50px;
	border-top: 4px solid var(--accent-color1);
}
.footer-copy p {
	/*color: #666;*/
	color: #fff;
}


/* 下層 */
.lowerPage-heading-decoration{
	font-size: clamp(23px, 2.4vw, 33px);
	min-height: 0vw;
	text-align:center;
	font-weight: 400;
	line-height: 1.3;
	/*color: #26a5b3;*/
	color: #444;
	margin-top: 2em;
	font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック','MS PGothic',arial,helvetica,clean,sans-serif;
}
.lowerPage-heading-decoration::after {
	display: block;
	content: '';
	width: 160px;
	height: 0px;
	border-top: solid 3px var(--main-color);
	margin-top: 0.2em;
	margin-right:auto;
	margin-left:auto;
}
.lowerPage-heading-decoration + p {
	margin-top: 0.5em;
	margin-bottom: 2em;
	color: #707070;
	text-align:center;
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
}



.entry {
	/*padding-bottom: var(--v-space);*/	/*初期値*/
	padding-bottom: var(--v-space) 0;
	/*background-color: #ffffff;*/
}

.entry-img img {
	width: 100%;
	/*max-height: 400px;*//*下層ページビジュアル*/
	object-fit: cover;
	margin-bottom: calc(var(--v-space) * 2 / 3);
}

.entry .w-container {
	max-width: 720px;
	padding: 30px 0 10px 0;
}

.entry .heading-decoration {
	font-size: clamp(30px, 6.25vw, 48px);
}

.entry-container {
	font-size: clamp(15px, 2.4vw, 16px);
	margin: 20px auto;
}

.entry-container :where(h1, h2, h3, h4, h5, h6, p, figure, ul) {
	margin-top: revert;
	margin-bottom: revert;
	padding: revert;
	list-style: revert;
}

.entry-container p {
	margin: 1.8em 0;
}

.entry-container > :first-child {
	margin-top: 0;
}

.entry-container > :last-child {
	margin-bottom: 0;
}



/* プラン */
.plans {
	padding: var(--v-space) 0;
	background-color: #fff;
}

.plans-container {
	display: grid;
	gap: 27px;
}

@media (min-width: 569px) {
	.plans-container {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* プラン：カード */
.plan {
	display: flex;
	flex-direction: column;
	padding: 15px 20px;
	border-radius: 15px;
	background-color: #ffffff;
}

.plan h4 {
	margin-bottom: 10px;
	font-family: "Montserrat", sans-serif;
	font-size: 19px;
	font-weight: 400;
	color: #bf628a;
	border-top: 3px double #84ccb4;
	border-bottom: 3px double #84ccb4;
}

.plan .desc {
	margin-bottom: 15px;
	font-size:15px;
	line-height:1.4;
}

.plan .price {
	margin-top: auto;
	margin-bottom: 5px;
	font-size: 25px;
	/*font-weight: bold;*/
	font-family: Arial, "Montserrat", sans-serif;
}

.plan .btn {
	width: auto;
}
