body {
	font-family: "Yu Mincho", "YuMincho", serif;
}

body {
	font-weight: 400;
}

body {
	color: #333;
}

.u-desktop {
	display: none;
}

.store__inner {
	padding: 0 1.25rem;
	max-width: 800px;
	margin: 0 auto;
}

.store__title {
	position: relative;
	text-align: center;
}

.store__eng-title {
	position: absolute;
	top: -30%;
	left: 50%;
	transform: translateX(-50%);
	font-family: "Times New Roman", Times, serif;
	font-size: clamp(40px, 2.5rem, 70px);
	font-weight: 400;
	line-height: 1;
	color: #F0F0F0;
	z-index: -1;
	text-transform: uppercase;
}

.store__nav {
	margin-top: 4.375rem;
}

.store__nav-lists {
	display: flex;
	gap: 1.25rem 2.1875rem;
	flex-wrap: wrap;
}

.store__nav-list {
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1;
	font-size: clamp(14px, 0.875rem, 16px);
	font-weight: 500;
}

.store__nav-lists .page-link-icon {
	margin-left: 0.3125rem;
}

.store__intro {
	margin-top: 5rem;
	position: relative;
	border-radius: 0.5rem;
}

.store__intro-flex {
	display: flex;
	flex-direction: column-reverse;
}

.store__intro-img {
	order: 2;
	margin-top: 1.25rem;
}

.store__intro-img content {
	order: 1;
}

.store__intro-title {
	font-size: clamp(18px, 1.25rem, 26px);
	font-weight: 400;
	line-height: 1.5;
	color: #333;
	text-align: center;
	margin-top: 1rem;
}

.store__intro-text {
	margin-top: 0.5rem;
	font-size: clamp(15px, 0.9375rem, 16px);
	line-height: 1.8;
}

.store__intro-text--sp {
	display: block;
}

.store__intro-text--pc {
	display: none;
}

.store__contents {
	position: relative;
}

.store__first-floor {
	padding-top: clamp(50px, 5rem, 90px);
}

.store__floor-intro {
	display: flex;
	flex-direction: column;
}

.store__floor-title {
	position: relative;
}

.store__floor-title .section-title {
	font-size: clamp(18px, 1.25rem, 26px);
	text-align: center;
}

.store__floor-eng-title {
	position: absolute;
	top: -140%;
	left: 0;
	font-family: "Times New Roman", Times, serif;
	font-size: clamp(62px, 3.875rem, 70px);
	font-weight: 400;
	line-height: 1;
	color: #F0F0F0;
	z-index: -1;
	text-transform: uppercase;
}

.store__floor-text {
	font-size: clamp(15px, 0.9375rem, 16px);
	font-weight: 400;
	margin-top: 1.875rem;
}

.store__floor-button {
	max-width: 15.625rem;
	margin: 1.875rem auto 1.875rem;
}

.store__floor-button .button {
	font-family: "Yu Mincho", "YuMincho", serif;
	font-size: clamp(14px, 0.875rem, 16px);
}

.store__floor-button .button::after,
.store__floor-button .button::before {
	width: 0.3125rem;
	height: 0.3125rem;
}

.store__floor-img {
	display: none;
}

.store__floor-map {
	background-color: #F8F7F3;
	padding: 1.25rem;
	width: 100vw;
	margin-left: calc(50% - 50vw);
}

.store__floor-map img {
	max-width: 800px;
	margin: 0 auto;
}

.store__floor-area {
	margin-top: 1.875rem;
}

.store__floor-area-lists {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.store__floor-area-list {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.store__floor-area-list img {
	transition: opacity 0.3s ease;
}

.store__floor-area-list a:hover img {
	opacity: 0.8;
}

.store__floor-area-list img {
	width: 100%;
	display: block;
	object-fit: cover;
}

.store__floor-area-text {
	display: flex;
	align-items: center;
	margin-top: 0.5rem;
}

.store__floor-area-text span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #333;
	color: #fff;
	font-size: clamp(18px, 1.125rem, 20px);
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 5px 0 5px 0;
	margin-right: 0.5rem;
	font-family: "Times New Roman", Times, serif;
}

.store__floor-area-text p {
	margin: 0;
	font-size: clamp(12px, 0.75rem, 16px);
	font-family: "Noto Sans JP", sans-serif;
}

.store__second-floor {
	padding-top: clamp(20px, 4.375rem, 90px);
}

.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

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

.modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	cursor: pointer;
}

