@charset "UTF-8";

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

body {
    margin: 0;
    background-color: #ffffff;
    color: #613812;
    font-family: sans-serif;
}

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

p {
	line-height: 1.8;
}

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

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

#home{
 text-decoration: underline;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
}


/* 横幅と左右の余白 */
.w-container {
	/*width: min(92%, 1166px);*/
	width: min(92%, 1200px);
	margin: auto;
	position: relative;
}

/* ヘッダー */
.header {
    height: 100px;
    background-color: #f5d422;
}

.header img {
    display: block;
    /* max-width: 100%; */
    height: auto;
    width: 50px;
    margin-top: 50px;
    margin-bottom: 30px;
}


.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

/* ナビゲーションボタン */
.header .site img {
    display: block;
    /* max-width: 100%; */
    height: auto;
    margin-left: 0px;
    margin-top: 50px;
    margin-bottom: 50px;
    /*width: 100%;*/
	width: 50%;
}

/* タブレット　ナビゲーションボタン トップ画像*/
@media only screen and (min-width:479px) and (max-width:820px) {
.header .site img {
    display: block;
    /* max-width: 100%; */
    height: auto;
    /* width: 300px; */
    margin-top: 50px;
    margin-bottom: 50px;
    /*width: 100%;*/
	width: 60%;
}
}



/* ナビゲーションボタン */
.navbtn {
	padding: 0;
	outline: none;
	border: none;
	background: transparent;
	cursor: pointer;
	color: #aaaaaa;
	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: 768px) {
	.navbtn {
		display: none;
	}
}


.nav img{
	width: 150px;
}

.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #e55a27;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #3584bb;
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #3584bbdb;
    transition: all 0.5s;/*アニメーション設定*/
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}

/* ナビゲーションメニュー：PC */
@media (min-width: 768px) {
	.nav ul {
		display: flex;
		gap: 15px;
		color: #707070;
	}
}

@media screen and (max-width:880px) {
.nav ul {
    /*display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 85%;
    width: 80%;
    gap: 0px;
    margin: auto;
    color: #ffffff;*/
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 40px;
    color: #ffffff;

}
}

@media (min-width: 768px) {
.nav2 ul {
    display: flex;
    gap: 53px;
    /* color: #707070; */
    /* margin: 0 auto; */
    font-size: 100px;
    padding: revert;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    margin-bottom: 50px;
}

.nav2 ul img {
    width: 100%;
    /* padding: 5px 30px; */
    margin: 25px 10px;
}
}

@media screen and (max-width:880px) {
.nav2 ul {
    display: flex;
    gap: 24px;
    font-size: 24px;
	margin: 20px;
}
}

/* ヒーロー */
.hero {
	height: 1000px;
	background-image: url(img/hero.jpg);
	background-position: center;
	background-size: cover;
}

@media screen and (max-width:880px) {
.hero {
    width: 100%;
    height: 240px;
    background-image: url(img/hero.jpg);
    /* background-position: center; */
    background-size: cover;
}	
}

@media only screen and (min-width:479px) and (max-width:820px) {
.header .site img {
    display: block;
    /* max-width: 100%; */
    height: auto;
    /* width: 300px; */
    margin-top: 50px;
    margin-bottom: 50px;
    /*width: 100%;*/
	width: 60%;
}
.hero {
    width: 100%;
    height: 500px;
    background-image: url(img/hero.jpg);
    /* background-position: center; */
    background-size: cover;
}
}

.hero-container {
	display: grid;
	justify-items: center;
	align-content: center;
	height: 100%;
}

.hero h1 {
	margin-bottom: 42px;
	font-family: "Montserrat", sans-serif;
	font-size: clamp(48px, 5vw, 68px);
	min-height: 0vw;
	font-weight: 400;
	line-height: 1.3;
	text-align: center;
	color: #ed1e79;
}

.hero p {
	margin-bottom: 72px;
}

/* ボタン */
.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;
	background-color: #ffffff;
}

/*.imgtext-sns {
    background-color: #3eafe5;
}*/

.imgtext-sns {
    /* padding: var(--v-space) 0; */
    /* background-color: #3eafe5; */
    /* width: 90%; */
    /*padding: 10px 250px;*/
	padding: 20px 400px;
}

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

