/*****************************************
 * 数値から単位を取り除く
 * 参考
 * 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関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/

html {
	font-size: 16px;
	font-size: 16px;
}

body {
	font-family: "Noto Serif JP", serif;
	font-weight: 400;
	color: #333;
}

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

/*
 * 参考
 * 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;
}

.l-footer {
	width: 100%;
}

.l-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	height: inherit;
}

.l-information {
	margin-top: 30rem;
}

.l-inner {
	max-width: 930px;
	margin-inline: auto;
	padding-inline: 25px;
	width: 100%;
}

.l-main {
	width: 100%;
	margin-left: 20rem;
	min-width: 0;
}

.l-site {
	display: flex;
	min-height: 100vh;
}

.c-button01 a {
	position: relative;
	display: inline-block;
	font-family: "Zen Old Mincho", serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.08em;
	color: #2a2d2d;
	text-align: left;
	padding-block: 1rem;
	padding-inline: 0.5rem;
	min-width: 15rem;
}

.c-button01 a::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 1rem;
	translate: 0 -50%;
	width: 0.6875rem;
	aspect-ratio: 11/13;
	background: url(../images/arrow_button01.png) no-repeat center center/contain;
}

.c-button01 a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background-color: #2a2d2d;
}

.c-button02__link {
	display: inline-block;
	font-size: 1.0625rem;
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #fff;
	background-color: #977550;
	border: 1px solid transparent;
	border-radius: 0.3125rem;
	padding-block: 0.875rem;
	padding-inline: 0.625rem;
	text-align: center;
	min-width: clamp(18.75rem, 11.058rem + 12.02vw, 21.875rem);
	transition: background-color 0.3s, color 0.3s;
}

.c-button02__link span {
	position: relative;
	display: inline-block;
	padding-right: 2.1875rem;
	margin-inline: auto;
}

.c-button02__link span::before {
	content: "";
	position: absolute;
	top: calc(50% + 0.125rem);
	right: 0;
	translate: 0 -50%;
	width: 0.75rem;
	aspect-ratio: 11/13;
	-webkit-mask-image: url(../images/arrow.svg);
	mask-image: url(../images/arrow.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center center;
	mask-position: center center;
	background-color: #fff;
	transition: background-color 0.3s, color 0.3s;
}

.c-button03__link {
	display: inline-block;
	font-size: 1.0625rem;
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #977550;
	background-color: #fff;
	border: 1px solid #977550;
	border-radius: 0.3125rem;
	padding-block: 0.875rem;
	padding-inline: 0.625rem;
	text-align: center;
	min-width: clamp(18.75rem, 11.058rem + 12.02vw, 21.875rem);
	transition: background-color 0.3s, color 0.3s;
}

.c-button03__link span {
	position: relative;
	display: inline-block;
	padding-right: 2.1875rem;
	margin-inline: auto;
}

.c-button03__link span::before {
	content: "";
	position: absolute;
	top: calc(50% + 0.125rem);
	right: 0;
	translate: 0 -50%;
	width: 0.75rem;
	aspect-ratio: 11/13;
	-webkit-mask-image: url(../images/arrow.svg);
	mask-image: url(../images/arrow.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center center;
	mask-position: center center;
	background-color: #977550;
	transition: background-color 0.3s, color 0.3s;
}

.c-button04__link {
	display: inline-block;
	font-size: 1.0625rem;
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #fff;
	background-color: #977550;
	border: 1px solid transparent;
	border-radius: 0.3125rem;
	padding-block: 0.875rem;
	padding-inline: 0.625rem;
	text-align: center;
	min-width: clamp(18.75rem, 11.058rem + 12.02vw, 21.875rem);
	transition: background-color 0.3s, color 0.3s;
}

.c-button04__link span {
	position: relative;
	display: inline-block;
	margin-inline: auto;
}

.c-button0304 {
	display: flex;
	gap: 1rem;
	margin-top: 2rem;
}

.c-cat {
	min-width: 100px;
	font-size: 12px;
	background-color: skyblue;
	border: 1px solid skyblue;
	padding: 4px 10px;
	color: #fff;
	text-align: center;
	display: inline-block;
}

.c-cat.is-current {
	color: red;
}

.c-lang-list {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}

.c-lang-list::before {
	content: "";
	position: absolute;
	top: 50%;
	top: calc(50% - 0.3125rem);
	translate: 0 -50%;
	width: 100%;
	height: 0.5px;
	background-color: rgba(42, 45, 45, 0.5);
}

.c-lang-list::after {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	translate: -50% 0;
	width: 0.5px;
	height: 100%;
	background-color: rgba(42, 45, 45, 0.5);
}

.c-lang-list__item a {
	display: grid;
	place-content: center;
	padding-block: 0.75rem 0.875rem;
	font-size: 0.875rem;
	font-family: "Crimson Pro", serif;
	font-weight: 400;
	letter-spacing: 0.06em;
	color: rgba(42, 45, 45, 0.3199999928);
	transition: color 0.3s;
}

.c-lang-list__item:nth-child(1) a,
.c-lang-list__item:nth-child(2) a {
	padding-block: 0.25rem 1.375rem;
}

.c-lang-list__item.is-current a {
	color: #2a2d2d;
}

.c-line-button {
	position: fixed;
	right: 0;
	bottom: -0.1875rem;
	z-index: 1;
}

.c-line-button a {
	display: block;
	padding-right: 0.4rem;
}

.c-line-button img {
	object-fit: contain;
	width: 100%;
	height: 100%;
	max-width: 10rem;
}

@media screen and (max-width: 767px) {
	.c-line-button img {
		max-width: 7rem;
	}

	.c-button0304 {
		display: block;
	}

	.c-button04 {
		margin-bottom: 0.5rem;
	}
}

.c-misaligned-image {
	display: flex;
	justify-content: flex-end;
	gap: 1rem;
	width: 32.2222222222vw;
}

.c-misaligned-image__item img {
	object-fit: cover;
	width: 100%;
	height: auto;
	border-radius: 0.5rem;
}

.c-misaligned-image__item:first-child {
	padding-top: 11.75rem;
	width: 41.3793103448%;
	max-width: 12rem;
}

.c-misaligned-image.c-misaligned-image--commitment .c-misaligned-image__item:first-child {
	padding-top: 10.125rem;
}

.c-misaligned-image__item:first-child img {
	aspect-ratio: 192/288;
}

.c-misaligned-image__item:last-child {
	width: 55.1724137931%;
	max-width: 16rem;
}

.c-misaligned-image__item:last-child img {
	aspect-ratio: 256/384;
}

.c-person {
	display: flex;
	gap: 0.375rem;
}

.c-person.c-person--reverse {
	flex-direction: row-reverse;
}

.c-person__img {
	padding-top: 1rem;
}

.c-person__img img {
	aspect-ratio: 219/328;
	object-fit: cover;
	width: 100%;
	height: auto;
	border-radius: 0.3125rem;
}

.c-person__name {
	font-family: "Zen Old Mincho", serif;
	font-size: 1.0625rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	color: #2a2d2d;
	writing-mode: vertical-rl;
}

.c-person__name span {
	font-size: 0.75rem;
}

.c-section-title {
	display: flex;
	align-items: flex-end;
	gap: 0.75rem;
}

.c-section-title.c-section-title--vertical {
	flex-direction: column-reverse;
	align-items: flex-start;
	gap: 0.5rem;
}

.c-section-title__ja {
	font-family: "Zen Old Mincho", serif;
	font-size: 3rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	color: #2a2d2d;
	white-space: nowrap;
}

.c-section-title.c-section-title--vertical--white .c-section-title__ja {
	color: #fff;
}

.c-section-title__en {
	font-size: 1.125rem;
	font-family: "Crimson Pro", serif;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: #785231;
	text-transform: capitalize;
	translate: 0 -0.3125rem;
}

.c-section-title.c-section-title--vertical .c-section-title__en {
	font-size: 1.125rem;
	translate: 0 0;
}

.c-section-title.c-section-title--vertical--white .c-section-title__en {
	color: #fff;
}

.c-sns-list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

.c-sns-list__item a {
	transition: opacity 0.3s;
}

.p-404 {
	padding-block: 7.5rem;
}

.p-404__title {
	text-align: center;
	font-family: "Crimson Pro", serif;
	font-size: 2rem;
}

.p-404__btn {
	text-align: center;
	margin-top: 3.125rem;
}

.p-access {
	background-color: #f5f5f5;
	padding-block: 3rem 7.5rem;
}

.p-access__item {
	display: flex;
	gap: 0.5rem;
	border-bottom: 0.03125rem solid rgba(42, 45, 45, 0.5);
	padding-block: 2rem;
	padding-inline: 0.5rem;
}

.p-access__item-head {
	flex: 0 0 9.25rem;
}

.p-access__item-title {
	font-size: 1rem;
	font-family: "Noto Serif JP", serif;
	font-weight: 400;
	letter-spacing: 0.04em;
	color: #535353;
}

.p-access__item-body {
	flex: 1 0 0;
}

.p-access__item-text {
	font-size: 1rem;
	font-family: "Noto Serif JP", serif;
	font-weight: 400;
	letter-spacing: 0.04em;
	color: #2a2d2d;
}

.p-access__item-text span {
	font-weight: 600;
}

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

.p-access__map {
	margin-top: 2.5rem;
}

.p-access__map iframe {
	aspect-ratio: 880/435;
	object-fit: cover;
	width: 100%;
	height: auto;
}

.p-affiliated {
	background-color: #ebeded;
	padding-block: 5rem 7.5rem;
}

.p-affiliated__title {
	font-family: "Noto Serif JP", serif;
	font-size: 1.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: #2a2d2d;
}

.p-affiliated__text {
	color: #2a2d2d;
	margin-top: 2.5rem;
}

.p-affiliated__banner {
	margin-top: 2.5rem;
}

.p-affiliated__banner a {
	transition: opacity 0.3s;
}

.p-affiliated__banner img {
	aspect-ratio: 880/218;
	object-fit: contain;
	width: 100%;
	height: auto;
}

.p-background__img {
	position: fixed;
	top: 0;
	right: 0;
	width: calc(100vw - 20rem);
	z-index: -1;
}

.p-background__img img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
}

.p-commitment {
	padding-block: 5rem;
}

.p-commitment:nth-child(odd) {
	background-color: #ebeded;
}

.p-commitment:nth-child(even) {
	background-color: #f5f5f5;
}

.p-commitment__inner.l-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.25rem;
}

.p-commitment.p-commitment--reverse .p-commitment__inner.l-inner {
	flex-direction: row-reverse;
}

.p-commitment__content {
	flex: 0 0 22.625rem;
}

.p-commitment__title {
	font-size: 1.75rem;
	font-family: "Zen Old Mincho", serif;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: #2a2d2d;
	white-space: nowrap;
}

.p-commitment__text {
	font-size: 1rem;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	line-height: 2;
	letter-spacing: 0.04em;
	color: #2a2d2d;
	margin-top: 3rem;
}

.p-commitment .p-order__button {
	margin-top: 2rem;
}

.p-commitment__images {
	flex: 1 0 0;
	max-width: 29rem;
}

.p-commitment.p-commitment--reverse .p-commitment__images.c-misaligned-image {
	flex-direction: row-reverse;
}

.p-footer {
	position: relative;
	background: url(../images/footer-bg.jpg) no-repeat center center/cover;
	z-index: 1;
	padding-bottom: 1.25rem;
}

.p-footer::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(42, 45, 45, 0.6999999881);
	z-index: -1;
}

.p-footer__inner.l-inner {
	padding-block: 5rem 2.5rem;
}

.p-footer__content {
	gap: 7.25rem;
}

.p-footer__logo {
	max-width: 15rem;
}

.p-footer__logo img {
	aspect-ratio: 240/79;
	object-fit: contain;
	width: 100%;
	height: auto;
}

.p-footer__info {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.p-footer__store-name {
	font-family: "Zen Old Mincho", serif;
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: #f5f5f5;
}

.p-footer__store-address {
	font-family: "Zen Old Mincho", serif;
	font-size: 0.9375rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	color: #f5f5f5;
	margin-top: 1rem;
}

.p-footer__map-link {
	margin-top: 0.5rem;
}

.p-footer__map-link a {
	display: inline-block;
	font-family: "Noto Serif JP", serif;
	font-size: 0.75rem;
	font-weight: 400;
	color: #f5f5f5;
	transition: opacity 0.3s;
}

.p-footer__hours,
.p-footer__holiday {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.p-footer__info-title {
	font-family: "Zen Old Mincho", serif;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	color: #fff;
}

.p-footer__info-text {
	font-family: "Zen Old Mincho", serif;
	font-size: 0.9375rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	color: #fff;
}

.p-footer__contact-list {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-top: 0.9375rem;
}

.p-footer__contact-item a {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0.625rem;
	padding-block: 0.75rem;
	padding-inline: 0.5rem;
	font-family: "Zen Old Mincho", serif;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	color: #fff;
	min-width: 16.5625rem;
	margin-top: 0.5rem;
}

.p-footer__contact-item a::before {
	content: "";
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	right: 1rem;
	width: 0.6875rem;
	aspect-ratio: 11/13;
	-webkit-mask-image: url(../images/arrow_button01.png);
	mask-image: url(../images/arrow_button01.png);
	-webkit-mask-size: cover;
	mask-size: cover;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	background-color: #fff;
}

.p-footer__contact-item a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background-color: #fff;
}

.p-footer__contact-icon {
	translate: 0 0.125rem;
}

.p-footer__to-top {
	position: absolute;
	top: 13.5rem;
	right: 3.5rem;
}

.p-footer__to-top-link {
	position: relative;
	display: inline-block;
	font-family: "Zen Old Mincho", serif;
	font-size: 0.9375rem;
	font-weight: 400;
	letter-spacing: 0.3em;
	text-align: center;
	color: #fff;
	writing-mode: vertical-rl;
}

.p-footer__to-top-link::before {
	content: "";
	position: absolute;
	top: -6rem;
	left: 50%;
	translate: -50% 0;
	width: 1px;
	height: 5rem;
	background-color: #fff;
	will-change: clip-path;
	transform: translateZ(0);
	backface-visibility: hidden;
}

.p-footer__copyright-wrap {
	padding-block: 1.25rem;
	text-align: center;
}

.p-footer__copyright {
	display: block;
	font-family: "Noto Serif JP", serif;
	font-size: 0.75rem;
	font-weight: 400;
	color: #f5f5f5;
}

.p-founder {
	padding-block: 5rem;
	background-color: #f5f5f5;
}

.p-founder__title {
	font-family: "Zen Old Mincho", serif;
	font-size: 1.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: #2a2d2d;
}

.p-founder__content {
	display: flex;
	gap: 3rem;
	margin-top: 2.625rem;
}

.p-founder__text.u-font-base02 {
	font-family: "Zen Old Mincho", serif;
	letter-spacing: initial;
	width: 66.0227272727%;
	padding-top: 0.375rem;
}

.p-founder__image-area {
	width: 28.5227272727%;
}

.p-founder__img {
	padding-top: 1rem;
}

body.is-open {
	overflow: hidden;
}

.p-header {
	background-color: #fff;
	width: 20rem;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow-y: hidden;
	scrollbar-width: none;
}

.p-header.is-scrolled {
	background-color: #fff;
}

.p-header__inner {
	padding-block: 3.5rem;
	max-width: 11rem;
	margin-inline: auto;
	min-height: 44.1875rem;
}

.p-header__logo {
	transition: opacity 0.3s;
	max-width: 6rem;
	margin-inline: auto;
}

.p-header__logo a {
	transition: opacity 0.3s;
}

.p-header.is-scrolled .p-header__logo,
.p-header:has(.p-header__hamburger.is-open) .p-header__logo {
	background-color: #333;
}

.p-header__logo img {
	aspect-ratio: 80/150;
	object-fit: contain;
	width: 100%;
	height: auto;
}

.p-header__nav {
	margin-top: 2rem;
}

.p-header__nav-list {
	display: flex;
	flex-direction: column;
	gap: 1.8rem;
	text-align: center;
}

.p-header__nav-item a {
	display: block;
	font-family: "Zen Old Mincho", serif;
	font-size: 1rem;
	font-weight: 500;
	color: #2a2d2d;
	line-height: 0.89;
	letter-spacing: 0.04em;
	text-align: center;
	transition: opacity 0.3s;
}

.p-header__lang-list {
	margin-top: 3rem;
}

.p-header__sns-list {
	margin-top: 1.5rem;
}

.p-header__hamburger.is-open {
	height: 1.25rem;
}

.p-header__hamburger span {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 100%;
	height: 1px;
	background-color: #fff;
	transition: 0.5s;
}

.p-header.is-scrolled .p-header__hamburger span {
	background-color: #333;
}

.p-header__hamburger.is-open span {
	background-color: #333;
}

.p-header__hamburger span:nth-of-type(1) {
	top: -0.46875rem;
}

.p-header__hamburger span:nth-of-type(2) {
	top: 0;
}

.p-header__hamburger span:nth-of-type(3) {
	top: 0.46875rem;
}

.p-header__hamburger.is-open span:nth-of-type(1) {
	top: 0;
	transform: translateX(-50%) rotate(20deg);
}

.p-header__hamburger.is-open span:nth-of-type(2) {
	opacity: 0;
}

.p-header__hamburger.is-open span:nth-of-type(3) {
	top: -0.125rem;
	transform: translateX(-50%) rotate(-20deg);
}

.p-header__drawer {
	display: none;
	position: absolute;
	z-index: 900;
	inset: 0;
	width: 100%;
	height: 100vh;
	background-color: #fff;
	overflow-y: scroll;
	scrollbar-width: none;
	padding-top: 9.0625rem;
	padding-inline: 6.25rem;
}

.p-header__drawer-nav {
	max-width: -moz-fit-content;
	max-width: fit-content;
	margin-inline: auto;
}

.p-header__drawer-list {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.p-header__drawer-item a {
	display: block;
	font-family: "Zen Old Mincho", serif;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 0.67;
	letter-spacing: 0.04em;
	text-align: center;
	color: #2a2d2d;
	transition: opacity 0.3s;
}

.p-header__drawer-lang-list {
	margin-top: 4rem;
	max-width: 10.9375rem;
	margin-inline: auto;
}

.p-header__drawer-sns-list {
	margin-top: 2rem;
}

.p-information {
	background-color: #ebeded;
	padding-block: 7.5rem;
}

.p-information__inner.l-inner {
	display: flex;
	justify-content: space-between;
	gap: 1.875rem;
	max-width: 58.4375rem;
}

.p-information__slider {
	padding-top: 1.0625rem;
}

.p-information__list {
	display: flex;
	flex-direction: column;
	margin-top: 2.5rem;
}

.p-information__item {
	display: flex;
	gap: 2.5rem;
	padding-block: 1rem;
}

.p-information__item+.p-information__item {
	border-top: 1px solid rgba(42, 45, 1, 0.5);
}

.p-information__item-heading {
	flex: 0 0 4.1875rem;
}

.p-information__info-title,
.p-information__info-text {
	font-family: "Zen Old Mincho", serif;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	color: #2a2d2d;
}

.p-information__item-content {
	flex: 1 0 0;
}

.p-information__info-text span {
	display: block;
	font-size: 0.75rem;
	margin-top: -0.1875rem;
}

.p-information__button.c-button01 {
	margin-top: 2rem;
}

.p-information__slider-container {
	position: relative;
	padding-left: 1.25rem;
	perspective: 62.5rem;
}

.p-information__card-stack {
	position: relative;
	display: flex;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.p-information__card {
	width: clamp(12.5rem, -52.516rem + 101.59vw, 20.5rem);
	background: white;
	border-radius: 5px;
	transition: opacity 0.8s, z-index 0s, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	overflow: clip;
}

.p-information__card img {
	aspect-ratio: 328/492;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p-information__card.is-active {
	z-index: 10;
	transform: translateX(0) translateY(0) rotate(0deg);
	opacity: 1;
}

.p-information__card.is-next-1 {
	position: absolute;
	z-index: 9;
	transform: translateX(0.9375rem) translateY(0.625rem) rotate(3deg);
	opacity: 0.3;
}

.p-information__card.is-next-1::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(189, 189, 189, 0.4);
	z-index: 1;
	pointer-events: none;
}

.p-information__card.is-next-2 {
	position: absolute;
	z-index: 8;
	transform: translateX(-0.9375rem) translateY(-0.3125rem) rotate(-5deg);
	opacity: 0.3;
}

.p-information__card.is-next-2::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(241, 241, 241, 0.3);
	z-index: 1;
	pointer-events: none;
}

.p-information__card.is-prev {
	z-index: 1;
	transform: translateX(-6.25rem) translateY(-3.125rem) rotate(-5deg);
	opacity: 0;
	pointer-events: none;
}

.p-menu {
	background-color: #f5f5f5;
	padding-block: 5rem 7.5rem;
}

.p-menu__text {
	color: #2a2d2d;
	text-align: center;
}

.p-menu__text a {
	color: #977550;
	text-decoration: underline;
	text-decoration-thickness: 0.0625rem;
	text-underline-offset: 0.125rem;
	text-decoration-color: currentColor;
	transition: text-decoration-color 0.4s ease, color 0.4s ease;
	word-break: break-word;
}

.p-menu__tab-list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	-moz-column-gap: 1rem;
	column-gap: 1rem;
	margin-top: 2.5rem;
}

.p-menu__tab-button a {
	display: block;
	font-size: 1.5rem;
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-align: center;
	color: #2a2d2d;
	background-color: #ebeded;
	padding-block: 0.75rem 0.6875rem;
}

.p-menu__tab-button:not(.is-current) a:hover {
	opacity: 0.7;
}

.p-menu__category-item:not(.is-current) a:hover {
	color: #333;
}

.p-menu__tab-button.is-current a {
	color: #fff;
	background-color: #785231;
}

.p-menu__content {
	padding-top: 1.875rem;
}

.p-menu__content.p-menu__content--no-padding {
	padding-top: 0;
}

.p-menu__category-list {
	display: flex;
	justify-content: center;
	align-items: center;
	-moz-column-gap: 3.5rem;
	column-gap: 3.5rem;
	flex-wrap: wrap;
}

.p-menu__category-item a {
	font-size: 1.125rem;
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: rgba(42, 45, 45, 0.32);
}

.p-menu__category-item.is-current a {
	color: #2a2d2d;
	text-decoration: underline;
	text-decoration-thickness: 0.0625rem;
	text-underline-offset: 0.25rem;
	text-decoration-color: currentColor;
	transition: text-decoration-color 0.4s ease, color 0.4s ease;
	word-break: break-word;
	color: currentColor;
}

.p-menu__container {
	margin-top: 2.5rem;
}

.p-menu__category-content+.p-menu__category-content {
	margin-top: 3.5rem;
}

.p-menu__set-info {
	font-size: 1rem;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	line-height: 1.9375;
	letter-spacing: 0.04em;
	color: #2a2d2d;
}

.p-menu__items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.p-menu__set-info+.p-menu__items {
	margin-top: 2.5rem;
}

.p-menu__item {
	display: flex;
	flex-direction: column;
	background-color: #fff;
	box-shadow: 0 1px 2px 0rem rgba(51, 51, 51, 0.04);
	padding: 0.75rem;
	height: -moz-fit-content;
	height: fit-content;
}

.p-menu__item-img img {
	aspect-ratio: 243/164;
	object-fit: cover;
	width: 100%;
	height: auto;
	margin-bottom: 0.5rem;
}

.p-menu__item-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	padding-inline: 0.5rem;
}

.p-menu__item-info.p-menu__item-info--align-end {
	align-items: flex-end;
}

.p-menu__item-title-wrap {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.p-menu__item-title {
	font-size: 1.125rem;
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: #2a2d2d;
}

.p-menu__select {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	margin-left: 0.2rem;
}

.p-menu__select-item {
	position: relative;
	font-size: 0.625rem;
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: #2a2d2d;
	text-align: center;
	z-index: 1;
}

.p-menu__select-item::before {
	content: "";
	position: absolute;
	top: calc(50% + 0.0625rem);
	left: 50%;
	translate: -50% -50%;
	width: 1.25rem;
	aspect-ratio: 1;
	border-radius: 50%;
	z-index: -1;
}

.p-menu__select-item.p-menu__select-item--hot::before {
	background-color: #f2a8a9;
}

.p-menu__select-item.p-menu__select-item--cold::before {
	background-color: #a5d2ff;
}

.p-menu__item-price {
	font-size: 0.875rem;
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: #2a2d2d;
}

.p-menu__item-info.p-menu__item-info--align-end .p-menu__item-price {
	line-height: 1.8;
}

.p-menu__item-note {
	font-size: 0.875rem;
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: #2a2d2d;
	padding-inline: 0.5rem;
	margin-top: 0.25rem;
}

.p-menu__category-title {
	font-size: 1.125rem;
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: #2a2d2d;
	margin-bottom: 1rem;
}

.p-menu__category-title-memo {
	display: inline-block;
	font-size: 0.875rem;
	margin-left: 0.6875rem;
}

.p-menu__list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(11.875rem, 1fr));
	-moz-column-gap: 0.875rem;
	column-gap: 0.875rem;
	row-gap: 1.25rem;
	background-color: #fff;
	padding-block: 1.0625rem 1.4375rem;
	padding-inline: 0.625rem;
	margin-top: 1rem;
}

.p-menu__list.p-menu__list--2columns {
	grid-template-columns: repeat(2, 1fr);
}

.p-menu__list-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.5rem;
}

.p-menu__list-item-heading {
	flex-shrink: 0;
	font-size: 1rem;
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: #2a2d2d;
	line-height: 1;
}

.p-menu__dot-line {
	flex: 1 1 auto;
	width: 100%;
	height: 1px;
	background-image: linear-gradient(to right, #2a2d2d 1px, transparent 1px);
	background-size: 0.25rem 1px;
	background-repeat: repeat-x;
}

.p-menu__list-item-price {
	flex-shrink: 0;
	font-size: 0.875rem;
	font-family: "Zen Old Mincho", serif;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: #2a2d2d;
	line-height: 1;
}

.p-mv {
	position: relative;
	width: 100%;
	height: 100dvh;
}

.p-mv__movie {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p-mv__movie video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p-mv__text {
	position: absolute;
	top: calc(50% - 0.875rem);
	left: calc(50% - 1rem);
	translate: -50% -50%;
	font-family: "Zen Old Mincho", serif;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.1em;
	color: #f5f5f5;
}

.p-mv__char {
	opacity: 0;
}

.p-news {
	background-color: #f5f5f5;
	padding-block: 7.5rem;
}

.p-news__inner.l-inner {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}

.p-news__text {
	margin-top: 3.5rem;
}

.p-news__images {
	width: 61.3636363636%;
	display: flex;
	gap: 1rem;
	padding-top: 3.125rem;
}

.p-news__img {
	flex: 1;
}

.p-news__img:nth-child(2) {
	padding-top: 0.9375rem;
}

.p-news__img img {
	aspect-ratio: 1;
	object-fit: cover;
	width: 100%;
	height: auto;
	border-radius: 0.5rem;
}

.p-news__button.c-button01 {
	margin-top: 2.5rem;
}

.p-order {
	padding-block: 5rem;
	background-color: #f5f5f5;
}

.p-order:nth-child(odd) {
	background-color: #ebeded;
}

.p-order__top {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.p-order__content {
	margin-top: 3rem;
}

.p-order__images {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr 1fr 1fr;
	margin-top: 2.5rem;
}

.p-order__img img {
	aspect-ratio: 282/189;
	object-fit: cover;
	width: 100%;
	height: auto;
}

.p-recruit {
	background-color: #f5f5f5;
	padding-block: 5rem 7.5rem;
}

.p-recruit__button.c-button01 {
	margin-top: 1.5rem;
}

.p-recruit__button.c-button01 a span {
	position: relative;
	display: inline-block;
}

.p-recruit__button.c-button01 a span::before {
	content: "";
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	right: -1.25rem;
	width: 0.875rem;
	aspect-ratio: 1;
	background: url(../images/link.svg) no-repeat center center/contain;
}

.p-sub-mv {
	position: relative;
	padding-top: 5rem;
	padding-left: 5rem;
	min-height: 30rem;
	z-index: 1;
}

.p-sub-mv::before {
	content: "";
	position: absolute;
	top: 0;
	inset: 0;
	background-color: rgba(42, 45, 45, 0.6);
	z-index: -1;
}

.p-sub-mv.p-sub-mv--commitment {
	background: url(../images/sub-mv-commitment.jpg) no-repeat center center/cover;
}

.p-sub-mv.p-sub-mv--recruit {
	background: url(../images/sub-mv-recruit.jpg) no-repeat center center/cover;
}

.p-sub-mv.p-sub-mv--access {
	background: url(../images/sub-mv-access.jpg) no-repeat center center/cover;
}

.p-sub-mv.p-sub-mv--delivery {
	background: url(../images/sub-mv-delivery.jpg) no-repeat center center/cover;
}

.p-sub-mv.p-sub-mv--menu {
	background: url(../images/sub-mv-menu.jpg) no-repeat center center/cover;
}

.p-sub-mv__title {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.p-sub-mv__title__ja {
	font-family: "Zen Old Mincho", serif;
	font-size: 2rem;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.05em;
	color: #fff;
}

.p-sub-mv__title__en {
	font-size: 1.125rem;
	font-family: "Crimson Pro", serif;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: #fff;
	text-transform: capitalize;
}

.p-sub-mv__text.u-font-base02 {
	color: #fff;
	margin-top: 1.5rem;
}

.p-third {
	background-color: #ebeded;
	padding-block: 5rem 7.5rem;
}

.p-third__container {
	display: flex;
	justify-content: space-between;
	gap: 1.25rem;
	max-width: 51.5rem;
	margin-left: auto;
}

.p-third__person {
	flex: 1 0 0;
	max-width: 15.6875rem;

}

.p-third__content {
	/* flex: 0 0 29rem; */
	padding-top: 1rem;
}