.modal__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	max-width: 90vw;
	max-height: 90vh;
	overflow: hidden;
	box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.3);
	border-radius: 0.5rem;
	position: relative;
	z-index: 1;
	height: 100%;
}

.modal__close {
	position: absolute;
	top: 0.9375rem;
	right: 0.9375rem;
	width: 1.875rem;
	height: 1.875rem;
	cursor: pointer;
	z-index: 10;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
	flex-direction: column;
}

.modal__close span {
	position: absolute;
	width: clamp(15px, 1.25rem, 30px);
	height: clamp(2px, 0.125rem, 4px);
	background-color: #fff;
	transition: background-color 0.3s ease;
}

.modal__close span:first-child {
	transform: rotate(45deg);
}

.modal__close span:last-child {
	transform: rotate(-45deg);
}

.modal__close:hover {
	background-color: rgba(0, 0, 0, 0.9);
}

.modal__close:hover span {
	background-color: #f0f0f0;
}

.modal__image {
	display: flex;
	align-items: center;
	justify-content: center;
}

.modal__image img {
	max-width: 100%;
	max-height: 100%;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.modal__text {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 1.875rem 1.25rem;
	gap: clamp(16px, 1.25rem, 30px);
	flex-direction: column;
	text-align: center;
	background: #fff;
	max-width: 444px;
	margin: 0 auto;
}

.modal__text-number {
	font-size: 1.125rem;
	line-height: 1.2;
	font-weight: 500;
}

.modal__text-number span {
	font-size: 1.4375rem;
	line-height: 1;
	font-family: "Times New Roman", Times, serif;
	margin-left: 0.625rem;
	background-color: #333;
	color: #fff;
	padding: 0.3125rem 0.625rem;
	border-radius: 5px 0 5px 0;
	display: inline-block;
}

.modal__text-title {
	font-size: 1.75rem;
	line-height: 1.4;
	font-weight: 600;
}

body.is-modal-open {
	overflow: hidden;
}

/* スタッフ紹介 */

.store__staff {
	position: relative;
	margin-top: clamp(20px, 3.125rem, 70px);
	padding-top: clamp(20px, 3.125rem, 70px);
	padding-bottom: clamp(20px, 4.375rem, 100px);
}

.store__staff::before {
	background-color: #f8f7f3;
	content: "";
	display: block;
	height: 100%;
	left: calc(50% - 50vw + 20px);
	margin: 0 calc(50% - 50vw);
	position: absolute;
	top: 0;
	width: 100vw;
	z-index: -10;
}

.store__staff-eng-title {
	position: absolute;
	top: 2%;
	left: 0;
	font-family: "Times New Roman", Times, serif;
	font-size: clamp(60px, 3.75rem, 70px);
	font-weight: 400;
	line-height: 1;
	color: #F0F0F0;
	z-index: -1;
	text-transform: uppercase;
}

.store__staff-grid {
	display: grid;
	grid-template-areas: "title" "text" "image" "button";
	gap: 1.875rem;
}

.store__staff-title {
	grid-area: title;
}

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

.store__staff-text {
	grid-area: text;
	font-size: clamp(14px, 0.875rem, 16px);
	line-height: 1.5;
}

.store__staff-img {
	grid-area: image;
	position: relative;
	aspect-ratio: 315/121;
	max-width: 19.6875rem;
}

.store__staff-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 10% 30%;
}

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

.store__staff-button {
	grid-area: button;
	text-align: center;
}

.store__staff-button .button {
	max-width: 15.625rem;
	margin: 0 auto;
}

.store__faq {
	padding-top: clamp(20px, 6.25rem, 120px);
}

.store__faq-title {
	position: relative;
	text-align: center;
}

