@charset "UTF-8";

/* ----------------------------------------------------
	header
---------------------------------------------------- */
.header {
	position: relative;
}

.header__title {
	width: 34.008vw;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
	.header__title {
		width: 68.154vw;
	}
}

/* ----------------------------------------------------
	about
---------------------------------------------------- */
.about {
	background: url(../img/about-bg.webp) center top no-repeat;
	background-size: cover;
	padding: 13.438vw 0;
}

.about__title {
	margin: 0 auto min(6rem, 4.688vw);
	width: min(51.5rem, 40.234vw);
}

.about__lead {
	background: url(../img/about-obj.svg) center bottom min(9rem, 7.031vw) no-repeat;
	background-size: min(15rem, 11.719vw) auto;
	padding-bottom: min(26rem, 20.313vw);
	line-height: 2.6;
	font-family: var(--mincho);
	font-size: min(2rem, 1.563vw);
	font-weight: 600;
	text-align: center;
}

.page-nav__title {
	margin-bottom: min(2.4rem, 1.875vw);
	font-family: var(--mincho);
	font-size: min(2.4rem, 1.875vw);
	font-weight: 500;
	text-align: center;
}

.page-nav__list {
	margin: 0 auto;
	width: min(94rem, 73.438vw);
	display: flex;
	justify-content: space-between;
}

.page-nav__list--item {
	width: min(18.2rem, 14.219vw);
}

.page-nav__list--item a {
	background: rgb(var(--brn));
	padding: min(1rem, 0.781vw);
	color: rgb(var(--wht));
	text-align: center;
	text-decoration: none;
	border-radius: min(0.6rem, 0.469vw);
	display: block;
}

.page-nav__list--image figcaption {
	margin-top: min(1rem, 0.781vw);
	padding-bottom: 1em;
	line-height: 1.5;
	font-family: var(--mincho);
	font-size: min(1.6rem, 1.25vw);
	font-weight: 500;
	letter-spacing: -0.005em;
	position: relative;
}

.page-nav__list--image figcaption::before {
	background: rgb(var(--wht));
	width: min(1.6rem, 1.25vw);
	height: min(0.8rem, 0.625vw);
	clip-path: polygon(100% 0, 0 0, 50% 100%);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	content: "";
}

.page-nav__list--image figcaption small {
	font-size: min(1.3rem, 1.016vw);
	display: block;
}

@media screen and (max-width: 768px) {
	.about {
		background-image: url(../img/about-bg_sp.webp);
		padding: 32vw 0;
	}

	.about__title {
		margin-bottom: 17.6vw;
		width: 53.333vw;
	}

	.about__lead {
		background: url(../img/about-obj.svg) center bottom 21.867vw no-repeat;
		background-size: 32vw auto;
		padding-bottom: 62.667vw;
		font-size: 4.533vw;
	}

	.page-nav__title {
		margin-bottom: 5.333vw;
		font-size: 6.4vw;
	}

	.page-nav__list {
		width: 91.467vw;
		display: block;
	}

	.page-nav__list--item {
		width: 100%;
	}

	.page-nav__list--item:not(:last-of-type) {
		margin-bottom: 2.667vw;
	}

	.page-nav__list--item a {
		padding: 2.667vw;
		text-align: center;
		border-radius: 1.6vw;
	}

	.page-nav__list--image {
		display: flex;
	}

	.page-nav__list--image img {
		width: 48vw;
	}

	.page-nav__list--image figcaption {
		margin: 0 0 0 2.667vw;
		padding-bottom: 0;
		width: 100%;
		font-size: 4.8vw;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.page-nav__list--image figcaption::before {
		width: 4.267vw;
		height: 2.133vw;
	}

	.page-nav__list--image figcaption small {
		font-size: 3.733vw;
	}
}

/* ----------------------------------------------------
	article
---------------------------------------------------- */
.article {
	padding: min(18rem, 14.063vw) 0;
	width: 100%;
	overflow-x: hidden;
}

.article__title {
	margin: 0 auto min(16rem, 12.5vw);
}

@media screen and (max-width: 768px) {
	.article {
		padding: 21.333vw 0;
	}

	.article__title {
		margin-bottom: 21.333vw;
	}
}

/*
	shop
------------------------------ */
.shop-section,
.japanese .shop-twoColumn {
	margin: 0 auto;
	width: min(97rem, 75.781vw);
	position: relative;
}

.shop-section .obj {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	z-index: 1;
}

.shop__name,
.shop__image,
.shop__image-sub,
.shop__content {
	position: relative;
	z-index: 2;
}

.shop__name {
	margin-bottom: min(4rem, 3.125vw);
	line-height: 1.5;
	font-family: var(--mincho);
	font-size: min(3.2rem, 2.5vw);
	font-weight: 500;
	text-align: center;
}

.shop__name .eng {
	font-size: min(1.8rem, 1.406vw);
	display: block;
}

.shop__content--menu {
	line-height: 1.5;
	font-family: var(--mincho);
	font-size: min(2.6rem, 2.031vw);
	font-weight: 600;
}

.shop__content--menu .eng {
	color: rgb(var(--kha));
	font-size: min(1.5rem, 1.172vw);
	display: block;
}

.shop__content .link-button {
	margin-top: min(1.5rem, 1.172vw);
}

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

	.shop-section,
	.shop-twoColumn {
		padding: 0 4.267vw;
		width: 100%;
	}

	.shop__name {
		margin-bottom: 4.267vw;
		font-size: 6.4vw;
	}

	.shop__name .eng {
		font-size: 4vw;
	}

	.shop__content--menu {
		font-size: 4.8vw;
	}

	.shop__content--menu .eng {
		font-size: 3.733vw;
	}

	.shop__content .link-button {
		margin-top: 3.2vw;
	}
}