.p-third__heading {
	font-size: 1.75rem;
	font-family: "Zen Old Mincho", serif;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: #2a2d2d;
}

.p-third__text {
	font-size: 0.9375rem;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	line-height: 2;
	letter-spacing: 0.04em;
	color: #2a2d2d;
	margin-top: 2.875rem;
}

.p-third__name {
	width: 120px;
	margin-top: 1.25rem;
	margin-left: auto;
	margin-right: 1rem;
}

.p-third__name img {
	object-fit: contain;
	width: 120px;
}

.p-top-commitment {
	background-color: #f5f5f5;
	padding-block: 7.5rem;
}

.p-top-commitment__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.p-top-commitment__images {
	top: 0;
	right: 25px;
}

.p-top-commitment__images.c-misaligned-image {
	max-width: 29rem;
}

.p-top-commitment__content {
	flex: 1 0 0;
}

.p-top-commitment__text.u-font-base {
	margin-top: 3.5rem;
	max-width: 22.625rem;
}

.p-commitment__button.c-button01 {
	margin-top: 2.75rem;
}

.p-top-menu {
	padding-block: 7.5rem 7.5rem;
	background-color: #f5f5f5;
}

.p-top-menu__text {
	max-width: 46.25rem;
	margin-top: 2rem;
}