.store__faq-eng-title {
	position: absolute;
	top: -80%;
	left: 0;
	font-family: "Times New Roman", Times, serif;
	font-size: clamp(62px, 3.875rem, 70px);
	font-weight: 400;
	line-height: 1;
	color: #F0F0F0;
	z-index: -1;
	text-transform: uppercase;
}

.store__faq-contents {
	margin-top: 1.875rem;
}

/* 店舗アクセス */

.store__access {
	position: relative;
	margin-top: clamp(20px, 6.25rem, 120px);
	padding-top: clamp(20px, 1.875rem, 50px);
	padding-bottom: clamp(20px, 3.75rem, 100px);
}

.store__access::before {
	background-color: #f8f7f3;
	content: "";
	display: block;
	height: 100%;
	left: calc(50% - 50vw + 20px);
	margin: 0 calc(50% - 50vw);
	position: absolute;
	top: 0;
	width: 100vw;
	z-index: -10;
}

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

.store__access-eng-title {
	position: absolute;
	top: 0;
	left: 0;
	font-family: "Times New Roman", Times, serif;
	font-size: clamp(62px, 3.875rem, 70px);
	font-weight: 400;
	line-height: 1;
	color: #fff;
	z-index: -1;
	text-transform: uppercase;
}

.store__access-contents {
	margin-top: 1.875rem;
	position: relative;
}

.store__access-flex {
	display: flex;
	flex-direction: column;
}

.store__access-text-area {
	margin-top: 0.625rem;
	order: 2;
}

.store__access-info-list {
	display: flex;
	font-family: "Noto Sans JP", sans-serif;
	font-size: clamp(14px, 0.875rem, 16px);
	align-items: center;
}

.store__access-info-list + .store__access-info-list {
	margin-top: 0.625rem;
}

.store__access-info-list dt {
	border-right: 2px solid #b0afad;
	font-weight: 700;
	width: clamp(75px, 4.6875rem, 95px);
	padding: 0.25rem 0;
}

.store__access-info-list dt span {
	width: 4em;
	display: inline-block;
	text-align-last: justify;
}

.store__access-info-list dd {
	width: calc(100% - 5rem);
	padding: 0.25rem 0.9375rem;
}

.store__access-train {
	position: relative;
	border: 1px solid #b0afad;
	border-radius: 0.5rem;
	margin-top: clamp(20px, 3.3125rem, 53px);
	padding: 1.6875rem 1.5625rem 1.5625rem;
}

.store__access-train-title {
	position: absolute;
	z-index: 5;
	top: -17px;
	left: 13px;
	width: fit-content;
	padding-left: 0.625rem;
	padding-right: 1.25rem;
	background-color: #f8f7f3;
	font-family: "Yu Mincho", "YuMincho", serif;
	font-size: clamp(20px, 1.25rem, 20px);
	font-weight: 600;
	letter-spacing: 0.1em;
	white-space: nowrap;
}

.store__access-train-list {
	font-family: "Noto Sans JP", sans-serif;
	font-size: clamp(14px, 0.875rem, 16px);
}

.store__access-train-list + .store__access-train-list {
	margin-top: 1rem;
}

.store__access-train-list dt {
	width: 10.25rem;
	padding-left: 1.25rem;
	position: relative;
	font-weight: 700;
}

.store__access-train-list dt::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 8px;
	height: 2px;
	background-color: #b0afad;
}

.store__access-train-list dd {
	margin-left: 1.875rem;
}

.store__access-button {
	margin: 1.875rem auto 0;
	max-width: 15.625rem;
}

.store__access-map {
	order: 1;
}

.store__access-map iframe {
	aspect-ratio: 662/662;
	width: 100%;
	object-fit: cover;
}

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

.u-desktop {
	display: block;
}

.u-mobile {
	display: none;
}

.store__inner {
	max-width: 100%;
	margin: 0;
	padding: 0;
}

.store__title {
	position: relative;
	padding-top: 3rem;
	padding-left: 6.25rem;
	text-align: left;
}

.store__eng-title {
	left: 0;
	transform: unset;
	font-size: 8.3125rem;
}

