*,
*::before,
*::after {
	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,
small,
button,
time,
figure {
	padding: 0;
	margin: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
	border: 0;
}

html {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

li,
dd {
	list-style-type: none;
}

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

img {
	vertical-align: bottom;
	border: none;
}

a {
	text-decoration: none;
	cursor: pointer;
}

:root {
	--white: #fff;
	--light-creem: #faf8f5;
	--creem: #f8f4e9;
	--thin-green: #ebf5d4;
	--light-green: #7d9963;
	--green: #547443;
	--dark-green: #365c22;
	--red: #d32929;
	--light-brown: #d4c2b8;
	--brown: #817269;
	--dark-brown: #372216;
	--cr-dot-brown: #d4c2b8;
	--cr-overray: rgb(55 34 22 / 80%);
	--cr-switcher-shadow: rgb(85 63 52 / 20%);
	--cr-highlight-green: rgb(125 153 99 / 12%);
	--ff-ja: "Noto Sans JP", sans-serif;
	--ff-en: "Roboto", sans-serif;
	--cl-text-base: var(--dark-brown);
	--ff-base: var(--ff-ja);
	--cl-focus: var(--dark-green);
}

.js-rotation {
	animation: 40s linear infinite rotation;
}

.show-fadeup {
	opacity: 0;
	transition: opacity 2.5s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(60px);
	will-change: opacity, transform;
}

.show-fadeup.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.show-fadein {
	opacity: 0;
	transition: opacity 6s cubic-bezier(0.25, 1, 0.5, 1) 0.5s;
	will-change: opacity;
}

.show-fadein.is-visible {
	opacity: 1;
}

html {
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	font-family: var(--ff-base);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.75;
	color: var(--cl-text-base);
	word-break: normal;
	overflow-wrap: anywhere;
	line-break: strict;
}

* {
	letter-spacing: 0.04em;
}

input[type=button],
button,
select {
	color: inherit;
}

button {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

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

a {
	color: inherit;
}

span {
	color: inherit;
}

* :where(button,
[type=button],
[type=reset],
[type=submit]) {
	touch-action: manipulation;
}

* :focus-visible {
	outline: var(--cl-focus) solid 3px;
}

:focus:not(:focus-visible) {
	outline: none;
	-webkit-tap-highlight-color: transparent;
}

:where(:-moz-any-link,
button,
[type=button],
[type=reset],
[type=submit],
label[for],
select,
summary,
[role=tab],
[role=button]) {
	cursor: pointer;
}

:where(:any-link,
button,
[type=button],
[type=reset],
[type=submit],
label[for],
select,
summary,
[role=tab],
[role=button]) {
	cursor: pointer;
}

:where(ul,
ol) {
	padding: unset;
	list-style: none;
}

* {
	min-inline-size: 0;
}

blockquote {
	margin-block: 0;
	margin-inline: 0;
}

summary {
	cursor: pointer;
}

picture {
	display: block;
}

.l-inner {
	--inner-width: 500px;
	--gutter-width: 20px;
	max-width: calc(var(--inner-width) + var(--gutter-width) * 2);
	padding-inline: var(--gutter-width);
	margin-inline: auto;
}

.l-inner--top {
	max-width: none;
	padding-inline: 5.3333333333vw;
}

.l-footer {
	padding-top: 40px;
}

.l-footer--deco {
	position: relative;
	padding-top: 85px;
	overflow: hidden;
}

.l-footer--deco::before {
	position: absolute;
	top: -6px;
	left: -25px;
	z-index: 1;
	width: 156px;
	aspect-ratio: 1;
	content: "";
	background: url("../images/deco_circle.webp") no-repeat center center/contain;
	opacity: 0.8;
	rotate: 253deg;
}

.l-footer__container {
	position: relative;
	padding: 64px 20px 40px;
	background: url("../images/bg_footer_sp.svg") no-repeat top center/cover;
}

.l-footer__inner {
	position: relative;
	max-width: 1280px;
	margin-inline: auto;
}

.l-footer__top {
	position: absolute;
	top: -12px;
	right: 10px;
	display: block;
	width: 80px;
	aspect-ratio: 1;
	transition: opacity 0.3s;
}

.l-footer__top:focus-visible {
	opacity: 0.5;
}

.l-footer__logo-wrap {
	display: block;
	width: 160px;
	margin-inline: auto;
	transition: opacity 0.3s;
}

.l-footer__logo-wrap:focus-visible {
	opacity: 0.5;
}

.l-footer__nav {
	margin-top: 41px;
}

.l-footer__nav-list {
	display: flex;
	flex-wrap: wrap;
	gap: 9px 16px;
	justify-content: center;
	padding-inline: 16px;
}

.l-footer__nav-link {
	transition: opacity 0.3s;
}

.l-footer__nav-link:focus-visible {
	opacity: 0.5;
}

.l-footer__nav-link--small {
	font-size: 14px;
}

.l-footer__sns {
	display: flex;
	gap: 24px;
	justify-content: center;
	margin-top: 41px;
}

.l-footer__sns-container {
	display: flex;
	gap: 12px;
}

.l-footer__sns-link {
	display: block;
	width: 32px;
	aspect-ratio: 1;
	transition: opacity 0.3s;
}

.l-footer__sns-link:focus-visible {
	opacity: 0.5;
}

.l-footer__shop {
	transition: opacity 0.3s;
}

.l-footer__shop:focus-visible {
	opacity: 0.5;
}

.l-footer__copy {
	display: block;
	margin-inline: auto;
	margin-top: 40px;
	font-family: var(--ff-en);
	font-size: 12px;
	font-weight: 400;
	text-align: center;
}

.l-body-subpage {
	width: 100%;
	background: url("../images/bg_subpage_sp.webp") no-repeat top center/contain;
	background-size: 100%;
}

.l-body-subpage-simple {
	width: 100%;
	background: url("../images/bg_subpage-simple_sp.webp") no-repeat top center/contain;
	background-size: 100%;
}

.l-body-top__bg {
	width: 100%;
	background: url("../front-page/images/bg_top_sp.webp") no-repeat top center/contain;
	background-size: 100%;
}

.l-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 60px;
	padding-inline: 20px;
	pointer-events: none;
	background-color: transparent;
}

.l-header:has(.l-header__drawer-icon.is-checked) .l-header__logo-wrap,
.l-header:has(.l-header__drawer-icon.is-checked) .l-header__nav,
.l-header:has(.l-header__drawer-icon.is-checked) .l-header__content-left {
	visibility: hidden;
	opacity: 0;
}

.l-header__logo-outer {
	display: block;
	width: 140px;
}

.l-header__logo-wrap {
	pointer-events: auto;
	transition: visibility 0.3s, opacity 0.3s;
}

.l-header__logo-wrap:focus-visible {
	opacity: 0.5;
}

.l-header__content {
	display: flex;
	gap: 14px;
	align-items: center;
	pointer-events: auto;
}

.l-header__content-left {
	display: flex;
	gap: 8px;
	align-items: center;
	transition: visibility 0.3s, opacity 0.3s;
}

.l-header__sns {
	display: flex;
	gap: 4px;
	align-items: center;
}

.l-header__sns-link {
	display: block;
	width: 32px;
	aspect-ratio: 1;
	transition: opacity 0.3s;
}

.l-header__sns-link:focus-visible {
	opacity: 0.5;
}

.l-header__drawer-icon {
	position: relative;
	width: 40px;
	height: 40px;
	cursor: pointer;
	background-color: transparent;
	transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.l-header__drawer-icon.is-checked .l-header__drawer-icon-bar {
	top: 24px;
	left: 0;
	width: 38px;
	-o-object-position: center center;
	object-position: center center;
}

.l-header__drawer-icon.is-checked .l-header__drawer-icon-bar:nth-of-type(1) {
	rotate: 225deg;
}

.l-header__drawer-icon.is-checked .l-header__drawer-icon-bar:nth-of-type(2) {
	display: none;
}

.l-header__drawer-icon.is-checked .l-header__drawer-icon-bar:nth-of-type(3) {
	rotate: -225deg;
}

.l-header__drawer-icon-bar {
	position: absolute;
	height: 3px;
	background: var(--dark-brown);
	border-radius: 6px;
	transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.l-header__drawer-icon-bar:nth-of-type(1) {
	top: calc(50% - 11px);
	left: 4px;
	width: 22px;
}

.l-header__drawer-icon-bar:nth-of-type(2) {
	top: calc(50% - 1px);
	left: 2px;
	width: 36px;
}

.l-header__drawer-icon-bar:nth-of-type(3) {
	top: calc(50% + 9px);
	left: 14px;
	width: 22px;
}

.l-drawer {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 40;
	visibility: hidden;
	transition: visibility 0.3s linear;
}

.l-drawer.is-checked {
	visibility: visible;
}

.l-drawer__overlay {
	height: 100vh;
	visibility: hidden;
	background: var(--cr-overray);
	opacity: 0;
	transition: opacity 0.3s linear, visibility 0.3s linear;
}

.l-drawer__overlay.is-checked {
	visibility: visible;
	opacity: 1;
}

.l-drawer__content {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 875px;
	height: 100dvh;
	overflow-y: scroll;
	background-color: white;
	opacity: 0;
	transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1);
	transform: translateY(-100%);
}

.l-drawer__content.is-checked {
	opacity: 1;
	transform: translateY(0);
}

.l-drawer__content__inner {
	position: relative;
	display: grid;
	place-items: center;
	height: 100%;
	min-height: -moz-fit-content;
	min-height: fit-content;
	padding: 40px 0 76px;
}

.l-drawer__nav {
	display: flex;
	flex-direction: column;
	gap: 22px;
	align-items: center;
}

.l-drawer__nav-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
}

.l-drawer__nav-item {
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
}

.l-drawer__nav-item.is-current::after {
	position: absolute;
	top: 50%;
	right: -8px;
	width: 8px;
	aspect-ratio: 1;
	content: "";
	background-color: var(--light-green);
	border-radius: calc(infinity * 1px);
	translate: 100% -50%;
}

.l-drawer__nav-link {
	display: block;
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	transition: opacity 0.3s;
}

.l-drawer__nav-link:focus-visible {
	opacity: 0.5;
}

.l-drawer__nav-logo {
	width: 180px;
}

.l-drawer__bottom {
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: center;
}

.l-drawer__bottom-shop {
	font-size: 16px;
	font-weight: 700;
	transition: opacity 0.3s;
}

.l-drawer__bottom-shop:focus-visible {
	opacity: 0.5;
}

.l-drawer__bottom-sns {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: center;
}

.l-drawer__bottom-sns-link {
	width: 40px;
	aspect-ratio: 1;
	transition: opacity 0.3s;
}

.l-drawer__bottom-sns-link:focus-visible {
	opacity: 0.5;
}

.l-drawer__deco-top-right {
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	display: block;
	width: 50.6666666667%;
}

.l-drawer__deco-bottom-right {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
	display: block;
	width: 40.5333333333%;
}

.l-drawer__deco-bottom-left {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	display: block;
	width: 50.6666666667%;
}

.l-body {
	padding-top: 60px;
}

.l-body.is-lang-en {
	font-family: var(--ff-en);
}

.c-accordion {
	display: flex;
	flex-direction: column;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	background: var(--white);
	border: 1.5px solid var(--light-brown);
	border-radius: 16px;
}

.c-accordion:has([data-hidden=false]) .c-accordion__q-button {
	padding: 12px 16px;
}

.c-accordion:has([data-hidden=false]) .c-accordion__q-button::after {
	rotate: 180deg;
}

.c-accordion__q-button {
	display: flex;
	gap: 4px;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 12px 16px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	text-align: left;
	background: var(--white);
	border-radius: 16px;
	transition: padding 0.4s ease-out;
}

.c-accordion__q-button::after {
	z-index: 1;
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	content: "";
	background: url("../images/icon_arrow_brown.svg") no-repeat center center/contain;
	transition: rotate 0.2s ease-out;
}

.c-accordion__a {
	max-height: 0;
	overflow: hidden;
	pointer-events: none;
	transition-timing-function: ease-out;
	transition-duration: 0.4s;
	transition-property: max-height, opacity;
}

.c-accordion__a[data-hidden=false] {
	pointer-events: auto;
}

.c-accordion__a-container {
	padding: 0 16px 12px;
}

.c-accordion__a-container p {
	line-height: 1.8;
}

.c-sub-fv-img {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding-top: 30px;
}

.c-sub-fv-img__inner {
	padding-right: 5.6338028169%;
}

.c-sub-fv-img__img-wrap {
	overflow: hidden;
	border-top-right-radius: clamp(40px, -31.111px + 9.259vw, 80px);
	border-bottom-right-radius: clamp(40px, -31.111px + 9.259vw, 80px);
}

.c-sub-fv-img__heading {
	width: -moz-fit-content;
	width: fit-content;
}

.c-sub-fv-img__heading--yamaden {
	position: relative;
}

.c-sub-fv-img__container {
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding-inline: 20px;
}

.c-sub-fv-img__title-ja {
	font-size: clamp(32px, 17.778px + 1.852vw, 40px);
	font-weight: 700;
	line-height: 1.5;
}

.c-sub-fv-img__title-ja--red {
	color: var(--red);
}

.c-sub-fv-img__title-en {
	font-family: var(--ff-en);
	font-size: clamp(16px, 12.444px + 0.463vw, 18px);
	font-weight: 700;
	line-height: 1.4;
	color: var(--brown);
}

.c-sub-fv-img__content {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.c-sub-fv-img__content--yamaden {
	position: relative;
}

.c-sub-fv-img__content--yamaden::after {
	position: absolute;
	right: -12px;
	bottom: 10px;
	width: 134px;
	aspect-ratio: 120/95;
	content: "";
	background: url("../images/logo_yamaden.webp") no-repeat center center/contain;
	rotate: 7deg;
	translate: 0 100%;
}

.c-sub-fv-img__content-heading {
	font-size: clamp(20px, 12.889px + 0.926vw, 24px);
	font-weight: 700;
	line-height: 1.5;
}

.c-sub-fv-text {
	padding: 40px 0 44px;
}

.c-sub-fv-text__title-ja {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.6;
}

.c-sub-fv-text__title-en {
	font-family: var(--ff-en);
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	color: var(--brown);
}

.c-contact-link {
	padding-block: 40px;
}

.c-contact-link__container {
	position: relative;
	padding: 40px 16px;
	overflow: hidden;
	background: var(--light-green);
	border-radius: 40px 40px 40px 0;
}

.c-contact-link__container::after {
	position: absolute;
	top: -26px;
	right: -26px;
	width: 200px;
	aspect-ratio: 1;
	content: "";
	background: url("../images/deco_circle.webp") no-repeat center center/contain;
	opacity: 0.2;
	rotate: 30deg;
}

.c-contact-link__heading {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.c-contact-link__title-ja {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--white);
	color: var(--white, #fff);
}

.c-contact-link__title-en {
	font-family: var(--ff-en);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--white);
}

.c-contact-link__text {
	margin-top: 16px;
	line-height: 1.85;
	color: var(--white);
}

.c-contact-link__link {
	text-decoration-line: underline;
	text-underline-position: from-font;
}

.c-contact-link__button {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
	justify-content: center;
	margin-top: 24px;
}

.c-button-m-green {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 294px;
	min-height: 56px;
	padding: 16px 54px 16px 24px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	color: var(--white);
	text-align: center;
	background: var(--green);
	border-radius: calc(infinity * 1px);
	transition: background-color 0.3s;
}

.c-button-m-green:focus-visible {
	background-color: var(--dark-green);
}

.c-button-m-green::after {
	position: absolute;
	top: 50%;
	right: 24px;
	width: 24px;
	aspect-ratio: 1;
	content: "";
	background: url("../images/icon_link_white.svg") no-repeat center center/contain;
	transition: background-image 0.3s;
	translate: 0 -50%;
}

.is-lang-en .c-button-m-green {
	font-size: 18px;
}

.c-info__container {
	display: flex;
	flex-direction: column;
	gap: 26px;
	padding: clamp(24px, -4.444px + 3.704vw, 40px) clamp(16px, -97.778px + 14.815vw, 80px);
	background: var(--white);
	border: 1.5px solid var(--green);
	border-radius: 16px;
}

.c-info__title {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
}

.c-info__text {
	margin-top: 16px;
}

.c-info__button-wrap {
	display: flex;
	flex-shrink: 0;
	flex-direction: column;
	gap: 12px;
	align-items: center;
}

.c-info__button-text {
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: center;
	padding-bottom: 4px;
	font-size: 16px;
	color: var(--green);
	text-align: center;
}

.c-info__button-text::before,
.c-info__button-text::after {
	width: 2px;
	height: 14px;
	content: "";
	background-color: var(--green);
}

.c-info__button-text::before {
	rotate: -30deg;
}

.c-info__button-text::after {
	rotate: 30deg;
}

.c-button-s-green {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 230px;
	min-height: 52px;
	padding: 10px 50px 10px 20px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	color: var(--white);
	text-align: center;
	background: var(--green);
	border-radius: calc(infinity * 1px);
	transition: background-color 0.3s;
}

.c-button-s-green:focus-visible {
	background-color: var(--dark-green);
}

.c-button-s-green::after {
	position: absolute;
	top: 50%;
	right: 20px;
	width: 20px;
	aspect-ratio: 1;
	content: "";
	background: url("../images/icon_link_white.svg") no-repeat center center/contain;
	transition: background-image 0.3s;
	translate: 0 -50%;
}

.c-accordion-bg {
	display: flex;
	flex-direction: column;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	background: var(--light-creem);
	border: 1.5px solid var(--light-brown);
	border-radius: 16px;
}

.c-accordion-bg:has([data-hidden=false]) .c-accordion-bg__q-button::after {
	rotate: 180deg;
}

.c-accordion-bg__q-button {
	display: flex;
	gap: 4px;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: clamp(16px, 1.778px + 1.852vw, 24px) clamp(16px, -26.667px + 5.556vw, 40px);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	text-align: left;
	background: var(--light-creem);
	border-radius: 16px;
}

.c-accordion-bg__q-button::after {
	z-index: 1;
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	content: "";
	background: url("../images/icon_arrow_brown.svg") no-repeat center center/contain;
	transition: rotate 0.2s ease-out;
}

.c-accordion-bg__a {
	max-height: 0;
	padding: 0 clamp(16px, 1.778px + 1.852vw, 24px);
	overflow: hidden;
	pointer-events: none;
	transition: max-height 0.4s ease-out;
}

.c-accordion-bg__a[data-hidden=false] {
	padding: 0 clamp(16px, 1.778px + 1.852vw, 24px) clamp(16px, 1.778px + 1.852vw, 24px);
	pointer-events: auto;
}

.c-accordion-bg__a-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.c-accordion-bg__a-box {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.c-accordion-bg__a-label {
	display: flex;
	flex-shrink: 0;
	gap: 4px;
	align-items: center;
	padding-block: 2px;
	color: var(--green);
}

.c-accordion-bg__a-label::before {
	width: 20px;
	aspect-ratio: 1;
	content: "";
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.c-accordion-bg__a-label--bag::before {
	background-image: url("../images/icon_bag.svg");
}

.c-accordion-bg__a-label--clock::before {
	background-image: url("../images/icon_clock.svg");
}

.c-accordion-bg__dd-box + .c-accordion-bg__dd-box {
	margin-top: 16px;
}

.c-accordion-bg__a-text--pl {
	padding-left: 16px;
	line-height: 1.8;
}

.c-button-s {
	position: relative;
	display: inline-flex;
	gap: 6px;
	align-items: center;
	justify-content: center;
	min-width: 190px;
	min-height: 52px;
	padding: 10px 50px 10px 16px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	color: var(--green);
	text-align: center;
	background: var(--white);
	border: 1.5px solid;
	border-radius: calc(infinity * 1px);
	transition: background-color 0.3s;
}

.c-button-s:focus-visible {
	background-color: var(--thin-green);
}

.c-button-s::after {
	position: absolute;
	top: 50%;
	right: 20px;
	width: 20px;
	aspect-ratio: 1;
	content: "";
	background: url("../images/icon_link_green.svg") no-repeat center center/contain;
	transition: background-image 0.3s;
	translate: 0 -50%;
}

.c-button-s--pdf::after {
	background-image: url("../images/icon_pdf.svg");
}

.c-button-s__small {
	font-size: 12px;
	color: var(--green);
}

.c-bogo-switcher {
	position: relative;
	display: inline-block;
	font-size: 16px;
}

.c-bogo-switcher--drawer .bogo-language-switcher {
	top: auto;
	bottom: calc(100% + 4px);
}

.bogo-trigger {
	display: inline-flex;
	gap: 6px;
	align-items: center;
	justify-content: center;
	padding: 0;
	margin: 0;
	font: inherit;
	font-family: var(--ff-en);
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	background: none;
	border: none;
}

.bogo-trigger::after {
	display: block;
	width: 10px;
	aspect-ratio: 1;
	content: "";
	border-right: 2px solid currentcolor;
	border-bottom: 2px solid currentcolor;
	transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(-25%) rotate(45deg);
}

.bogo-trigger[aria-expanded=true]::after {
	transform: translateY(0) rotate(-135deg);
}

.bogo-language-switcher {
	position: absolute;
	top: calc(100% + 4px);
	right: -6px;
	z-index: 100;
	display: none;
	flex-direction: column-reverse;
	width: 130px;
	overflow: hidden;
	list-style: none;
	background-color: #fff;
	border-radius: 12px;
	box-shadow: 0 0 32px 0 var(--cr-switcher-shadow);
}

.bogo-language-switcher li {
	margin: 0;
}

.bogo-language-switcher li:not(:first-child) {
	border-bottom: 1px solid var(--light-creem);
}

.bogo-language-switcher li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 11px 16px;
	font-family: var(--ff-en);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	background: var(--white);
	transition: background-color 0.3s;
}

.bogo-language-switcher li a:focus-visible {
	background: var(--light-creem);
}

.bogo-language-switcher li.current a::after {
	display: block;
	width: 8px;
	aspect-ratio: 1;
	content: "";
	background-color: var(--light-green);
	border-radius: calc(infinity * 1px);
}

.c-accordion-dot {
	display: flex;
	flex-direction: column;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	background: var(--white);
	border: 1.5px solid var(--light-brown);
	border-radius: 16px;
}

.c-accordion-dot:has([data-hidden=false]) .c-accordion-dot__q-button::after {
	rotate: 180deg;
}

.c-accordion-dot__q-button {
	display: flex;
	gap: 4px;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 16px 14px;
	text-align: left;
	background: var(--white);
	border-radius: 16px;
	transition: padding 0.4s ease-out;
}

.c-accordion-dot__q-button::after {
	z-index: 1;
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	content: "";
	background: url("../images/icon_arrow_brown.svg") no-repeat center center/contain;
	transition: rotate 0.3s;
}

.c-accordion-dot__q-title-wrap {
	display: inline;
}

.c-accordion-dot__q-title {
	display: inline-flex;
	gap: 6px;
	align-items: center;
}

.c-accordion-dot__q-title::before {
	width: 12px;
	aspect-ratio: 1;
	content: "";
	background-color: var(--cr-dot-brown);
	border-radius: calc(infinity * 1px);
}

.c-accordion-dot__q-title-link {
	display: inline;
	text-decoration-line: underline;
	text-underline-position: from-font;
	transition: opacity 0.2s ease-out;
}

.c-accordion-dot__q-title-link:focus-visible {
	opacity: 0.5;
}

.c-accordion-dot__a {
	max-height: 0;
	overflow: hidden;
	pointer-events: none;
	transition-timing-function: ease-out;
	transition-duration: 0.4s;
	transition-property: max-height, opacity;
}

.c-accordion-dot__a[data-hidden=false] {
	pointer-events: auto;
}

.c-accordion-dot__a-container {
	padding: 0 16px 24px 22px;
}

.c-accordion-dot__a-boxes {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.c-accordion-dot__a-text--bold {
	font-weight: 700;
}

.c-accordion-dot__a-text--pl {
	padding-left: 8px;
	line-height: 1.8;
}

.c-accordion-dot__a-text--padding {
	padding: 0 16px;
}

.c-item {
	display: flex;
	flex-shrink: 0;
	gap: 4px;
	align-items: center;
	padding-block: 2px;
	font-size: 14px;
	color: var(--green);
}

.c-item::before {
	width: 20px;
	aspect-ratio: 1;
	content: "";
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.c-item--clock::before {
	background-image: url("../images/icon_clock.svg");
}

.c-item--person::before {
	background-image: url("../images/icon_person.svg");
}

.c-item--place::before {
	background-image: url("../images/icon_map-green.svg");
}

.c-item--fee::before {
	background-image: url("../images/icon_fee.svg");
}

.c-item--calendar::before {
	background-image: url("../images/icon_calendar-green.svg");
}

.c-item--bag::before {
	background-image: url("../images/icon_bag.svg");
}

.c-item--car::before {
	background-image: url("../images/icon_car.svg");
}

.c-item--house::before {
	background-image: url("../images/icon_house.svg");
}

.c-label {
	display: inline-flex;
	align-items: center;
	padding: 4px 16px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	color: var(--white);
	background: var(--light-green);
	border-radius: calc(infinity * 1px);
}

.c-label--white {
	color: var(--dark-brown);
	background: var(--white);
	border: 1px solid var(--light-brown);
}

.ui-datepicker {
	width: 361px !important;
	padding: 12px 16px !important;
	background: var(--white) !important;
	border-radius: 10px !important;
	box-shadow: 0 0 32px 0 var(--cr-switcher-shadow) !important;
}

.ui-widget.ui-widget-content {
	border: none !important;
}

.ui-datepicker-header {
	font-weight: 700 !important;
	color: var(--dark-brown) !important;
	background: none !important;
	border: none !important;
}

.ui-datepicker-calendar thead span {
	font-size: 14px !important;
	font-weight: 500 !important;
	line-height: 1.75 !important;
	color: var(--dark-brown) !important;
	text-align: center !important;
	letter-spacing: 0.04em !important;
	opacity: 0.5 !important;
}

.ui-datepicker-title {
	margin: 0 0 0 16px !important;
	-moz-text-align-last: left !important;
	text-align-last: left !important;
}

.ui-datepicker-year {
	font-family: var(--ff-en) !important;
	font-size: 14px !important;
}

.ui-datepicker-month {
	font-family: var(--ff-en) !important;
	font-size: 16px !important;
}

.ui-datepicker-prev {
	right: 40px !important;
	left: auto !important;
	display: grid !important;
	place-items: center !important;
}

.ui-datepicker-prev .ui-icon {
	rotate: 90deg !important;
}

.ui-datepicker-next {
	display: grid !important;
	place-items: center !important;
}

.ui-datepicker-next .ui-icon {
	rotate: -90deg !important;
}

.ui-widget-header .ui-icon {
	width: 20px !important;
	height: auto !important;
	aspect-ratio: 1 !important;
	background: url("../images/icon_arrow_green.svg") no-repeat center center/contain !important;
}

.ui-state-default {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 44px !important;
	height: auto !important;
	aspect-ratio: 1 !important;
	padding: 6px !important;
	font-family: var(--ff-en) !important;
	font-size: 18px !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	color: var(--dark-brown) !important;
	text-align: center !important;
	letter-spacing: 0.04em !important;
	background-color: transparent !important;
	border: none !important;
	border-radius: calc(infinity * 1px) !important;
}

.ui-state-default:hover {
	background-color: var(--cr-highlight-green) !important;
}

.ui-state-active {
	color: var(--white) !important;
	background-color: var(--light-green) !important;
}

.ui-state-active:hover {
	color: var(--dark-brown) !important;
	background-color: var(--cr-highlight-green) !important;
}

.ui-state-highlight {
	color: var(--light-green) !important;
}

@media (width >= 768px) {

body {
	font-size: 16px;
}

.l-inner {
	--inner-width: 1200px;
	--gutter-width: 40px;
}

.l-inner--top {
	max-width: 73.1428571429vw;
	padding-inline: 2.2857142857vw;
}

.l-footer {
	padding-top: 80px;
}

.l-footer--deco {
	padding-top: clamp(100px, -2.857px + 13.393vw, 190px);
}

.l-footer--deco::before {
	top: 0;
}

.l-footer__container {
	padding: 157px 150px 80px;
	background-image: url("../images/bg_footer_pc.svg");
}

.l-footer__inner {
	max-width: 1180px;
}

.l-footer__top {
	top: 126px;
	right: clamp(60px, -260px + 22.857vw, 140px);
	width: 90px;
}

.l-footer__logo-wrap {
	width: 180px;
}

.l-footer__nav {
	margin-top: 32px;
}

.l-footer__nav-list {
	gap: 16px 32px;
}

.l-footer__sns {
	margin-top: 32px;
	font-size: 16px;
}

.l-footer__copy {
	margin-top: 80px;
}

.l-body-subpage {
	background-image: url("../images/bg_subpage_pc.webp");
}

.l-body-subpage-simple {
	background-image: url("../images/bg_subpage-simple_pc.webp");
}

.l-body-top__bg {
	background-image: url("../front-page/images/bg_top_pc.webp");
}

.l-header {
	height: 80px;
	padding-inline: 64px;
}

.l-header__logo-outer {
	width: 200px;
}

.l-header__content {
	gap: 22px;
}

.l-header__content-left {
	flex-direction: row-reverse;
	gap: 34px;
}

.l-header__sns {
	gap: 12px;
}

.l-header__sns-link {
	width: 36px;
}

.l-header__drawer-icon {
	width: 50px;
	height: 50px;
}

.l-header__drawer-icon.is-checked .l-header__drawer-icon-bar {
	top: 24px;
	left: 10px;
}

.l-header__drawer-icon-bar:nth-of-type(1) {
	top: calc(50% - 13px);
	left: 7px;
	width: 25px;
}

.l-header__drawer-icon-bar:nth-of-type(2) {
	left: 6px;
	width: 38px;
}

.l-header__drawer-icon-bar:nth-of-type(3) {
	top: calc(50% + 11px);
	left: 19px;
	width: 25px;
}

.l-drawer__content__inner {
	padding: min(5.4166666667dvh, 126px) 0 min(6.0416666667dvh, 116px);
}

.l-drawer__nav {
	gap: min(2.9166666667dvh, 28px);
}

.l-drawer__nav-list {
	gap: min(3.3333333333dvh, 32px);
}

.l-drawer__nav-link {
	font-size: 24px;
}

.l-drawer__bottom {
	gap: min(1.6666666667dvh, 16px);
}

.l-drawer__bottom-shop {
	font-size: 20px;
}

.l-drawer__bottom-sns-link {
	width: 44px;
}

.l-drawer__deco-top-right {
	width: 42.0571428571%;
}

.l-drawer__deco-bottom-right {
	width: 33.6%;
}

.l-drawer__deco-bottom-left {
	width: 55.5428571429%;
}

.l-body {
	padding-top: 80px;
}

.c-accordion {
	border-width: 2px;
}

.c-accordion:has([data-hidden=false]) .c-accordion__q-button {
	padding: 16px 20px;
}

.c-accordion__q-button {
	padding: 16px 20px;
	font-size: 18px;
}

.c-accordion__a-container {
	padding: 0 24px 16px;
}

.c-accordion__a-container p {
	font-size: 14px;
}

.c-sub-fv-img {
	flex-direction: row;
	gap: clamp(20px, -25.714px + 5.952vw, 60px);
	align-items: center;
	padding: 10px 40px 40px 0;
}

.c-sub-fv-img__inner {
	flex: 700;
	max-width: 700px;
	padding-right: 0;
}

.c-sub-fv-img__heading--yamaden::after {
	position: absolute;
	right: 20px;
	bottom: -7px;
	width: 150px;
	aspect-ratio: 150/118;
	content: "";
	background: url("../images/logo_yamaden.webp") no-repeat center center/contain;
	rotate: -2deg;
	translate: 100% 0;
}

.c-sub-fv-img__container {
	flex: 715;
	gap: 16px;
	padding-inline: 0;
}

.c-sub-fv-img__title-en {
	line-height: 1.6;
}

.c-sub-fv-img__content {
	gap: 24px;
}

.c-sub-fv-img__content--yamaden::after {
	display: none;
}

.c-sub-fv-text {
	padding: 80px 0 160px;
}

.c-sub-fv-text__title-ja {
	font-size: 40px;
}

.c-sub-fv-text__title-en {
	font-size: 18px;
	line-height: 1.75;
	letter-spacing: 0;
}

.c-contact-link {
	padding-block: 80px;
}

.c-contact-link__container {
	padding: clamp(60px, 24.444px + 4.63vw, 80px) clamp(32px, -53.333px + 11.111vw, 80px);
	border-radius: clamp(60px, -46.667px + 13.889vw, 120px) clamp(60px, -46.667px + 13.889vw, 120px) clamp(60px, -46.667px + 13.889vw, 120px) 0;
}

.c-contact-link__container::after {
	top: -56px;
	right: -56px;
	width: 380px;
}

.c-contact-link__title-ja {
	font-size: 36px;
}

.c-contact-link__button {
	margin-top: 42px;
	text-align: left;
}

.c-button-m-green {
	min-width: 312px;
	min-height: 68px;
	padding: 22px 64px 22px 32px;
}

.c-button-m-green::after {
	right: 30px;
}

.c-info__container {
	gap: 24px;
	border-width: 2px;
}

.c-info__container--row {
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.c-info__title {
	font-size: 36px;
}

.c-info__text {
	margin-top: 16px;
}

.c-info__button-wrap {
	flex-direction: row;
	gap: 10px;
	justify-content: flex-start;
}

.c-button-s-green {
	min-width: 190px;
	padding: 10px 54px 10px 24px;
}

.c-button-s-green::after {
	right: 24px;
}

.c-accordion-bg {
	border-width: 2px;
}

.c-accordion-bg__q-button {
	font-size: 18px;
}

.c-accordion-bg__a {
	padding: 0 clamp(16px, -30.222px + 6.019vw, 42px);
}

.c-accordion-bg__a[data-hidden=false] {
	padding: 0 clamp(16px, -30.222px + 6.019vw, 42px) clamp(16px, 1.778px + 1.852vw, 24px);
}

.c-accordion-bg__a-list {
	gap: 8px;
}

.c-accordion-bg__a-box {
	flex-direction: row;
	gap: 8px;
	align-items: flex-start;
}

.c-accordion-bg__a-label {
	padding-block: 0;
	font-size: 16px;
}

.c-accordion-bg__a-text--pl {
	line-height: 1.75;
}

.c-button-s {
	padding: 10px 54px 10px 24px;
	border-width: 2px;
}

.c-button-s::after {
	right: 24px;
}

.c-bogo-switcher {
	font-size: 18px;
}

.bogo-trigger {
	gap: 16px;
}

.c-accordion-dot {
	border-width: 2px;
}

.c-accordion-dot__q-button {
	gap: 6px;
	padding: 16px 24px;
	font-size: 18px;
}

.c-accordion-dot__q-title {
	flex-shrink: 0;
	font-size: 16px;
}

.c-accordion-dot__a-container {
	display: flex;
	gap: 6px;
	padding: 0 24px 16px 40px;
}

.c-accordion-dot__a-title {
	flex-shrink: 0;
}

.c-accordion-dot__a-boxes {
	flex-shrink: 0;
}

.c-accordion-dot__a-text--pl {
	padding-left: 16px;
}

.c-accordion-dot__a-text--padding {
	padding: 0 24px;
}

.c-item {
	align-items: flex-start;
	padding-block: 4px;
	font-size: 16px;
	line-height: 1.2;
}

.c-label {
	padding: 8px 24px;
	font-size: 16px;
}

}

@media (height >= 900px) {

.c-bogo-switcher--drawer .bogo-language-switcher {
	top: calc(100% + 4px);
	bottom: auto;
}

}

@media (width >= 992px) {

.l-footer--deco::before {
	left: -70px;
	width: clamp(200px, -28.571px + 29.762vw, 400px);
}

.c-sub-fv-img__heading--yamaden::after {
	width: 174px;
}

.c-contact-link__container::after {
	top: -78px;
	right: -58px;
	width: 466px;
}

.c-contact-link__button {
	flex-direction: row;
	gap: 24px;
	justify-content: flex-start;
}

}

@media (width >= 1200px) {

.l-footer--deco::before {
	top: -24px;
}

}

@media (width >= 1280px) {

.c-sub-fv-img {
	padding: 10px calc(50vw - 600px) 40px 0;
}

}

@media (any-hover: hover) {

.l-footer__top:where(:-moz-any-link,
:enabled,
summary):hover {
	opacity: 0.5;
}

.l-footer__top:where(:any-link,
:enabled,
summary):hover {
	opacity: 0.5;
}

.l-footer__logo-wrap:where(:-moz-any-link,
:enabled,
summary):hover {
	opacity: 0.5;
}

.l-footer__logo-wrap:where(:any-link,
:enabled,
summary):hover {
	opacity: 0.5;
}

.l-footer__nav-link:where(:-moz-any-link,
:enabled,
summary):hover {
	opacity: 0.5;
}

.l-footer__nav-link:where(:any-link,
:enabled,
summary):hover {
	opacity: 0.5;
}

.l-footer__sns-link:where(:-moz-any-link,
:enabled,
summary):hover {
	opacity: 0.5;
}

.l-footer__sns-link:where(:any-link,
:enabled,
summary):hover {
	opacity: 0.5;
}

.l-footer__shop:where(:-moz-any-link,
:enabled,
summary):hover {
	opacity: 0.5;
}

.l-footer__shop:where(:any-link,
:enabled,
summary):hover {
	opacity: 0.5;
}

.l-header__logo-wrap:where(:-moz-any-link,
:enabled,
summary):hover {
	opacity: 0.5;
}

.l-header__logo-wrap:where(:any-link,
:enabled,
summary):hover {
	opacity: 0.5;
}

.l-header__sns-link:where(:-moz-any-link,
:enabled,
summary):hover {
	opacity: 0.5;
}

.l-header__sns-link:where(:any-link,
:enabled,
summary):hover {
	opacity: 0.5;
}

.l-drawer__nav-link:where(:-moz-any-link,
:enabled,
summary):hover {
	opacity: 0.5;
}

.l-drawer__nav-link:where(:any-link,
:enabled,
summary):hover {
	opacity: 0.5;
}

.l-drawer__bottom-shop:where(:-moz-any-link,
:enabled,
summary):hover {
	opacity: 0.5;
}

.l-drawer__bottom-shop:where(:any-link,
:enabled,
summary):hover {
	opacity: 0.5;
}

.l-drawer__bottom-sns-link:where(:-moz-any-link,
:enabled,
summary):hover {
	opacity: 0.5;
}

.l-drawer__bottom-sns-link:where(:any-link,
:enabled,
summary):hover {
	opacity: 0.5;
}

.c-button-m-green:where(:-moz-any-link,
:enabled,
summary):hover {
	background-color: var(--dark-green);
}

.c-button-m-green:where(:any-link,
:enabled,
summary):hover {
	background-color: var(--dark-green);
}

.c-button-s-green:where(:-moz-any-link,
:enabled,
summary):hover {
	background-color: var(--dark-green);
}

.c-button-s-green:where(:any-link,
:enabled,
summary):hover {
	background-color: var(--dark-green);
}

.c-button-s:where(:-moz-any-link,
:enabled,
summary):hover {
	background-color: var(--thin-green);
}

.c-button-s:where(:any-link,
:enabled,
summary):hover {
	background-color: var(--thin-green);
}

.bogo-language-switcher li a:where(:-moz-any-link,
:enabled,
summary):hover {
	background: var(--light-creem);
}

.bogo-language-switcher li a:where(:any-link,
:enabled,
summary):hover {
	background: var(--light-creem);
}

.c-accordion-dot__q-title-link:where(:-moz-any-link,
:enabled,
summary):hover {
	opacity: 0.5;
}

.c-accordion-dot__q-title-link:where(:any-link,
:enabled,
summary):hover {
	opacity: 0.5;
}

}

@keyframes rotation {

0% {
	transform: rotate(0);
}

100% {
	transform: rotate(360deg);
}

}

@keyframes swing {

0% {
	transform: rotate(6deg);
	transform-origin: right bottom;
}

25% {
	transform: rotate(1deg);
}

50% {
	transform: rotate(-6deg);
}

75% {
	transform: rotate(1deg);
}

100% {
	transform: rotate(6deg);
}

}

@keyframes swing2 {

0% {
	transform: rotate(0);
	transform-origin: left bottom;
}

25% {
	transform: rotate(5deg);
}

50% {
	transform: rotate(10deg);
}

75% {
	transform: rotate(5deg);
}

100% {
	transform: rotate(0);
}

}

@keyframes swing3 {

0% {
	transform: rotate(0deg);
	transform-origin: right bottom;
}

25% {
	transform: rotate(-5deg);
}

50% {
	transform: rotate(-10deg);
}

75% {
	transform: rotate(-5deg);
}

100% {
	transform: rotate(0deg);
}

}

