/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/

/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/

/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/

/* セクションラベル（cta で使用） */

/* mask-image でアイコン表示（親の color に追従させる） */

html {
	font-size: 16px;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 60px;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	color: #5C4A3A;
	background-color: #FAF8F5;
}

a {
	text-decoration: none;
	color: inherit;
	transition: opacity 0.3s;
}

/* 共通：js-fade-in アニメーション初期状態 */

.js-fade-in {
	opacity: 0;
	transition: opacity 0.3s ease;
}

.js-fade-in.is-visible {
	opacity: 1;
}

/*
 * 参考
 * https: //github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/

/* Box sizing rules */

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* remove default margin */

body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */

ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Set core root defaults */

html:focus-within {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img,
picture {
	max-width: 100%;
	display: block;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

li {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* remove all animations and transitions for people that prefer not to see them */

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.layout-inner {
	width: 100%;
	max-width: 37.5rem;
	margin-inline: auto;
	padding-inline: 20px;
}

/* ============================
   セクション共通の余白
   ============================ */

.layout-section {
	padding: 5rem 0;
}

.layout-section2 {
	padding: 5rem 0;
}

.section-title {
	text-align: center;
}

.section-title__en {
	font-family: "Noto Serif JP", serif;
	font-size: 0.8125rem;
	font-weight: 500;
	color: #C4A96A;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.section-title__ja {
	font-family: "Noto Serif JP", serif;
	font-size: 1.5rem;
	font-weight: 500;
	color: #1B2A4A;
	letter-spacing: 0.1em;
	line-height: 1.6;
	margin-top: 0.5rem;
}

.section-title__sub {
	font-family: "Noto Serif JP", serif;
	font-size: 0.875rem;
	font-weight: 400;
	color: #5C4A3A;
	letter-spacing: 0.15em;
	line-height: 1.6;
	margin-top: 0.75rem;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
}

.section-title__sub::before,
.section-title__sub::after {
	content: "";
	display: inline-block;
	width: 1.75rem;
	height: 1px;
	background-color: currentColor;
	opacity: 0.6;
}

/* ============================
   2. ABOUT
   ============================ */

.about {
	background-color: #FAF8F5;
}

.about__body {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-top: 3rem;
}

.about__img img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

.about__lead {
	font-family: "Noto Serif JP", serif;
	font-size: 1.25rem;
	font-weight: 500;
	color: #1B2A4A;
	letter-spacing: 0.08em;
	line-height: 2;
}

.about__desc {
	font-size: 1rem;
	font-weight: 400;
	color: #5C4A3A;
	line-height: 2;
	letter-spacing: 0.05em;
	margin-top: 1.5rem;
}

.about__desc + .about__desc {
	margin-top: 1rem;
}

/* ============================
   8. ACCESS
   ============================ */

.access {
	background-color: #F0F2F7;
}

.access__map {
	border-radius: 8px;
	overflow: hidden;
	aspect-ratio: 4/3;
	margin-top: 2.5rem;
}

.access__map iframe {
	width: 100%;
	height: 100%;
	display: block;
	border: 0;
}

/* ============================
   4. COMMITMENT
   ============================ */

.commitment {
	background-color: #FAF8F5;
}

.commitment__cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-top: 3rem;
}

.commitment__card {
	flex: 1;
	background-color: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(27, 42, 74, 0.05);
}

.commitment__card-img img {
	width: 100%;
	height: auto;
	aspect-ratio: 4/3;
	object-fit: cover;
}

.commitment__card-body {
	padding: 1.75rem 1.5rem;
}

.commitment__card-num {
	display: block;
	font-family: "Noto Serif JP", serif;
	font-size: 1.75rem;
	font-weight: 700;
	color: #1B2A4A;
	letter-spacing: 0.05em;
	line-height: 1;
	opacity: 0.2;
}

.commitment__card-title {
	font-family: "Noto Serif JP", serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: #1B2A4A;
	letter-spacing: 0.08em;
	line-height: 1.6;
	margin-top: 0.75rem;
}

.commitment__card-text {
	font-size: 1rem;
	font-weight: 400;
	color: #7A6B5D;
	line-height: 1.9;
	letter-spacing: 0.04em;
	margin-top: 0.75rem;
}

/* ============================
   9. CTA（Instagram CTA）
   ============================ */

.cta {
	position: relative;
	overflow: hidden;
}

.cta__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.cta__bg picture {
	display: block;
	width: 100%;
	height: 100%;
}

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

.cta__overlay {
	position: absolute;
	inset: 0;
	background: rgba(15, 27, 51, 0.75);
	z-index: 1;
}

.cta__inner {
	position: relative;
	z-index: 2;
	text-align: center;
}

.cta__label {
	font-family: "Noto Serif JP", serif;
	font-size: 0.8125rem;
	font-weight: 500;
	color: #C4A96A;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.cta__label {
	color: #C4A96A;
}

.cta__title {
	font-family: "Noto Serif JP", serif;
	font-size: 1.375rem;
	font-weight: 500;
	color: #ffffff;
	letter-spacing: 0.1em;
	line-height: 1.8;
}

.cta__text {
	margin-top: 1.5rem;
}

.cta__text p {
	font-size: 1rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.85);
	line-height: 2;
	letter-spacing: 0.05em;
}

.cta__text p + p {
	margin-top: 1rem;
}

.cta__btn-wrap {
	display: flex;
	justify-content: center;
	margin-top: 2.5rem;
}

.cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	padding: 1rem 2.5rem;
	background-color: #ffffff;
	color: #1B2A4A;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	border-radius: 999px;
	border: 1px solid #ffffff;
	transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.cta__btn-icon {
	display: inline-block;
	width: 1.375rem;
	height: 1.375rem;
	background-color: currentColor;
	-webkit-mask-image: url("../images/icon-instagram.svg");
	mask-image: url("../images/icon-instagram.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
}

/* ============================
   Footer — こうじごはん ひまわり
   ============================ */

.footer {
	background-color: #1B2A4A;
	color: #ffffff;
}

.footer__inner {
	max-width: 75rem;
	margin: 0 auto;
	padding: 3rem 1.25rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.footer__logo {
	margin: 0 auto;
	width: 5rem;
	height: 5rem;
}

.footer__logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.footer__catch {
	font-family: "Noto Serif JP", serif;
	font-size: 0.9375rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
	letter-spacing: 0.1em;
	margin-top: 1rem;
}

.footer__nav {
	margin-top: 2rem;
}

.footer__nav-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem 1.5rem;
}

.footer__nav-item a {
	position: relative;
	font-size: 0.875rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.8);
	letter-spacing: 0.05em;
	transition: color 0.3s;
}

.footer__nav-item a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 1px;
	background-color: currentColor;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.3s ease;
}

