@charset "utf-8";
/*
Theme Name: tetote kitchen
Version: 1.0
Author: 名前
*/

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body .pc {
	display: none;
}

@media screen and (min-width: 1024px) {
	body .sp {
		display: none;
	}

	body .pc {
		display: block;
	}
}

p {
	margin-block-end: 0 !important;
}

[type=button],
[type=submit],
button {
	border: none !important;
	font-size: 0 !important;
}


[type=button]:focus,
[type=button]:hover,
[type=submit]:focus,
[type=submit]:hover,
button:focus,
button:hover {
	background-color: inherit !important;
}

/* ----------------------------------------------------
    共通
---------------------------------------------------- */

body {
	font-family: "M PLUS Rounded 1c", sans-serif !important;
	font-weight: 500;
	line-height: 1.6;
	font-size: 16px;
	color: #6E5B20;
	overflow-x: clip;
}

img {
	width: 100%;
	height: auto;
}

/* 1. サイト全体のスクロールを滑らかにする */
html {
	scroll-behavior: smooth;
}

/* 2. セクションごとの余白を設定（ここ！） */
section {
	scroll-margin-top: 160px;
}

.section-title {
	position: relative;
	text-align: center;
	width: fit-content;
	margin: 0 auto 30px;
}

.title-circle {
	width: 220px;
	display: block;
}

.section-title-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	white-space: nowrap;
	font-size: 18px;
	font-weight: 800;
}


@media screen and (min-width: 768px) {
	.title-circle {
		width: 320px;
		margin-bottom: 60px;
	}

	.section-title-text {
		font-size: 24px;
	}
}

@media screen and (min-width: 1024px) {
	.title-circle {
		width: 500px;
		margin-bottom: 120px;
	}

	.section-title-text {
		font-size: 36px;
	}

	body {
		font-size: 20px;
	}
}

/* ----------------------------------------------------
    header
---------------------------------------------------- */
.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
}

header h1 {
	width: 106px;
}

header a.header-logo {
	text-decoration: none;
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: inherit;
	position: relative;
	padding: 8px 16px;
	background-color: #F8F7F4;
	box-shadow: 0px 0px 12px 0px rgba(128, 110, 71, 0.2);
	z-index: 999;
}

.header__nav {
	position: absolute;
	display: flex;
	right: 0;
	left: 0;
	top: 0;
	width: 100%;
	transform: translateX(100%);
	background-color: #F8F7F4;
	transition: ease .4s;
	height: 100vh;
	z-index: 998;
}

.header__nav.active {
	transform: translateX(0);
}

.header__nav ul {
	list-style: none;
}

.nav-items {
	margin: 0 auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 0;
	text-align: center;
}

.nav-items__item a {
	color: #6E5B20;
	font-size: 20px;
	text-decoration: none;
	letter-spacing: 2px;
	font-weight: 800;
}

.nav-items__item a:hover {
	color: #6E5B20 !important;
}

.nav-items__item:last-child a:hover {
	color: #fff !important;
}

.nav-items__item:not(:last-child) {
	text-align: center;
	padding-bottom: 40px;
	white-space: nowrap;
}

.nav-items__item:last-child a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #6E5B20;
	color: #fff;
	width: 220px;
	white-space: nowrap;
	padding: 12px 24px;
	border-radius: 10px;
	text-decoration: none;
	gap: 16px;
}

.nav-items__item:last-child a img {
	width: 24px;
	height: auto;
}

.hamburger {
	position: relative;
	width: 20px;
	height: 48px;
	background-color: #F8F7F4;
	border-radius: 100px;
	cursor: pointer;
	border: none;
	z-index: 999;
}

.hamburger .span {
	height: 100%;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
	display: block;
	display: flex;
	width: 100%;
}

.hamburger .span>span {
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 1.5px;
	background-color: #6E5B20;
	transition: transform 0.4s ease, opacity 0.4s ease;
}

.hamburger .span>span:nth-child(1) {
	top: 36%;
}

.hamburger .span>span:nth-child(2) {
	top: 50%;
}

.hamburger .span>span:nth-child(3) {
	top: 64%;
}

.hamburger.active .span>span:nth-child(1) {
	top: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
}

.hamburger.active .span>span:nth-child(2) {
	opacity: 0;
}

.hamburger.active .span>span:nth-child(3) {
	top: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}