/*
	menu-list
------------------------------ */
.menu-list,
.menu-list__item {
	position: relative;
}

.menu-list__item:not(:last-of-type) {
	margin-bottom: min(10rem, 7.813vw);
}

.menu-list__item .shop__image {
	width: min(73rem, 57.031vw);
}

.menu-list__item .shop__content {
	background: rgb(var(--wht));
	padding: min(2rem, 1.563vw) min(3rem, 2.344vw);
	min-width: min(33rem, 25.781vw);
	color: rgb(var(--blk));
	border-radius: min(1rem, 0.781vw);
	position: absolute;
}

.menu-list__item .shop__content--menu .eng {
	color: rgb(var(--lav));
}

@media screen and (max-width: 768px) {
	.menu-list__item {
		margin-bottom: 29.333vw;
	}

	.menu-list__item:not(:last-of-type) {
		margin-bottom: 29.333vw;
	}

	.menu-list__item .shop__image {
		width: 100%;
	}

	.menu-list__item:nth-child(even) .shop__image {
		margin-left: 0;
	}

	.menu-list__item .shop__content {
		padding: 4.8vw;
		width: 80.8vw;
		border-radius: 2.667vw;
	}

	.menu-list__item .shop__content--menu {
		padding: 0;
	}
}

/* ----------------------------------------------------
	japanese
---------------------------------------------------- */
.japanese {
	background: rgb(var(--kha));
	color: rgb(var(--blk));
}

.japanese .article__title {
	width: min(27.1rem, 21.172vw);
}

.japanese .shop-section {
	margin-bottom: min(23rem, 17.969vw);
}

.japanese .shop__name .eng {
	color: rgb(var(--wht));
}

.japanese .shop__image {
	width: min(73rem, 57.031vw);
}

.japanese .shop__content {
	background: rgb(var(--blk));
	padding: min(3rem, 2.344vw);
	min-width: min(31rem, 24.219vw);
	color: rgb(var(--wht));
	border-radius: min(1rem, 0.781vw);
	position: absolute;
	bottom: max(-5.6rem, -4.375vw);
	left: min(1.5rem, 1.172vw);
}

@media screen and (max-width: 768px) {
	.japanese .article__title {
		width: 51.2vw;
	}

	.japanese .shop-section {
		margin-bottom: 21.333vw;
	}

	.japanese .shop__image {
		width: 100%;
	}

	.japanese .shop__content {
		padding: 4.8vw 0 4.8vw 4.8vw;
		min-width: 80.8vw;
		border-radius: 2.667vw;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}

	.japanese .shop__content--menu {
		padding-right: 0;
	}
}

/*
	shop01
------------------------------ */
.japanese .shop01 .shop__name {
	margin-bottom: min(17rem, 13.281vw);
}

.japanese .shop01 .shop__image-sub {
	width: min(42rem, 32.813vw);
	position: absolute;
	top: min(12.3rem, 9.609vw);
	right: max(-3.8rem, -2.969vw);
}

.japanese .shop01 .shop__content {
	right: min(1.5rem, 1.172vw);
	left: auto;
}

.japanese .shop01 .obj {
	background-image: url(../img/japanese-obj01.svg);
	width: min(55rem, 42.969vw);
	height: min(55.2rem, 43.125vw);
	top: max(-1.2rem, -0.938vw);
	right: max(-27.2rem, -21.25vw);
}

