@charset "UTF-8";
*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: normal;
	font-size: 100%;
	vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
	display: block;
}

.header {
	padding-top: 1px;
}

ol,
ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

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

button {
	margin: 0;
	padding: 0;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: transparent;
	cursor: pointer;
	font: inherit;
}

input,
select,
textarea {
	font: inherit;
	color: inherit;
	vertical-align: top;
}

/* safariの背景画像の枠線対応 → 全要素に効かせない */
img {
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0);
}

/* headerの余白を消すため */
html {
	margin-top: -20px;
}

@media screen and (min-width: 768px) {
	html {
		margin-top: -26px;
	}
}
@media screen and (min-width: 1280px) {
	html {
		margin-top: -40px;
	}
}
/* タップ時のハイライト色を消す */
a,
button {
	-webkit-tap-highlight-color: transparent;
}

/* デフォルトの四角いアウトラインは消す */
.btn:focus {
	outline: none;
}

/* キーボード/スクリーンリーダー操作時の可視フォーカスを丸く表示 */
.btn:focus-visible {
	outline: none;
	/* 角丸を尊重する「リング」風の box-shadow を付ける */
	-webkit-box-shadow: 0 0 0 3px #fff, 0 0 0 6px #f36;
	box-shadow: 0 0 0 3px #fff, 0 0 0 6px #f36;
	border-radius: inherit;
}

/* iOS Safari のタップハイライト色を透明にする */
a,
button {
	-webkit-tap-highlight-color: transparent;
}

/* Safari のフォーカス枠も無効化 */
a:focus,
button:focus {
	outline: none;
}

/* 代替フォーカス（アクセシビリティ配慮） */
a:focus-visible,
button:focus-visible {
	outline: none;
	-webkit-box-shadow: 0 0 0 3px #fff, 0 0 0 6px #f36;
	box-shadow: 0 0 0 3px #fff, 0 0 0 6px #f36; /* 丸いリングに置き換え */
	border-radius: inherit;
}

/* Safari が付けるオレンジのフォーカス枠を無効化 */
a:focus,
a:active,
button:focus,
button:active,
[role="button"]:focus,
[role="button"]:active,
input[type="button"]:focus,
input[type="submit"]:focus {
	outline: none !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

body {
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 14px;
	color: #000;
	font-style: normal;
	font-weight: 500;
	line-height: 1.8;
}
@media screen and (min-width: 768px) {
	body {
		font-size: 18px;
	}
}
@media screen and (min-width: 1280px) {
	body {
		font-size: 20px;
	}
}

@media screen and (max-width: 390px) {
	.hidden-sp {
		display: none;
	}
}
@media screen and (min-width: 768px) {
	.hidden-tab {
		display: none;
	}
}
@media screen and (min-width: 1280px) {
	.hidden-pc {
		display: none;
	}
}
.button {
	font-size: 13px;
	width: 100%;
	display: inline-block;
	padding: 8px 10px;
	border-radius: 50px;
	background: #ff6b35;
	color: #fff;
	text-align: center;
	font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
	font-weight: 600;
	border: 2px solid #fff;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
@media screen and (min-width: 768px) {
	.button {
		font-size: 16px;
		padding: 6px 12px;
		width: calc(100% - 80px);
	}
}
@media screen and (min-width: 1280px) {
	.button {
		font-size: 24px;
		padding: 8px 12px;
		width: calc(100% - 100px);
	}
}
.button:hover {
	background: #fff;
	color: #ff6b35;
	border: 2px solid #ff6b35;
}

.feature-heading {
	position: relative;
	text-align: center;
	background: #e6f7fa;
}
.feature-heading .feature-heading__title {
	position: relative;
	font-size: 20px;
	font-weight: 700;
	color: #000;
	z-index: 1;
	display: inline-block;
	margin: 0;
	padding: 40px 0;
}
@media screen and (min-width: 768px) {
	.feature-heading .feature-heading__title {
		font-size: 30px;
	}
}
@media screen and (min-width: 1280px) {
	.feature-heading .feature-heading__title {
		font-size: 40px;
	}
}
.feature-heading .feature-heading__title::before {
	content: "FEATURES";
	font-family: "Jost", sans-serif;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -72%);
	transform: translate(-50%, -72%);
	font-size: 50px;
	font-weight: 700;
	color: #fff;
	z-index: -1;
	white-space: nowrap;
}
@media screen and (min-width: 768px) {
	.feature-heading .feature-heading__title::before {
		font-size: 80px;
	}
}
@media screen and (min-width: 1280px) {
	.feature-heading .feature-heading__title::before {
		font-size: 120px;
	}
}

.subscription-heading {
	position: relative;
	text-align: center;
}
.subscription-heading .subscription-heading__title {
	position: relative;
	font-size: 20px;
	font-weight: 700;
	color: #000;
	z-index: 1;
	display: inline-block;
	margin: 0;
	padding: 40px 0 0;
}
@media screen and (min-width: 768px) {
	.subscription-heading .subscription-heading__title {
		font-size: 30px;
	}
}
@media screen and (min-width: 1280px) {
	.subscription-heading .subscription-heading__title {
		font-size: 40px;
	}
}
.subscription-heading .subscription-heading__title::before {
	content: "SUBSCRIPTION";
	font-family: "Jost", sans-serif;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -72%);
	transform: translate(-50%, -72%);
	font-size: 42px;
	font-weight: 700;
	color: #f3f3f3;
	z-index: -1;
	white-space: nowrap;
}
@media screen and (min-width: 768px) {
	.subscription-heading .subscription-heading__title::before {
		font-size: 80px;
	}
}
@media screen and (min-width: 1280px) {
	.subscription-heading .subscription-heading__title::before {
		font-size: 120px;
	}
}

/*feature-points-heading*/
.feature-points-heading {
	position: relative;
	text-align: center;
}
.feature-points-heading .feature-points-heading__title {
	position: relative;
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #000;
	z-index: 1;
	display: inline-block;
	margin: 0;
	padding: 40px 0 40px;
}
@media screen and (min-width: 768px) {
	.feature-points-heading .feature-points-heading__title {
		font-size: 30px;
	}
}
@media screen and (min-width: 1280px) {
	.feature-points-heading .feature-points-heading__title {
		font-size: 40px;
	}
}
.feature-points-heading .feature-points-heading__title::before {
	content: "FEATURES";
	font-family: "Jost", sans-serif;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -72%);
	transform: translate(-50%, -72%);
	font-size: 42px;
	font-weight: 700;
	color: #fff;
	z-index: -1;
	white-space: nowrap;
}
@media screen and (min-width: 768px) {
	.feature-points-heading .feature-points-heading__title::before {
		font-size: 80px;
	}
}
@media screen and (min-width: 1280px) {
	.feature-points-heading .feature-points-heading__title::before {
		font-size: 120px;
	}
}

.review-heading {
	position: relative;
	text-align: center;
}
.review-heading .review-heading__title {
	position: relative;
	font-size: 20px;
	font-family: "Zen Maru Gothic";
	font-weight: 700;
	color: #000;
	z-index: 1;
	display: inline-block;
	margin: 0;
	padding: 40px 0 20px;
}
@media screen and (min-width: 768px) {
	.review-heading .review-heading__title {
		font-size: 30px;
	}
}
@media screen and (min-width: 1280px) {
	.review-heading .review-heading__title {
		font-size: 40px;
	}
}
.review-heading .review-heading__title::before {
	content: "REVIEW";
	font-family: "Jost", sans-serif;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -72%);
	transform: translate(-50%, -72%);
	font-size: 50px;
	font-weight: 700;
	color: #f3f3f3;
	z-index: -1;
	white-space: nowrap;
}
@media screen and (min-width: 768px) {
	.review-heading .review-heading__title::before {
		font-size: 80px;
	}
}
@media screen and (min-width: 1280px) {
	.review-heading .review-heading__title::before {
		font-size: 120px;
	}
}

