@charset "UTF-8";

:root {
	--gothic: "Noto Sans JP", serif;

	/* color */
	--blk: 26, 26, 26;
	--wht: 255, 255, 255;
	--gry: 153, 153, 153;
	--sky: 245, 246, 249;
	--brn: 114, 107, 104;
}

/* ----------------------------------------------------
	基本設定
---------------------------------------------------- */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 93px;
}

@media screen and (max-width: 1100px) {
	html {
		scroll-padding-top: 8.45455vw;
	}
}

@media screen and (max-width: 768px) {
	html {
		scroll-padding-top: 24.53333vw;
	}
}

/*
	表示設定
------------------------------ */
body {
	background: rgb(var(--wht));
	line-height: 1.8;
}

a {
	color: rgb(var(--blk));
	display: inline-block;
	text-decoration: underline;
	transition: all 0.5s ease 0s;
}

a:hover {
	text-decoration: none;
}

/*
	font
------------------------------ */
body {
	font-family: var(--gothic);
	font-feature-settings: "palt"1;
	letter-spacing: 0.05em;
	font-weight: 500;
}

body,
th,
td {
	color: rgb(var(--blk));
	font-size: 16px;
	font-weight: normal;
}

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

	body,
	th,
	td {
		font-size: 1.45455vw;
	}
}

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

	body,
	th,
	td {
		font-size: 4.26667vw;
	}
}

/*
	SP,PC表示切り替え
------------------------------ */
.pc {
	display: block;
}

.sp {
	display: none;
}

@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}
}

/*
	list
------------------------------ */
ul.list li {
	position: relative;
}

/* note */
ul.note li {
	margin-left: 1em;
	font-size: 13px;
	text-indent: -1em;
}

ul.note li::before {
	content: "※";
}

ul.note.en li::before {
	content: "*";
}

@media screen and (max-width: 1100px) {
	ul.note li {
		font-size: 1.18182vw;
	}
}

@media screen and (max-width: 768px) {
	ul.note li {
		font-size: 3.2vw;
	}
}