.p-top-menu__list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 11.875rem 11.875rem;
	gap: 1rem;
	margin-top: 2rem;
}

.p-top-menu__item {
	border-radius: 0.4375rem;
	box-shadow: 0 0.0625rem 0.125rem 0 rgba(0, 0, 0, 0.12);
	overflow: clip;
	transition: scale 0.5s;
}

.p-top-menu__item:nth-child(1) {
	grid-column: 1/2;
	grid-row: 1/3;
}

.p-top-menu__item:nth-child(2) {
	grid-column: 2/3;
	grid-row: 1/2;
}

.p-top-menu__item:nth-child(3) {
	grid-column: 3/4;
	grid-row: 1/2;
}

.p-top-menu__item:nth-child(4) {
	grid-column: 2/3;
	grid-row: 2/3;
}

.p-top-menu__item:nth-child(5) {
	grid-column: 3/4;
	grid-row: 2/3;
}

.p-top-menu__link {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

.p-top-menu__link picture {
	display: block;
	width: 100%;
	height: 100%;
}

.p-top-menu__link img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: scale 0.5s;
}

.p-top-menu__category {
	position: absolute;
	top: 1rem;
	left: 1rem;
	font-family: "Zen Old Mincho", serif;
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 1.21;
	letter-spacing: 0.1em;
	color: #f5f5f5;
	text-shadow: 0 0 0.438rem rgba(0, 0, 0, 0.400000006);
	z-index: 1;
}