@media screen and (max-width: 768px) {
	.japanese .shop01 {
		margin-bottom: 26.667vw;
		height: 137.067vw;
	}

	.japanese .shop01 .shop__name {
		margin-bottom: 5.6vw;
	}

	.japanese .shop01 .shop__image-sub {
		width: 53.333vw;
		top: 69.067vw;
		right: 0;
	}

	.japanese .shop01 .shop__content {
		top: 98.4vw;
		right: auto;
		bottom: auto;
		left: 50%;
	}

	.japanese .shop01 .obj {
		display: none;
	}
}

/*
	shop02
------------------------------ */
.japanese .shop02 .shop__image {
	margin-left: auto;
}

.japanese .shop02 .obj {
	background-image: url(../img/japanese-obj02.svg);
	width: min(35rem, 27.344vw);
	height: min(30.8rem, 24.063vw);
	top: min(1rem, 0.781vw);
	left: max(-11.7rem, -9.141vw);
}

@media screen and (max-width: 768px) {
	.japanese .shop02 {
		height: 128vw;
	}

	.japanese .shop02 .shop__image {
		margin-left: auto;
	}

	.japanese .shop02 .obj {
		background-image: url(../img/japanese-obj01.svg);
		width: 56vw;
		height: 56vw;
		top: -12vw;
		left: 48vw;
	}
}

/*
	shop-twoColumn
------------------------------ */
.japanese .shop-twoColumn {
	display: flex;
	justify-content: space-between;
	position: relative;
}

.japanese .shop-twoColumn .shop-section {
	margin: 0;
	width: min(47rem, 36.719vw);
}

.japanese .shop-twoColumn .shop__name {
	margin-bottom: min(2.4rem, 1.875vw);
	font-size: min(2.7rem, 2.109vw);
}

.japanese .shop-twoColumn .shop__name .eng {
	font-size: min(1.5rem, 1.172vw);
}

.japanese .shop-twoColumn .shop__image {
	margin-bottom: min(2.7rem, 2.109vw);
	width: 100%;
}

.japanese .shop-twoColumn .shop-section .link-button {
	margin: 0 auto;
}

.japanese .shop-twoColumn .obj {
	display: none;
}

@media screen and (max-width: 768px) {
	.japanese .shop-twoColumn {
		width: 100%;
		display: block;
	}

	.japanese .shop-twoColumn .shop-section {
		margin: 0;
		width: 100%;
	}

	.japanese .shop-twoColumn .shop-section:not(:last-of-type) {
		margin-bottom: 16vw
	}

	.japanese .shop-twoColumn .shop__name {
		margin-bottom: 4.267vw;
		font-size: 6.4vw;
	}

	.japanese .shop-twoColumn .shop__name .eng {
		font-size: 4vw;
	}

	.japanese .shop-twoColumn .shop__image {
		margin-bottom: 0;
	}

	.japanese .shop-twoColumn .shop-section .link-button {
		margin: 0 auto;
		position: relative;
		top: -6.667vw;
		z-index: 3;
	}

	.japanese .shop-twoColumn .obj {
		background-image: url(../img/japanese-obj02.svg);
		width: 40vw;
		height: 35.2vw;
		display: block;
		position: absolute;
		top: 96vw;
		left: -14.4vw;
	}
}

/* ----------------------------------------------------
	chinese
---------------------------------------------------- */
.chinese {
	background: rgb(var(--brn));
	color: rgb(var(--wht));
}

.chinese .article__title {
	width: min(25.5rem, 19.922vw);
}

.chinese .shop__name .eng {
	color: rgb(var(--lav));
}

.chinese .link-button {
	margin: min(6rem, 4.688vw) auto 0;
}

@media screen and (max-width: 768px) {
	.chinese .article__title {
		width: 48vw;
	}

	.chinese .link-button {
		margin-top: 13.333vw;
	}
}

/*
	menu01
------------------------------ */
.chinese .menu-list__item.menu01 .shop__content {
	bottom: max(-3.9rem, -3.047vw);
	left: min(1.5rem, 1.172vw);
}

.chinese .menu-list__item.menu01 .shop__image {
	margin-left: auto;
}

.chinese .menu-list__item.menu01 .obj {
	background-image: url(../img/chinese-obj01.webp);
	width: min(45rem, 35.156vw);
	height: min(74.3rem, 58.047vw);
	top: max(-25rem, -19.531vw);
	left: max(-19.5rem, -15.234vw);
}

