@charset "UTF-8";

:root {
	/* font */
	--gothic: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	--mincho: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;

	/* color */
	--blk: 112, 112, 112;
	--wht: 255, 255, 255;
}

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

/*
	reset
------------------------------ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
}

p {
	word-wrap: break-word;
}

p:not(:last-of-type) {
	margin-bottom: 1em;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

fieldset,
img {
	border: 0;
}

address,
b,
caption,
cite,
code,
dfn,
em,
i,
strong,
th,
var {
	font-style: normal;
	font-weight: normal;
}

caption,
th {
	text-align: left;
}

a {
	color: #707070;
	text-decoration: underline;
	transition: all 0.5s ease 0s;
}

a:hover {
	text-decoration: none;
	opacity: 0.7;
}

area {
	border: none;
	outline: none;
}

img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

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

.container {
	margin: 0 auto;
	padding: 0 20px;
	max-width: 900px;
	width: 100%;
}

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

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

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

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

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

small {
	font-size: calc(1em - 2px);
}

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

.sp {
	display: none;
}

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

	.sp {
		display: block;
	}
}

/*
	list
------------------------------ */
ul.list li {
	margin-left: 1em;
	text-indent: -1em;
}

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

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

@media screen and (max-width: 768px) {
	ul.note li {
		font-size: calc(1em - 2px);
	}
}

/* type */
ul.type1 li::before {
	content: "●";
}

/* cnt */
ol.cnt li {
	margin-left: 1.8em;
	text-indent: -1.8em;
	counter-increment: number;
}

ol.cnt li::before {
	content: "("counter(number) ")";
}

/*
	.movie
------------------------------ */
.movie {
	width: 100%;
	aspect-ratio: 16 / 9;
}

.movie iframe {
	width: 100%;
	height: 100%;
}

/*
	tel
------------------------------ */
.tel {
	pointer-events: none;
}

@media screen and (max-width: 768px) {
	.tel {
		pointer-events: all;
	}
}

/*
	linkBtn
------------------------------ */
.linkBtn a {
	background: #707070 url(../img/arrow2.svg) right 4px center no-repeat;
	margin: 0 auto;
	padding-left: 16px;
	max-width: 161px;
	width: 100%;
	height: 35px;
	color: #fff;
	text-decoration: none;
	border-radius: 35px;
	display: flex;
	align-items: center;
	position: relative;
}

@media screen and (max-width: 768px) {
	.linkBtn a {
		background-position: right 1vw center;
		background-size: auto 80%;
		padding-left: 7vw;
		max-width: 42.93333vw;
		height: 9.33333vw;
		border-radius: 9.33333vw;
	}
}

/*
	linkBtn（cover）
------------------------------ */
.linkBtn a.cover {
	pointer-events: none;
	z-index: 1;
}