.p-top-menu__button.c-button01 {
	text-align: center;
	margin-top: 2.5rem;
}

.p-top-order {
	padding-block: 5rem;
	background-color: #ebeded;
}

.p-top-order__container {
	position: relative;
	background: url(../images/order.jpg) no-repeat center center/cover;
	border-radius: 0.75rem;
	padding: 1.5rem;
	z-index: 1;
}

.p-top-order__container::before {
	content: "";
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(42, 45, 45, 0.46);
	border-radius: 0.75rem;
	z-index: -1;
}

.p-top-order__buttons {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 4.625rem;
}

.p-top-order__link {
	display: inline-block;
	padding: 1rem;
	border: 0.03125rem solid #f5f5f5;
	border-radius: 0.3125rem;
	background-color: transparent;
	font-family: "Zen Old Mincho", serif;
	font-size: 1.0625rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #f5f5f5;
	text-align: center;
	transition: background-color 0.3s, color 0.3s;
	min-width: 21.875rem;
}

.u-flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 2px;
}

.u-font-base {
	font-family: "Noto Serif JP", serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 2;
	letter-spacing: 0.04em;
}

.u-font-base02 {
	font-family: "Noto Serif JP", serif;
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 2;
	letter-spacing: 0.04em;
}

.u-hover {
	transition: opacity 0.5s;
}