.footer__sns {
	margin-top: 2rem;
}

.footer__sns-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	color: #ffffff;
	transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.footer__sns-icon {
	display: inline-block;
	width: 1.5rem;
	height: 1.5rem;
	background-color: currentColor;
	-webkit-mask-image: url("../images/icon-instagram.svg");
	mask-image: url("../images/icon-instagram.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
}

.footer__copyright {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 0.05em;
	margin-top: 2rem;
}

.footer__copyright small {
	font-size: inherit;
}

/* ============================
   Header — こうじごはん ひまわり
   ============================ */

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 60px;
	background-color: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(8px);
	z-index: 1000;
	transition: background-color 0.3s, box-shadow 0.3s;
}

.header.is-scrolled {
	box-shadow: 0 1px 0.75rem rgba(27, 42, 74, 0.08);
}

.header__inner {
	margin-inline: auto;
	padding-inline: 20px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header__logo {
	z-index: 1001;
	flex-shrink: 0;
	width: 7.5rem;
}

.header__logo a {
	display: flex;
	align-items: center;
	height: 100%;
}

.header__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	aspect-ratio: 110/40;
	transition: filter 0.3s ease;
}

.header__inner:has(.js-hamburger.is-open) .header__logo img {
	filter: brightness(0) invert(1);
}

/* ---- Hamburger (SP) ---- */

.header__hamburger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	z-index: 1001;
}

.header__hamburger-line {
	display: block;
	width: 22px;
	height: 2px;
	background-color: #1B2A4A;
	border-radius: 1px;
	transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}

.header__hamburger.is-open .header__hamburger-line {
	background-color: #ffffff;
}

.header__hamburger.is-open .header__hamburger-line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.header__hamburger.is-open .header__hamburger-line:nth-child(2) {
	opacity: 0;
}

.header__hamburger.is-open .header__hamburger-line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ---- Navigation ---- */

.header__nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	background-color: #1B2A4A;
	display: flex;
	align-items: safe center;
	justify-content: safe center;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 5rem 1.25rem 2.5rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
	z-index: 1000;
}

.header__nav.is-open {
	opacity: 1;
	visibility: visible;
}