.faq-heading {
	position: relative;
	text-align: center;
}
.faq-heading .faq-heading__title {
	font-family: "Zen Maru Gothic", sans-serif;
	position: relative;
	font-size: 20px;
	font-weight: 700;
	color: #000;
	z-index: 1;
	display: inline-block;
	margin: 0;
	padding: 40px 0 20px;
}
@media screen and (min-width: 768px) {
	.faq-heading .faq-heading__title {
		font-size: 30px;
	}
}
@media screen and (min-width: 1280px) {
	.faq-heading .faq-heading__title {
		font-size: 40px;
	}
}
.faq-heading .faq-heading__title::before {
	content: "Q&A";
	font-family: "Jost", sans-serif;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -72%);
	transform: translate(-50%, -72%);
	font-size: 60px;
	font-weight: 700;
	color: #dfeeff;
	z-index: -1;
	white-space: nowrap;
}
@media screen and (min-width: 768px) {
	.faq-heading .faq-heading__title::before {
		font-size: 80px;
	}
}
@media screen and (min-width: 1280px) {
	.faq-heading .faq-heading__title::before {
		font-size: 120px;
	}
}

.header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 12px 20px;
	background: #fff;
}
@media screen and (min-width: 768px) {
	.header {
		width: 800px;
		margin-left: auto;
		margin-right: auto;
	}
}
@media screen and (min-width: 1280px) {
	.header {
		width: 1280px;
		margin-left: auto;
		margin-right: auto;
		padding: 12px 40px;
	}
}
.header__logo {
	width: 111px;
	height: 26px;
}
@media screen and (min-width: 1280px) {
	.header__logo {
		width: 180px;
		height: 43px;
	}
}
.header__logo img {
	width: 100%;
	height: auto;
	display: block;
}

.tel__info {
	width: 204px;
}
.tel__info img {
	width: 100%;
	height: auto;
	display: block;
}

@media (min-width: 1280px) {
	.tel__info {
		width: 392px;
	}
}

.hero {
	position: relative;
}

.hero__button {
	position: fixed;
	bottom: 20px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 100;
	max-width: calc(100% - 40px);
	width: 100%;
	height: 44px;
	text-align: center;
}
@media screen and (min-width: 768px) {
	.hero__button {
		max-width: 500px;
		width: 100%;
		height: 50px;
		bottom: 30px;
	}
}
@media screen and (min-width: 1280px) {
	.hero__button {
		max-width: 712px;
		width: 100%;
		height: 60px;
		bottom: 30px;
	}
}

.worry {
	background-color: #e1f6f7;
	padding: 60px 20px;
}

.worry__title {
	text-align: center;
	width: calc(100% - 40px);
	margin: 0 auto 40px;
}
@media screen and (min-width: 768px) {
	.worry__title {
		width: 800px;
		margin: 0 auto 60px;
	}
}
@media screen and (min-width: 1280px) {
	.worry__title {
		width: 896px;
		margin: 0 auto 80px;
	}
}

.worry__text {
	color: #000;
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.8;
}
@media screen and (min-width: 768px) {
	.worry__text {
		font-size: 30px;
		font-weight: 700;
	}
}
@media screen and (min-width: 1280px) {
	.worry__text {
		font-size: 36px;
		font-weight: 700;
	}
}

.worry__image {
	max-width: 1280px;
	margin: 0 auto;
}

.text__highlight {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.6;
	position: relative;
	z-index: 0;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #ffff76));
	background: linear-gradient(transparent 70%, #ffff76 70%);
	display: inline;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}
@media screen and (min-width: 768px) {
	.text__highlight {
		font-size: 40px;
		font-weight: 500;
		line-height: 1.6;
		letter-spacing: 1.7px;
	}
}
@media screen and (min-width: 1280px) {
	.text__highlight {
		font-size: 40px;
		font-weight: 500;
		line-height: 1.6;
		letter-spacing: 1.7px;
	}
}
.text__highlight strong {
	color: #ff6b35;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.6;
}
@media screen and (min-width: 768px) {
	.text__highlight strong {
		font-size: 40px;
		font-weight: 500;
		line-height: 1.6;
		letter-spacing: 1.7px;
	}
}
@media screen and (min-width: 1280px) {
	.text__highlight strong {
		font-size: 40px;
		font-weight: 500;
		line-height: 1.6;
		letter-spacing: 1.7px;
	}
}

.point {
	background: url("https://d2w53g1q050m78.cloudfront.net/uchinoyacom/uploads/hiyashi/img/img_point_bg_sp.webp") center/cover no-repeat;
	padding: 40px 16px;
	display: grid;
	place-items: center;
}
@media (min-width: 768px) {
	.point {
		background: url("https://d2w53g1q050m78.cloudfront.net/uchinoyacom/uploads/hiyashi/img/img_point_bg.webp") center/cover no-repeat;
		padding: 80px 20px;
	}
}
@media (min-width: 1280px) {
	.point {
		background: url("https://d2w53g1q050m78.cloudfront.net/uchinoyacom/uploads/hiyashi/img/img_point_bg.webp") center/cover no-repeat;
		padding: 100px 40px;
		height: 820px;
	}
}

.point__inner {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 16px;
	padding: 50px 40px;
	text-align: center;
	max-width: 357px;
	margin: 0 auto;
}
@media screen and (min-width: 768px) {
	.point__inner {
		max-width: 500px;
		margin: 0 auto;
		padding: 50px 40px;
	}
}
@media screen and (min-width: 1280px) {
	.point__inner {
		max-width: 1080px;
		width: 100%;
		margin: 0 auto;
		padding: 100px 20px;
		height: 462px;
	}
}

.point__title {
	max-width: 268px;
	margin: 0 auto;
	margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
	.point__title {
		max-width: 500px;
	}
}
@media screen and (min-width: 1280px) {
	.point__title {
		max-width: 714px;
		margin-bottom: 50px;
	}
}

.point__inner ol {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
@media screen and (min-width: 768px) {
	.point__inner ol {
		max-width: 600px;
		margin: 0 auto;
	}
}
@media screen and (min-width: 1280px) {
	.point__inner ol {
		max-width: 714px;
		margin: 0 auto;
	}
}
.point__inner ol li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 8px;
	font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.6;
	text-align: left;
}
@media screen and (min-width: 768px) {
	.point__inner ol li {
		font-size: 20px;
		gap: 20px;
	}
}
@media screen and (min-width: 1280px) {
	.point__inner ol li {
		font-size: 28px;
		gap: 30px;
	}
}
.point__inner ol li img {
	width: 22px;
	height: auto;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-top: 5px;
}
@media screen and (min-width: 768px) {
	.point__inner ol li img {
		width: 26px;
		height: auto;
	}
}
@media screen and (min-width: 1280px) {
	.point__inner ol li img {
		width: 36px;
		height: auto;
	}
}

.almighty {
	font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
	padding: 40px 20px;
	position: relative;
	padding: 80px 16px; /* 上下に余白を確保 */
	overflow: hidden; /* 疑似要素はみ出し防止 */
	z-index: 0;
	min-height: 1000px;
	text-align: center;
}
@media (min-width: 768px) {
	.almighty {
		padding: 60px 30px;
	}
}
@media (min-width: 1024px) {
	.almighty {
		padding: 80px 40px;
	}
}
.almighty::before,
.almighty::after {
	content: "";
	position: absolute;
	height: 100%;
	left: 0;
	right: 0;
	height: 120px; /* 背景画像の高さに合わせて調整 */
	background: url("https://d2w53g1q050m78.cloudfront.net/uchinoyacom/uploads/hiyashi/img/bg_triangle.webp") center/cover no-repeat;
	background-size: 100% 120px;
	z-index: -1;
}
.almighty::before {
	top: 0;
}
.almighty::after {
	bottom: 0;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.almighty .section__inner {
	width: calc(100% - 32px);
	margin: 0 auto;
	max-width: 600px;
}
@media screen and (min-width: 1280px) {
	.almighty .section__inner {
		max-width: 1000px;
		margin: 0 auto;
	}
}

.almighty__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	max-width: 1080px;
	margin: 0 auto;
}
@media screen and (min-width: 1280px) {
	.almighty__inner {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		text-align: left;
		gap: 40px;
	}
}

.almighty__catch {
	color: #000;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
}
@media screen and (min-width: 768px) {
	.almighty__catch {
		font-size: 24px;
	}
}
@media screen and (min-width: 1280px) {
	.almighty__catch {
		font-size: 28px;
	}
}

.almighty__title {
	color: #000;
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}
@media screen and (min-width: 768px) {
	.almighty__title {
		font-size: 40px;
	}
}
@media screen and (min-width: 1280px) {
	.almighty__title {
		font-size: 50px;
	}
}

.almighty__lead {
	color: #000;
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
}
@media screen and (min-width: 1280px) {
	.almighty__lead {
		font-size: 20px;
		text-align: left;
	}
}

.almighty__image {
	margin-bottom: 20px;
	margin-top: 48px;
	width: 100%;
}
@media screen and (min-width: 1280px) {
	.almighty__image {
		-ms-flex-negative: 0;
		flex-shrink: 0;
		width: 436px;
	}
}
.almighty__image img {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}

.almighty__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
}

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