.linkBtn a.cover::before {
	background: rgba(var(--blk), 0.5);
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

/* comingsoon */
.linkBtn a.comingsoon::before {
	content: "Coming Soon";
}

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

/*
	header__title
------------------------------ */
.header__title {
	width: 48.82333%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}

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

/*
	lang
------------------------------ */
.header .lang {
	display: flex;
	position: absolute;
	top: 9.375%;
	right: 6.25%;
}

.header .lang li {
	margin-left: 8px;
}

.header .lang li .inner {
	background: #4DBF9C;
	width: 48px;
	height: 37px;
	line-height: 1;
	color: #fff;
	font-size: 23px;
	border: solid 1px #4DBF9C;
	display: flex;
	justify-content: center;
	align-items: center;
}

.header .lang li a.inner {
	background: #fff;
	color: #4DBF9C;
	text-decoration: none;
}

.header .lang li a.inner:hover {
	background: #4DBF9C;
	color: #fff;
	opacity: 1;
}

@media screen and (max-width: 768px) {
	.header .lang {
		top: 7.22919vw;
		right: 5.06667vw;
	}

	.header .lang li .inner {
		width: 9.6vw;
		height: 6.66667vw;
		font-size: 6.13333vw;
	}

	.header .lang li a.inner {
		background: #fff;
		color: #4DBF9C;
		text-decoration: none;
	}

	.header .lang li a.inner:hover {
		background: #4DBF9C;
		color: #fff;
		opacity: 1;
	}
}

/* ----------------------------------------------------
	toggle nav
---------------------------------------------------- */
/*
	toggle
------------------------------ */
.toggle {
	display: none;
}

@media screen and (max-width: 768px) {
	.toggle {
		display: block;
		position: fixed;
		top: 7.22919vw;
		left: 5.06667vw;

		z-index: 1000;
	}

	.toggle__inner {
		position: relative;
		width: 42px;
		height: 26px;
		cursor: pointer;
	}

	.toggle__inner span {
		background: #fff;
		width: 100%;
		height: 4px;
		display: block;
		position: absolute;
		left: 0;
		opacity: 1;
		transition: transform 0.6s ease-in-out, top 0.5s ease, bottom 0.5s ease;
	}

	.toggle__inner span:nth-child(1) {
		top: 0;
	}

	.toggle__inner span:nth-child(2) {
		top: 50%;
		transform: translatey(-50%);
	}

	.toggle__inner span:nth-child(3) {
		bottom: 0;
	}

	/* is-open */
	.is-open .toggle__inner span {
		background: #919191;
	}

	.is-open .toggle__inner span:nth-child(1) {
		height: 2px;
		top: 50%;
		transform: rotate(30deg) translatey(-50%);
	}

	.is-open .toggle__inner span:nth-child(2) {
		background: none;
		position: relative;
	}

	.is-open .toggle__inner span:nth-child(3) {
		height: 2px;
		top: 50%;
		transform: rotate(-30deg) translatey(-50%);
	}

	/* change-color */
	.change-color .toggle__inner span {
		background: #919191;
	}
}

/*
	gnav
------------------------------ */
.gnav {
	padding: 44px 20px 0;
}

.gnav__list {
	display: flex;
	justify-content: center;
}

.gnav__list--item {
	padding: 0 32px;
}

.gnav__list--item a {
	background-position: center top;
	background-repeat: no-repeat;
	background-size: auto 67px;
	padding-top: 80px;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
	display: block;
}

.gnav__list--item.sdgs a {
	background-image: url(../img/bg1.png);
}

.gnav__list--item.eco a {
	background-image: url(../img/bg2.png);
}

.gnav__list--item.community a {
	background-image: url(../img/bg3.png);
}

.gnav__list--item.people a {
	background-image: url(../img/bg4.png);
}

.gnav__list--item a span {
	display: block;
}

.gnav__list--item a .en {
	color: #4DBF9C;
	font-size: 21px;
	font-weight: 600;
}

.gnav__list--item a .jp {
	color: #707070;
	font-size: 14px;
}

@media screen and (max-width: 1000px) {
	.gnav__list--item {
		padding: 0 3.2vw;
	}

	.gnav__list--item a .en {
		font-size: 2.1vw;
	}
}

@media screen and (max-width: 768px) {
	.gnav {
		background: #fff;
		width: 100%;
		height: 100%;
		color: #fff;
		text-align: center;
		overflow: auto;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 999;
		transform: translateX(-100%);
		transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	.gnav__list {
		margin-top: 10.66667vw;
		border-top: solid 1px #4DBF9C;
		display: block;
	}

	.gnav__list--item {
		padding: 0 3.2vw;
		border-bottom: solid 1px #4DBF9C;
	}

	.gnav__list--item a {
		background: url(../img/arrow1.svg) right center no-repeat !important;
		padding: 1.25rem 0;
		text-align: left;
	}

	.gnav__list--item a .en {
		font-size: 6.13333vw;
	}

	.gnav__list--item a .jp {
		font-size: 4.26667vw;
	}

	/* is-open */
	.is-open {
		overflow: hidden;
	}

	.is-open .gnav {
		z-index: 999;
		transform: translateX(0);
	}
}

/* ---------------------------------------------------
	footer
---------------------------------------------------- */
.footer {
	background: #fff;
	/* padding-top: 110px; */
	position: relative;
	z-index: 10;
}

.footer .container {
	max-width: 940px;
}

.footer .link.note {
	margin-top: 1em;
}

.footer__hotelNav {
	padding: 55px 0 0;
	line-height: 1;
	color: #333;
	display: flex;
	justify-content: center;
}

.footer__hotelNav::before {
	content: "｜";
}

.footer__hotelNav li {
	margin: 0;
	margin: 0;
	text-indent: 0;
	white-space: nowrap;
}

.footer__hotelNav li::before {
	content: "";
}

.footer__hotelNav li::after {
	content: "｜";
}

.footer__hotelNav li a {
	padding: 0 1em;
	color: #333;
	text-decoration: none;
	display: inline-block;
}

.footer .copy {
	padding: 32px 0;
	color: #999;
	font-size: 14px;
	text-align: center;
}

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

	.footer__hotelNav {
		padding: 7.8125vw 0 0;
		line-height: 3;
		text-align: center;
		display: block;
	}

	.footer__hotelNav::before {
		content: "";
	}

	.footer__hotelNav li::before {
		content: "｜";
	}

	.footer__hotelNav li a {
		padding: 0 0.5em;
	}


	.footer .copy {
		padding: 4.16667vw 0;
		font-size: 3.2vw;
	}
}

/*
	sustainability
------------------------------ */
.footer .sustainability {
	background: #F7F7F7;
	padding: 100px 20px;
}

.footer .sustainability a {
	background: #fff;
	margin: 0 auto;
	max-width: 900px;
	height: 124px;
	color: #4DBF9C;
	font-size: 27px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	border: solid 8px #4DBF9C;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.footer .sustainability a::before {
	width: 0.5em;
	height: 0.5em;
	line-height: 1;
	color: #4DBF9C;
	border: solid 3px currentColor;
	border-left: 0;
	border-bottom: 0;
	position: absolute;
	top: 50%;
	right: 2em;
	transform: translateY(-50%) rotate(45deg);
	content: "";
}

.footer .sustainability a:hover {
	background: #4DBF9C;
	color: #fff;
	border: solid 8px #fff;
	opacity: 1;
}

.footer .sustainability a:hover::before {
	color: #fff;
}

@media screen and (max-width: 900px) {
	.footer .sustainability a {
		font-size: 3vw;
	}
}

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

	.footer .sustainability a {
		height: 16.14583vw;
		line-height: 1.5;
		font-size: 3.38542vw;
		border-width: 1.04167vw;
	}

	.en .footer .sustainability a {
		font-size: 2.93333vw;
	}

	.en .footer .sustainability a::before {
		right: 1em;
	}
}

/* ----------------------------------------------------
	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: 10px;
	bottom: 10px;
	z-index: 10;
}

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