.header__nav-list {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}

.header__nav-item a {
	font-size: 1.1875rem;
	font-weight: 500;
	font-family: "Noto Serif JP", serif;
	color: #ffffff;
	letter-spacing: 0.08em;
	transition: color 0.3s, background-color 0.3s;
}

.header__nav-instagram {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.9375rem;
	font-weight: 500;
	color: #ffffff;
}

.header__nav-instagram-icon {
	display: inline-block;
	width: 1.25rem;
	height: 1.25rem;
	background-color: currentColor;
	-webkit-mask-image: url("../images/icon-instagram.svg");
	mask-image: url("../images/icon-instagram.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	flex-shrink: 0;
}

/* ---- Overlay ---- */

.header__overlay {
	display: none;
}

/* ============================
   6. INSTAGRAM
   ============================ */

.instagram {
	background-color: #F0F2F7;
}

.instagram__feed {
	margin-top: 2.5rem;
}

.instagram__cta {
	text-align: center;
	margin-top: 2rem;
}

.instagram__follow-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.75rem;
	border: 1px solid #1B2A4A;
	color: #1B2A4A;
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	border-radius: 999px;
	transition: background-color 0.3s, color 0.3s;
}

.instagram__follow-icon {
	display: inline-block;
	width: 1.125rem;
	height: 1.125rem;
	background-color: currentColor;
	-webkit-mask-image: url("../images/icon-instagram.svg");
	mask-image: url("../images/icon-instagram.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
}

/* ============================
   5. MENU
   ============================ */

.menu {
	background-color: #ffffff;
}

.menu__lead {
	text-align: center;
	font-size: 0.9375rem;
	font-weight: 400;
	color: #5C4A3A;
	line-height: 2;
	letter-spacing: 0.05em;
	margin-top: 1.25rem;
}

/* タブ */

.menu__tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 2.5rem;
}

.menu__tab {
	padding: 0.5rem 1.125rem;
	font-family: "Noto Serif JP", serif;
	font-size: 0.875rem;
	font-weight: 500;
	color: #1B2A4A;
	letter-spacing: 0.06em;
	background-color: transparent;
	border: 1px solid #1B2A4A;
	border-radius: 999px;
	cursor: pointer;
	transition: background-color 0.3s, color 0.3s;
}

.menu__tab.is-active {
	background-color: #1B2A4A;
	color: #ffffff;
}

/* パネル */

.menu__panel {
	display: none;
	margin-top: 2rem;
}

.menu__panel.is-active {
	display: block;
	animation: menuFadeIn 0.4s ease;
}

.menu__empty {
	grid-column: 1/-1;
	text-align: center;
	font-size: 0.9375rem;
	color: #7A6B5D;
	padding: 2.5rem 0;
}

.menu__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.75rem;
}

.menu__item {
	text-align: center;
	min-width: 0;
	overflow: hidden;
}

.menu__item-img {
	border-radius: 8px;
	overflow: hidden;
}

.menu__item-img img {
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	object-fit: cover;
}

.menu__item-title {
	font-family: "Noto Serif JP", serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: #1B2A4A;
	letter-spacing: 0.08em;
	margin-top: 1rem;
}

.menu__item-text {
	font-size: 1rem;
	font-weight: 400;
	color: #7A6B5D;
	line-height: 1.8;
	letter-spacing: 0.04em;
	text-align: left;
	margin-top: 0.5rem;
}

.menu__cta {
	text-align: center;
	margin-top: 2.5rem;
}