.u-hover:hover {
	opacity: 0.6;
	transition: opacity 0.5s;
}

.u-lh10 {
	line-height: 1;
}

.u-lh13 {
	line-height: 1.3;
}

.u-lh15 {
	line-height: 1.5;
}

.u-lh16 {
	line-height: 1.6;
}

.u-lh20 {
	line-height: 2;
}

.u-ls05 {
	letter-spacing: 0.05em;
}

.u-ls10 {
	letter-spacing: 0.1em;
}

.u-ls15 {
	letter-spacing: 0.15em;
}

.u-ls20 {
	letter-spacing: 0.2em;
}

.u-mt10 {
	margin-top: 10px !important;
	margin-top: prem(10) !important;
}

.u-mt20 {
	margin-top: 20px !important;
	margin-top: prem(20) !important;
}

.u-mt30 {
	margin-top: 30px !important;
	margin-top: prem(30) !important;
}

.u-mt40 {
	margin-top: 40px !important;
	margin-top: prem(40) !important;
}

.u-mt50 {
	margin-top: 50px !important;
	margin-top: prem(50) !important;
}

.u-mt60 {
	margin-top: 60px !important;
	margin-top: prem(60) !important;
}

.u-mt70 {
	margin-top: 70px !important;
	margin-top: prem(70) !important;
}

.u-mt80 {
	margin-top: 80px !important;
	margin-top: prem(80) !important;
}

.u-mt90 {
	margin-top: 90px !important;
	margin-top: prem(90) !important;
}