.almighty__note {
	font-size: 12px;
	color: #777;
	margin-bottom: 25px;
}
@media (min-width: 768px) {
	.almighty__note {
		font-size: 13px;
		margin-bottom: 30px;
	}
}

.almighty__features {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin-top: 40px;
	margin-bottom: 40px;
}
@media (min-width: 768px) {
	.almighty__features {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}
@media (min-width: 1024px) {
	.almighty__features {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
}

.almighty__feature {
	border: 3px solid #1e90ff;
	border-radius: 10px;
	padding: 15px;
	background: #fff;
	padding-block: 40px;
}
.almighty__feature h4 {
	font-size: 20px;
	color: #1e90ff;
	margin-bottom: 5px;
	font-weight: 600;
}
.almighty__feature p {
	font-size: 16px;
	font-weight: 400;
}

.almighty__button {
	margin-top: 40px;
}
@media screen and (min-width: 1280px) {
	.almighty__button {
		margin-top: 70px;
	}
}

.almighty__set-title {
	margin-top: 50px;
	max-width: 390px;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (min-width: 768px) {
	.almighty__set-title {
		margin-top: 60px;
	}
}
@media screen and (min-width: 1280px) {
	.almighty__set-title {
		margin-top: 70px;
	}
}
.almighty__set-title p {
	font-size: 14px;
	margin-bottom: 15px;
}
@media (min-width: 768px) {
	.almighty__set-title p {
		font-size: 16px;
	}
}

.almighty__set-image {
	margin-top: 20px;
}
@media screen and (min-width: 1280px) {
	.almighty__set-image {
		width: 531px;
		margin: 30px auto;
	}
}
.almighty__set-image img {
	width: 100%;
	height: auto;
}

.recipe {
	background: #e8f9fb;
	font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
	background-image: linear-gradient(#d0eff2 1px, transparent 1px), linear-gradient(90deg, #d0eff2 1px, transparent 1px);
	background-size: 20px 20px;
	position: relative;
	padding: 80px 20px 70px;
}
@media (min-width: 768px) {
	.recipe {
		padding: 120px 20px 70px;
	}
}
@media (min-width: 1280px) {
	.recipe {
		padding: 140px 40px 70px;
	}
}

.recipe-section {
	padding: 60px 20px;
	text-align: center;
	background: #e8f9fb;
	background-image: linear-gradient(#d0eff2 1px, transparent 1px), linear-gradient(90deg, #d0eff2 1px, transparent 1px);
	background-size: 60px 60px;
}

.recipe-section__inner {
	z-index: 1;
}

.recipe-section__head {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 6px;
	font-family: "Zen Maru Gothic", sans-serif;
}

.recipe-section__bgtext {
	font-weight: 700;
	color: #dfeeff;
	font-family: "Jost", sans-serif;
	font-size: 50px;
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	white-space: nowrap;
	z-index: 0;
}
@media (max-width: 768px) {
	.recipe-section__bgtext {
		font-size: 70px;
		top: 0px;
	}
}
@media screen and (min-width: 768px) {
	.recipe-section__bgtext {
		font-size: 120px;
		top: 0;
	}
}

.recipe-section__supervisor {
	font-size: 16px;
	font-weight: 500;
	position: relative;
	display: inline-block;
	padding-top: 10px;
	z-index: 2;
}
@media screen and (min-width: 768px) {
	.recipe-section__supervisor {
		font-size: 26px;
	}
}
@media screen and (min-width: 1280px) {
	.recipe-section__supervisor {
		font-size: 32px;
	}
}
.recipe-section__supervisor::after {
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	border-bottom: 2px dotted #000;
}

.recipe-section__title {
	margin-top: 6px;
	line-height: 1;
	font-weight: 700;
	color: #2b2e9e;
	font-size: 20px;
	font-weight: 700;
	z-index: 2;
}
@media screen and (min-width: 768px) {
	.recipe-section__title {
		font-size: 30px;
	}
}
@media screen and (min-width: 1280px) {
	.recipe-section__title {
		font-size: 40px;
	}
}

.recipe-cards {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 50px;
	margin-top: 50px;
}
@media screen and (min-width: 1280px) {
	.recipe-cards {
		width: 1080px;
		margin: 50px auto 0;
	}
}

.recipe-card {
	border-radius: 20px;
	padding: 20px;
	background: #fff;
}

.recipe-card__header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
}

@media (min-width: 768px) {
	.recipe-card__header {
		display: grid;
		grid-template-areas: "image info";
		grid-template-columns: 1fr 1fr;
		gap: 24px;
	}
}
.recipe-card__inner {
	display: grid;
	grid-template-areas: "image" "info" "btn" "accordion";
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
@media screen and (min-width: 768px) {
	.recipe-card__inner {
		grid-template-columns: 1fr 1fr;
		grid-template-areas: "image info" "image btn" "accordion accordion";
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 38px;
		padding-block: 0;
	}
}
@media screen and (min-width: 1280px) {
	.recipe-card__inner {
		grid-template-columns: 1fr 1fr;
		grid-template-areas: "image info" "image btn" "accordion accordion";
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 38px;
		padding-block: 0;
	}
}

.recipe-card__image {
	position: relative;
	grid-area: image;
}
.recipe-card__image img {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	-o-object-fit: cover;
	object-fit: cover;
}

.recipe-card__info {
	grid-area: info;
}

.recipe__button {
	grid-area: btn;
	margin-top: 30px;
}

.recipe-card__label {
	position: absolute;
	top: 10px;
	left: -5px;
	width: 100px;
}
@media screen and (min-width: 1280px) {
	.recipe-card__label {
		width: 110px;
	}
}

.recipe-card__info {
	grid-area: info;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.recipe-card__subtitle {
	color: #000;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	margin-top: 20px;
}
@media screen and (min-width: 768px) {
	.recipe-card__subtitle {
		font-size: 14px;
	}
}
@media screen and (min-width: 1280px) {
	.recipe-card__subtitle {
		font-size: 18px;
	}
}

.recipe-card__title {
	color: #000;
	display: inline-block;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin-top: 14px;
}
.recipe-card__title span {
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 20px;
	font-weight: 700;
}
@media screen and (min-width: 768px) {
	.recipe-card__title span {
		font-size: 24px;
	}
}
@media screen and (min-width: 1280px) {
	.recipe-card__title span {
		font-size: 26px;
	}
}

.recipe-card__desc {
	color: #000;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.8;
	margin-top: 20px;
}
@media screen and (min-width: 768px) {
	.recipe-card__desc {
		font-size: 16px;
	}
}
@media screen and (min-width: 1280px) {
	.recipe-card__desc {
		font-size: 16px;
	}
}

.recipe-card__checkbox {
	display: none;
}

.recipe-card__toggle {
	display: inline-block;
	padding: 10px 20px;
	border: 2px solid #000;
	border-radius: 24px;
	cursor: pointer;
	font-weight: bold;
	margin: 16px 0;
	text-align: center;
}

.recipe-card__toggle::after {
	content: " ＋";
}

.recipe-card__checkbox:checked + .recipe-card__toggle::after {
	content: " －";
}

/* ✅ accordion は checkbox の後ろにあるので ~ を使える */
.recipe-card__accordion {
	grid-area: accordion;
	max-height: 0;
	overflow: hidden;
	-webkit-transition: max-height 0.5s ease;
	transition: max-height 0.5s ease;
	margin-bottom: 20px;
	display: grid;
	grid-template-areas: "ingredient" "howto" "arrange";
	gap: 10px;
	width: 100%;
}
@media screen and (min-width: 768px) {
	.recipe-card__accordion {
		grid-template-areas: "ingredient howto" "ingredient arrange";
		gap: 20px;
	}
}
@media screen and (min-width: 1280px) {
	.recipe-card__accordion {
		grid-template-areas: "ingredient howto" "ingredient arrange";
		gap: 20px;
	}
}

.recipe-card__checkbox:checked ~ .recipe-card__accordion {
	max-height: 2000px; /* 中身に応じて十分大きく */
}

.area__ingredient {
	grid-area: ingredient;
}

.area__howto {
	grid-area: howto;
}

.area__arrange {
	grid-area: arrange;
}

.recipe-card__section-title {
	background: #000;
	color: #fff;
	padding: 4px 14px;
	border-radius: 50px;
	font-size: 14px;
	display: inline-block;
	margin-bottom: 10px;
}

.recipe-card__list {
	padding-left: 4px;
	list-style: none;
	font-size: 14px;
	font-weight: 400;
}

.recipe-card__steps {
	padding-left: 4px;
	font-size: 14px;
	font-weight: 400;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 13px;
}

.steps__number {
	margin-top: -5px;
	margin-right: 3px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 20px;
	height: 20px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	border-radius: 20px;
	background: #007fd3;
	color: #fff;
	font-family: "Jost", sans-serif;
	font-size: 11px;
	font-weight: 600;
}

.text--blue {
	color: #007fd3;
	font-weight: 600;
	font-size: 16px;
	margin-right: 4px;
}

.recipe-instagram {
	text-align: center;
	padding-bottom: 70px;
}
@media screen and (min-width: 1280px) {
	.recipe-instagram {
		padding-bottom: 100px;
	}
}
.recipe-instagram img {
	max-width: 527px;
	width: 100%;
	height: auto;
}

.recipe-instagram__title {
	max-width: 359px;
	margin: 50px auto 20px;
}
@media screen and (min-width: 768px) {
	.recipe-instagram__title {
		width: 500px;
	}
}
@media screen and (min-width: 1280px) {
	.recipe-instagram__title {
		width: 714px;
		margin-bottom: 20px;
	}
}

.profile-section {
	margin-top: 50px;
}
.profile-section .profile-section__card {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	margin: 0 auto;
	-webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	display: grid;
	grid-template-columns: 100px 1fr;
	grid-template-rows: auto auto;
	grid-template-areas: "profile-section__image profile-section__info" "profile-section__desc profile-section__desc";
	gap: 15px;
}
@media screen and (min-width: 1280px) {
	.profile-section .profile-section__card {
		width: 1080px;
		margin: 0 auto;
	}
}
.profile-section .profile-section__image {
	grid-area: profile-section__image;
	width: 90px;
	height: 90px;
}
.profile-section .profile-section__image img {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.profile-section .profile-section__info {
	grid-area: profile-section__info;
	align-self: center;
}
.profile-section .profile-section__name {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 4px;
}
.profile-section .profile-section__title {
	font-size: 14px;
	color: #333;
}
.profile-section .profile-section__desc {
	grid-area: profile-section__desc;
	font-size: 14px;
	line-height: 1.7;
	color: #555;
}

.message {
	position: relative;
	padding: 60px 20px;
	background: url("https://d2w53g1q050m78.cloudfront.net/uchinoyacom/uploads/hiyashi/img/bg_concept.webp") no-repeat center/cover;
}
.message__inner {
	max-width: calc(100% - 40px);
	margin: 0 auto;
	background: #fff;
	border-radius: 8px;
	padding: 32px 24px;
	text-align: center;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.5);
	-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
}
.message__text {
	font-size: 16px;
	line-height: 2.2;
	letter-spacing: 0.8px;
}
@media screen and (min-width: 768px) {
	.message__text {
		font-size: 20px;
		letter-spacing: 1px;
	}
}
@media screen and (min-width: 1280px) {
	.message__text {
		font-size: 24px;
		letter-spacing: 1.2px;
	}
}
.message__text--black {
	color: #000;
}
.message__divider {
	width: 40px;
	height: 1px;
	margin: 20px auto;
	background: #666;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
	.message__divider {
		width: 60px;
		height: 1px;
		margin: 40px auto;
	}
}
@media screen and (min-width: 1280px) {
	.message__divider {
		width: 60px;
		height: 1px;
		margin: 40px auto;
	}
}
.message__highlight {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.8;
	position: relative;
	z-index: 0;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #ffff76));
	background: linear-gradient(transparent 70%, #ffff76 70%);
	display: inline;
}
@media screen and (min-width: 768px) {
	.message__highlight {
		font-size: 34px;
		font-weight: 500;
		line-height: 1.6;
		letter-spacing: 1.7px;
	}
}
@media screen and (min-width: 1280px) {
	.message__highlight {
		font-size: 34px;
		font-weight: 500;
		line-height: 1.6;
		letter-spacing: 1.7px;
	}
}
.message__highlight strong {
	color: #ff6b35;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.8;
}
@media screen and (min-width: 768px) {
	.message__highlight strong {
		font-size: 34px;
		font-weight: 500;
		line-height: 1.6;
		letter-spacing: 1.7px;
	}
}
@media screen and (min-width: 1280px) {
	.message__highlight strong {
		font-size: 34px;
		font-weight: 500;
		line-height: 1.6;
		letter-spacing: 1.7px;
	}
}
@media screen and (min-width: 768px) {
	.message {
		padding: 60px 20px;
	}
	.message__inner {
		width: 800px;
		margin-left: auto;
		margin-right: auto;
	}
}
@media screen and (min-width: 1280px) {
	.message {
		padding: 80px 20px;
	}
	.message__inner {
		width: 896px;
		margin-left: auto;
		margin-right: auto;
	}
}

.menu {
	background: url("https://d2w53g1q050m78.cloudfront.net/uchinoyacom/uploads/hiyashi/img/bg_menu.webp") top/cover no-repeat;
	padding: 60px 20px;
	color: #fff;
	text-align: center;
	background-size: 100% 700px;
}
@media screen and (min-width: 768px) {
	.menu {
		background-size: 100% 100%;
	}
}
@media screen and (min-width: 1280px) {
	.menu {
		background-size: 100% 100%;
	}
}
.menu__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
}
@media screen and (min-width: 768px) {
	.menu__inner {
		width: 800px;
		margin-left: auto;
		margin-right: auto;
		gap: 40px;
	}
}
@media screen and (min-width: 1280px) {
	.menu__inner {
		width: 896px;
		margin-left: auto;
		margin-right: auto;
		gap: 40px;
	}
}
.menu__lead {
	font-style: italic;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.9px;
}
@media screen and (min-width: 768px) {
	.menu__lead {
		font-size: 26px;
	}
}
@media screen and (min-width: 1280px) {
	.menu__lead {
		font-size: 36px;
		font-weight: 700;
		line-height: 1.6;
		letter-spacing: 1.8px;
	}
}
.menu__title {
	font-style: italic;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	font-size: 23px;
	font-weight: 700;
	letter-spacing: 1.15px;
	white-space: nowrap;
}
@media screen and (min-width: 1280px) {
	.menu__title {
		font-size: 36px;
		font-weight: 700;
		line-height: 1.6;
		letter-spacing: 1.8px;
	}
}
@media screen and (min-width: 768px) {
	.menu__title span {
		font-size: 40px;
	}
}
@media screen and (min-width: 1280px) {
	.menu__title span {
		font-size: 50px;
		font-weight: 700;
		line-height: 1.6;
		letter-spacing: 2.5px;
	}
}
.menu__block {
	background: #fff;
	color: #333;
	border-radius: 10px;
	-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
	margin-bottom: 30px;
}
.menu__block-title {
	background: #d8b529;
	border-radius: 10px 10px 0 0;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.7px;
	text-align: center;
	padding-block: 9px;
}
@media screen and (min-width: 768px) {
	.menu__block-title {
		font-size: 20px;
	}
}
@media screen and (min-width: 1280px) {
	.menu__block-title {
		font-size: 30px;
	}
}
.menu__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 30px;
}
@media screen and (min-width: 768px) {
	.menu__item {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}
@media screen and (min-width: 1280px) {
	.menu__item {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}
.menu__item-image {
	width: 200px;
	height: 133px;
	border-radius: 3px;
	overflow: hidden;
}
.menu__item-image img {
	width: 100%;
	height: auto;
	display: block;
}
@media screen and (min-width: 768px) {
	.menu__item-image {
		width: 314px;
		height: 210px;
	}
}
@media screen and (min-width: 1280px) {
	.menu__item-image {
		width: 314px;
		height: 210px;
		border-radius: 10px;
	}
}
.menu__item-body {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.menu__item-title {
	font-size: 20px;
	margin-bottom: 6px;
	font-weight: 700;
}
@media screen and (min-width: 768px) {
	.menu__item-title {
		font-size: 24px;
	}
}
@media screen and (min-width: 1280px) {
	.menu__item-title {
		font-size: 30px;
	}
}
.menu__item-text {
	font-weight: 500;
}
@media screen and (min-width: 768px) {
	.menu__item-text {
		font-size: 18px;
	}
}
@media screen and (min-width: 1280px) {
	.menu__item-text {
		font-size: 20px;
	}
}
.menu__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	padding-block: 30px;
}
@media screen and (min-width: 768px) {
	.menu__list {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}
@media screen and (min-width: 1280px) {
	.menu__list {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}
.menu__card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	z-index: 0;
}
.menu__image {
	position: relative;
	width: 200px;
	height: 133px;
}
.menu__image img {
	border-radius: 3px;
}
@media screen and (min-width: 1280px) {
	.menu__image img {
		border-radius: 10px;
	}
}
@media screen and (min-width: 1280px) {
	.menu__image {
		width: 264px;
		height: 176px;
	}
}
.menu__image--icon {
	position: absolute;
	width: 36px;
	height: 27px;
	top: 4px;
	left: 4px;
	z-index: 1;
}
@media screen and (min-width: 768px) {
	.menu__image--icon {
		width: 53px;
		height: 40px;
	}
}
@media screen and (min-width: 1280px) {
	.menu__image--icon {
		width: 53px;
		height: 40px;
	}
}
.menu__image--icon img {
	width: 100%;
	height: 100%;
	display: block;
}
.menu__card-title {
	font-size: 20px;
	font-weight: 700;
	margin-top: 20px;
}
@media screen and (min-width: 768px) {
	.menu__card-title {
		font-size: 18px;
	}
}
@media screen and (min-width: 1280px) {
	.menu__card-title {
		font-size: 18px;
	}
}
.menu__card-text {
	font-size: 14px;
	font-weight: 500;
	margin-top: 12px;
}
@media screen and (min-width: 768px) {
	.menu__card-text {
		margin-top: 20px;
	}
}
@media screen and (min-width: 1280px) {
	.menu__card-text {
		margin-top: 20px;
	}
}
.menu__rank {
	position: absolute;
	top: -8px;
	left: -8px;
	background: #f56623;
	color: #fff;
	font-size: 0.8rem;
	font-weight: bold;
	border-radius: 50%;
	width: 28px;
	height: 28px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.history {
	background: url("https://d2w53g1q050m78.cloudfront.net/uchinoyacom/uploads/hiyashi/img/bg_history.webp") top center/contain no-repeat;
	color: #fff;
	background-size: auto 700px;
}
@media screen and (min-width: 768px) {
	.history {
		background: url("https://d2w53g1q050m78.cloudfront.net/uchinoyacom/uploads/hiyashi/img/bg_history.webp") center/cover no-repeat;
	}
}
@media screen and (min-width: 1280px) {
	.history {
		background: url("https://d2w53g1q050m78.cloudfront.net/uchinoyacom/uploads/hiyashi/img/bg_history.webp") center/cover no-repeat;
		height: 776px;
	}
}
.history__inner {
	text-align: center;
	padding: 35px 20px;
}
.history__title {
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
	font-size: 50px;
	font-style: italic;
	font-weight: 700;
}
@media screen and (min-width: 768px) {
	.history__title {
		font-size: 70px;
	}
}
@media screen and (min-width: 1280px) {
	.history__title {
		font-size: 100px;
	}
}
.history__title span {
	background: linear-gradient(100deg, #fff 23.16%, #ffeab4 76.84%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 70px;
	font-weight: 700;
}
@media screen and (min-width: 768px) {
	.history__title span {
		font-size: 100px;
	}
}
@media screen and (min-width: 1280px) {
	.history__title span {
		font-size: 120px;
	}
}
.history__subtitle {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.9px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.6);
	display: inline-block;
}
@media screen and (min-width: 1280px) {
	.history__subtitle {
		font-size: 40px;
		letter-spacing: 2px;
	}
}
.history__features {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	margin-top: 40px;
}
@media screen and (min-width: 768px) {
	.history__features {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		gap: 30px;
	}
}
@media screen and (min-width: 1280px) {
	.history__features {
		width: 1060px;
		margin-left: auto;
		margin-right: auto;
	}
}
.history__card {
	border-radius: 10px;
	opacity: 0.85;
	background: #fff;
	-webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
	padding: 20px;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	text-align: center;
	color: #000;
}
@media screen and (min-width: 1280px) {
	.history__card {
		opacity: 0.9;
		padding: 34px;
	}
}
.history__card-title {
	color: #d8b529;
	text-align: center;
	font-size: 30px;
	font-weight: 900;
	letter-spacing: 1.5px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 6px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	line-height: 1;
}
@media screen and (min-width: 768px) {
	.history__card-title {
		font-size: 40px;
	}
}
@media screen and (min-width: 1280px) {
	.history__card-title {
		font-size: 50px;
	}
}
.history__card-title::after {
	content: "";
	width: 208px;
	height: 2px;
	background-color: #d8b529;
	display: block;
}
.history__card-subtitle {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.8px;
	margin-top: 18px;
}
@media screen and (min-width: 768px) {
	.history__card-subtitle {
		font-size: 18px;
	}
}
@media screen and (min-width: 1280px) {
	.history__card-subtitle {
		font-size: 18px;
	}
}
.history__card-text {
	font-size: 13px;
	font-weight: 500;
	margin-top: 12px;
}
@media screen and (min-width: 768px) {
	.history__card-text {
		font-size: 14px;
	}
}
@media screen and (min-width: 1280px) {
	.history__card-text {
		font-size: 14px;
	}
}

.voice {
	background: #f9f7f1 url("https://d2w53g1q050m78.cloudfront.net/uchinoyacom/uploads/hiyashi/img/bg_voice.webp") center/cover no-repeat;
	padding: 60px 0;
}
.voice__title {
	font-size: 40px;
	font-weight: 700;
	letter-spacing: 2px;
	position: relative;
	width: 260px;
	margin: 0 auto;
	text-align: center;
}
@media screen and (min-width: 768px) {
	.voice__title {
		font-size: 50px;
	}
}
@media screen and (min-width: 1280px) {
	.voice__title {
		font-size: 70px;
		font-weight: 700;
		letter-spacing: 3.5px;
		width: 400px;
	}
}
.voice__title::before {
	position: absolute;
	width: 55.383px;
	height: 27.536px;
	background: url("https://d2w53g1q050m78.cloudfront.net/uchinoyacom/uploads/hiyashi/img/deco_voice.webp") left center/contain no-repeat;
	content: "";
	display: block;
	top: 0;
	left: 0;
}
@media screen and (min-width: 768px) {
	.voice__title::before {
		width: 80px;
		height: 40px;
		left: -20px;
	}
}
@media screen and (min-width: 1280px) {
	.voice__title::before {
		width: 115.382px;
		height: 57.366px;
		top: 14px;
		left: -53px;
	}
}
.voice__title span {
	font-family: "Georgia", serif;
	font-style: italic;
	font-size: 1rem;
	color: #d4a91f;
	margin-right: 6px;
}
.voice__catch {
	background: var(--Linear, linear-gradient(90deg, #f9b28d 0%, #ff9d00 100%));
	color: #fff;
	text-align: center;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
	font-size: 24px;
	font-weight: 700;
	font-style: italic;
}
@media screen and (min-width: 768px) {
	.voice__catch {
		font-size: 34px;
	}
}
@media screen and (min-width: 1280px) {
	.voice__catch {
		font-size: 40px;
	}
}
.voice__catch span {
	font-size: 34px;
}
@media screen and (min-width: 768px) {
	.voice__catch span {
		font-size: 44px;
	}
}
@media screen and (min-width: 1280px) {
	.voice__catch span {
		font-size: 60px;
	}
}
.voice__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	padding: 40px 20px;
}
@media screen and (min-width: 768px) {
	.voice__list {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}
@media screen and (min-width: 1280px) {
	.voice__list {
		width: 1060px;
		margin-left: auto;
		margin-right: auto;
	}
}
.voice__item {
	background: #fff;
	border-radius: 12px;
	padding: 20px 12px 20px 20px;
	-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
	width: 320px;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (min-width: 768px) {
	.voice__item {
		width: auto;
		width: 344px;
		height: auto;
	}
}
@media screen and (min-width: 1280px) {
	.voice__item {
		width: auto;
		padding: 30px 24px;
		width: 344px;
		height: 369px;
	}
}
.voice__item-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 29px;
	text-align: left;
	max-width: 320px;
}
@media screen and (min-width: 768px) {
	.voice__item-wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 0;
		text-align: center;
	}
}
@media screen and (min-width: 1280px) {
	.voice__item-wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 0;
		text-align: center;
	}
}
.voice__item-title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 12px;
}
.voice__image {
	width: auto;
	height: 97px;
	margin: 0 auto 10px;
	display: block;
}
.voice__role {
	font-weight: 700;
}
@media screen and (min-width: 768px) {
	.voice__role {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		font-size: 18px;
		font-weight: 700;
		letter-spacing: 0.9px;
	}
}
@media screen and (min-width: 1280px) {
	.voice__role {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		font-size: 18px;
		font-weight: 700;
		letter-spacing: 0.9px;
	}
}
.voice__headline {
	color: #d8b529;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
}
@media screen and (min-width: 768px) {
	.voice__headline {
		margin-bottom: 0;
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		font-size: 18px;
		font-weight: 900;
		letter-spacing: 0.9px;
	}
}
@media screen and (min-width: 1280px) {
	.voice__headline {
		margin-bottom: 0;
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		font-size: 18px;
		font-weight: 900;
		letter-spacing: 0.9px;
	}
}
.voice__text {
	font-size: 14px;
	margin-top: 12px;
	font-weight: 500;
	line-height: 1.8;
}

.price {
	position: relative;
	z-index: 0;
	background: url("https://d2w53g1q050m78.cloudfront.net/uchinoyacom/uploads/hiyashi/img/bg_price_sp.webp") top/contain no-repeat;
	padding: 218px 20px 20px;
	text-align: center;
}
@media screen and (min-width: 768px) {
	.price {
		background: url("https://d2w53g1q050m78.cloudfront.net/uchinoyacom/uploads/hiyashi/img/bg_price.webp") top/contain no-repeat;
	}
}
@media screen and (min-width: 1280px) {
	.price {
		background: url("https://d2w53g1q050m78.cloudfront.net/uchinoyacom/uploads/hiyashi/img/bg_price.webp") top/contain no-repeat;
		padding: 319px 20px 20px;
	}
}
.price__title {
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 1.5px;
	line-height: 1.2;
}
@media screen and (min-width: 768px) {
	.price__title {
		margin-bottom: 50px;
	}
}
@media screen and (min-width: 1280px) {
	.price__title {
		margin-bottom: 50px;
	}
}
.price__title span {
	color: #ff6b35;
	text-align: center;
	font-size: 23px;
	font-weight: 700;
	letter-spacing: 0.2px;
	position: relative;
	z-index: 0;
}

@media screen and (min-width: 768px) {
	.price__title span {
		font-size: 30px;
	}
}
@media screen and (min-width: 1280px) {
	.price__title span {
		font-size: 40px;
	}
}
.price__title span::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 3px;
	width: 100%;
	height: 8px;
	background: #ffff76;
	z-index: -1;
}
.price__box {
	border-radius: 10px;
	background: #fff;
	-webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
	padding: 30px 8px 32px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 20px;
	margin-top: 40px;
}
@media screen and (min-width: 768px) {
	.price__box {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		max-width: 800px;
		margin: 0 auto;
	}
}
@media screen and (min-width: 1280px) {
	.price__box {
		max-width: 1000px;
		margin: 0 auto;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}
.price__set {
	text-align: left;
	width: calc(100% - 40px);
}
@media screen and (min-width: 768px) {
	.price__set {
		width: 46%;
	}
}
@media screen and (min-width: 1280px) {
	.price__set {
		width: 43%;
	}
}
.price__set-title {
	font-size: 24px;
	font-weight: 700;
	color: #ff6b35;
	text-align: center;
}
.price__set-title--black {
	color: #000;
	font-size: 24px;
}
.price__set-title--big {
	color: #ff6b35;
	font-size: 24px;
}
.price__list {
	margin-top: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	max-width: 310px;
	margin-left: auto;
	margin-right: auto;
}
.price__list .price__item {
	border-radius: 10px;
	border: 1px solid #ff6b35;
	background: #fff;
	padding: 8px 12px 8px 20px;
	margin-bottom: 12px;
	font-size: 20px;
	font-weight: 700;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
@media screen and (min-width: 768px) {
	.price__list .price__item {
		width: 310px;
		height: 60px;
	}
}
@media screen and (min-width: 1280px) {
	.price__list .price__item {
		width: 310px;
		height: 60px;
	}
}
.price__list .price__item span {
	color: #ff6b35;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.8px;
	margin-right: 21px;
}
.price__value {
	width: 313px;
	margin-top: 20px;
}
@media screen and (min-width: 1280px) {
	.price__value {
		width: 468px;
	}
}
.price__value .price__normal {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.price__value .price__normal-sub {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
}
.price__value .price__normal-main {
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
}
.price__value .price__normal-main strong {
	font-size: 38px;
	font-weight: 600;
	letter-spacing: -1.9px;
	line-height: 1;
}
.price__value .price__discount {
	margin-top: 8px;
	background: #ff6b35;
	border-radius: 4px;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 1px;
}
.price__value .price__special {
	font-size: 2rem;
	font-weight: bold;
	color: #ff6b35;
}
.price__value .price__special span {
	font-size: 67px;
	font-style: italic;
}
.price__value .price__special .price__small {
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
}

.price__item--orange {
	color: #ff6b35;
	text-align: center;
	font-weight: 900;
}

.subscription {
	text-align: center;
	padding: 40px 20px;
	background: #fff;
	padding-inline: 20px;
}
@media screen and (min-width: 768px) {
	.subscription {
		max-width: 768px;
		padding: 80px 20px;
		margin: 60px auto;
	}
}
@media screen and (min-width: 1280px) {
	.subscription {
		max-width: 1208px;
		padding: 100px 20px;
		margin: 60px auto;
	}
}

.subscription__title {
	width: 310px;
	margin: 0 auto 10px;
}
@media screen and (min-width: 768px) {
	.subscription__title {
		width: 500px;
	}
}
@media screen and (min-width: 1280px) {
	.subscription__title {
		width: 885px;
		margin-bottom: 14px;
	}
}

.subscription__subtitle {
	font-size: 20px;
	font-weight: bold;
	color: #000;
	margin-bottom: 10px;
}

.subscription__desc {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.8;
	color: #000;
	margin-top: 30px;
}
@media screen and (min-width: 1280px) {
	.subscription__desc {
		margin-top: 14px;
		font-size: 20px;
	}
}

.subscription__plans {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 40px;
	width: calc(100% - 40px);
	margin: 40px auto 0;
}
@media screen and (min-width: 768px) {
	.subscription__plans {
		width: 100%;
		margin: 40px auto 0;
		gap: 30px;
	}
}
@media screen and (min-width: 1280px) {
	.subscription__plans {
		width: 1208px;
		margin: 0 auto;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		margin-top: 60px;
	}
}

.subscription__plan {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	border-radius: 12px;
	padding: 0 0 12px;
	background: #fff;
	-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.subscription__plan-title {
	height: 40px;
	display: grid;
	place-items: center;
	border-radius: 12px 12px 0 0;
	color: #fff;
	text-align: center;
	font-family: "Noto Sans JP";
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.8px;
}

.subscription__plan-price {
	width: 237px;
	margin: 18px auto;
}
@media screen and (min-width: 1280px) {
	.subscription__plan-price {
		width: 250px;
	}
}

.subscription__plan-price span {
	font-size: 22px;
}

.subscription__plan-price small {
	font-size: 12px;
	color: #555;
}

.subscription__plan-regular {
	font-size: 12px;
	color: #888;
}

.subscription__plan-unit {
	font-size: 14px;
	margin-bottom: 16px;
}

.subscription__plan-button {
	font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
	display: inline-block;
	width: calc(100% - 40px);
	margin: 0 auto;
	padding: 8px 12px;
	border-radius: 30px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.65px;
	color: #fff;
}

.subscription__plan--yellow .subscription__plan-title {
	background: #ffbf00;
}

.subscription__plan--yellow .subscription__plan-button {
	background: #ffbf00;
}

.subscription__plan--orange .subscription__plan-title {
	background: #ff6b35;
}

.subscription__plan--orange .subscription__plan-button {
	background: #ff6b35;
}

.subscription__plan--gray .subscription__plan-title {
	background: #6b6b6b;
}

.subscription__plan--gray .subscription__plan-button {
	background: #6b6b6b;
}

.feature {
	font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
	background: #e1f6f7;
	padding: 60px 20px;
}

.feature-point__inner {
	max-width: 1100px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 30px;
	display: grid;
	grid-template-areas: "f-img f-title" "f-text f-text" "f-others f-others";
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
@media screen and (min-width: 768px) {
	.feature-point__inner {
		grid-template-areas: "f-img f-title" "f-img f-text" "f-img f-others";
	}
}

.feature__title {
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 1.2px;
	margin-bottom: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 2px;
}
@media screen and (min-width: 1280px) {
	.feature__title {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		font-size: 30px;
		letter-spacing: 1.5px;
		gap: 0;
	}
}
.feature__title span {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	display: inline-block;
	margin-top: 6px;
	background-color: #fff;
	padding: 6px 12px;
}

.feature__desc {
	font-size: 13px;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.65px;
	margin-top: 40px;
}
@media screen and (min-width: 1280px) {
	.feature__desc {
		font-size: 16px;
		line-height: 2;
		letter-spacing: 0.8px;
		margin-top: 50px;
	}
}

.feature__icons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.feature__icon-item {
	height: 133px;
	border-radius: 10px;
	border: 1px solid #007fd3;
	background: #fff;
	padding: 16px;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: 0.65px;
}
@media screen and (min-width: 1280px) {
	.feature__icon-item {
		width: 281px;
		height: 218px;
	}
}

.feature__icon-item img {
	width: 40px;
	height: 40px;
	margin-bottom: 8px;
}
@media screen and (min-width: 1280px) {
	.feature__icon-item img {
		width: 60px;
		height: 60px;
	}
}

.feature__icon-item p {
	font-size: 14px;
	font-weight: bold;
	color: #0074c2;
}

@media screen and (min-width: 1280px) {
	.feature__icons {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		max-width: 40%;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}
	.feature__title {
		font-size: 28px;
	}
	.feature__desc {
		font-size: 16px;
	}
}

.feature__inner {
	padding-inline: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
}
@media screen and (min-width: 768px) {
	.feature__inner {
		margin: 0 auto;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 40px;
	}
}
@media screen and (min-width: 1280px) {
	.feature__inner {
		width: 1208px;
		margin: 0 auto;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

.text__gray {
	color: #959595 !important;
}
/* ===== ３つの特徴slide ===== */
.feature-points {
	background: #e1f6f7;
	padding: 60px 0 40px;
}
/* ===== PCレイアウト：画像（左）＋テキスト（右） ===== */
.p-kv_slider {
	max-width: 1280px;
	margin: 0 auto;
	padding: 40px 20px;
	gap: 40px;
}

.splide__track {
	display: flex;
	align-items: center;
	gap: 20px;
}

/* 左：画像スライド */
.p-kv_slider__track__list {
	width: 500px; /* 左側幅固定 */
	aspect-ratio: 1/1;
	position: relative;
}
.p-kv_slider__track__list__item__inner {
	width: 100%;
	height: 100%;
	border-radius: 8px;
	background-size: cover;
	background-position: center;
}

/* 右：見出し＋本文 */
.p-kv_slider__content__inner {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* 見出し */
.p-kv_slider__content__item {
	cursor: pointer;
	transition: background-color 0.3s ease;
	padding: 10px;
}
.p-kv_slider__content__title__wrapper {
	display: flex;
	align-items: center;
	gap: 12px;
}
.p-kv_slider__content__index {
	color: #007fd3;
	font-family: Jost;
	font-size: 30px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 1.5px;
}

@media screen and (max-width: 767px) {
	.p-kv_slider__content__index {
		font-size: 25px;
	}
}
@media screen and (max-width: 1280px) {
	.p-kv_slider__content__index {
		font-size: 30px;
	}
}
.p-kv_slider__content__title {
	color: #000;
	font-family: "Noto Sans JP";
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 1px;
}

/* 本文フェード */
.p-kv_slider__content__text {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.5s ease, opacity 0.5s ease, margin-top 0.5s ease;
	margin-top: 0;
	color: #000;
	font-family: "Noto Sans JP";
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.7px;
}
.p-kv_slider__content__item.is-active .p-kv_slider__content__text {
	max-height: 300px;
	opacity: 1;
	margin-top: 10px;
	padding-block: 20px;
	display: block;
}

/* デフォルト（PC・タブレット用）：線を表示 */
.p-kv_slider__content__item {
	border-top: 1px solid #ccc;
	border-bottom: none;
}

/* 最後のアイテムだけ下線を追加（PC・タブレット用） */
.p-kv_slider__content__item:last-child {
	border-bottom: 1px solid #ccc;
}

/* スマホだけ：線を消す */
@media screen and (max-width: 767px) {
	.p-kv_slider__content__item {
		border-top: none;
		border-bottom: none;
	}
	.p-kv_slider__content__item:last-child {
		border-bottom: none;
	}
}

/* ===== SPレイアウト：画像＋見出し 横並び・本文非表示 ===== */
@media screen and (max-width: 767px) {
	.p-kv_slider {
		flex-direction: row;
		align-items: center;
		gap: 12px;
		padding: 20px;
	}

	/* 左：画像 */
	.p-kv_slider__track__list {
		flex: 0 0 40%;
		aspect-ratio: 1/1;
	}

	/* 右：見出し（本文なし） */
	.p-kv_slider__content__inner {
		flex: 1;
		margin: 0;
		gap: 0;
	}

	.p-kv_slider__content__item {
		display: none;
	}
	.p-kv_slider__content__item.is-active {
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.p-kv_slider__content__title__wrapper {
		flex-direction: row;
		align-items: center;
	}

	.p-kv_slider__content__text {
		display: none !important; /* SPでは本文非表示 */
	}
}

/* review */
.review {
	font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 16px;
}
@media screen and (min-width: 768px) {
	.review {
		padding: 80px 20px;
	}
}
@media screen and (min-width: 1280px) {
	.review {
		padding: 100px 20px;
	}
}

.review__title {
	width: 139px;
	margin: 0 auto 40px;
}
@media screen and (min-width: 768px) {
	.review__title {
		width: 200px;
		margin-bottom: 60px;
	}
}
@media screen and (min-width: 1280px) {
	.review__title {
		width: 477px;
		margin-bottom: 60px;
	}
}

.review__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}
@media screen and (min-width: 768px) {
	.review__list {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and (min-width: 1280px) {
	.review__list {
		grid-template-columns: repeat(3, 1fr);
	}
}

.review__item {
	background: #fff;
	border-radius: 12px;
	padding: 20px;
	-webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.review__header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
	margin-bottom: 16px;
}

.review__avatar {
	width: 60px;
	height: 60px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.review__info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 4px;
}

.review__role {
	font-size: 16px;
	font-weight: 500;
}

.review__stars {
	font-size: 18px;
	color: #ffcc00;
}

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

.faq {
	background: #e8f9fb;
	font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
	background-image: linear-gradient(#d0eff2 1px, transparent 1px), linear-gradient(90deg, #d0eff2 1px, transparent 1px);
	background-size: 20px 20px;
	position: relative;
	padding: 50px 20px 70px;
	/* PCレイアウト */
}
@media screen and (min-width: 768px) {
	.faq {
		padding: 80px 20px;
	}
}
@media screen and (min-width: 1280px) {
	.faq {
		padding: 100px 20px;
	}
}
.faq .faq__inner {
	max-width: 960px;
	margin: 0 auto;
}
.faq .faq__title {
	font-size: 22px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 30px;
	position: relative;
}
.faq .faq__item {
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 20px;
	-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 1280px) {
	.faq .faq__item {
		border-radious: 20px;
	}
}
.faq .faq__question {
	font-size: 16px;
	font-weight: bold;
	color: #000;
	margin-bottom: 8px;
}
.faq .faq__question::before {
	content: "Q ";
	color: #007fd3;
	font-family: "Jost", sans-serif;
	font-size: 24px;
	font-weight: 600;
}
.faq .faq__answer {
	font-size: 14px;
	line-height: 1.6;
	color: #333;
	position: relative;
}
.faq .faq__answer::before {
	content: "A ";
	color: #ff6b35;
	font-family: "Jost", sans-serif;
	font-size: 24px;
	font-weight: 600;
}
@media (min-width: 768px) {
	.faq .faq__inner {
		display: grid;
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.faq .faq__item {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin-bottom: 0;
	}
}

.cta {
	position: relative;
	background: #fff;
	text-align: center;
	padding: 80px 16px; /* 上下に余白を確保 */
	overflow: hidden; /* 疑似要素はみ出し防止 */
	z-index: 0;
}

.cta::before,
.cta::after {
	content: "";
	position: absolute;
	height: 100%;
	left: 0;
	right: 0;
	height: 120px; /* 背景画像の高さに合わせて調整 */
	background: url("https://d2w53g1q050m78.cloudfront.net/uchinoyacom/uploads/hiyashi/img/bg_triangle.webp") center/cover no-repeat;
	background-size: 100% 120px;
	z-index: -1;
}

.cta::before {
	top: 0;
}

.cta::after {
	bottom: 0;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.cta__inner {
	padding-inline: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
@media screen and (min-width: 768px) {
	.cta__inner {
		width: 600px;
		margin: 0 auto;
	}
}
@media screen and (min-width: 1280px) {
	.cta__inner {
		width: 1208px;
		margin: 0 auto;
	}
}

.cta__title {
	font-size: 22px;
	font-weight: bold;
	line-height: 1.5;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #ffff76));
	background: linear-gradient(transparent 70%, #ffff76 0%);
	display: inline-block;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin-top: 20px;
}

@media (min-width: 768px) {
	.cta__title {
		font-size: 28px;
	}
}
.cta__cards {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 32px;
}
@media screen and (min-width: 1280px) {
	.cta__cards {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}

.cta__card {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	background: #fff;
	border-radius: 8px;
	padding: 24px;
	-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.cta__card--yellow {
	border-top: 8px solid #f9c900;
}

.cta__card--orange {
	border-top: 8px solid #ff7043;
}

.cta__card--gray {
	border-top: 8px solid #666;
}

.cta__card-title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 16px;
}

.cta__card-price {
	margin-bottom: 16px;
	line-height: 1.6;
}

.cta__card-price-main {
	color: #e60000;
	font-size: 20px;
	font-weight: bold;
}

.cta__card-price-each {
	font-weight: bold;
	font-size: 16px;
}

.cta__card-button {
	font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
	display: inline-block;
	padding: 10px 20px;
	border-radius: 24px;
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.65px;
	width: calc(100% - 40px);
	text-align: center;
}

.cta__card--yellow .cta__card-button {
	background: #f9c900;
}

.cta__card--orange .cta__card-button {
	background: #ff7043;
}

.cta__card--gray .cta__card-button {
	background: #666;
}

.cta__actions {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	margin-top: 40px;
}
@media screen and (min-width: 1280px) {
	.cta__actions {
		width: 531px;
		margin: 0 auto 40px;
	}
}

.cta__action-button--primary {
	font-size: 18px;
	background: #ff7043;
	color: #fff;
	width: 100%;
}

@media screen and (min-width: 1280px) {
	.cta__action-button--primary {
		height: 70px;
		font-size: 24px;
	}
}

.cta__action-button--secondary {
	font-size: 18px;
	border: 2px solid #ff7043;
	color: #ff7043;
	background: #fff;
	width: 100%;
}
@media screen and (min-width: 1280px) {
	.cta__action-button--secondary {
		height: 70px;
		font-size: 24px;
	}
}
.cta__action-button--secondary:hover {
	background: #ff7043;
	color: #fff;
}

.footer {
	background: #fff;
	padding: 60px 20px 30px;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.footer__inner {
	max-width: 1100px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.footer__logo {
	width: 180px;
	height: 43px;
}
.footer__logo img {
	width: 100%;
	height: auto;
	display: block;
}
.footer__logo .footer__brand {
	font-size: 1.2rem;
	font-weight: bold;
	font-family: "Hiragino Mincho ProN", serif;
}
.footer__nav {
	font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
	margin-top: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
@media screen and (min-width: 768px) {
	.footer__nav {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}
@media screen and (min-width: 1280px) {
	.footer__nav {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}
.footer__nav-item a {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.65px;
	-webkit-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
	.footer__nav-item a {
		font-size: 16px;
		letter-spacing: 0.8px;
	}
}
@media screen and (min-width: 1280px) {
	.footer__nav-item a {
		font-size: 16px;
		letter-spacing: 0.8px;
	}
}
.footer__nav-item a:hover {
	opacity: 0.6;
}