.menu__cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.875rem 2rem;
	background-color: #1B2A4A;
	color: #ffffff;
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	border-radius: 999px;
	border: 1px solid #1B2A4A;
	transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.menu__cta-icon {
	display: inline-block;
	width: 1.25rem;
	height: 1.25rem;
	background-color: currentColor;
	-webkit-mask-image: url("../images/icon-instagram.svg");
	mask-image: url("../images/icon-instagram.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
}

/* ============================
   1. MV（ファーストビュー）
   ============================ */

.mv {
	position: relative;
	width: 100%;
	min-height: calc(100svh - 3.75rem);
	margin-top: 3.75rem;
	padding-bottom: 9.375rem;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

/* Swiper スライダー背景 */

.mv__slider {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.mv__slider .swiper-wrapper {
	height: 100%;
}

.mv__slider .swiper-slide {
	height: 100%;
	overflow: hidden;
}

.mv__slider .swiper-slide picture {
	display: block;
	width: 100%;
	height: 100%;
}

.mv__slider .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: transform 6s ease-out;
}

.mv__slider .swiper-slide.swiper-slide-active img,
.mv__slider .swiper-slide.swiper-slide-duplicate-active img {
	transform: scale(1.08);
}

.mv__slider .swiper-slide.swiper-slide-prev img,
.mv__slider .swiper-slide.swiper-slide-duplicate-prev img {
	transform: scale(1.12);
}

.mv__content {
	position: relative;
	z-index: 2;
	text-align: center;
}

.mv__logo {
	margin: 0 auto;
	width: 10rem;
	height: 10rem;
}

.mv__logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1/1;
}

.mv__catch {
	font-family: "Noto Serif JP", serif;
	font-size: 1.25rem;
	font-weight: 400;
	color: #ffffff;
	letter-spacing: 0.15em;
	line-height: 1.8;
	margin-top: 1.5rem;
}

.mv__scroll {
	position: absolute;
	bottom: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.mv__scroll-text {
	font-size: 0.6875rem;
	font-weight: 500;
	color: #ffffff;
	letter-spacing: 0.2em;
	writing-mode: vertical-rl;
}

.mv__scroll-line {
	display: block;
	width: 1px;
	height: 2.5rem;
	background: linear-gradient(to bottom, #ffffff, transparent);
	animation: scrollLine 1.8s ease-in-out infinite;
}

/* ============================
   404 NOT FOUND
   ============================ */

.notfound {
	padding: 7.5rem 0 5rem;
	background-color: #FAF8F5;
	text-align: center;
}

.notfound__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.notfound__label {
	font-family: "Noto Serif JP", serif;
	font-size: 0.8125rem;
	font-weight: 500;
	color: #C4A96A;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

.notfound__title {
	font-family: "Noto Serif JP", serif;
	font-size: 1.375rem;
	font-weight: 500;
	color: #1B2A4A;
	letter-spacing: 0.08em;
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.notfound__desc {
	font-size: 0.9375rem;
	font-weight: 400;
	color: #5C4A3A;
	line-height: 2;
	letter-spacing: 0.05em;
	margin-bottom: 2.5rem;
}

.notfound__btn-wrap {
	display: flex;
	justify-content: center;
}

.notfound__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	padding: 1rem 2.5rem;
	background-color: #1B2A4A;
	color: #ffffff;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	border-radius: 999px;
	border: 1px solid #1B2A4A;
	transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

/* ============================
   3. RECOMMEND
   ============================ */

.recommend {
	background-color: #F0F2F7;
}

.recommend__list {
	max-width: 50rem;
	margin: 2.5rem auto 0;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.recommend__item {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 1.5rem;
	background-color: #ffffff;
	border-radius: 0.75rem;
	box-shadow: 0 2px 10px rgba(27, 42, 74, 0.05);
}

.recommend__item-head {
	display: flex;
	gap: 0.75rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(196, 169, 106, 0.25);
}

.recommend__icon {
	margin-top: 0.25rem;
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50%;
	background-color: #C4A96A;
	position: relative;
}

.recommend__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -55%) rotate(-45deg);
	width: 0.5625rem;
	height: 0.3125rem;
	border-left: 2px solid #ffffff;
	border-bottom: 2px solid #ffffff;
}

.recommend__title {
	font-size: 1.125rem;
	font-weight: 700;
	color: #1B2A4A;
	letter-spacing: 0.05em;
	line-height: 1.5;
}

.recommend__item-body {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.875rem;
}

.recommend__target {
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
}

.recommend__target-label {
	display: inline-block;
	align-self: flex-start;
	padding: 0.125rem 0.625rem;
	background-color: #C4A96A;
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	border-radius: 0.25rem;
}

.recommend__target-text {
	font-size: 1rem;
	font-weight: 500;
	color: #5C4A3A;
	line-height: 1.6;
}

.recommend__tags {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	align-content: flex-start;
	gap: 0.5rem;
}

.recommend__tag {
	align-self: flex-start;
	padding: 0.375rem 0.75rem;
	background-color: #FAF8F5;
	color: #5C4A3A;
	font-size: 0.875rem;
	letter-spacing: 0.03em;
	border-radius: 2.5rem;
}

/* ============================
   7. SHOP INFO
   ============================ */

.shopinfo {
	background-color: #FAF8F5;
}

.shopinfo__body {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-top: 3rem;
}

.shopinfo__img img {
	width: 100%;
	height: auto;
	border-radius: 0.5rem;
}

.shopinfo__row {
	display: flex;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(27, 42, 74, 0.08);
}

.shopinfo__row:first-child {
	border-top: 1px solid rgba(27, 42, 74, 0.08);
}

.shopinfo__label {
	flex: 0 0 6.25rem;
	font-size: 1rem;
	font-weight: 700;
	color: #1B2A4A;
	letter-spacing: 0.05em;
}

.shopinfo__data {
	flex: 1;
	font-size: 1rem;
	font-weight: 400;
	color: #5C4A3A;
	line-height: 1.6;
	letter-spacing: 0.04em;
}

.shopinfo__data a {
	color: #1B2A4A;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.u-sp {
	display: none;
}

.u-sp400 {
	display: none;
}

.u-sp450 {
	display: none;
}

.u-sp500 {
	display: none;
}

.u-sp550 {
	display: none;
}

.u-sp600 {
	display: none;
}

.u-sp650 {
	display: none;
}

.u-sp700 {
	display: none;
}

@media (prefers-reduced-motion: reduce) {

html:focus-within {
	scroll-behavior: auto;
}

*,
*::before,
*::after {
	animation-duration: 0.01ms !important;
	animation-iteration-count: 1 !important;
	transition-duration: 0.01ms !important;
	scroll-behavior: auto !important;
}

}

@media screen and (min-width: 768px) {

html {
	font-size: 1.3333333333vw;
}

html {
	scroll-padding-top: 80px;
}

a:hover {
	opacity: 0.7;
}

.layout-inner {
	max-width: 75rem;
	padding-inline: 25px;
}

.layout-section {
	padding: 7.5rem 0;
}

.layout-section2 {
	padding: 6.25rem 0;
}

.section-title__en {
	font-size: 0.875rem;
}

.section-title__ja {
	font-size: 1.875rem;
}

.section-title__sub {
	font-size: 0.9375rem;
	gap: 1rem;
}

.section-title__sub::before,
.section-title__sub::after {
	width: 2.25rem;
}

.about__body {
	flex-direction: row;
	align-items: center;
	gap: 3.75rem;
	margin-top: 4rem;
}

.about__img {
	flex: 0 0 48%;
}

.about__text {
	flex: 1;
}

.about__lead {
	font-size: 1.25rem;
}

.about__desc {
	font-size: 1rem;
}

.access__map {
	aspect-ratio: 16/9;
	margin-top: 3.5rem;
}

.commitment__cards {
	grid-template-columns: repeat(3, 1fr);
	justify-items: center;
	margin-top: 4rem;
}

.commitment__card-body {
	padding: 2rem 1.75rem;
}

.commitment__card-num {
	font-size: 2rem;
}

.commitment__card-title {
	font-size: 1.25rem;
}

.commitment__card-text {
	font-size: 1rem;
}

.cta__label {
	font-size: 0.875rem;
}

.cta__title {
	font-size: 1.75rem;
}

.cta__text {
	margin-top: 2rem;
}

.cta__text p {
	font-size: 1rem;
}

.cta__btn-wrap {
	margin-top: 3rem;
}

.cta__btn {
	font-size: 1.0625rem;
	padding: 1.125rem 3rem;
}

.cta__btn:hover {
	background-color: transparent;
	color: #ffffff;
	transform: translateY(-2px);
	opacity: 1;
}

.footer__inner {
	padding: 3.75rem 2.5rem;
}

.footer__logo {
	width: 6.25rem;
	height: 6.25rem;
}

.footer__nav-item a:hover {
	color: #ffffff;
	opacity: 1;
}

.footer__nav-item a:hover::after {
	transform: scaleX(1);
}

.footer__sns-link:hover {
	background-color: #ffffff;
	border-color: #ffffff;
	color: #1B2A4A;
	opacity: 1;
}

.header {
	height: 80px;
}

.header__inner {
	padding-inline: 25px;
}

.header__logo {
	width: 12.5rem;
}

.header__hamburger {
	display: none;
}

.header__nav {
	position: static;
	width: auto;
	height: auto;
	overflow: visible;
	padding: 0;
	background-color: transparent;
	opacity: 1;
	visibility: visible;
	display: flex;
	align-items: center;
}

.header__nav-list {
	flex-direction: row;
	gap: min(1.6666666667vw, 1.5rem);
}

.header__nav-item a {
	font-size: 0.9375rem;
	color: #5C4A3A;
	padding: 0.375rem 0.875rem;
	border-radius: 624.9375rem;
}

.header__nav-item a:hover {
	color: #ffffff;
	background-color: #1B2A4A;
	opacity: 1;
}

.header__nav-instagram {
	color: #1B2A4A;
	border: 1px solid #1B2A4A;
	border-radius: 999px;
	padding: 0.375rem 1rem;
	transition: background-color 0.3s, color 0.3s;
}

.header__nav-instagram:hover {
	background-color: #1B2A4A;
	color: #ffffff;
	opacity: 1;
}

.instagram__feed {
	margin-top: 3.5rem;
}

.instagram__follow-btn:hover {
	background-color: #1B2A4A;
	color: #ffffff;
	opacity: 1;
}

.menu__lead {
	font-size: 1rem;
	margin-top: 1.75rem;
}

.menu__tabs {
	gap: 0.75rem;
	margin-top: 3.5rem;
}

.menu__tab {
	font-size: 0.9375rem;
	padding: 0.625rem 1.5rem;
}

.menu__tab:hover {
	background-color: #1B2A4A;
	color: #ffffff;
	opacity: 1;
}

.menu__panel {
	margin-top: 3rem;
}

.menu__grid {
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.menu__item-title {
	font-size: 1.25rem;
}

.menu__item-text {
	font-size: 1rem;
}

.menu__cta {
	margin-top: 3.5rem;
}

.menu__cta-btn:hover {
	background-color: #ffffff;
	color: #1B2A4A;
	transform: translateY(-1px);
	opacity: 1;
}

.mv {
	min-height: calc(100svh - 5rem);
	margin-top: 5rem;
	padding-bottom: 10.625rem;
}

.mv__logo {
	width: 12.5rem;
	height: 12.5rem;
}

.mv__catch {
	font-size: 1.375rem;
}

.notfound {
	padding: 10rem 0 7.5rem;
}

.notfound__label {
	font-size: 0.875rem;
}

.notfound__title {
	font-size: 1.75rem;
	margin-bottom: 2rem;
}

.notfound__desc {
	font-size: 1rem;
	margin-bottom: 3rem;
}

.notfound__btn {
	font-size: 1.0625rem;
	padding: 1.125rem 3rem;
}

.notfound__btn:hover {
	background-color: transparent;
	color: #1B2A4A;
	transform: translateY(-2px);
	opacity: 1;
}

.recommend__list {
	margin-top: 3.5rem;
	gap: 1.5rem;
}

.recommend__item {
	gap: 1.25rem;
	padding: 1.75rem 2rem;
}

.recommend__title {
	font-size: 1.125rem;
}

.recommend__item-body {
	flex-direction: row;
	gap: 1.5rem;
}

.recommend__target {
	flex: 0 0 13.75rem;
}

.recommend__target-text {
	font-size: 1rem;
}

.recommend__tags {
	flex: 1;
	padding-left: 1.5rem;
	border-left: 1px dashed rgba(122, 107, 93, 0.3);
}

.recommend__tag {
	font-size: 0.875rem;
}

.shopinfo__body {
	flex-direction: row;
	align-items: flex-start;
	gap: 3.75rem;
	margin-top: 4rem;
}

.shopinfo__img {
	flex: 0 0 45%;
}

.shopinfo__table {
	flex: 1;
}

.shopinfo__label {
	flex: 0 0 7.5rem;
	font-size: 1rem;
}

.shopinfo__data {
	font-size: 1rem;
}

}

@media (min-width: 1200px) {

html {
	font-size: 16px;
}

}

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

.u-pc {
	display: none;
}

.u-sp {
	display: block;
}

}

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

.u-sp700 {
	display: block;
}

}

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

.u-sp650 {
	display: block;
}

}

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

.u-sp600 {
	display: block;
}

}

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

.u-sp550 {
	display: block;
}

}

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

.u-sp500 {
	display: block;
}

}

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

.u-sp450 {
	display: block;
}

}

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

.u-sp400 {
	display: block;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

@keyframes menuFadeIn {

from {
	opacity: 0;
	transform: translateY(8px);
}

to {
	opacity: 1;
	transform: translateY(0);
}

}

@keyframes scrollLine {

0% {
	opacity: 0;
	transform: scaleY(0);
	transform-origin: top;
}

50% {
	opacity: 1;
	transform: scaleY(1);
	transform-origin: top;
}

100% {
	opacity: 0;
	transform: scaleY(1);
	transform-origin: bottom;
}

}