.u-mt100 {
	margin-top: 100px !important;
	margin-top: prem(100) !important;
}

.u-mt110 {
	margin-top: 110px !important;
	margin-top: prem(110) !important;
}

.u-mt120 {
	margin-top: 120px !important;
	margin-top: prem(120) !important;
}

.u-mt130 {
	margin-top: 130px !important;
	margin-top: prem(130) !important;
}

.u-mt140 {
	margin-top: 140px !important;
	margin-top: prem(140) !important;
}

.u-mt150 {
	margin-top: 150px !important;
	margin-top: prem(150) !important;
}

.u-mt160 {
	margin-top: 160px !important;
	margin-top: prem(160) !important;
}

.u-mt170 {
	margin-top: 170px !important;
	margin-top: prem(170) !important;
}

.u-mt180 {
	margin-top: 180px !important;
	margin-top: prem(180) !important;
}

.u-mt190 {
	margin-top: 190px !important;
	margin-top: prem(190) !important;
}

.u-mt200 {
	margin-top: 200px !important;
	margin-top: prem(200) !important;
}

.u-shadow {
	box-shadow: 0 0 13px rgba(255, 0, 0, 0.5);
}

.u-sp {
	display: none;
}

.u-textLeft {
	text-align: Left !important;
}

.u-textCenter {
	text-align: Center !important;
}

.u-textRight {
	text-align: Right !important;
}

.u-textJustify {
	text-align: Justify !important;
}

.u-w300 {
	font-weight: 300;
}

.u-w400 {
	font-weight: 400;
}

.u-w500 {
	font-weight: 500;
}

.u-w600 {
	font-weight: 600;
}

.u-w700 {
	font-weight: 700;
}

.u-w900 {
	font-weight: 900;
}

@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 (any-hover: hover) {

	.c-button01 a:hover::after {
		animation: button-move 0.8s ease-in-out;
	}

	.c-button02__link:hover {
		color: #977550;
		background-color: #fff;
		border-color: #977550;
	}

	.c-button02__link:hover span::before {
		background-color: #977550;
	}

	.c-button03__link:hover {
		color: #fff;
		background-color: #977550;
	}

	.c-button03__link:hover span::before {
		background-color: #fff;
	}

	.c-lang-list__item a:hover {
		color: #2a2d2d;
	}

	.c-line-button a:hover {
		opacity: 0.7;
	}

	.c-sns-list__item a:hover {
		opacity: 0.7;
	}

	.p-affiliated__banner a:hover {
		opacity: 0.7;
	}

	.p-footer__map-link a:hover {
		opacity: 0.7;
	}

	.p-footer__contact-item a:hover::after {
		animation: button-move 0.8s ease-in-out;
	}

	.p-footer__to-top-link:hover::before {
		animation: button-move-vertical 0.8s ease-in-out;
	}

	.p-header__logo a:hover {
		opacity: 0.7;
	}

	.p-header__nav-item a:hover {
		opacity: 0.7;
	}

	.p-header__drawer-item a:hover {
		opacity: 0.7;
	}

	.p-information__card.is-active:hover {
		transform: translateX(0) translateY(-0.3125rem) rotate(0deg);
		box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
	}

	.p-menu__text a:hover {
		text-decoration-color: transparent;
	}

	.p-menu__category-item.is-current a:hover {
		text-decoration-color: transparent;
	}

	.p-top-menu__link:hover img:hover {
		scale: 1.1;
	}

	.p-top-order__link:hover {
		background-color: #fff;
		color: #2a2d2d;
	}

}

@media (min-height: 707px) {

	.p-header {
		justify-content: center;
	}

}

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

	.p-top-commitment__images.c-misaligned-image {
		width: 28.4722222222vw;
	}

}

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

	.l-main {
		margin-left: 0;
	}

	.p-background__img {
		width: 100%;
	}

	.p-header {
		background-color: transparent;
		width: 100%;
		height: 4.0625rem;
		transition: background-color 0.5s;
		display: block;
		overflow-y: visible;
	}

	.p-header__inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		max-width: 100%;
		padding-block: 0rem;
		padding-inline: 1rem;
		height: inherit;
		min-height: auto;
	}

	.p-header__logo {
		position: relative;
		z-index: 999;
		max-width: 6.25rem;
		margin-inline: initial;
		-webkit-mask-image: url(../images/logo-sp-white.png);
		mask-image: url(../images/logo-sp-white.png);
		-webkit-mask-size: cover;
		mask-size: cover;
		-webkit-mask-position: center;
		mask-position: center;
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
		background-color: #fff;
		transition: background-color 0.5s;
	}

	.p-header__logo img {
		aspect-ratio: 100/33;
		opacity: 0;
	}

	.p-header__nav {
		display: none;
	}

	.p-header__lang-list {
		display: none;
	}

	.p-header__sns-list {
		display: none;
	}

	.p-header__hamburger {
		margin: 0;
		padding: 0;
		outline: none;
		border: none;
		position: relative;
		z-index: 999;
		width: 2.5rem;
		height: 1rem;
		background-color: transparent;
		cursor: pointer;
		transition: 0.3s;
	}

	.p-information__card {
		width: 20.5rem;
	}

	.p-top-commitment__images.c-misaligned-image {
		width: 45.3567937439vw;
	}

}