/*
	linkBtn
------------------------------ */
.linkBtn a {
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

/* ----------------------------------------------------
	pagetop
---------------------------------------------------- */
.pageTop a {
	background: rgba(var(--blk), 0.8);
	width: 64px;
	height: 64px;
	border-radius: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 10;
}

.pageTop a svg {
	fill: rgb(var(--wht));
	width: 16px;
	height: auto;
}

/* ---------------------------------------------------
	header
---------------------------------------------------- */
.header {
	background: rgb(var(--wht));
	position: sticky;
	top: 0;
	z-index: 5;
}

.header__inner {
	padding: 0 42px 0 80px;
	height: 93px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.header__logo {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.header__logo--item:not(:last-of-type) {
	margin-right: 30px;
}

.header__logo--item.celestine a img {
	width: 78px;
}

.header__logo--item.garden a img {
	width: 97px;
}

.header__logo--item.sequence a img {
	width: 43px;
}

.header .toggle {
	display: none;
}

.header__lang {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.header__lang--link {
	color: rgb(var(--brn));
	font-weight: 600;
	text-decoration: none;
	display: block;
}

.header__lang--item.jp .header__lang--link {
	padding-right: 13px;
}

.header__lang--item.en .header__lang--link {
	padding-left: 13px;
}

.header__lang .switch-link {
	text-indent: -9999px;
}

.header__lang .switch {
	background: rgb(var(--brn));
	width: 90px;
	height: 34px;
	border-radius: 34px;
	position: relative;
}

.header__lang .switch::before {
	background: rgb(var(--wht));
	width: 24px;
	height: 24px;
	text-indent: -9999px;
	border-radius: 24px;
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.5s ease 0s;
	content: "";
}

.lang-en .header__lang .switch-link:hover .switch::before,
.header__lang .switch.active-jp::before {
	left: 4px;
}

.lang-jp .header__lang .switch-link:hover .switch::before,
.header__lang .switch.active-en::before {
	left: 62px;
}

@media screen and (max-width: 1100px) {
	.header__inner {
		padding: 0 3.81818vw 0 7.27273vw;
		height: 8.45455vw;
	}

	.header__logo--item:not(:last-of-type) {
		margin-right: 2.72727vw;
	}

	.header__logo--item.celestine a img {
		width: 7.09091vw;
	}

	.header__logo--item.garden a img {
		width: 8.81818vw;
	}

	.header__logo--item.sequence a img {
		width: 3.90909vw;
	}

	.header__lang--item {
		font-size: 1.45455vw;
	}

	.header__lang--item.jp .header__lang--link {
		padding-right: 1.18182vw;
	}

	.header__lang--item.en .header__lang--link {
		padding-left: 1.18182vw;
	}

	.header__lang .switch {
		width: 8.18182vw;
		height: 3.09091vw;
		border-radius: 3.09091vw;
	}

	.header__lang .switch::before {
		width: 2.18182vw;
		height: 2.18182vw;
		border-radius: 2.18182vw;
	}

	.lang-en .header__lang .switch-link:hover .switch::before,
	.header__lang .switch.active-jp::before {
		left: 0.36364vw;
	}

	.lang-jp .header__lang .switch-link:hover .switch::before,
	.header__lang .switch.active-en::before {
		left: 5.63636vw;
	}
}

@media screen and (max-width: 768px) {
	.header__inner {
		padding: 0 5.33333vw 0 3.46667vw;
		height: 24.53333vw;
	}

	.header__logo--item:not(:last-of-type) {
		margin-right: 7.46667vw;
	}

	.header__logo--item.celestine a img {
		width: 19.2vw;
	}

	.header__logo--item.garden a img {
		width: 24.53333vw;
	}

	.header__logo--item.sequence a img {
		width: 10.93333vw;
	}

	.header .toggle {
		background: url(../img/toggle.svg) center no-repeat;
		background-size: cover;
		width: 8.26667vw;
		height: 8.26667vw;
		display: block;
		position: relative;
		z-index: 11;
		transition: all 0.5s ease 0s;
		cursor: pointer;
	}

	.header__lang {
		background: rgb(var(--wht));
		padding-left: 4.8vw;
		width: 82.66667vw;
		height: 12.8vw;
		border: solid 1px rgb(var(--brn));
		border-radius: 12.8vw;
		opacity: 0;
		display: none;
		position: absolute;
		top: 50%;
		right: 2.4vw;
		z-index: 10;
		transform: translateY(-50%);
		transition: all 0.5s ease 0s;
	}

	.header__lang--item.jp .header__lang--link {
		padding-right: 2.93333vw;
	}

	.header__lang--item.en .header__lang--link {
		padding-left: 2.93333vw;
	}

	.header__lang--link {
		font-size: 4.26667vw;
	}

	.header__lang .switch {
		width: 24vw;
		height: 9.06667vw;
		border-radius: 9.06667vw;
	}

	.header__lang .switch::before {
		width: 6.93333vw;
		height: 6.93333vw;
		border-radius: 6.93333vw;
	}

	.lang-en .header__lang .switch-link:hover .switch::before,
	.header__lang .switch.active-jp::before {
		left: 1.33333vw;
	}

	.lang-jp .header__lang .switch-link:hover .switch::before,
	.header__lang .switch.active-en::before {
		left: 16vw;
	}

	/* is-open */
	.is-open .header .toggle {
		background: url(../img/toggle-close.svg) center no-repeat;
		background-size: 5.86667vw 5.86667vw;
	}

	.is-open .header__lang {
		opacity: 1;
		display: flex;
	}
}

/* ---------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	padding: 100px 50px 0;
}

.footer .note {
	margin: 0 auto 28px;
	max-width: 850px;
}

.footer .note a {
	text-indent: 0;
}

@media screen and (max-width: 768px) {
	.footer {
		padding: 8vw 6.4vw 0;
	}

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

/*
	logo-list
------------------------------ */
.logo-list {
	margin: 0 auto 66px;
	max-width: 580px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.logo-list--item.celestine a img {
	width: 163px;
}

.logo-list--item.garden a img {
	width: 203px;
}

.logo-list--item.sequence a img {
	width: 90px;
}

.logo-list--item.mitsui {
	margin-top: 46px;
	width: 100%;
	text-align: center;
}

.logo-list--item.mitsui a img {
	width: 262px;
}

.logo-list--item.mitsui.en a img {
	width: 381px;
}

@media screen and (max-width: 1100px) {
	.logo-list {
		margin-bottom: 6vw;
		max-width: 52.72727vw;
	}

	.logo-list--item.celestine a img {
		width: 14.81818vw;
	}

	.logo-list--item.garden a img {
		width: 18.45455vw;
	}

	.logo-list--item.sequence a img {
		width: 8.18182vw;
	}

	.logo-list--item.mitsui {
		margin-top: 4.18182vw;
	}

	.logo-list--item.mitsui a img {
		width: 23.81818vw;
	}

	.logo-list--item.mitsui.en a img {
		width: 34.63636vw;
	}
}

@media screen and (max-width: 768px) {
	.logo-list {
		margin-bottom: 6.4vw;
		max-width: 100%;
		justify-content: center;
	}

	.logo-list--item {
		margin: 0 4.8vw;
		text-align: center;
	}

	.logo-list--item.celestine a img {
		width: 19.2vw;
	}

	.logo-list--item.garden a img {
		width: 24.53333vw;
	}

	.logo-list--item.sequence a img {
		width: 10.93333vw;
	}

	.logo-list--item.mitsui {
		margin-top: 6.4vw;
	}

	.logo-list--item.mitsui a img {
		width: 45vw;
	}

	.logo-list--item.mitsui.en a img {
		width: 55vw;
	}
}

/*
	hotelNav
------------------------------ */
.footer__hotelNav {
	line-height: 1;
	color: rgb(var(--blk));
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.footer__hotelNav li {
	margin: 0 0 1rem;
	text-indent: 0;
	display: flex;
	position: relative;
}

.footer__hotelNav li:first-of-type::before,
.footer__hotelNav li::after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.footer__hotelNav li:first-of-type::before {
	left: 0;
	content: "|";
}

.footer__hotelNav li::after {
	right: 0;
	content: "|";
}

.footer__hotelNav li a {
	padding: 0 1em;
	color: rgb(var(--blk));
	text-decoration: none;
	display: inline-block;
}

.footer__hotelNav li a:hover {
	text-decoration: underline;
	opacity: 1;
}

@media screen and (max-width: 768px) {
	.footer__hotelNav {
		text-align: center;
		display: block;
	}

	.footer__hotelNav li:first-of-type::before,
	.footer__hotelNav li::after {
		content: "";
	}

	.footer__hotelNav li {
		margin-bottom: 1rem;
		justify-content: center;
	}

	.footer__hotelNav li a {
		display: inline-block;
		position: relative;
	}

	.footer__hotelNav li a::before,
	.footer__hotelNav li a::after {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		content: "|";
	}

	.footer__hotelNav li a::before {
		left: 0;
	}

	.footer__hotelNav li a::after {
		right: 0;
	}
}

/*
	copy
------------------------------ */
.copy {
	padding: 25px 0;
	color: rgba(var(--blk), 0.5);
	font-size: 12px;
	text-align: center;
}

@media screen and (max-width: 1100px) {
	.copy {
		padding: 2.27273vw 0;
		font-size: 1.09091vw;
	}
}

@media screen and (max-width: 768px) {
	.copy {
		padding: 4.8vw 0;
		font-size: 2.93333vw;
	}
}