@media screen and (max-width: 768px) {
	.chinese .menu-list__item.menu01 .shop__content {
		bottom: -16vw;
		left: 50%;
		transform: translateX(-50%);
	}

	.chinese .menu-list__item.menu01 .shop__image {
		margin-left: 0;
	}

	.chinese .menu-list__item.menu01 .obj {
		width: 54.667vw;
		height: 90.4vw;
		top: -45.333vw;
		left: 45.333vw;
	}
}

/*
	menu02
------------------------------ */
.chinese .menu-list__item.menu02 .shop__content {
	top: min(4.5rem, 3.516vw);
	right: min(1.5rem, 1.172vw);
}

.chinese .menu-list__item.menu02 .obj {
	background-image: url(../img/chinese-obj02.webp);
	width: min(26rem, 20.313vw);
	height: min(24.3rem, 18.984vw);
	top: min(19rem, 14.844vw);
	right: max(-11rem, -8.594vw);
}

@media screen and (max-width: 768px) {
	.chinese .menu-list__item.menu02 .shop__content {
		top: auto;
		right: auto;
		bottom: -20.8vw;
		left: 50%;
		transform: translateX(-50%);
	}

	.chinese .menu-list__item.menu02 .obj {
		width: 42.667vw;
		height: 40vw;
		top: auto;
		right: auto;
		bottom: -63.467vw;
		left: -9.6vw;
	}
}

/* ----------------------------------------------------
	western
---------------------------------------------------- */
.western {
	background: rgb(var(--brn));
	padding-top: 0;
	color: rgb(var(--wht));
}

.western .article__title {
	width: min(25.8rem, 20.156vw);
}

.western .menu-list {
	margin-bottom: min(15rem, 11.719vw);
}