.store__nav {
	margin-top: 5rem;
}

.store__nav-lists {
	display: flex;
	gap: 7rem;
	justify-content: flex-start;
	flex-wrap: nowrap;
}

.store__nav-list {
	font-size: 1rem;
}

.store__nav-lists .page-link-icon {
	margin-left: 1.5625rem;
}

.store__intro {
	margin-top: 5.625rem;
	border-radius: 0;
	background-color: #F8F7F3;
}

.store__intro-flex {
	flex-direction: row-reverse;
}

.store__intro-img {
	aspect-ratio: 372/425;
	overflow: hidden;
	width: 26%;
	order: 1;
	margin-top: 0;
}

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

.store__intro-img content {
	order: 2;
}

.store__intro-title {
	font-size: 1.875rem;
	font-weight: 400;
	line-height: 1.5;
	color: #333;
	text-align-last: left;
	margin-top: 0;
}

.store__intro-text {
	margin-top: 2.1875rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #333;
}

.store__intro-text--sp {
	display: none;
}

.store__intro-text--pc {
	display: block;
}

.store__intro-contents {
	width: 74%;
	padding-left: 3rem;
	padding-right: 4.375rem;
	padding-top: 3.125rem;
	padding-bottom: 3.125rem;
	margin-top: 0.625rem;
}

.store__contents {
	margin-top: 10.625rem;
}

.store__first-floor {
	padding-left: 8.4375rem;
}

.store__floor-intro {
	flex-direction: row;
	align-items: stretch;
	justify-content: space-between;
	gap: 9.375rem;
}

.store__floor-intro-text-area {
	width: 47%;
}

.store__floor-title .section-title {
	font-size: 2.5rem;
	text-align: left;
}

.store__floor-eng-title {
	font-size: 3.125rem;
	top: -30%;
	display: block;
}

.store__floor-title .section-title {
	font-size: 2.5rem;
}

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

.store__floor-button {
	max-width: 13.75rem;
	margin: 4.75rem 0 0 auto;
}

.store__floor-button .button {
	font-size: 0.875rem;
	padding: 1.5rem 1.75rem;
	max-width: 13.75rem;
	padding: 0.75rem 0.9375rem;
}

.store__floor-img {
	width: calc(50% - 9.375rem);
	display: block;
	aspect-ratio: 531/240;
	overflow: hidden;
}

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

.store__floor-contents {
	padding: 0 12.5rem 0 8.4375rem;
}

.store__floor-map {
	background-color: transparent;
	margin-top: 3.875rem;
	padding: 0;
	width: 100%;
	margin-left: 0;
}

.store__floor-map img {
	max-width: unset;
	margin: unset;
}

.store__floor-area {
	margin-top: 2.5rem;
}

.store__floor-area-lists {
	grid-template-columns: repeat(4, 1fr);
	gap: 3.125rem 1.6875rem;
}

.store__floor-area-text {
	margin-top: 0.75rem;
}

.store__floor-area-text span {
	font-size: 1.4375rem;
	width: 2.5rem;
	height: 2.5rem;
	margin-right: 0.3125rem;
}

.store__floor-area-text p {
	font-size: 1rem;
}

.store__second-floor {
	margin-top: 16.5625rem;
	padding-left: 8.4375rem;
}

.store__second-floor .store__floor-intro {
	gap: 3.75rem;
}

.store__second-floor .store__floor-intro-text-area {
	width: 60%;
}

.store__second-floor .store__floor-button {
	margin-top: 2.9375rem;
	margin-right: 1.875rem;
}

.modal__content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	height: auto;
}

.modal__text {
	height: 100%;
	background: none;
	gap: 1.875rem;
}

.store__staff {
	margin-top: 6.5625rem;
}

.store__staff::before {
	left: calc(50% - 50vw);
}

.store__staff-eng-title {
	font-size: 14.6875rem;
	color: #fff;
	font-weight: 400;
	left: calc(50% - 63vw);
	text-transform: uppercase;
	top: -2.375rem;
	display: block;
}