@media (max-width: 880px) {

	html {
		font-size: 1.8181818182vw;
	}

}

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

	html {
		font-size: 16px;
	}

	.l-header {
		right: 0;
	}

	.l-information {
		margin-top: 15rem;
	}

	.l-inner {
		padding-inline: 16px;
	}

	.c-button01 a {
		font-size: 0.9375rem;
	}

	.c-button02 {
		width: 100%;
	}

	.c-button02__link {
		width: 100%;
		min-width: initial;
	}

	.c-line-button__text {
		font-size: 0.875rem;
	}

	.c-misaligned-image {
		width: 100%;
		gap: 0.5625rem;
	}

	.c-misaligned-image__item:first-child {
		padding-top: 6.875rem;
	}

	.c-misaligned-image.c-misaligned-image--commitment .c-misaligned-image__item:first-child {
		padding-top: 7.3125rem;
	}

	.c-misaligned-image__item:last-child {
		max-width: initial;
	}

	.c-person {
		max-width: 15.6875rem;
		margin-left: auto;
	}

	.c-person.c-person--reverse {
		flex-direction: row;
	}

	.c-section-title {
		gap: 0.375rem;
	}

	.c-section-title.c-section-title--vertical {
		gap: 0.75rem;
	}

	.c-section-title__ja {
		font-size: 2.5rem;
	}

	.c-section-title.c-section-title--vertical .c-section-title__ja {
		font-size: 2.125rem;
		line-height: 1.09;
		letter-spacing: 0.1em;
		writing-mode: vertical-lr;
	}

	.c-section-title__en {
		font-size: 0.9375rem;
	}

	.p-404 {
		padding-block: 5rem;
	}

	.p-404__title {
		font-size: 1.75rem;
	}

	.p-access {
		padding-block: 3rem 5rem;
	}

	.p-access__inner.l-inner {
		max-width: 31.25rem;
	}

	.p-access__item {
		flex-direction: column;
		padding-block: 1rem;
	}

	.p-access__item-head {
		flex: initial;
	}

	.p-access__item-title {
		font-size: 0.9375rem;
		line-height: normal;
	}

	.p-access__item-body {
		flex: initial;
	}

	.p-access__item-text {
		font-size: 0.9375rem;
		line-height: normal;
	}

	.p-access__item-text+.p-access__item-text {
		margin-top: 0.5rem;
	}

	.p-access__map {
		margin-top: 1.5rem;
	}

	.p-access__map iframe {
		aspect-ratio: 343/170;
	}

	.p-affiliated {
		padding-block: 5rem;
	}

	.p-affiliated__inner.l-inner {
		max-width: 31.25rem;
	}

	.p-affiliated__title {
		font-size: 1.5rem;
	}

	.p-affiliated__text {
		margin-top: 1.5rem;
	}

	.p-affiliated__banner {
		margin-top: 1.5rem;
	}

	.p-commitment__inner.l-inner {
		flex-direction: column;
		gap: 2rem;
		max-width: 31.25rem;
	}

	.p-commitment.p-commitment--reverse .p-commitment__inner.l-inner {
		flex-direction: column;
	}

	.p-commitment__content {
		flex: initial;
		width: 100%;
	}

	.p-commitment__title {
		font-size: 1.5rem;
	}

	.p-commitment__text {
		margin-top: 1.5rem;
	}

	.p-commitment__images {
		width: 100%;
	}

	.p-footer {
		padding-bottom: 0.25rem;
	}

	.p-footer__inner.l-inner {
		padding-block: 1.875rem;
	}

	.p-footer__logo {
		max-width: 11.25rem;
	}

	.p-footer__info {
		gap: 2.5rem;
	}

	.p-footer__contact-list {
		gap: 0 1rem;
		margin-top: 0;
	}

	.p-footer__to-top {
		top: 8rem;
		right: 1rem;
	}

	.iPhone .p-footer__to-top,
	.safari .p-footer__to-top {
		right: 2rem;
	}

	.p-founder__inner.l-inner {
		max-width: 31.25rem;
	}

	.p-founder__title {
		font-size: 1.5rem;
	}

	.p-founder__content {
		flex-direction: column-reverse;
		gap: 2rem;
		margin-top: 1.5rem;
	}

	.p-founder__text.u-font-base02 {
		width: 100%;
		padding-top: 0;
	}

	.p-founder__image-area {
		width: 100%;
	}

	.p-information {
		padding-block: 5rem;
	}

	.p-information__inner.l-inner {
		position: relative;
		flex-direction: column;
		gap: 1.875rem;
		max-width: 31.25rem;
	}

	.p-information__slider {
		flex: 0 0 auto;
		padding-top: 3.4375rem;
		width: 76.9679300292%;
		margin-left: auto;
	}

	.p-information__title {
		position: absolute;
		top: 0;
		left: 16px;
	}

	.p-information__list {
		margin-top: 0;
	}

	.p-information__item {
		gap: 1.5rem;
	}

	.p-information__info-title,
	.p-information__info-text {
		font-size: 0.9375rem;
	}

	.p-information__item-content {
		flex: 1 0 auto;
	}

	.p-information__info-text span {
		font-size: 0.6875rem;
	}

	.p-information__button.c-button01 {
		text-align: center;
	}

	.p-information__slider-container {
		padding-left: 1.6875rem;
	}

	.p-information__card-stack {
		justify-content: flex-start;
	}

	.p-information__card {
		width: 51.7333333333vw;
		max-width: 13.75rem;
	}

	.p-menu {
		padding-block: 2.5rem 5rem;
	}

	.p-menu__text.u-font-base {
		font-size: 0.875rem;
	}

	.p-menu__tab-list {
		gap: 0.1875rem;
	}

	.p-menu__tab-button a {
		font-size: 0.875rem;
		padding-block: 0.5rem;
	}

	.p-menu__content {
		padding-top: 1rem;
	}

	.p-menu__category-list {
		-moz-column-gap: 2rem;
		column-gap: 2rem;
		row-gap: 1rem;
	}

	.p-menu__category-item a {
		font-size: 0.9375rem;
	}

	.p-menu__container {
		margin-top: 1.5rem;
	}

	.p-menu__category-content+.p-menu__category-content {
		margin-top: 2.5rem;
	}

	.p-menu__set-info {
		font-size: 0.875rem;
	}

	.p-menu__items {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.5rem;
	}

	.p-menu__item {
		padding: 0.5rem;
	}

	.p-menu__item-img {
		order: 1;
	}

	.p-menu__item-info {
		display: contents;
	}

	.p-menu__item-title-wrap {
		order: 2;
		gap: 0.1875rem;
		margin-bottom: 0.25rem;
	}

	.p-menu__item-title {
		font-size: 0.9375rem;
	}

	.p-menu__select {
		gap: 0.625rem;
	}

	.p-menu__select-item::before {
		width: 1.0625rem;
	}

	.p-menu__item-price {
		order: 4;
		width: -moz-fit-content;
		width: fit-content;
		margin-left: auto;
	}

	.p-menu__item-note {
		order: 3;
		font-size: 0.75rem;
		padding-inline: 0;
	}

	.p-menu__list {
		grid-template-columns: inherit;
		gap: 1.5rem;
		padding-inline: 1rem;
	}

	.p-menu__list.p-menu__list--2columns {
		grid-template-columns: inherit;
		gap: 1.5rem;
	}


	.p-menu__list-item-heading {
		font-size: 0.875rem;
		line-height: initial;
	}

	.p-menu__list-item-price {
		line-height: initial;
	}

	.p-mv {
		min-height: initial;
		z-index: 2;
	}

	.p-mv__text {
		top: 50%;
		left: 50%;
		font-size: 2rem;
		line-height: 1.8;
	}

	.p-news {
		padding-block: 5rem;
	}

	.p-news__inner.l-inner {
		flex-direction: column;
		gap: 2rem;
		max-width: 31.25rem;
	}

	.p-news-title {
		order: 1;
	}

	.p-news__content {
		display: contents;
	}

	.p-news__text {
		order: 2;
		margin-top: 0.5rem;
	}

	.p-news__images {
		width: 100%;
		order: 3;
		flex: 1 0 auto;
		gap: 0.5rem;
		padding-top: 0;
		margin-inline: auto;
	}

	.p-news__img:nth-child(2) {
		padding-top: 0.625rem;
	}

	.p-news__button.c-button01 {
		order: 4;
		text-align: center;
		margin-top: 0;
	}

	.p-order__inner.l-inner {
		max-width: 31.25rem;
	}

	.p-order__top {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.5rem;
	}

	.p-order__content {
		margin-top: 1.5rem;
	}

	.p-order__images {
		grid-template-columns: 1fr;
		margin-top: 1.5rem;
	}

	.p-recruit {
		padding-block: 5rem;
	}

	.p-recruit__text.u-font-base {
		font-size: 0.9375rem;
	}

	.p-recruit__button.c-button01 {
		margin-top: 1rem;
	}

	.p-sub-mv {
		padding-top: 6.0625rem;
		padding-left: 1rem;
		min-height: 24rem;
	}

	.p-sub-mv.p-sub-mv--commitment {
		background: url(../images/sub-mv-commitment-sp.jpg) no-repeat center center/cover;
	}

	.p-sub-mv.p-sub-mv--recruit {
		background: url(../images/sub-mv-recruit-sp.jpg) no-repeat center center/cover;
	}

	.p-sub-mv.p-sub-mv--access {
		background: url(../images/sub-mv-access-sp.jpg) no-repeat center center/cover;
	}

	.p-sub-mv.p-sub-mv--delivery {
		background: url(../images/sub-mv-delivery-sp.jpg) no-repeat center center/cover;
	}

	.p-sub-mv.p-sub-mv--menu {
		background: url(../images/sub-mv-menu-sp.jpg) no-repeat center center/cover;
	}

	.p-sub-mv__title__ja {
		font-size: 1.75rem;
	}

	.p-sub-mv__title__en {
		font-size: 1.125rem;
	}

	.p-sub-mv__text.u-font-base02 {
		font-size: 0.875rem;
		margin-top: 1rem;
	}

	.p-third {
		padding-block: 5rem;
	}

	.p-third___inner.l-inner {
		max-width: 31.25rem;
	}

	.p-third__container {
		flex-direction: column;
		gap: 1.5rem;
	}

	.p-third__person {
		order: 2;
	}

	.p-third__content {
		display: contents;
		flex: initial;
	}

	.p-third__heading {
		order: 1;
		font-size: 1.3rem;
	}

	.p-third__text {
		order: 3;
		margin-top: 0;
	}

	.p-third__name {
		order: 4;
		margin-top: 0;
	}

	.p-top-commitment {
		padding-block: 5rem;
	}

	.p-top-commitment__inner {
		position: relative;
		flex-direction: column-reverse;
		gap: 2.5rem;
		max-width: 31.25rem;
	}

	.p-top-commitment__title {
		position: absolute;
		top: 0;
		left: 16px;
	}

	.p-top-commitment__images {
		position: static;
		top: initial;
		right: initial;
		padding-top: 1.875rem;
	}

	.p-top-commitment__images.c-misaligned-image {
		width: initial;
	}

	.p-top-commitment__images .c-misaligned-image__item:first-child {
		width: 33.2361516035%;
	}

	.p-top-commitment__images .c-misaligned-image__item:last-child {
		width: 44.3148688047%;
	}

	.p-top-commitment__content {
		width: 80.7580174927%;
		margin-left: auto;
	}

	.p-top-commitment__text.u-font-base {
		font-size: 0.9375rem;
		max-width: initial;
		margin-top: 0;
	}

	.p-commitment__button.c-button01 {
		margin-top: 1.5rem;
	}

	.p-top-menu {
		padding-block: 5rem;
	}

	.p-top-menu__text {
		margin-top: 2rem;
	}

	.p-top-menu__list {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		max-width: 31.25rem;
		margin-inline: auto;
	}

	.p-top-menu__item {
		min-height: 14.3125rem;
	}

	.p-top-menu__item:nth-child(1) {
		grid-column: 1;
		grid-row: auto;
	}

	.p-top-menu__item:nth-child(2) {
		grid-column: 1;
		grid-row: auto;
	}

	.p-top-menu__item:nth-child(3) {
		grid-column: 1;
		grid-row: auto;
	}

	.p-top-menu__item:nth-child(4) {
		grid-column: 1;
		grid-row: auto;
	}

	.p-top-menu__item:nth-child(5) {
		grid-column: 1;
		grid-row: auto;
	}

	.p-top-menu__button.c-button01 {
		margin-top: 1.5rem;
	}

	.p-top-order {
		padding-block: 3rem;
	}

	.p-top-order__container {
		background: url(../images/order-sp.jpg) no-repeat center center/cover;
		padding: 1rem;
		max-width: 31.25rem;
		margin-inline: auto;
	}

	.p-top-order__buttons {
		margin-top: 6.875rem;
	}

	.p-top-order__link {
		font-size: 0.9375rem;
		min-width: 19.375rem;
	}

	.u-mtSp10 {
		margin-top: 10px !important;
		margin-top: prem(10) !important;
	}

	.u-mtSp20 {
		margin-top: 20px !important;
		margin-top: prem(20) !important;
	}

	.u-mtSp30 {
		margin-top: 30px !important;
		margin-top: prem(30) !important;
	}

	.u-mtSp40 {
		margin-top: 40px !important;
		margin-top: prem(40) !important;
	}

	.u-mtSp50 {
		margin-top: 50px !important;
		margin-top: prem(50) !important;
	}

	.u-mtSp60 {
		margin-top: 60px !important;
		margin-top: prem(60) !important;
	}

	.u-mtSp70 {
		margin-top: 70px !important;
		margin-top: prem(70) !important;
	}

	.u-mtSp80 {
		margin-top: 80px !important;
		margin-top: prem(80) !important;
	}

	.u-mtSp90 {
		margin-top: 90px !important;
		margin-top: prem(90) !important;
	}

	.u-mtSp100 {
		margin-top: 100px !important;
		margin-top: prem(100) !important;
	}

	.u-mtSp110 {
		margin-top: 110px !important;
		margin-top: prem(110) !important;
	}

	.u-mtSp120 {
		margin-top: 120px !important;
		margin-top: prem(120) !important;
	}

	.u-mtSp130 {
		margin-top: 130px !important;
		margin-top: prem(130) !important;
	}

	.u-mtSp140 {
		margin-top: 140px !important;
		margin-top: prem(140) !important;
	}

	.u-mtSp150 {
		margin-top: 150px !important;
		margin-top: prem(150) !important;
	}

	.u-mtSp160 {
		margin-top: 160px !important;
		margin-top: prem(160) !important;
	}

	.u-mtSp170 {
		margin-top: 170px !important;
		margin-top: prem(170) !important;
	}

	.u-mtSp180 {
		margin-top: 180px !important;
		margin-top: prem(180) !important;
	}

	.u-mtSp190 {
		margin-top: 190px !important;
		margin-top: prem(190) !important;
	}

	.u-mtSp200 {
		margin-top: 200px !important;
		margin-top: prem(200) !important;
	}

	.u-pc {
		display: none;
	}

	.u-sp {
		display: block;
	}

	.u-textMdLeft {
		text-align: Left !important;
	}

	.u-textMdCenter {
		text-align: Center !important;
	}

	.u-textMdRight {
		text-align: Right !important;
	}

	.u-textMdJustify {
		text-align: Justify !important;
	}

}

@media (max-width: 375px) {

	html {
		font-size: 4.2666666667vw;
	}

}

@media (max-height: 706px) {

	.p-header {
		align-items: flex-start;
		justify-content: flex-start;
	}

}

@keyframes button-move {

	0% {
		clip-path: inset(0 0 0 0);
	}

	50% {
		clip-path: inset(0 0 0 100%);
	}

	51% {
		clip-path: inset(0 100% 0 0);
	}

	100% {
		clip-path: inset(0 0 0 0);
	}

}

@keyframes button-move-vertical {

	0% {
		clip-path: inset(0 0 0 0);
	}

	50% {
		clip-path: inset(0 0 100% 0);
	}

	51% {
		clip-path: inset(100% 0 0 0);
	}

	100% {
		clip-path: inset(0 0 0 0);
	}

}