.imgtext-container {
	display: flex;
	flex-direction: column;
	gap: clamp(45px, 6vw, 80px);
}

.imgtext-container > .text {
		flex: 1;
		/*min-width: 28em;*/
 		min-width: 30em;
  	}

@media screen and (max-width:880px) {
.imgtext-container > .text {
		flex: 1;
		min-width: 21em;
  	}
}


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

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

.imgtext-1 {
    /* padding: var(--v-space) 0; */
    background-color: #f5d220;
    padding: 3em 1em 1em;
}

.imgtext-1 img {
    margin: 0 auto 40px;
}

.imgtext-1 p {
    margin-top: 1em;
    margin-bottom: 2em;
    color: #5f3813;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
}

.imgtext-2 {
    /* padding: var(--v-space) 0; */
    /* background-color: #ffffff; */
    background: rgb(245,212,31);
    background: linear-gradient(180deg, rgba(245,212,31,1) 35%, rgba(255,255,255,1) 100%);
    margin-bottom: 100px;
}


@media screen and (max-width:480px) {
.imgtext-2 {
    /* padding: var(--v-space) 0; */
    /* background-color: #ffffff; */
    background: rgb(245,212,31);
    background: linear-gradient(180deg, rgba(245,212,31,1) 35%, rgba(255,255,255,1) 100%);
    /* margin-bottom: 100px; */
}
}


.imgtext-2 img {
    /*margin-top: -50px;*/
}

.imgtext-3 {
    /*padding: var(--v-space) 0;*/
    /* background-color: #ffffff; */
    background: linear-gradient(0deg, rgba(245,212,31,1) 35%, rgba(255,255,255,1) 100%);
}



/* youtube */
.item-movie {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.item-movie iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

/* タイトルとサブタイトル（赤色の短い線で装飾） */
.heading-decoration {
    font-size: clamp(30px, 3vw, 40px);
    min-height: 0vw;
    font-weight: 400;
    margin-bottom: 30px;
    width: 130%;
    margin-top: 80px;
}

@media screen and (max-width:880px) {
.heading-decoration {
    font-size: clamp(30px, 3vw, 40px);
    min-height: 0vw;
    font-weight: 400;
    margin-bottom: 30px;
    width: 100%;
    margin-top: 80px;
}
}

/*.heading-decoration::after {
	display: block;
	content: '';
	width: 160px;
	height: 0px;
	border-top: solid 1px #b72661;
	margin-top: 0.6em;
}*/

.heading-decoration + p {
    margin-top: 1em;
    margin-bottom: 2em;
    color: #5f3813;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
}

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

.posts-1 {
    padding: var(--v-space) 0;
    /* background-color: #f3f1ed; */
    background: linear-gradient(0deg, rgb(225 255 255) 35%, rgba(255,255,255,1) 100%);
}
.posts-2 {
    padding: var(--v-space) 0;
    /* background-color: #f3f1ed; */
    background: linear-gradient(180deg, rgb(225 255 255) 35%, rgba(255,255,255,1) 100%);
}

.post-sns img {
    /* aspect-ratio: 1 / 1; */
    /* aspect-ratio: 3 / 2; */
    object-fit: cover;
    width: 100%;
}

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

.posts-container-sns {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* gap: 200px; */
    gap: 110px;
}


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


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

/* 記事一覧の記事 */
.post a {
	display: block;
}

.post h3 {
	margin: 1em 0 0.5em;
	font-size: clamp(12px, 2vw, 20px);
	min-height: 0vw;
}

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

.post img {
	aspect-ratio: 1 / 1;
	/*aspect-ratio: 3 / 2;*/
	object-fit: cover;
	width: 100%;
}

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

/* パーツの見出し */
.heading {
	position: absolute;
	top: calc((var(--v-space) + 0.6em) * -1);
	font-family: "Montserrat", sans-serif;
	font-size: clamp(40px, 5.2vw, 70px);
	min-height: 0vw;
	font-weight: 300;
}

.heading span {
	display: block;
	color: #666666;
	font-size: 18px;
}

.heading-1 {
    /* position: absolute; */
    /* top: calc((var(--v-space) + 0em) * -1); */
    width: auto 0 auto;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(40px, 5.2vw, 70px);
    min-height: 0vw;
    font-weight: 300;
    /* MARGIN: 0 AUTO; */
    margin-bottom: 50PX;
}

/* フッター */
.footer {
    padding: 10px 20px 50px;
    background-color: #f5d51f;
    color: #613812;
    font-size: 13px;
}

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

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

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

	.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: #3eafe5;
	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;
	gap: 20px;
}