/* 768pxから1023pxの間だけの設定 */
@media screen and (min-width: 768px) and (max-width: 1023px) {
	.header__nav {
		/* スマホと同じ見た目（全画面表示など）にするための設定 */
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: rgba(255, 255, 255, 0.9);
		/* スマホ版と同じ背景色に */
		display: none;
		/* 最初は隠す */
	}

	/* ボタンを押してactiveがついたら表示！ */
	.header__nav.active {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.hamburger {
		display: block;
		/* ボタンは確実に出しておく */
	}
}

@media screen and (1024px <=width) {
	.header__nav {
		position: static;
		transform: initial;
		background-color: inherit;
		height: inherit;
		display: flex;
		justify-content: end;
		width: 100%;
	}

	.nav__items {
		width: 100%;
		display: flex;
		align-items: center;
		height: initial;
		justify-content: flex-end;
		gap: 40px;
	}

	header h1 {
		width: 170px;
	}

	.nav-bg {
		display: none;
	}

	.nav-items {
		position: inherit;
		top: 0;
		left: 0;
		transform: translate(0, 0);
	}

	.nav-items__item:not(:last-child) {
		padding-bottom: 0;
	}

	.nav-items__item a {
		width: 100%;
		display: block;
		border-top: none;
		padding-top: 0px;
		margin-top: 0px;
		padding-left: 0%;
		color: #6E5B20;
		font-size: 16px;
		text-decoration: none;
		/* letter-spacing: 2px; */
		font-weight: 500;
	}

	.nav-items__item:last-child a {
		width: auto;
	}

	.nav-items__item a:hover {
		opacity: 0.7;
	}

	.hamburger {
		display: none;
	}

	.header__inner {
		padding: 32px;
	}
}

/* ----------------------------------------------------
    メインビジュアル
---------------------------------------------------- */
.mv {
	position: relative;
}

/*
.mv-img {
	padding-top: 64px;
}*/

.mv-img img {
	width: 100%;
	height: 110vh;
	object-fit: cover;
	object-position: 51% 0%;
}

.mv-text {
	position: absolute;
	top: 13%;
	left: 5%;
	color: #806E47;
}

.mv .main-copy {
	font-size: 28px;
	margin-bottom: 8px;
	letter-spacing: 0.05em;
	font-weight: 800;
	line-height: 1.35;
}

.mv .sub-copy {
	font-size: 16px;
	letter-spacing: 0.05em;
}

.sp {
	display: none;
}

@media (max-width: 767px) {
	.sp {
		display: inline;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.mv {
		text-align: center;
	}

	/*
	.mv-img {
		padding-top: 64px;
	}
*/

	.mv-text {
		top: 20%;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
	}

	.mv .main-copy {
		font-size: 40px;
	}

	.mv .sub-copy {
		font-size: 20px;
	}
}

@media screen and (min-width: 1024px) {
	.mv {
		text-align: center;
	}

	.mv-img {
		padding-top: 80px;
	}

	.mv-text {
		top: 23%;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
	}

	.mv .main-copy {
		font-size: 48px;
	}

	.mv .sub-copy {
		font-size: 24px;
	}
}

/* ----------------------------------------------------
    追従ボタン
---------------------------------------------------- */
.floating-btn {
	position: fixed;
	width: 36%;
	right: 0;
	bottom: 56px;
	z-index: 991 !important;
	max-width: 262px;
}

.floating-btn:hover {
	opacity: 0.7;
}

/* ----------------------------------------------------
    sec01
---------------------------------------------------- */
.sec01 {
	background-image: url(./images/tetotekitchen/background1.png);
	background-size: 170% 100%;
	background-position: center top;
	background-repeat: no-repeat;
	margin-top: -151px;
	z-index: 990;
	position: relative;
	padding-top: 40%;
	padding-bottom: 60%;
}

.sec01 h2 {
	font-size: 18px;
	font-weight: 800;
	text-align: center;
	margin: 20px 0px;

	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	text-align: center;
	line-height: 1.6;
}

.sec01 ul {
	width: fit-content;
	/* 中身の幅に合わせる */
	margin: 0 auto;
	/* 中央に寄せる */
	padding: 0;
}

.sec01 h2::before,
.sec01 h2::after {
	content: "";
	display: block;
	flex-shrink: 0;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.sec01 h2::before {
	width: 33px;
	height: 36px;
	background-image: url('./images/tetotekitchen/illust1.png');
}

.sec01 h2::after {
	width: 47px;
	height: 33px;
	background-image: url('./images/tetotekitchen/illust2.png');
}

.sec01 ul li {
	font-size: 15px;
	list-style: none;
	padding-left: 1.5em;
	/* アイコン分の余白 */
	text-indent: -1.2em;
	margin-bottom: 8px;
	text-align: left;
}

.sec01 ul li span {
	font-weight: 800;
}

.sec01 ul li::before {
	margin-right: 4px;
	position: relative;
	content: "";
	background-image: url('./images/tetotekitchen/dot1.png');
	display: inline-block;
	width: 10px;
	height: 9px;
	background-position: center;
	background-size: contain;
}

@media (500px <=width <=768px) {
	.sec01 h2 {
		font-size: 24px;
	}

	.sec01 ul li {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.sec01 ul li::before {
		margin-right: 5px;
		width: 11px;
		height: 10px;
	}

	.sec01 {
		padding: 30% 10% 44%;
		background-size: 140% 100%;
		margin-top: -25%;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.sec01 h2 {
		font-size: 28px;
	}

	.sec01 ul li {
		font-size: 18px;
		margin-bottom: 12px;
	}

	.sec01 ul li::before {
		margin-right: 6px;
		width: 12px;
		height: 11px;
	}

	.sec01 {
		padding: 20% 10% 30%;
		background-size: 120% 100%;
		margin-top: -20%;
	}

}

@media screen and (min-width: 1024px) {
	.sec01 h2 {
		font-size: 36px;
	}

	.sec01 ul {
		margin: 0 auto;
		width: 800px;
	}

	.sec01 ul li {
		font-size: 24px;
		margin-bottom: 16px;
	}

	.sec01 ul li::before {
		margin-right: 10px;
		width: 16px;
		height: 15px;
	}

	.sec01 {
		padding: 24% 17% 30%;
		background-size: 110% 100%;
		margin-top: -18%;
	}

}

/* ----------------------------------------------------
    sec02
---------------------------------------------------- */
.sec02 {
	padding: 24px 10px 100px;
	background-color: #F6F1DF;
	margin-top: -2%;
}

.sec02-text {
	font-size: 17px;
	font-weight: 800;
	position: relative;
	display: block;
	padding: 0px;
	width: fit-content;
	margin: 0 auto;
	text-align: center;
}

.sec02-text::before {
	content: "";
	position: absolute;
	top: 14px;
	left: -53px;
	width: 60px;
	height: 70px;
	background: url('./images/tetotekitchen/illust3.png') no-repeat center/contain;
}

.sec02-text::after {
	content: "";
	position: absolute;
	bottom: -10px;
	right: -40px;
	width: 48px;
	height: 90px;
	background: url('./images/tetotekitchen/illust4.png') no-repeat center/contain;
}

.circle-sp {
	display: block;
	width: 100%;
	max-width: 640px;
	margin: 30px auto 0;
}

.circle-pc {
	display: none;
}

.sec02-lead {
	font-size: 20px;
	margin: 0 auto;
	text-align: center;
	margin-top: -16px;
}

.sec02-lead .marker {
	display: inline-block;
	background: linear-gradient(transparent 50%, #F6E496 50%);
}

.sec02-lead .bold {
	font-weight: 800;
}

.pc {
	display: none !important;
}

@media screen and (min-width: 500px) and (max-width: 1023px) {
	.sec02 {
		padding: 24px 10px 160px;
	}

	.sec02-text {
		font-size: 24px;
	}

	.sec02-text::before {
		top: 20px;
		left: -70px;
		width: 80px;
		height: 90px;
	}

	.sec02-text::after {
		right: -50px;
		width: 60px;
		height: 110px;
	}

	.sec02-lead {
		font-size: 28px;
		margin-top: -20px;
	}
}

@media screen and (min-width: 700px) and (max-width: 1023px) {
	.sec02 {
		padding: 24px 10px 200px;
	}
}

@media screen and (min-width: 1024px) {
	.pc {
		display: block !important;
		/* ここでPCの時だけ改行を復活させる */
	}

	.sec02 {
		padding: 48px 10px 48px;
	}

	.sec02-text {
		font-size: 36px;
	}

	.circle-sp {
		display: none;
	}

	.circle-pc {
		width: 70%;
		max-width: 996px;
		display: block;
		margin: 80px auto 0;
	}

	.sec02-text::after {
		bottom: 8px;
		right: -90px;
		width: 100px;
		height: 120px;
	}

	.sec02-text::before {
		top: 44px;
		left: -105px;
		width: 96px;
		height: 130px;
	}

	.sec02-lead {
		position: relative;
		font-size: 43px;
		margin: 0 auto;
		text-align: center;
		top: -400px;
	}

}


/* ----------------------------------------------------
    セクション区切りの雲
---------------------------------------------------- */
.cloud-wrapper {
	width: 100%;
	overflow: hidden;
	position: relative;
	z-index: 10;
}

.cloud-wrapper.is-overlap1 {
	margin-top: -50px;
}

.cloud-wrapper.is-overlap2 {
	margin-top: -80px;
}

.sec-divider {
	display: block;
	width: 120%;
	max-width: none;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

.sec-divider--reverse {
	transform: translateX(-50%) scaleY(-1);
}

.cloud-decoration {
	position: absolute;
	top: 30%;
	left: 10%;
	width: 100px;
	z-index: 2;
}

.bird1 {
	position: absolute;
	top: 24%;
	left: 65%;
	width: 100px;
	z-index: 2;
}

.umbrella {
	position: absolute;
	bottom: 15%;
	left: 65%;
	width: 100px;
	z-index: 2;
}

.sun {
	position: absolute;
	top: 20%;
	left: 10%;
	width: 100px;
	z-index: 2;
}

.flower {
	position: absolute;
	top: 10%;
	left: 72%;
	width: 18%;
	z-index: 2;
}

.sp-washhands {
	position: absolute;
	bottom: 6%;
	left: 70%;
	width: 86px;
	z-index: 2;
}

@media screen and (min-width: 500px) and (max-width: 699px) {
	.cloud-wrapper.is-overlap1 {
		margin-top: -80px;
	}
}

@media screen and (min-width: 700px) and (max-width: 1023px) {
	.cloud-wrapper.is-overlap1 {
		margin-top: -120px;
	}

	.cloud-wrapper.is-overlap2 {
		margin-top: -180px;
	}

	.cloud-decoration {
		top: 30%;
		left: 13%;
		width: 130px;
	}

	.bird1 {
		top: 16%;
		width: 120px;
	}
}

@media screen and (min-width: 1024px) {
	.cloud-wrapper.is-overlap1 {
		margin-top: -180px;
	}

	.cloud-wrapper.is-overlap2 {
		margin-top: -260px;
	}

	.cloud-decoration {
		top: 30%;
		left: 14%;
		width: 190px;
	}

	.bird1 {
		top: 16%;
		left: 70%;
		width: 170px;
	}

	.umbrella {
		bottom: 16%;
		left: 80%;
	}

	.sun {
		top: 40%;
		left: 10%;
		width: 16%;
	}

	.flower {
		top: 1%;
		left: 80%;
		width: 11%;
	}

	.sp-washhands {
		display: none;
	}
}

@media screen and (max-width: 768px) {
	.umbrella {
		width: 60px;
	}

}


/* ----------------------------------------------------
    sec03
---------------------------------------------------- */
.sec03 {
	background-color: #F8F7F4;
	padding: 0 5%;
	padding-bottom: 20px;
}

/* sec03の０１ */
.sec03-content {
	max-width: 640px;
	width: 100%;
	margin: 0 auto;
	text-align: left;
	padding-bottom: 56px;
}

/* sec03の重なる数字部分とタイトルの指定部分 */
.feature-header {
	position: relative;
	margin-bottom: 8px;
	padding-top: 25px;
}

/* sec03の重なる数字部分 */
.type-orange .feature-number {
	position: absolute;
	top: 0px;
	left: -5px;
	font-size: 80px;
	font-weight: 800;
	color: #FCDCC2;
	line-height: 0.9;
	z-index: 1;
}

.type-green .feature-number {
	position: absolute;
	top: 6px;
	left: -5px;
	font-size: 80px;
	font-weight: 800;
	color: #D3F4E1;
	line-height: 0.9;
	z-index: 1;
}

.type-blue .feature-number {
	position: absolute;
	top: 0%;
	left: -5px;
	font-size: 80px;
	font-weight: 800;
	color: #CFECF7;
	line-height: 0.9;
	z-index: 1;
}

/* sec03部分のタイトル */
.feature-title {
	position: relative;
	z-index: 2;
	font-size: 33px;
	font-weight: 800;
	margin: 0;
}

.feature-title .is-kanji {
	letter-spacing: 0.01em;
}

/* sec03のマーカー部分のタイトル */
.feature-lead {
	font-size: 16px;
	margin-bottom: 16px;
	line-height: 1.6;
}

.type-orange .feature-lead .marker {
	background: linear-gradient(transparent 40%, #FCDCC2 40%);
	font-weight: 500;
	padding: 0 2px;
}

.type-green .feature-lead .marker {
	background: linear-gradient(transparent 40%, #D3F4E1 40%);
	font-weight: 500;
	padding: 0 2px;
}

.type-blue .feature-lead .marker {
	background: linear-gradient(transparent 40%, #CFECF7 40%);
	font-weight: 500;
	padding: 0 2px;
}

/* sec03の文章 */
.feature-text {
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 16px;
	font-weight: 400;
}

.feature-img-wrap {
	width: 100%;
}

/* sec03の画像 */
.feature-img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 5px;
}

@media screen and (max-width: 480px) {
	.sec-03 {
		padding-bottom: 150px !important;
	}
}

@media screen and (min-width: 1024px) {
	.sec03-content {
		max-width: 1120px;
		display: flex;
		padding-bottom: 120px;
	}

	.sec03-content .txt {
		width: 45%;
		padding-right: 32px;
	}

	.sec03-content .feature-img-wrap {
		width: 55%;
	}

	.type-orange .feature-number {
		top: -14px;
		left: -5px;
		font-size: 100px;
	}

	.type-green .feature-number {
		top: -14px;
		left: -5px;
		font-size: 100px;
	}

	.type-blue .feature-number {
		top: -14px;
		left: -5px;
		font-size: 100px;
	}

	.feature-lead {
		font-size: 20px;
	}

	.feature-text {
		font-size: 18px;
	}
}


/* ----------------------------------------------------
    living-sec
---------------------------------------------------- */
.living-sec {
	background-color: #F8F7F4;
	position: relative;
	padding: 0 5%;
	padding-bottom: 50px;
	margin-top: -12px;
}

/* 水玉 */
.living-bg-dots {
	position: absolute;
	width: 100%;
	max-width: 500px;
	top: -70px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 0;
	pointer-events: none;
	transform: none;
}

/* 中央カラム */
.living-container {
	position: relative;
	width: 100%;
	max-width: 560px;
	z-index: 1;
	margin: 0 auto;
}

.living-title {
	font-size: 32px;
	font-weight: 800;
	line-height: 1.3;
	margin-bottom: 14px;
	letter-spacing: 0.05em;
}

.living-text {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 16px;
}

.living-img-wrap {
	margin-bottom: 28px;
}

.living-img {
	width: 100%;
	display: block;
	border-radius: 5px;
}

.living-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	max-width: 340px;
	margin: 30px auto 0;

	background-color: #6E5B20;
	color: #fff;
	text-decoration: none;
	padding: 14px 56px 14px 40px;
	border-radius: 10px;
	margin-top: 30px;
	box-sizing: border-box;
}

.living-btn:hover {
	opacity: 0.7;
}

.icon-external {
	position: absolute;
	right: 35px;
	width: 22px;
	height: 22px;
	background: url("./images/tetotekitchen/link-icon.png") no-repeat center / contain;
}

@media screen and (min-width: 768px) {
	.living-sec {
		padding-bottom: 70px;
	}
}

@media screen and (min-width: 1024px) {
	.living-sec {
		padding-bottom: 100px;
	}

	/* 全体幅をPC用に広げる */
	.living-container {
		max-width: 1080px;
		/* PC版のコンテンツ幅に合わせて調整してください */
		display: grid;
		/* 左（テキスト群）1.2 : 右（写真）1 の比率 */
		grid-template-columns: 1.2fr 1fr;
		column-gap: 40px;
		/* 左右の余白 */
		align-items: start;
		/* エリアの配置図 */
		grid-template-areas:
			"title img"
			"text  img"
			"btn   img";
	}

	/* 各要素の配置指定 */
	.living-title {
		font-size: 32px;
		font-weight: 500;
		grid-area: title;
		margin-bottom: 24px;
		text-align: left;
	}

	.living-text {
		grid-area: text;
		font-size: 18px;
		font-weight: 400;
		margin-bottom: 32px;
		line-height: 1.8;
		/* PCで見やすい行間に */
	}

	.living-img-wrap {
		grid-area: img;
		margin-bottom: 0;
		/* 下の余白をリセット */
	}

	.living-btn {
		grid-area: btn;
		font-size: 20px;
		font-weight: 500;
		margin: 0 auto;
		max-width: 455px;
		padding: 14px 72px 14px 48px;
		width: fit-content;
		margin-top: auto;
	}

	.living-btntext {
		padding: 0 16px;
	}

	/* 水玉画像をPC用に差し替える */
	.living-bg-dots {
		/* right: 0; を消して、leftもセットで書き換える */
		left: 0;
		right: 0;
		margin: 0 auto;
		/* これで左右の隙間を自動調整して中央へ */

		width: 100%;
		max-width: 1252px;
		top: -220px;
	}
}


/* ----------------------------------------------------
    sec04
---------------------------------------------------- */
.sec04 {
	position: relative;
	z-index: 1;
	padding-top: 160px;
	padding-bottom: 160px;
	background-color: #F6F1DF;
	margin-top: -90px;
}


.sec04__card {
	margin: 90px 12px 0;
	position: relative;
}

/* 丸いイラスト部分 */
.card__icon {
	width: 120px;
	height: 120px;
	background-color: #fff;
	border: 4px solid #F0C800;
	border-radius: 50%;
	position: absolute;
	top: -90px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	overflow: hidden;
}

.card__icon img {
	width: 100%;
	height: auto;
	display: block;
}

/* 四角いカード部分 */
.card__body {
	background-color: #fff;
	border: 4px solid #F0C800;
	border-radius: 15px;
	padding: 60px 24px 56px;
	text-align: left;
}

.card__title {
	font-size: 1.1rem;
	font-weight: 800;
	line-height: 1.4;
	margin-bottom: 20px;
}

.card__text {
	font-size: 0.9rem;
	font-weight: 400;
	line-height: 1.8;
	text-align: left;
}

/* ボタン（画像にある左右の三角形） */
.sec04__prev-btn,
.sec04__next-btn {
	position: absolute;
	top: 60%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background-color: transparent;
	border: none;
	cursor: pointer;
	z-index: 20;
	padding: 0;
}

.slick-prev:before,
.slick-next:before {
	content: "" !important;
}

.slick-prev,
.slick-next {
	width: 40px !important;
	height: 40px !important;
	z-index: 30 !important;
}

.slick-prev {
	left: 10px !important;
	background: url("./images/tetotekitchen/button-left.png") no-repeat center / contain !important;
}

.slick-next {
	right: 10px !important;
	background: url("./images/tetotekitchen/button-right.png") no-repeat center / contain !important;
}

@media screen and (min-width: 768px) {
	.sec04 {
		padding-top: 200px;
		margin-top: -120px;
		padding-bottom: 240px;
	}
}

@media screen and (min-width: 1024px) {
	.sec04 {
		padding-top: 260px;
		margin-top: -160px;
		padding-bottom: 270px;
	}

	.sec04__container_pc {
		display: flex !important;
		justify-content: center;
		gap: 32px;
		max-width: 1100px;
		margin: 155px auto 0;
		position: relative;
		align-items: stretch;
	}

	.sec04__card {
		flex: 1;
		max-width: none;
		margin: 0;
		display: flex;
		flex-direction: column;
	}

	.card__body {
		flex: 1;
	}
}

/* ----------------------------------------------------
    sec05
---------------------------------------------------- */
.sec05 {
	background-color: #F8F7F4;
	padding-bottom: 40px;
	padding: 0 5%;
}

.sec05-content {
	max-width: 640px;
	width: 100%;
	margin: 0 auto;
	text-align: left;
}

.Supporters-header {
	position: relative;
	margin-bottom: 8px;
}

.Supporters-title {
	position: relative;
	font-size: 27px;
	font-weight: 800;
	margin: 0;
}

.Supporters-lead {
	font-size: 16px;
	margin-bottom: 16px;
	line-height: 1.6;
}

.Supporters-text {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
	padding-bottom: 16px;
}

.Supporters-text--sub {
	text-align: center;
	font-weight: 500;
	padding-bottom: 40px;
}

.Supporters-img-wrap {
	width: 100%;
	padding-bottom: 32px;
}

.Supporters-img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 5px;
}

.type-yellow .Supporters-lead .marker {
	background: linear-gradient(transparent 40%, #F6E9AB 40%);
	font-weight: 500;
	padding: 0 2px;
}

@media screen and (min-width: 1024px) {
	.sec05 {
		padding: 0;
	}

	.sec05-content {
		max-width: 1120px;
		width: 78%;
	}

	.sec05 .flex-box {
		display: flex;
		gap: 32px;
		justify-content: center;
		margin-bottom: 80px;
	}

	.sec05 .flex-box .txt {
		width: 40%;
	}

	.sec05 .flex-box .Supporters-img-wrap {
		width: 57%;
		padding: 0;
	}

	.Supporters-title {
		font-size: 32px;
	}

	.Supporters-lead,
	.Supporters-text {
		font-size: 20px;
	}

	.Supporters-text {
		padding: 0;
	}

	.Supporters-text--sub {
		font-size: 31px;
		padding-bottom: 40px;
	}
}

/* ----------------------------------------------------
    staff section
---------------------------------------------------- */
.staff-section {
	background-color: #F8F7F4;
	margin: 0 auto;
	padding-bottom: 10px;
}

.staff-section-wrap {
	max-width: 400px;
	margin: 0 auto;
}

.staff-item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 40px;
	max-width: 420px;
	margin: 0 auto;
}

.staff-item.reverse {
	flex-direction: row-reverse;
}

.staff-image {
	flex-shrink: 0;
	text-align: center;
}

.staff-image .staff-image1 {
	width: 111px;
	height: auto;
	display: block;
	margin-top: 20%;
	margin-left: 20%;
}

.staff-image .staff-image2 {
	width: 149px;
	height: auto;
	display: block;
	margin-top: 20%;
	margin-left: -5%;
}

.staff-image .staff-image3 {
	width: 98px;
	height: auto;
	display: block;
	margin-top: 20%;
	margin-left: 20%;
}

.balloon-box {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;

	height: 90px;
	margin-bottom: 10px;
}

/* 各段ごとの背景画像指定 */
.balloon1 {
	background-image: url('./images/tetotekitchen/sp-balloon1.png');
}

.balloon2 {
	background-image: url('./images/tetotekitchen/sp-balloon2.png');
}

.balloon3 {
	background-image: url('./images/tetotekitchen/sp-balloon3.png');
}

.staff-text {
	text-align: center;
	flex-grow: 1;
}

.staff-text h3 {
	font-size: 20px;
	margin: 10px 0;
	font-weight: 500;
}

.balloon-title span {
	font-size: 18px;
	font-weight: 800;
}

.balloon-title {
	font-size: 16px;
	text-align: center;
	margin: 0;
	padding-bottom: 5px;
}

.staff-text p {
	font-size: 16px;
	line-height: 1.6;
}

@media screen and (min-width: 1024px) {
	.balloon1 {
		background-image: url('./images/tetotekitchen/pc-balloon1.png');
	}

	.balloon2 {
		background-image: url('./images/tetotekitchen/pc-balloon2.png');
	}

	.balloon3 {
		background-image: url('./images/tetotekitchen/pc-balloon3.png');
	}

	.balloon-box {
		height: 160px;
	}

	.balloon-title span {
		font-size: 23px;
	}

	.balloon-title {
		font-size: 20px;
	}

	.staff-image {
		display: flex;
		justify-content: center;
	}

	.staff-image .staff-image1 {
		width: 222px;
		display: block;
		margin-top: 0;
		margin-left: 0;
	}

	.staff-image .staff-image2 {
		width: 324px;
		height: auto;
		display: block;
		margin-top: 0;
		margin-left: 30%;
	}

	.staff-image .staff-image3 {
		width: 204px;
		height: auto;
		display: block;
		margin-top: 0;
		margin-left: 0;
	}


	.staff-section-wrap_pc {
		display: flex !important;
		justify-content: center;
	}

	.staff-item {
		width: 30%;
	}

	.staff-text p {
		font-size: 18px;
	}

	.staff-text h3 {
		font-size: 24px;
	}
}

/* ----------------------------------------------------
    sec06　
---------------------------------------------------- */
.sec06 {
	position: relative;
	z-index: 1;
	padding-top: 170px;
	padding-bottom: 200px;
	background-color: #f6f1df;
	margin-top: -90px;
}

/* タイトル部分 */
.sec06 h2 {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 0;
	margin-bottom: 16px;
	font-size: 19px;
	font-weight: 800;
	text-align: center;
}

.sec06 h2::before,
.sec06 h2::after {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url("./images/tetotekitchen/dot1.png");
	background-size: contain;
	background-repeat: no-repeat;
}

.sec06 h2::before {
	margin-right: 10px;
}

.sec06 h2::after {
	margin-left: 10px;
}

.sec06__card {
	/* flex: 0 0 95%;
scroll-snap-align: center; */
	margin: 32px 12px 0;
}

.card__body__sec06 {
	background-color: #fff;
	border-radius: 8px;
	padding: 24px 18px 56px;
	text-align: left;
	position: relative;
}

.card__title__sec06 {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	margin: 8px 0;
}

.card__text__sec06 {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.8;
	text-align: left;
}

.open-popup__wrap {
	display: flex;
	justify-content: flex-end;
}

.open-popup {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
	font-size: 14px;
	line-height: 1.8;
	font-weight: 500;
	color: #6e5b20;
	font-family: "M PLUS Rounded 1c", sans-serif !important;
}

.slick-prev:before,
.slick-next:before {
	content: "" !important;
}

.slick-prev,
.slick-next {
	width: 40px !important;
	height: 40px !important;
	z-index: 30 !important;
}

.slick-prev {
	left: 10px !important;
	background: url("./images/tetotekitchen/button-left.png") no-repeat center / contain !important;
}

.slick-next {
	right: 10px !important;
	background: url("./images/tetotekitchen/button-right.png") no-repeat center / contain !important;
}

.card__title__sec06__pop {
	font-size: 24px;
	margin: 32px 0 16px;
}

.card__text__sec06__pop {
	font-size: 16px;
	margin-bottom: 35px;
}

.card__title__sec06__pop__h4 {
	background-color: #6e5b20;
	padding: 8px;
	color: #fff;
	font-size: 23px;
	font-weight: 500;
	margin-bottom: 12px;
}

.close_02 {
	width: 100%;
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 8px 0;
	appearance: none;
	font-size: 16px;
	line-height: 1.8;
	font-weight: 500;
	color: #6e5b20;
	font-family: "M PLUS Rounded 1c", sans-serif !important;
	border: 1px solid #6e5b20;
	border-radius: 10px;
	text-align: center;
}

.modal__content {
	padding-top: 15px;
	padding-bottom: 23px;
}

/* モーダルを開くボタン */
.modal-open {
	cursor: pointer;
	font-size: 14px!important;
}

/* モーダルと背景の指定 */
.modal {
	z-index: 9999;
	position: fixed;
	height: 100%;
	text-align: center;
	background: rgba(0, 0, 0, 0.1);
	padding: 40px 8px 0px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	box-sizing: border-box;
	top: 8%;
	left: 0%;
	transform: translate(-50%, -50%) !important;
	width: 100% !important;
	
}

/* モーダルの擬似要素の指定 */
.modal:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
	margin-left: -0.2em;
}

/* クラスが追加された時の指定 */
.modal.is-active {
	opacity: 1;
	visibility: visible;
}

/* モーダル内側の指定 */
.modal-container {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 600px;
	width: 90%;
	margin-bottom: 60px;
}

/* モーダルを閉じるボタンの指定 */
.modal-close {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: -20px;
	right: -20px;
	width: 40px;
	height: 40px;
	color: #6e5b20;
	background: #fff;
	border-radius: 50%;
	cursor: pointer;
	border: 2px solid #6e5b20;
}

.modal-close_02 {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	color: #fff;
	background: #000;
	border-radius: 50%;
	cursor: pointer;
}

/* モーダルのコンテンツ部分の指定 */
.modal-content {
	background: #fff;
	text-align: left;
	line-height: 1.8;
	padding: 20px;
}

/* モーダルのコンテンツ部分のテキストの指定 */
.modal-content p {
	margin: 1em 0;
}

.slick-slide {
	transform: none !important;
}

@media screen and (min-width: 768px) {
	.sec06 {
		padding-top: 240px;
		padding-bottom: 300px;
		top: -80px;
	}
}

@media screen and (min-width: 1024px) {
	.sec06 {
		padding-top: 260px;
		padding-bottom: 360px;
		top: -100px;
	}

	.sec06 h2 {
		font-size: 36px;
	}

	.modal__content__flex {
		display: flex;
		gap: 32px;
		align-items: flex-end;
		margin-bottom: 32px;
	}

	.modal-container {
		max-width: 1000px;
	}

	.close_02 {
		width: 50%;
		margin: 0 auto;
	}

	.modal__content__flex__buttom {
		display: flex;
		gap: 32px;
		margin-bottom: 32px;
		align-items: flex-start;
	}

	.profile__left {
		flex: 0 0 50%;
	}

	.profile__right {
		flex: 1;
	}
}

/* @media screen and (min-width: 1024px) {} */
.modal {
	display: none;
}

.modal.is-active {
	display: block;
}

/* ----------------------------------------------------
    sec07
---------------------------------------------------- */
.sec07 {
	background-color: #F8F7F4;
}

/* 全体の外枠 */
.Price {
	display: flex;
	flex-direction: column;
	gap: 60px;
	padding: 40px 20px 80px;
	max-width: 450px;
	margin: 0 auto;
}

.MonthlyFee,
.TrialService {
	position: relative;
	background-color: #FFFFFF;
	border-radius: 30px;
	padding: 45px 15px 30px;
	text-align: center;
	box-sizing: border-box;
}

.PriceTag {
	position: absolute;
	top: -24px;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	font-weight: 800;
	padding: 4px 40px;
	border-radius: 50px;
	font-size: 24px;
	white-space: nowrap;
	z-index: 10;
	display: block;
}

/* --- 月謝制の装飾 --- */
.MonthlyFee {
	border: 6px solid #E9B824;
}

.MonthlyFee .PriceTag {
	background-color: #E9B824;
}

.MonthlyFee .Background-bar {
	background-color: #FAF8F2;
}

.MonthlyFee .FeeItem {
	background-color: #FAF8F2;
}

/* --- 体験受付の装飾 --- */
.TrialService {
	border: 6px solid #E9911E;
}

.TrialService .PriceTag {
	background-color: #E9911E;
}

.TrialService .Background-bar {
	background-color: #FDF7EF;
}

.Background-bar {
	margin-left: -15px;
	margin-right: -15px;
	width: auto;
	padding: 15px;
	font-weight: 500;
	display: block;
}

.Background-bar span {
	font-size: 12px;
	font-weight: 400;
	letter-spacing: -0.03em;
}

.MainPrice {
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: -15px;
	margin-right: -15px;
}

.MainPrice span {
	font-size: 22px;
	font-weight: 800;
	margin-left: 5px;
}

.IntroText {
	font-weight: 500;
	line-height: 1.6;
	margin-bottom: 25px;
}

.Label {
	font-weight: 500;
	margin-bottom: 10px;
}

.TargetArea {
	margin-top: 20px;
}

.TargetArea ul li {
	font-weight: 400;
}

.TargetArea span {
	font-weight: 400;
}

.TargetList {
	font-weight: 500;
	font-size: 0.9rem;
	line-height: 1.8;
}

.small-notes {
	display: block;
	font-size: 12px;
	margin-top: 8px;
	font-weight: 400;
}

/* 入会金などの横並び */
.FeeFlex {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 10px;
}

.FeeItem {
	flex: 1;
	padding: 10px;
	border-radius: 10px;
}

.FeeItem p {
	font-size: 16px;
	margin: 0;
}

.FeeItem .price-value {
	font-weight: 800;
	font-size: 22px;
	margin-top: 5px;
}

@media screen and (min-width: 1024px) {
	.sec07 {
		padding-bottom: 200px;
	}

	.Price {
		display: flex;
		flex-direction: row;
		max-width: 1120px;
		justify-content: center;
		width: 80%;
		gap: 32px;
		padding: 0;
	}

	.MonthlyFee,
	.TrialService {
		width: 45%;
	}

	.IntroText.is-monthly {
		margin-top: 20px;
		margin-bottom: 37px;
	}

	.Background-bar.is-monthly {
		padding-top: 24px;
		padding-bottom: 24px;
	}

	.TargetArea.is-trial {
		margin-top: 100px;
		margin-bottom: 100px;
	}
}

/* ----------------------------------------------------
    sec08
---------------------------------------------------- */
.sec08 {
	background-color: #F8F7F4;
	padding: 0 5%;
	padding-bottom: 200px;
}

.butterfly {
	position: relative;
	top: 20%;
	left: 4%;
	width: 60px;
	z-index: 2;
}

.guidance-header {
	position: relative;
	margin-bottom: 8px;
}

.guidance-title {
	position: relative;
	font-size: 26px;
	font-weight: 500;
	margin: 0;
}

.guidance-text {
	font-size: 16px;
	font-weight: 400;
	padding-bottom: 16px;
}

.guidance-text--sub {
	font-size: 14px;
	font-weight: 400;
	padding-bottom: 40px;
}

.guidance-img-wrap {
	width: 100%;
	padding-bottom: 32px;
}

.guidance-img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 5px;
}

.balloon {
	position: relative;
	top: 20%;
	left: 4%;
	width: 70px;
	z-index: 2;
}

@media screen and (min-width: 1024px) {
	.sec08-content {
		display: flex;
		gap: 52px;
		width: 80%;
		max-width: 1000px;
		margin: 0 auto;
	}

	.sec08-content .txt {
		width: 52%;
	}

	.guidance-title {
		font-size: 32px;
	}

	.guidance-text {
		font-size: 24px;
	}

	.guidance-text--sub {
		font-size: 16px;
	}

	.guidance-img-wrap {
		width: 48%;
	}

	.butterfly {
		width: 100px;
	}

	.balloon {
		width: 100px;
	}
}


/* ----------------------------------------------------
    sec09
---------------------------------------------------- */
.sec9 {
	background-color: #F8F7F4;
	background-image: url("./images/tetotekitchen/small-heart.png");
	background-repeat: no-repeat;
	background-position: 44% top;
	background-size: cover;
	padding: 60px 0;
	width: 100%;
}

.concept {
	text-align: center;
	margin: 0 auto;
}

.concept__inner {
	max-width: 600px;
	margin: 0 auto;
	padding: 0 20px;
}

/* 見出し：24px / font-weight 800 */
.concept__title {
	font-size: 24px;
	font-weight: 800;
	margin-bottom: 40px;
	letter-spacing: 0.04em;
}

/* テキストブロック：16px / font-weight 400 */
.concept__block {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	text-align: justify;
	margin-bottom: 30px;
	/* ブロック間の隙間 */
}

/* 最後のブロックの余白をリセット */
/*.concept__block:last-child {
	margin-bottom: 0;
}*/


.family-wrapper {
	background-color: #F8F7F4;
	width: 100%;
	position: relative;
	min-height: 100px;
	margin-top: -4%;
	padding-bottom: 80px;
	z-index: 10;
}

.family-left {
	position: absolute;
	bottom: 80px;
	left: 5%;
	width: 80px;
	height: auto;
}

.family-right {
	position: absolute;
	bottom: 80px;
	right: 5%;
	width: 108px;
	height: auto;
}

/* --- 2. スマホ版（〜391px） --- */
@media screen and (min-width: 392px) {
	.concept {
		width: 391px;
		margin: 0 auto;
	}
}

/* 4. PC版（768px〜）：デザインを切り替えるならここに追記 */
@media screen and (min-width: 768px) {}

@media screen and (min-width: 1024px) {
	.sec9 {
		background-image: url("./images/tetotekitchen/big-heart.png");
		padding-top: 80px;
		padding-bottom: 320px;
		background-size: 65%;
	}

	.concept {
		width: auto;

	}

	.concept__inner {
		width: 64%;
		max-width: 1120px;
	}

	.concept__title {
		font-size: 51px;
		margin-bottom: 80px;
	}

	.concept__block {
		font-size: 20px;
		line-height: 2;
	}

	.family-wrapper {
		padding-bottom: 120px;

	}

	.family-left {
		left: 8%;
		width: 200px;
	}

	.family-right {
		right: 8%;
		width: 250px;
	}
}

/* ----------------------------------------------------
    sec010
---------------------------------------------------- */
.sec10 {
	background-color: #F8F7F4;
}

.Instagram {
	padding: 0 5%;
	padding-bottom: 40px;
}

.Instagram-text {
	font-weight: 400;
	padding-bottom: 40px;
}

.Instagram-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	max-width: 340px;
	margin: 30px auto 0;

	background-color: #6E5B20;
	color: #fff;
	text-decoration: none;
	padding: 14px 56px 14px 40px;
	border-radius: 10px;
	margin-top: 30px;
	box-sizing: border-box;
}

.Instagram-btn:hover {
	opacity: 0.7;
	color: #fff !important;
}

.icon-Instagram {
	position: absolute;
	right: 35px;
	width: 22px;
	height: 22px;
	background: url("./images/tetotekitchen/Instagram-icon.png") no-repeat center / contain;
}

@media screen and (min-width: 1024px) {
	.sec10 {
		padding-top: 140px;
		padding-bottom: 80px;
	}


	.Instagram {
		width: 80%;
		padding: 0;
		margin: 0 auto;
		max-width: 1120px;
	}

	.Instagram-text {
		text-align: center;
	}
}

/* ----------------------------------------------------
    sec11
---------------------------------------------------- */
.sec11 {
	padding-top: 140px;
	padding-bottom: 160px;
	background-color: #F6F1DF;
	margin-top: -80px;
	scroll-margin-top: -60px;
}

.bird2 {
	position: relative;
	top: -40px;
	left: 68%;
	width: 100px;
	z-index: 2;
}

/* 全体を囲むエリア（薄黄色の背景） */
.Question-wrap {
	width: 82%;
	margin: 0 auto;
	background-color: #F3E6BA;
	padding: 20px 16px;
	border-radius: 10px;
}

.qa-category {
	padding-bottom: 10px;
}

/* カテゴリの見出し（画像で挟む設定） */
.category-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	text-align: center;
	font-size: 17px;
	margin-bottom: 10px;
	font-weight: 800;
}

/* 両端の丸（共通設定） */
.category-title::before,
.category-title::after {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background-image: url("./images/tetotekitchen/dot1.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.qa-category:first-child .category-title {
	margin-top: 0;
}

/* 各質問の白いボックス */
.qa-item {
	margin-bottom: 15px;
	border-radius: 20px;
	background-color: #fff;
	overflow: hidden;
}

/* 質問部分（summary） */
.qa-item summary {
	display: flex;
	align-items: flex-start;
	position: relative;
	padding: 12px 34px 12px 16px;
	font-weight: 400;
	line-height: 1.5em;
	cursor: pointer;
	list-style: none;
}

/* Safariの三角を消す */
.qa-item summary::-webkit-details-marker {
	display: none;
}

/* Q. の文字色（オレンジ） */
.q-prefix {
	color: #E9B824;
	margin-right: 8px;
	font-weight: 800;
	flex-shrink: 0;
}

/* 矢印（V字・角丸） */
.qa-item summary::after {
	position: absolute;
	content: '';
	width: 7px;
	height: 7px;
	border-bottom: 3px solid #E9B824;
	border-right: 3px solid #E9B824;
	border-radius: 2px;
	flex-shrink: 0;
	transform: translateY(0.4em) rotate(45deg);
	margin-left: 15px;
	transition: transform .3s;
	right: 18px;
}

/* 開いたときの矢印の動き（上向きに回転） */
.qa-item[open] summary::after {
	transform: translateY(0.6em) rotate(225deg);
}

/* 回答エリア全体 */
.qa-content {
	display: flex;
	padding: 0 16px 16px;
	transform: translateY(-10px);
	opacity: 0;
	transition: transform .5s, opacity .5s;
}

.qa-item[open] .qa-content {
	transform: none;
	opacity: 2;
}

/* A. の文字色（水色） */
.a-prefix {
	color: #61B1D4;
	font-weight: 800;
	margin-right: 8px;
	flex-shrink: 0;
}

/* 回答のテキスト */
.qa-content p {
	margin: 0;
	font-weight: 400;
	line-height: 1.5em;
}

.qa-footer {
	font-weight: 500;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 20px;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.sec11 {
		padding-top: 170px;
		margin-top: -110px;
	}
}


@media screen and (min-width: 1024px) {
	.sec11 {
		padding-top: 240px;
		margin-top: -170px;
		padding-bottom: 260px;
	}

	.Question-wrap {
		width: 64%;
		max-width: 1000px;
		padding: 0 64px;
	}

	.category-title {
		margin-top: 80px;
		margin-bottom: 24px;
		font-size: 24px;
	}

	.qa-item {
		margin-bottom: 24px;
	}

	.qa-item summary {
		padding: 30px 77px 30px 32px;
	}

	.qa-item summary::after {
		right: 42px;
	}

	.bird2 {
		top: -10px;
		left: 72%;
		width: 160px;
	}

	.q-prefix {
		font-size: 24px;
	}

	.a-prefix {
		font-size: 24px;
		margin-top: -4px;
		margin-left: 16px;
	}

	.qa-content {
		padding: 0 16px 30px;
	}

	.qa-content p {
		margin-right: 60px;
	}

	.qa-item summary::after {
		width: 10px;
		height: 10px;
	}

	.qa-footer {
		padding-top: 60px;
		padding-bottom: 80px;
	}

}



/* ----------------------------------------------------
    sec12
---------------------------------------------------- */
.sec12 {
	background-color: #F8F7F4;
	padding-bottom: 40px;
	padding: 0 5%;
}

.Conversion-text {
	font-size: 16px;
	font-weight: 400;
	text-align: center;
	padding-bottom: 40px;
}

/* フォーム全体の土台 */
.application-form {
	max-width: 500px;
	margin: 0 auto;
	padding: 10px;
}

/* 各項目の余白 */
.form-group {
	margin-bottom: 16px;
}

/*  項目名　*/
label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	font-size: 16px;
}

/*「必須」*/
.required {
	background-color: #E9B824;
	color: #fff;
	font-size: 11px;
	padding: 4px 8px;
	border-radius: 4px;
	margin-left: 8px;
	vertical-align: middle;
	height: 20px;
}

input,
input[type="email"],
input[type="tel"] {
	width: 100%;
	padding: 8px;
	border: 0.5px solid #ebebeb;
	border-radius: 10px;
	background-color: #fff;
	box-sizing: border-box;
	font-size: 16px;
	outline: none;
}

input:focus,
select:focus,
textarea:focus {
	outline: none;
	border-color: #d4af37;
	box-shadow: 0 0 5px rgba(212, 175, 55, 0.2);
}

.radio-group label {
	display: flex;
	align-items: center;
	margin-right: 32px;
	cursor: pointer;
	font-weight: 400;
}

.radio-group input[type="radio"] {
	margin: 0 8px 0 0;
	width: 18px;
	height: 18px;
}

.radio-group {
	display: flex;
	flex-wrap: wrap;
	margin-top: 10px;
}

input[type="radio"] {
	accent-color: #6E5B20;
	cursor: pointer;
}

select {
	width: 100%;
	padding: 8px;
	border: 0.5px solid #ebebeb;
	border-radius: 10px;
	background-color: #fff;
	font-size: 16px;
	color: #6E5B20;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

.select-wrapper {
	position: relative;
}

.select-wrapper::after {
	content: '▼';
	font-size: 16px;
	color: #6E5B20;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}

.form-note {
	font-size: 12px;
	font-weight: 400;
	margin-top: -8px;
	margin-bottom: 2px;
}

.form-group.is-second {
	margin-top: -10px;
}

textarea {
	width: 100%;
	min-height: 150px;
	padding: 8px;
	border: 0.5px solid #ebebeb;
	border-radius: 10px;
	background-color: #fff;
	box-sizing: border-box;
	font-size: 16px;
	line-height: 1.6;
	color: #6E5B20;
	outline: none;
	resize: vertical;
}

input::placeholder,
textarea::placeholder {
	color: #ccc;
	font-size: 0.9rem;
	opacity: 1;
}

::-webkit-input-placeholder {
	color: #ccc;
}

.allergy-notes {
	background-color: #F6EED6;
	padding: 24px 16px;
	border-radius: 12px;
	margin-bottom: 25px;
	font-weight: 400;
	font-size: 0.85rem;
	line-height: 1.7;
}

/* タイトル部分 */
.allergy-title {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 0;
	margin-bottom: 16px;
	font-size: 16px;
	font-weight: 800;
	text-align: center;
}

.allergy-title::before,
.allergy-title::after {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url("./images/tetotekitchen/dot1.png");
	background-size: contain;
	background-repeat: no-repeat;
}

.allergy-title::before {
	margin-right: 10px;
}

.allergy-title::after {
	margin-left: 10px;
}

.allergy-text {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
}

/* 同意チェックボックスの微調整 */
.agreement-group {
	margin-bottom: 40px;
}

.agreement-label {
	display: flex;
	align-items: flex-start;
	cursor: pointer;
	font-weight: 400;
}

.agreement-label input[type="checkbox"] {
	margin: 3px 8px 0 0;
	accent-color: #6E5B20;
}

.agreement-text {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
}

input[type="checkbox"] {
	width: 20px;
	height: 16px;
	cursor: pointer;
	vertical-align: middle;
}

.submit-btn {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	max-width: 270px !important;
	height: 54px !important;
	margin: 40px auto 20px !important;
	background-color: #6E5B20 !important;
	color: #fff !important;
	font-size: 18px !important;
	font-weight: 400 !important;
	border: none !important;
	border-radius: 10px !important;
	cursor: pointer !important;
	transition: background-color 0.3s !important;
}

.submit-btn-icon {
	width: 24px;
	height: auto;
	margin-left: 24px;
}

/* ホバー時の反応 */
[type=submit].submit-btn:hover {
	opacity: 0.7 !important;
	background-color: #6E5B20 !important;
}

.kitchen {
	position: relative;
	top: 20%;
	left: 4%;
	width: 120px;
	z-index: 2;
}

.form-label {
	display: flex;
}

.form-label-sibling {
	display: block;
}

.is-second {
	margin-top: 4px;
}

.pc-washhands {
	display: none;
}

@media screen and (min-width: 1024px) {
	.application-form {
		max-width: 1120px;
		width: 78%;
	}

	.Conversion-text {
		font-size: 20px;
	}

	.form-group {
		display: flex;
		gap: 24px;
		margin-bottom: 40px;
	}

	.form-label {
		width: 40%;
		justify-content: space-between;
	}

	.radio-group,
	.select-wrapper,
	.age-select-wrapper {
		width: 100%;
	}

	.select-wrapper_1 {
		margin-bottom: 8px;
	}

	.radio-group {
		margin-top: 0;
	}

	label {
		margin-bottom: 0;
	}

	.form-note {
		margin-top: 0;
	}

	.agreement-label {
		width: 80%;
		margin: 0 auto;
	}

	.formfooter-illust {
		position: relative;
		width: 100%;
		height: 240px;
		padding-bottom: 40px;
	}

	.kitchen {
		position: absolute;
		top: -12%;
		left: 4%;
		width: 220px;
	}

	.pc-washhands {
		display: block;
		position: absolute;
		right: 8%;
		width: 140px;
	}

}

/* ----------------------------------------------------
    footer
---------------------------------------------------- */
.page-site-footer {
	background-color: #6E5B20;
	padding: 0 5%;
}

.footer-logo {
	display: inline-block;
	width: 200px;
	margin-top: 40px;
	margin-bottom: 20px;
}

.footer-logo img {
	width: 100%;
	height: auto;
}

.footer-address {
	color: #ffffff;
	font-weight: 400;
	line-height: 1.8;
}

.footer-address a {
	color: #ffffff;
	text-decoration: none;
}

.address-group {
	padding-bottom: 16px;
}

.sns-links {
	display: flex;
	list-style: none;
	padding: 0;
	gap: 15px;
	padding-top: 20px;
	padding-bottom: 16px;
}

.sns-links a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 48px;
	height: 48px;
	background-color: #F6F1DF;
	border-radius: 50%;
	text-decoration: none;
}

.sns-links img {
	width: 20px;
	height: auto;
}

.donation {
	text-align: center;
	padding-bottom: 56px;
}

.donation-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	/* max-width: 340px; */
	background-color: #F6F1DF;
	color: #6E5B20;
	text-decoration: none;
	padding: 14px 30px 14px 40px;
	border-radius: 10px;
	box-sizing: border-box;
}

.donation-btn:hover {
	color: #6E5B20 !important;
	opacity: 0.7;
}

.arrow2 {
	width: 24px;
	height: auto;
	margin-left: 16px;
}

.footer-map {
	padding-bottom: 64px;
}


.footer-map iframe {
	width: 100%;
	height: 220px;
	border: none;
	vertical-align: bottom;
	border-radius: 20px;
	overflow: hidden;
}

@media screen and (min-width: 1024px) {
	.page-site-footer {
		padding: 0;
	}

	.page-site-footer .inner {
		display: flex;
		justify-content: space-between;
		padding: 78px 0;
		width: 88%;
		max-width: 1280px;
		margin: 0 auto;
	}

	.footer-logo {
		margin-top: 0;
	}

	.footer-map {
		width: 42%;
	}

	footer .flex-box {
		display: flex;
		align-items: center;
		gap: 40px;
	}

	.sns-links,
	.donation {
		padding: 0;
	}

	.footer-map iframe {
		height: 320px;
	}
}