@charset "UTF-8";
/* CSS Document */
*,
*::before,
*::after{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/*border: 1px solid #000;*/
	/*background-color: aquamarine;*/
}


/*// <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name*/

.roboto- {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

/*// <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name*/

.noto-sans-jp-{
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}



/* モバイル（デフォルト） */
body {
  font-size: clamp(14px,1.2vw ＋ 12px, 16px);
  background: #fff;
}


img{
	/*box-sizing: border-box;*/
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	display: block;
}

header{
	position: relative;
	z-index: 1000;
}


h1{
	display: none;
}

.container{
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
}


.border-radius{
	background-color: #fff;
	height: auto;
	border-radius: 0 0 320px 320px;
	box-shadow: 5px 5px 10px rgba(0,0,0,.15);
	padding-bottom: 100px;
	position: relative;
	z-index: 2;
}

@media(min-width:768px){
	.border-radius{
		height: auto;
		border-radius: 0 0 700px 700px;
		box-shadow: 10px 10px 20px rgba(0,0,0,.15); 
	}
}

.mein-visual{
	position: relative;
}

.mein-visual picure > img{
	aspect-radio:16/9;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.mein-visual img{
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.site-header{
	position: relative;
/*	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 24px;*/
}


@media(min-width:768px){
	.site-header{
		position: static;
		top: auto;
	}
}

.menu-fab{
	position:absolute;
	top:24px; 
	right:20px;
	width:80px; 
	height:80px;
	display:grid; 
	place-items:center;
	cursor: pointer;
	border: none;
	background: transparent;
	padding: 0;
	appearance: none;
	-webkit-appearance: none;
}


@media(min-width:768px){
	.menu-fab{
		display: none !important;
	}
}


.menu-fab img{
	width: 100%;
	height: auto;
	display: block;
}

.drawer{
	position: fixed;
	inset: 0 0 0 auto;
	width: 78vw;
	max-width: 340px;
	height: 100vh;
	background-image: url("../images/drawer-background.png");
	background-size: cover;
	box-shadow: -8px 0 24px rgba(0,0,0,.15);
	transform: translateX(100%);
	transition: transform .45s ease;
	will-change: transform;
	z-index: 1100;
	padding: 0;
	overflow-y: auto;
	opacity: 0;/*opacityで透明に、PC幅からスマホ幅にするときに見えるdrawerを透明に*/
}


.drawer.open{
	transform: translateX(0);
	/*display: block;*/
	opacity: 100%;
}

@media(min-width:768px){
	.drawer{
		/*display: block;*/
		opacity: 100%;
	}
}

.drawer__List{
	list-style: none;
	margin: 40px 0 0;
	padding: 0;
}


.drawer__image{
	width: 260px;
	margin: 140px auto 40px 24px;
}

@media(min-width:768px){
	.drawer__image{
		display: none;
	}
}


.drawer__List li{
	padding: 10px 10px;
	text-align: center;
	
}

.drawer__List a{
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	transition: .5s;
}

.drawer__List a[aria-current="page"]{
	opacity: .9;
	position: relative;
}

.drawer__List a[aria-current="page"]::after{
	content: "";
	position: absolute;
	left: 50%;
	bottom: -6px;
	width: 28px;
	height: 2px;
	transform: translateX(-50%);
}

.drawer__List a:hover{
	color: yellowgreen;
	text-decoration: underline;
	text-decoration-color: yellowgreen;
	
}


.drawer__close{
	position:absolute;
	top:24px; 
	right:20px;
	width:80px; 
	height:80px;
	display:grid;
	place-items:center;
	cursor: pointer;
	border: none;
	background: transparent;
	padding: 0;
	appearance: none;
	-webkit-appearance: none;
}

.drawer__close img{
	height: auto;
	display: block;
}

.drawer__close:hover img path{
	stroke:#333;
}


@media(min-width:768px){
	.drawer{
		/*width: 40vw;
		max-width: 600px;*/
		position: absolute;
		inset: center;
		transform: none;
		width: auto;
		max-width: none;
		height: auto;
		box-shadow: none;
		padding: 48px;
		margin: 0;
		overflow: visible;
		background: transparent;
		transition: none !important;
	}
	
	.drawer.open{
		transform: none;
	}
	
	.drawer__close{
		display: none;
	}
	
	.backdrop{
		display: none !important;
	}
	
	.drawer__List{
		display: flex;
		gap: 24px;
		margin: 0;
		align-items: center;
		justify-content: flex-start;
		list-style: none;
		flex-wrap: wrap;
	}
	
	.drawer__List li{
		padding: 0;
	}
	
	.drawer__List a{
		margin: 0;
		padding: 10px 12px;
		border: 0;
		color: #656565;
		font-size: 18px;
		text-decoration: none;
	}
	
	.drawer__List a:hover{
		color: #ed4027;
		background-color: #EEEEEE;
		border-radius: 10px 1px 10px 1px;
		transition: .5s;
		text-decoration: none;
	}
}


.backdrop{
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.35);
	backdrop-filter: blur(1px);
	z-index: 900;
	opacity: 0;
	transition: opacity .3s ease;
	pointer-events: none;
}

.backdrop.show{
	opacity: 1;
	pointer-events: auto !important;
}

.v-copy{
	position:absolute;
	right:30px;
	top:66px;
}

@media(min-width:1024px){
	.v-copy{
		right: 280px;
	}
}

.v-copy img{
	width: 180px;
}

@media(min-width:1024px){
	.v-copy img{
		width: 260px;
	}
}

.logo{
	text-align: center;
	align-items: center;
	justify-content: center;
}

@media(min-width:768px){
	.logo{
		text-align: center;
		align-items: center;
		justify-content: center;
	}
}

.logo img{
	width: 400px;
	margin-top: -100px;
	display: inline-block;
}

@media(min-width:768px){
	.logo img{
		width: 600px;
		
	}
}



.benefit{
	display: flex;
	max-width:  90%;
	margin: 50px auto 20px auto;
	justify-content: center;
	align-items: center;
}

@media(min-width:768px){
	.benefit{
		/*padding: 80px 0 20px 0;*/
		max-width:  960px;
	}
}

.caffeine{
	width: 240px;
	height: auto;
}

@media(min-width:768px){
	.caffeine{
		width: 280px;
		height: auto;
	}
}

.maideinjapan{
	width: 240px;
	height: auto;
}

@media(min-width:768px){
	.maideinjapan{
		width: 280px;
		height: auto;
	}
}


.flavor{
	width: 240px;
	height: auto;
}

@media(min-width:768px){
	.flavor{
		width: 280px;
		height: auto;
	}
}


.ganba h3{
	width: 200px;
	margin: 0 auto;
	padding: 56px 0 40px 0;
}

@media(min-width:768px){
	.ganba h3{
		width: 300px;
	}
}

.shuuwa-drink{
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}


.shuuwa-drink img{
	width: 700px;
	
}


@media(min-width:768px){
	.shuuwa-drink img{
		width:1000px; 
	}
}


.huwatto{
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 340px;
}

@media(min-width:768px){
	.huwatto{
		width: 520px;
	}
}


.huwatto img{
	width: 100%;
}


.card__text{
	margin-top: 90px;
	justify-content: center;
	display: flex;
}


.card__text img{
	width: 600px;
}


@media(min-width:768px){
	.card__text img{
		width: 800px;
	}
}


.if{
	/*background-image: url("../images/moyamoya-back-sp.png");*/
	margin-top: -200px;
	padding: 100px 0 20px;
	width: auto;
	position: relative;
	z-index: 1;
}


.if::before{
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image: url("../images/moyamoya-back-sp.png");
}


@media(min-width:768px){
	.if::before{
		background-image: url("../images/moyamoya-back.png");
		padding: 10px 0;
		margin-top: -360px;
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}


.card{
	justify-content: center;
	padding-top: 40px;
	padding-bottom: 80px;
}


.card__image{
	width: 100%;
	height: auto;
}


@media(min-width:768px){
	.card__image{
		width: 100%;
		height: auto;
	}
}


.v-line{
	position: relative;
	z-index: 10;
	pointer-events: none;
	width: 2px;
	height: 80px;
	background-color: #ED4027;
	margin: -40px auto;
}


@media(min-width:768px){
	.v-line{
		width: 4px;
		height: 100px;
	}
}

.lineup h5{
	margin-top: 80px;
}

.gallery__slider .slick-slide{
	max-width: 100%;
	margin: 8px 30px;
	border-radius: 4px;
	padding: 0;
}


.gallery__slider img{
	width: 670px;
	height: auto;
	margin: 64px 0;
	/*aspect-ratio: 16/9;*/
	object-fit: cover;
	
}

/*ulの最後のliの中のimgのみを指す*/
.gallery__slider li:last-child img{
	margin: 0;
}

@media(min-width:768px){
	.gallery__slider img{
		width: 500px;
		margin: 24px 0;
	}
}


.slider-reserved{
	min-height: clamp(280px,40vw,520px);
}


h5{
	font-family: "Roboto", sans-serif;
	color: #ED4027;
	font-size: 40px;
	text-align: center;
	/*margin-top: 60px;*/
	/*margin-bottom: 60px;*/
	letter-spacing: .4rem;
}


@media(min-width:768px){
	h5{
		font-size: 60px;
	}
}


.item{
	font-size: 14px;
	display: block;
	/*margin: -10px;*/
}

@media(min-width:768px){
	.item{
		font-size: 20px;
}
}


.faq{
	background-image: url("../images/faq-background.png");
	padding: 56px 0;
	margin:  100px 0;
	background-position: center;
	background-attachment: fixed;
}

.faq .container{
	max-width: 600px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}


.faq-span{
	font-size: 14px;
	display: block;
	/*margin: -10px;*/
}

@media(min-width:768px){
	.faq-span{
		font-size: 20px;
}
}



.faq-item{
	margin: 28px;
	border-radius: 20px 4px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}


.faq-question{
	width: 100%;
	padding: 28px 20px;
	font-size: 16px;
	color: #353535;
	font-family: "Noto Sans JP", sans-serif;
	border: none;
	background: #fff;
	display: flex;/*中の子要素を整理するためのものなので、一つでも使える*/
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}

.q-mark{
	font-weight: bold;
	font-size: 20px;
	color: #ed4027;
	margin-right: 12px;
}

.q-text{
	flex: 1;
	text-align: left;
	padding: 0 20px;
}

.toggle-icon{
	position: relative;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	color: #ed4027;
}


.toggle-icon::before,
.toggle-icon::after{
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	background: currentColor;
	border-radius: 1px;
	transition: transform .45s cubic-bezier(.19,1,.22,1),opacity .45s ease;	
}


/*横棒*/
.toggle-icon::before{
	width: 18px;
	height: 2px;
	transform: translate(-50%,-50%) scaleY(1);
}

/* 縦棒（＋の縦線。初期は表示） */
.toggle-icon::after{
	width: 2px;
	height: 18px;
	transform: translate(-50%,-50%) scaleY(1);
}



/*開いた時　縦棒が消える＝マイナスに*/
.faq-item.open .toggle-icon::after{
	transform: translate(-50%,-50%) scaleX(0);
	opacity: 0;
}

/* 答え部分：ふわっと開く */
.faq-answer{
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	padding: 0 20px;
	font-size: 14px;
	color: #353535;
	line-height: 1.6;
	border-top: 1px solid #eee;
	transition: 
		max-height .6s ease,
		padding .6s ease,
		opacity .45s ease;
	will-change: max-height, opacity, padding;
}

/* 開いたとき */

.faq-item.open .faq-answer{
	max-height: 600px;
	opacity: 1;
	padding: 30px 20px 30px;
}


.bnr{
	max-width: 640px;
	height: auto;
	margin: 0 auto;
}

.youtube{
	margin: 0 auto;
	padding: 40px 0;
}


.mediaCard{
	display: block;
	justify-content: center;
	align-items: center;
}


.commercial{
	font-size: 14px;
	display: block;
	/*margin: -10px;*/
}

@media(min-width:768px){
	.commercial{
		font-size: 20px;
}
}

.mediaCard__image{
  margin: 40px auto;
  /*text-align: left; */             /* ← 中身（画像とテキスト）を中央寄せ */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  
}

.mediaCard__image img{
  display: block;                  /* ← 余白制御しやすく */
  width: 100%;                     /* ← 画面幅に追従 */
  max-width: 460px;                /* ← モバイル上限 */
  height: auto;
  margin: 0 auto;                  /* ← 画像自体も中央に */
}

@media (min-width: 768px){
  .mediaCard__image img{
    max-width: 760px;              /* ← タブレット以上の上限 */
  }
}

.mediaCard__image p{
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  margin-top: 16px;                 /* ← 画像とキャプションの間隔 */
  /* text-align: center;           ← 親に指定したので不要 */
}


.share{
	margin-bottom: 20px;
}


@media(min-width:768px){
	.share{
		font-size: 60px;
	}
}

.sns{
	margin: 72px 0 140px;
}

.sns-icons{
	display: flex;
	gap: 32px;
	justify-content: center;
	margin: 0 auto;
}

@media(min-width:768px){
	.sns-icons{
		gap: 48px;
	}
}

.instagram img{
	width: 48px;
	height: auto;
	transition: opacity .3s ease;
}

@media(min-width:768px){
	.instagram img{
		width: 58px;
	}
}

.instagram:hover{
	opacity: 0.7;
}


.threads img{
	width: 42px;
	height: auto;
	transition: opacity .3s ease;	
}

@media(min-width:768px){
	.threads img{
	width: 52px;
	}
}


.threads:hover{
	opacity: 0.7;
}


.footer__logo{
	height: 150px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.footer__logo img{
	width: 240px;
}



.footer__ul{
	padding-bottom: 64px;
}


.footer__ul ul{
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}


.footer__ul a{
	padding: 0 20px;
	text-decoration: none;
	color: #585858;
	font-size: 16px;
	border-left: 1px solid #585858;
	border-right: 1px solid #585858;
	margin-left: -1px;
}


.footer__top{
	/*background-color: #e3e3e6;*/
	/*padding: 16px 0 28px;*/
}


.footer__nami{
	position: relative;
	z-index: 20;
	color: #fff;
	text-align: center;
}

.footer__p{
	position: absolute;
	bottom: 4px;
	left: 40px;
	right: 40px;
}

footer{
	background-image: url(../images/footer_sp.png);
    background-position: top 4px;
    background-repeat: no-repeat;
    background-size: cover;
    height: 282px;
}

@media(min-width:768px){
	footer{
		background-image: url("../images/footer.png");
		/*height: 300px;*/
	}
}


/* ===========================
   スクロールアニメーション用
   =========================== */

.fadein{
	pointer-events: none;
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.8s ease-out;
	will-change: opacity,transform;
	
}

.fadein.show{
	pointer-events: auto;
	opacity: 1;
	transform: translateY(0);
}



/* 幅切り替えの瞬間だけアニメを殺す用（要素自身に付ける） */
.drawer.no-anim,
.backdrop.no-anim {
  transition: none !important;
}


.bnr{
    /*margin-top: 24px;
    margin-bottom: 72px;*/
	margin: 24px auto 72px;
}

.bnr a:hover{
    opacity: .6;
}

/* このスライダーだけ矢印を消す */
.gallery__slider .slick-arrow,
.gallery__slider .slick-arrow::before {
  display: none !important;
  content: none !important;
  border: 0 !important;
}

.card__image{
	background-image: url("../images/moyamoya-sp-back.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

@media(min-width:768px){
	.card__image{
		background-image: url("../images/moyamoya.png");
		background-size: contain;
		background-position: top -16px center;
	}
}