.store__staff-grid {
	grid-template-areas: "title image" "text image" "button image";
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 3.125rem 4.5rem auto;
	gap: 3.75rem 5rem;
	align-items: start;
	padding: 6.5625rem 0 7.5rem;
	max-width: 76.25rem;
}

.store__staff-title {
	font-size: 2.875rem;
}

.store__staff-title .section-title {
	font-size: 2.5rem;
	text-align: left;
}

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

.store__staff-img {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	max-width: 34.6875rem;
	aspect-ratio: 555/370;
}

.store__staff-img::before {
	content: "";
	position: absolute;
	bottom: -1.25rem;
	left: 1.25rem;
	display: block;
	width: 100%;
	height: 100%;
	background: repeating-linear-gradient(-45deg, #F0F0F0 0, #F0F0F0 0.0625rem, transparent 0.125rem, transparent 0.625rem);
	transform-origin: left top;
	z-index: -1;
}

.store__staff-button {
	margin: 0;
	text-align: left;
}

.store__staff-button .button {
	max-width: 30rem;
	margin: 0;
}

.store__faq {
	margin-top: 9.6875rem;
	padding: 0 4.375rem 0 6.25rem;
}

.store__faq-title {
	text-align: left;
}

.store__faq-title .section-title {
	font-size: 1.875rem;
}

.store__faq-eng-title {
	top: -4.375rem;
	left: 0;
	font-size: 6.25rem;
	display: block;
}

.store__faq-contents {
	margin-top: 1.25rem;
}

.store__faq-contents .accordion__title {
	font-size: 1.0625rem;
	padding: 1.5625rem 0 1.5625rem 6.25rem;
	border-radius: 0.5rem;
}

.store__faq-contents .accordion__title span {
	font-size: 2.125rem;
}

.store__access {
	margin-top: 7.5rem;
	margin-bottom: 0;
	padding: 5.3125rem 4.375rem 5rem 0;
}

.store__access::before {
	left: calc(50% - 50vw);
}

.store__access .section-title {
	text-align: left;
}

.store__access-eng-title {
	font-size: 14.6875rem;
	color: #fff;
	font-weight: 400;
	left: calc(50% - 63vw);
	text-transform: uppercase;
	top: -2.375rem;
	display: block;
}

.store__access-contents {
	margin-top: 2.5rem;
}

.store__access-flex {
	flex-direction: row;
	column-gap: 2.5rem;
}

.store__access-text-area {
	margin-top: 0;
	width: 50%;
	order: 1;
}

.store__access-info-list {
	font-size: 1rem;
}

.store__access-info-list + .store__access-info-list {
	margin-top: 1.375rem;
}

.store__access-info-list dt {
	width: 5.9375rem;
	padding: 0;
}

.store__access-info-list dd {
	width: 32.25rem;
	padding: 0 0 0 1.25rem;
}

.store__access-train-list {
	display: flex;
	font-size: 1rem;
}

.store__access-button {
	margin: 2.6875rem 0 0 0;
	max-width: 30rem;
}

.store__access-map {
	margin-top: 0;
	width: 50%;
	padding-top: 1.4375rem;
	order: 2;
}

}

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

.modal__content {
	max-width: 95vw;
	max-height: 95vh;
	margin: 0.3125rem auto;
	border-radius: 0.375rem;
}

.modal__close {
	top: clamp(10px, 1.25rem, 30px);
	right: 0.625rem;
	width: 1.5625rem;
	height: 1.5625rem;
}

.modal__close span {
	width: 0.9375rem;
	height: 0.125rem;
}

.modal__text {
	padding: clamp(16px, 1.25rem, 30px) clamp(16px, 0.9375rem, 20px);
	gap: clamp(16px, 1.25rem, 30px);
}

.modal__text-number {
	font-size: clamp(14px, 0.875rem, 16px);
}

.modal__text-number span {
	font-size: clamp(18px, 1.125rem, 20px);
	margin-left: 0.5rem;
	padding: 0.25rem 0.5rem;
}

.modal__text-title {
	font-size: clamp(18px, 1.125rem, 22px);
	line-height: 1.3;
}

}


/*# sourceMappingURL=store.css.map */