.western .menu-list::before {
	background-image: url(../img/western-obj01.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: min(62rem, 48.438vw);
	height: min(78.6rem, 61.406vw);
	position: absolute;
	top: max(-20.3rem, -15.859vw);
	right: max(-27.4rem, -21.406vw);
	z-index: 1;
	content: "";
}

.western .link-button.large {
	margin: min(6rem, 4.688vw) auto 0;
}

@media screen and (max-width: 768px) {
	.western .article__title {
		width: 48vw;
	}

	.western .menu-list::before {
		width: 53.333vw;
		height: 67.467vw;
		top: -34.667vw;
		right: -18.933vw;
	}

	.western .link-button.large {
		margin-top: 13.333vw;
	}
}

/*
	menu01
------------------------------ */
.western .menu-list__item.menu01 .shop__content {
	bottom: max(-1.3rem, -1.016vw);
	right: min(1.5rem, 1.172vw);
}

@media screen and (max-width: 768px) {
	.western .menu-list__item.menu01 .shop__content {
		bottom: -16vw;
		left: 50%;
		transform: translateX(-50%);
	}
}

/*
	menu02
------------------------------ */
.western .menu-list__item.menu02 .shop__content {
	bottom: min(6.5rem, 5.078vw);
	left: min(1.5rem, 1.172vw);
}

.western .menu-list__item.menu02 .shop__image {
	margin-left: auto;
}

@media screen and (max-width: 768px) {
	.western .menu-list__item.menu02 .shop__content {
		top: auto;
		right: auto;
		/* bottom: -20.8vw; */
		bottom: -16vw;
		left: 50%;
		transform: translateX(-50%);
	}

	.western .menu-list__item.menu01 .shop__image {
		margin-left: 0;
	}
}

/*
	shop-section
------------------------------ */
.western .shop-section {
	margin-bottom: min(23rem, 17.969vw);
}

.western .shop__name .eng {
	color: rgb(var(--lav));
}

.western .shop__image {
	width: min(73rem, 57.031vw);
}

.western .shop__content {
	background: rgb(var(--wht));
	padding: min(3rem, 2.344vw);
	min-width: min(31rem, 24.219vw);
	color: rgb(var(--blk));
	border-radius: min(1rem, 0.781vw);
	position: absolute;
}

.western .shop__content--menu .eng {
	color: rgb(var(--lav));
}

@media screen and (max-width: 768px) {
	.western .article__title {
		width: 51.2vw;
	}

	.western .shop-section {
		margin-bottom: 21.333vw;
	}

	.western .shop__image {
		width: 100%;
	}

	.western .shop__content {
		padding: 4.8vw 0 4.8vw 4.8vw;
		min-width: 80.8vw;
		border-radius: 2.667vw;
	}

	.western .shop__content--menu {
		padding: 0;
	}
}

/*
	shop01
------------------------------ */
.western .shop01 .shop__content {
	right: min(1.5rem, 1.172vw);
	bottom: max(-2.9rem, -2.266vw);
}

.western .shop01 .obj {
	background-image: url(../img/western-obj02.webp);
	width: min(34.5rem, 26.953vw);
	height: min(48.1rem, 37.578vw);
	top: max(-17rem, -13.281vw);
	left: max(-18.6rem, -14.531vw);
}

@media screen and (max-width: 768px) {
	.western .shop01 {
		margin-bottom: 53.333vw;
	}

	.western .shop01 .shop__content {
		right: auto;
		bottom: -31.467vw;
		left: 50%;
		transform: translateX(-50%);
	}

	.western .shop01 .obj {
		width: 34.667vw;
		height: 48.267vw;
		top: -37.6vw;
		left: -9.6vw;
	}
}

/*
	shop02
------------------------------ */
.western .shop02 .shop__image {
	margin-left: auto;
}

.western .shop02 .shop__content {
	bottom: max(-12.6rem, -9.844vw);
	left: min(1.5rem, 1.172vw);
}

.western .shop02 .obj {
	background-image: url(../img/western-obj03.webp);
	width: min(41rem, 32.031vw);
	height: min(36.9rem, 28.828vw);
	top: max(-8rem, -6.25vw);
	right: max(-26.5rem, -20.703vw);
}

@media screen and (max-width: 768px) {
	.western .shop02 {
		margin-bottom: 58.667vw;
	}

	.western .shop02 .shop__image {
		margin-left: auto;
	}

	.western .shop02 .shop__content {
		bottom: -58.667vw;
		left: 50%;
		transform: translateX(-50%);
	}

	.western .shop02 .obj {
		width: 42.667vw;
		height: 38.4vw;
		top: -33.867vw;
		right: -15.733vw;
	}
}

/* ----------------------------------------------------
	cocktail
---------------------------------------------------- */
.cocktail {
	background: rgb(var(--lsb));
}

.cocktail .article__title {
	width: min(27.1rem, 21.172vw);
}

.cocktail .shop__content {
	background: rgb(var(--blk));
	padding: min(4.5rem, 3.516vw) min(4.5rem, 3.516vw) min(3rem, 2.344vw);
	color: rgb(var(--wht));
	border-radius: min(1rem, 0.781vw);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.cocktail .shop__image {
	margin-bottom: min(2rem, 1.563vw);
	width: 100%;
}

.cocktail .shop__name .eng {
	color: rgb(var(--wht));
}

.cocktail .shop__content--menu .eng {
	color: rgb(var(--lsb));
}

.cocktail .link-button {
	position: relative;
	right: max(-4.3rem, -3.359vw);
}

.cocktail .obj01 {
	background-image: url(../img/cocktail-obj01.webp);
	width: min(52.5rem, 41.016vw);
	height: min(42.2rem, 32.969vw);
	top: max(-21.7rem, -16.953vw);
	left: max(-23.4rem, -18.281vw);
}

.cocktail .obj02 {
	background-image: url(../img/cocktail-obj02.webp);
	width: min(54.6rem, 42.656vw);
	height: min(44rem, 34.375vw);
	right: max(-22.6rem, -17.656vw);
	bottom: max(-12.5rem, -9.766vw);
}

@media screen and (max-width: 768px) {
	.cocktail .article__title {
		width: 50.933vw;
	}

	.cocktail .shop__content {
		padding: 2.667vw 2.667vw 5.333vw;
		border-radius: 2.667vw;
		display: block;
	}

	.cocktail .shop__image {
		margin-bottom: 5.333vw;
		width: 100%;
	}

	.cocktail .shop__content--menu {
		margin-bottom: 2.667vw;
		padding: 0 3.733vw;
	}

	.cocktail .link-button {
		position: relative;
		right: auto;
		left: 3.733vw;
	}

	.cocktail .obj01 {
		width: 66.667vw;
		height: 53.6vw;
		top: auto;
		bottom: -17.6vw;
		left: -12.8vw;
	}

	.cocktail .obj02 {
		width: 58.667vw;
		height: 47.2vw;
		top: -15.2vw;
		right: -32vw;
		bottom: auto;
	}
}

/* ----------------------------------------------------
	tea
---------------------------------------------------- */
.tea {
	background: url(../img/tea-bg.webp) center top repeat-y;
	background-size: 100% auto;
	padding-bottom: min(10rem, 7.813vw);
}

.tea .article__title {
	width: min(45.5rem, 35.547vw);
}

.tea .shop__content {
	background: rgb(var(--cam));
	padding: min(4.5rem, 3.516vw) min(4.5rem, 3.516vw) min(3rem, 2.344vw);
	color: rgb(var(--wht));
	border-radius: min(1rem, 0.781vw);
	position: relative;
}

.tea .shop__image {
	margin-bottom: min(2rem, 1.563vw);
	width: 100%;
}

.tea .shop__name {
	color: rgb(var(--wht));
}

.tea .shop__name .eng {
	color: rgb(var(--cam));
}

.tea .shop__content--menu {
	color: rgb(var(--blk));
}

.tea .link-button {
	position: absolute;
	bottom: max(-2.5rem, -1.953vw);
	left: min(4.5rem, 3.516vw);
}

.tea__image {
	margin: 0 auto;
	width: min(97rem, 75.781vw);
	text-align: right;
}

.tea__image img {
	width: min(53.4rem, 41.719vw);
	position: relative;
	top: max(-7.8rem, -6.094vw);
	right: max(-5.8rem, -4.531vw);
	z-index: 2;
}

.tea .obj01 {
	background-image: url(../img/tea-obj01.webp);
	width: min(11.2rem, 8.75vw);
	height: min(7.5rem, 5.859vw);
	top: min(5rem, 3.906vw);
	left: min(14.2rem, 11.094vw);
	z-index: 3;
}

.tea .obj02 {
	background-image: url(../img/tea-obj02.webp);
	width: min(11rem, 8.594vw);
	height: min(12.9rem, 10.078vw);
	top: max(-5.4rem, -4.219vw);
	right: min(13.8rem, 10.781vw);
	z-index: 3;
}

@media screen and (max-width: 768px) {
	.tea {
		background-image: url(../img/tea-bg_sp.webp);
		padding-bottom: 21.333vw;
	}

	.tea .article__title {
		margin-bottom: 12vw;
		width: 81.6vw;
	}

	.tea .shop__content {
		padding: 2.667vw 2.667vw 5.333vw;
		border-radius: 2.667vw;
	}

	.tea .shop__image {
		margin-bottom: 5.333vw;
	}

	.tea .shop__name {
		padding: 0 3.733vw;
	}

	.tea .link-button {
		position: relative;
		bottom: auto;
		left: 3.733vw;
	}

	.tea__image {
		margin: 8vw auto 0 13.867vw;
		width: 77.333vw;
		text-align: right;
	}

	.tea__image img {
		width: 100%;
		position: relative;
		top: auto;
		right: auto;
	}

	.tea .obj01 {
		width: 13.333vw;
		height: 8.8vw;
		top: 13.333vw;
		left: 12.533vw;
	}

	.tea .obj02 {
		width: 13.333vw;
		height: 15.467vw;
		top: 64.533vw;
		right: 10.4vw;
	}
}

/* ----------------------------------------------------
	gift
---------------------------------------------------- */
.gift {
	background: rgb(var(--cam));
}

.gift .article__title {
	width: min(48.2rem, 37.656vw);
}

.gift .shop__content {
	background: rgb(var(--blk));
	padding: min(4.5rem, 3.516vw) min(4.5rem, 3.516vw) min(3rem, 2.344vw);
	color: rgb(var(--wht));
	border-radius: min(1rem, 0.781vw);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.gift .shop__image {
	margin-bottom: min(2rem, 1.563vw);
	width: 100%;
}

.gift .shop__content--menu .small {
	font-size: min(2rem, 1.563vw);
	display: block;
}

.gift .shop__content--menu .eng {
	color: rgb(var(--cam));
}

.gift .link-button {
	position: relative;
	right: max(-4.3rem, -3.359vw);
}

.gift .obj01 {
	background-image: url(../img/gift-obj01.webp);
	width: min(46.7rem, 36.484vw);
	height: min(40.3rem, 31.484vw);
	top: max(-24.8rem, -19.375vw);
	left: max(-26.5rem, -20.703vw);
}

.gift .obj02 {
	background-image: url(../img/gift-obj02.webp);
	width: min(43.8rem, 34.219vw);
	height: min(21.5rem, 16.797vw);
	right: max(-19.2rem, -15vw);
	bottom: max(-10.8rem, -8.438vw);
}

.gift .obj03 {
	background-image: url(../img/gift-obj03.webp);
	width: min(13.5rem, 10.547vw);
	height: min(14.1rem, 11.016vw);
	top: min(49rem, 38.281vw);
	left: max(-9rem, -7.031vw);
	z-index: 3;
}

.gift .obj04 {
	background-image: url(../img/gift-obj04.webp);
	width: min(7.5rem, 5.859vw);
	height: min(14.3rem, 11.172vw);
	top: min(22.7rem, 17.734vw);
	right: max(-5.5rem, -4.297vw);
	z-index: 3;
}

@media screen and (max-width: 768px) {
	.gift .article__title {
		width: 85.333vw;
	}

	.gift .shop__content {
		padding: 2.667vw 2.667vw 5.333vw;
		border-radius: 2.667vw;
		display: block;
	}

	.gift .shop__image {
		margin-bottom: 5.333vw;
	}

	.gift .shop__content--menu .small {
		font-size: 3.733vw;
	}

	.gift .link-button {
		right: auto;
		left: 3.733vw;
	}

	.gift .obj01 {
		width: 43.2vw;
		height: 37.333vw;
		top: -7.733vw;
		left: -6.4vw;
	}

	.gift .obj02 {
		width: 40.8vw;
		height: 20vw;
		right: 6.4vw;
		bottom: -16.533vw;
	}

	.gift .obj03 {
		width: 12.533vw;
		height: 13.067vw;
		top: 15.467vw;
		left: 10.4vw;
	}

	.gift .obj04 {
		background-image: url(../img/gift-obj04_sp.webp);
		width: 13.6vw;
		height: 13.333vw;
		top: 74.933vw;
		right: 6.4vw;
	}
}

/* ----------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	padding-top: min(16rem, 12.5vw);
}

@media screen and (max-width: 768px) {
	.footer {
		padding-top: 21.333vw;
	}
}

/* 
	footer__note
------------------------------ */
.footer__note {
	margin: 0 auto min(6rem, 4.688vw);
	width: min(86rem, 67.188vw);
}

@media screen and (max-width: 768px) {
	.footer__note {
		margin: 0 auto min(6rem, 4.688vw);
		width: 80vw;
	}
}

/* 
	official
------------------------------ */
.footer .official {
	margin: 0 auto min(4rem, 3.125vw);
	width: min(69rem, 53.906vw);
	padding: min(2.5rem, 1.953vw) min(3rem, 2.344vw);
	border: solid 1px rgb(var(--base));
	border-radius: min(1rem, 0.781vw);
}

.footer .official__title {
	margin-bottom: min(1rem, 0.781vw);
	padding-bottom: min(1rem, 0.781vw);
	line-height: 1;
	color: rgb(var(--line));
	font-size: min(1.9rem, 1.484vw);
	font-weight: 500;
	text-align: center;
	border-bottom: solid 1px rgb(var(--base));
}

.footer .official__line--content {
	margin-bottom: min(1rem, 0.781vw);
	display: flex;
	align-items: center;
}

.footer .official__line--content .logo {
	margin-right: min(3rem, 2.344vw);
	text-align: center;
}

.footer .official__line--content .logo img {
	width: min(6.6rem, 5.156vw);
}

.footer .official__line--content .logo figcaption {
	color: rgb(var(--line));
	font-size: min(1.2rem, 0.938vw);
}

.footer .official__line--content .detail {
	line-height: 1.5;
}

.footer .official__line--content .detail__text {
	margin-bottom: min(0.5rem, 0.391vw);
	font-size: min(2rem, 1.563vw);
	font-weight: 500;
}

.footer .official__line--content .detail__text .marker {
	background: linear-gradient(transparent 70%, #F6E155 30%);
	font-size: min(2.5rem, 1.953vw);
}

.footer .official .link-button {
	background: rgb(var(--line));
	margin: 0 auto;
	width: min(39rem, 30.469vw);
	height: min(5rem, 3.906vw);
	color: rgb(var(--wht));
	font-size: min(1.8rem, 1.406vw);
	font-weight: 500;
}

.footer .official .link-button svg {
	width: min(1.5rem, 1.172vw);
	height: auto;
	fill: none;
	stroke: #fff;
	stroke-miterlimit: 10;
	stroke-width: 1.42px;
	right: min(2rem, 1.563vw);
}

@media screen and (max-width: 768px) {
	.footer .official {
		margin-bottom: 12vw;
		width: 80vw;
		padding: 6.4vw 3.2vw;
		border-radius: 2.667vw;
	}

	.footer .official__title {
		margin-bottom: 6.933vw;
		padding-bottom: 2.667vw;
		font-size: 4.533vw;
	}

	.footer .official__line {
		padding: 0 12vw;
		padding: 0 10.667vw;
	}

	.footer .official__line--content {
		margin-bottom: 5.333vw;
		display: block;
	}

	.footer .official__line--content .logo {
		margin: 0 0 5.333vw;
	}

	.footer .official__line--content .logo img {
		width: 16vw;
	}

	.footer .official__line--content .logo figcaption {
		font-size: 2.933vw;
	}

	.footer .official__line--content .detail__text {
		margin-bottom: 1.333vw;
		font-size: 4.8vw;
	}

	.footer .official__line--content .detail__text .marker {
		font-size: 5.867vw;
	}

	.footer .official .link-button {
		width: 53.333vw;
		height: 12vw;
		font-size: 4vw;
	}

	.footer .official .link-button svg {
		width: 3.733vw;
		right: 2.667vw;
	}
}

/* 
	tel
------------------------------ */
.footer .tel {
	margin: 0 auto min(4.5rem, 3.516vw);
	padding-bottom: min(3.2rem, 2.5vw);
	width: min(94rem, 73.438vw);
	line-height: 1;
	text-align: center;
	border-bottom: solid 1px rgb(var(--base));
}

.footer .tel__title {
	margin-bottom: min(1.5rem, 1.172vw);
	font-size: min(2.4rem, 1.875vw);
}

.footer .tel__content {
	font-family: var(--futura);
	font-size: min(4.7rem, 3.672vw);
	font-weight: 600;
}

.footer .tel__content .tel__time {
	margin-top: min(1rem, 0.781vw);
	font-family: var(--gothic);
	font-size: min(1.7rem, 1.328vw);
	font-weight: 400;
	display: block;
}

@media screen and (max-width: 768px) {
	.footer .tel {
		margin-bottom: 12vw;
		padding-bottom: 8vw;
		width: 80vw;
	}

	.footer .tel__title {
		margin-bottom: 3.733vw;
		font-size: 5.333vw;
	}

	.footer .tel__content {
		font-size: 9.333vw;
	}

	.footer .tel__content .tel__time {
		margin-top: 2.667vw;
		font-size: 3.733vw;
	}
}

/* 
	hotel
------------------------------ */
.footer .hotel {
	text-align: center;
}

.footer .hotel__logo {
	margin: 0 auto min(3.6rem, 2.813vw);
	width: min(15rem, 11.719vw);
}

.footer .hotel__name {
	margin-bottom: min(2rem, 1.563vw);
	line-height: 1;
	font-size: min(2.4rem, 1.875vw);
	font-weight: 600;
}

.footer .hotel__address {
	font-size: min(1.7rem, 1.328vw);
}

.footer .hotel__access {
	margin-bottom: min(3rem, 2.344vw);
	font-size: min(1.5rem, 1.172vw);
}

.footer .hotel__sns {
	margin-bottom: min(2rem, 1.563vw);
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer .hotel__sns--item {
	margin: 0 min(1.9rem, 1.484vw);
	width: min(5rem, 3.906vw);
}

.footer .hotel__map {}

.footer .hotel__map iframe {
	max-width: min(110rem, 85.938vw);
	width: 100%;
	height: min(40rem, 31.25vw);
}

@media screen and (max-width: 768px) {
	.footer .hotel__logo {
		margin-bottom: 10.667vw;
		width: 34.667vw;
	}

	.footer .hotel__name {
		margin-bottom: 5.333vw;
		font-size: 5.867vw;
	}

	.footer .hotel__address {
		font-size: 4.267vw;
	}

	.footer .hotel__access {
		margin-bottom: 8vw;
		font-size: 3.733vw;
	}

	.footer .hotel__sns {
		margin-bottom: 8vw;
	}

	.footer .hotel__sns--item {
		margin: 0 5.333vw;
		width: 10.667vw;
	}

	.footer .hotel__map iframe {
		max-width: 100%;
		height: 40vw;
	}
}

/* 
	hotel-nav 
------------------------------ */
.footer .hotel-nav {
	padding: min(5rem, 3.906vw) 0;
	line-height: 1;
	font-size: min(1.7rem, 1.328vw);
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer .hotel-nav::before,
.footer .hotel-nav__item::after {
	content: "|";
}

.footer .hotel-nav__item {}

.footer .hotel-nav__item a {
	padding: 0 1.5em;
	text-decoration: none;
}

@media screen and (max-width: 768px) {
	.footer .hotel-nav {
		padding: 6.4vw 0;
		font-size: 2.667vw;
	}

	.footer .hotel-nav__item a {
		padding: 0 1em;
	}
}

/* 
	copy
------------------------------ */
.footer .copy {
	background: #eceaea;
	padding: 1em 0;
	font-size: min(1.7rem, 1.328vw);
	text-align: center;
}

@media screen and (max-width: 768px) {
	.footer .copy {
		font-size: 2.4vw;
	}
}