.footer-site img {
    display: block;
	max-width: 35%;
	height: auto;
}

.footer-site-sma img {
    display: block;
    /*max-width: 40%;*/
    height: auto;
}


/* 記事 */
.entry {
	padding-bottom: var(--v-space);
	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;
}

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

.entry-container {
	font-size: clamp(16px, 2.4vw, 18px);
}

.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: #e9e5e9;
}

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

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

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

.plan h3 {
	margin-bottom: 38px;
	font-family: "Montserrat", sans-serif;
	font-size: 38px;
	font-weight: 400;
}

.plan .desc {
	margin-bottom: 38px;
}

.plan .price {
	margin-top: auto;
	margin-bottom: 22px;
	font-size: 26px;
	font-weight: bold;
}

.plan .btn {
	width: auto;
}


/*フォント装飾
-------------------------------------*/
.gray {
	color: #595757;
}

.size70 {font-size: 70%;}
.size80 {font-size: 80%;}
.size90 {font-size: 90%;}
.size110 {font-size: 110%;}
.size120 {font-size: 120%;}
.size130 {font-size: 130%;}
.size140 {font-size: 140%;}
.size150 {font-size: 150%;}
.size160 {font-size: 160%;}
.size170 {font-size: 170%;}
.size180 {font-size: 180%;}

@media screen and (max-width: 768px){
.size130 {font-size: 100%;}
}

.bold {font-weight: 800}

.mt20 {margin-top: 20px!important;}
.mt30 {margin-top: 30px!important;}
.mt40 {margin-top: 40px!important;}
.mt100 {margin-top: 100px!important;}

.mb-50 {margin-bottom: -50px!important;}
.mb20 {margin-bottom: 20px!important;}
.mb30 {margin-bottom: 30px!important;}
.mb50 {margin-bottom: 50px!important;}
.mb80 {margin-bottom: 80px!important;}
.mb100 {margin-bottom: 100px!important;}


/*改行
-------------------------------------*/
/*PCでは無効（改行しない）*/
.sma{
    display: none;
}

/*スマートフォンでは有効（改行する）*/
@media screen and (max-width:880px) {
    .sma{
        display: block;
    }
}

/*スマホでは無効（改行しない）*/
.pc{
        display: block;
}

/*スマートフォンでは有効（改行する）*/
@media screen and (max-width:880px) {
    .pc{
   display: none;
    }
}

/*非表示
-------------------------------------*/
.display-none{
 display:none;
}

/*ページトップボタン
-------------------------------------*/
.pagetop {
 height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #ffffffad;
    border: solid 0px #ed207a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 10px solid #ed207a80;
    border-right: 10px solid #f99abd;
	transform: translateY(20%) rotate(-45deg);
}

.insta_list{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.insta_list li{
    position: relative;
    width: calc((100% - 40px)/3);
}

@media screen and (max-width: 750px){
    .insta_list li{
        width: calc((100% - 20px)/2);
    }
}

.insta_list li::before{
	content: "";
	display: block;
	padding-top: 100%;
}

.insta_list a{
	position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.insta_list img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insta_btn{
    background-color: #000;
    padding: .5em 1em;
    width: fit-content;
    margin: 0 auto;
    cursor: pointer;
    transition: .3s
}

.insta_btn a{
    color: #fff;
    text-decoration: none;
}

.insta_btn:hover{
    background-color: #999;
}

.wrap{
    margin-bottom: 1.5rem;
  }
  .youtube {
    position: relative;
    height: 0;
    margin-bottom: 20px;
    padding-bottom: 56.25%;
    overflow: hidden;
  }
  .youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
  .wrap img{
    width: 100%;
  }
   
  /* ココから下がPC表示（600px以上）のレイアウト */
  @media screen and (min-width: 600px) {
    .float-right{
      float: right;
      width: 49.5%;
    }
    .float-left{
      float:left;
      width: 49.5%;
    }
    .wrap:after{
      display: block;
      clear: both;
      content: "";
    }
  }
  