/* Reset
========================================================================== */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed,  figure, figcaption, footer, header, hgroup,  menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

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

input, button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/* Font Setting
========================================================================== */
	
/* -----
	@import
------------------------------ */

/* -----
	Font Face
------------------------------ */

body {
	font-family:var(--ja);
}

::selection {
	background: #ccc;
}

::-moz-selection{
	background: #ccc;
}

/* IE10以上 */
@media all and (-ms-high-contrast: none) {
  body {
    font-family: Verdana, Meiryo, sans-serif;
  }
}

/* -----
	Font Basic Style
------------------------------ */

html {
	font-size: 62.5%;
	-webkit-font-smoothing: antialiased;
}

body {
	color: var(--text_color);
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.5;
}

p {
	font-size: 1.4rem;
	line-height: 1.75;
}

a,
a img {
	color: #167ac6;
	text-decoration: none;
	opacity: 1;
	transition: all .5s cubic-bezier(0.84, -0.01, 0.48, 0.995);
}

a:hover {}

i {
	font-style: italic; 
}

b, em, strong {
	font-weight: 700;
}

ul, ol {
	list-style: none;
	font-size: 0;
}

li {
	font-size: 1.4rem;
}

table {
    width: 100%;
	box-sizing: border-box;
    border-spacing: 0;
	overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
}

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

/* :root
========================================================================== */

:root {

	/* Font */
	--ja: 'Noto Serif JP', serif;
	--en: 'EB Garamond', serif;

	/* Color */
	--black: #23262A;
	--gray: #F2F2F3;
	--light-gray: #F8F9F9;
	--red: #B7282C;
	--blue: #0066CC;
    --white: #FCFCF8;
	
	/* Color Style */
	--text_color: var(--black);
	--line_color: var(--gray);
	--key_color: var(--red);
	--bg_color: var(--light-gray);

}

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

/* Initial Setting
========================================================================== */

html {}

body{}

.l-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	background: url(./img/texture/paper_texture.jpg);
	background-repeat: repeat;
	background-size: 50%;
	z-index: 0;
}

.l-wrap::-webkit-scrollbar {
	display: none;
}

.clearfix:after {
	content:".";
	display:block;
	clear:both;
	height:0;
	visibility:hidden;
	zoom:1;
}

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		 -o-box-sizing: border-box;
			box-sizing: border-box;
}

img {
	display:block;
	max-width:100%;
	height: auto;
	border:none;
	line-height: 1;
}

.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}

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

	.l-wrap {
		background-size: 25%;
	}

}

/* Media Queries
========================================================================== */

.sp {
	display: block;
}

.pc {
	display: none!important;
}

/* -----
	781px 以上
------------------------------ */

@media screen and (min-width: 781px) {
	
.sp {
	display: none;
}
	
.pc {
	display: block!important;
}
	
}

/* Loading
========================================================================== */

.l-loading {
	position: fixed;
	height: 100vh;
	width: 100vw;
	background-color: var(--red);
	overflow: hidden;
	opacity: 1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	backface-visibility: hidden;
}

/* Background
========================================================================== */

/* Header
========================================================================== */

.l-header {}

.l-header__fixed {
	--header-hight: 16.67vw;
	position: fixed;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: var(--header-hight);
	background: var(--key_color);
	padding: 0 4.76vw;
	top: 0;
	left: 0;
	z-index: 1000;
}

.l-header__fixed::after {
	position: absolute;
	content: '';
	width: 100%;
	height: 2px;
	left: 0;
	bottom: -2px;
	background: url(./img/texture/gold_texture.jpg);
	background-repeat: repeat;
	background-size: 25%;
}

.l-header__logo a {
	display: block;
	line-height: 0;
}

.l-header__logo img {
	height: 40px;
}

.l-header__right {
	display: flex;
	align-items: center;
}

.l-header__lang {
	display: flex;
	align-items: center;
	color: var(--white);
	font-size: 1.3rem;
	margin-right: 15px;
}

.l-header__lang__list.current {
	text-decoration: underline;
}

.l-header__lang__list:first-child::after {
	content: '';
	display: inline-block;
	margin: 0 7px;
	height: 14px;
	width: 1px;
	background: var(--white);
}

.l-header__lang__list a {
	color: var(--white);
}

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

	.l-header__fixed {
		--header-hight: 5vw;
	
		padding: 0 2.86vw;
	}
	
	.l-header__logo img {
		height: 40px;
	}
	
}

/* Nvigation Trigger
========================================================================== */

.l-header__navigation__trigger {
	position: relative;
}

.l-header__navigation__trigger__group {
	position: relative;
	width: 22px;
	height: 14px;
	cursor: pointer;
	opacity: 1;
	z-index: 1000;
}

.l-header__navigation__trigger__group, .l-header__navigation__trigger__group__bar {
	display: inline-block;
	box-sizing: border-box;
	transition: all .5s cubic-bezier(0.84, -0.01, 0.48, 0.995);
}

.l-header__navigation__trigger__group .l-header__navigation__trigger__group__bar {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--white);
	transition: all .5s cubic-bezier(0.84, -0.01, 0.48, 0.995);
	border-radius: 2px;
}

.l-header__navigation__trigger__group__bar:nth-of-type(1) {
	top: 0;
}

.l-header__navigation__trigger__group__bar:nth-of-type(2) {
	top: 6px;
}

.l-header__navigation__trigger__group__bar:nth-of-type(3) {
	bottom: 0;
}

.l-header__navigation__trigger__group.is_active .l-header__navigation__trigger__group__bar:nth-of-type(1) {
	-webkit-transform: translateY(6px) rotate(-45deg);
	transform: translateY(6px) rotate(-45deg);
}

.l-header__navigation__trigger__group.is_active .l-header__navigation__trigger__group__bar:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active_btn_bar .5s cubic-bezier(0.84, -0.01, 0.48, 0.995);
  animation: active_btn_bar .5s cubic-bezier(0.84, -0.01, 0.48, 0.995);
}

.l-header__navigation__trigger__group.is_active .l-header__navigation__trigger__group__bar:nth-of-type(3) {
	-webkit-transform: translateY(-6px) rotate(45deg);
	transform: translateY(-6px) rotate(45deg);
}

@-webkit-keyframes active_btn_bar {
	100% {
		height: 0;
	}
}

@keyframes active_btn_bar {
	100% {
		height: 0;
	}
}


@media screen and (min-width: 781px) {
	
	.l-header__navigation__trigger__group {
		width: 30px;
		height: 22px;
	}
		
	.l-header__navigation__trigger__group__bar:nth-of-type(2) {
		top: 10px;
	}
	
	.l-header__navigation__trigger__group.is_active .l-header__navigation__trigger__group__bar:nth-of-type(1) {
		-webkit-transform: translateY(10px) rotate(-45deg);
		transform: translateY(10px) rotate(-45deg);
	}
	
	.l-header__navigation__trigger__group.is_active .l-header__navigation__trigger__group__bar:nth-of-type(3) {
		-webkit-transform: translateY(-10px) rotate(45deg);
		transform: translateY(-10px) rotate(45deg);
	}

}

/* Global Navigation
========================================================================== */

.l-header__navigation {
	visibility: hidden;
	position: fixed;
	width: 100%;
	height: 100%;
	background: var(--key_color);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	z-index: 999;
	transition: all .5s cubic-bezier(.25,.1,.25,1);
}

.l-header__navigation.is_active {
	visibility: visible;
	opacity: 1;
}

.l-header__navigation__inner {
	padding: 28.57vw 9.52vw 0;
}

.l-global-navigation__list {

}

.l-global-navigation__list-item:not(:last-child) {
	margin-bottom: 30px;
}

.l-global-navigation__list-item a {
	display: flex;
	align-items: baseline;
	color: var(--white);
	letter-spacing: .15rem;
}

.l-global-navigation__list-item__num {
	font-family: var(--en);
	font-size: 1.2rem;
	margin-right: 7px;
}

.l-global-navigation__list-item__en {
	font-family: var(--en);
	font-size: 2.8rem;
	text-transform: uppercase;
}

.l-global-navigation__list-item__ja {
	font-size: 1rem;
	margin-left: 10px;
}


.l-global-navigation__reserve {
	margin-top: 60px;
}

.l-global-navigation__reserve__button {
	display: block;
	width: 100%;
}

.l-global-navigation__reserve__button a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 50px;
	color: var(--white);
    font-size: 1.4rem;
    letter-spacing: .25rem;
	line-height: 50px;
	text-align: center;
	padding: 0 20px;
	background: var(--text_color);
	border-radius: 7px;
}

.l-global-navigation__reserve__button__ja {
	
}

.l-global-navigation__reserve__button__en {
	font-family: var(--en);
	font-size: 1rem;
	text-transform: uppercase;
}

.l-global-navigation__sns {
	margin-top: 40px;
}

.l-global-navigation__sns .c-sns__list-item svg {
	fill: var(--white);
}

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

	.l-header__navigation {
		display: flex;
		flex-flow: row-reverse;
	}

	.l-header__navigation__inner {
		width: 50%;
		padding: 10vw 7.14vw;
	}

	.l-header__navigation__bg {
		width: 50%;
		height: 100%;
		background: url(./img/room/etc/etc_8.jpg);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
	}
	
	.l-global-navigation__list-item__num {
		font-size: 1.6rem;
	}
	
	.l-global-navigation__list-item__en {
		font-size: 3.6rem;
	}
	
	.l-global-navigation__list-item__ja {
		font-size: 1.4rem;
	}
	
	.l-global-navigation__reserve__button a {
		max-width: 22.86vw;
		font-size: 1.6rem;
	}

	.l-global-navigation__reserve__button__en {
		font-size: 1.2rem;
	}
	
	.l-global-navigation__sns .c-sns__list {
		justify-content: flex-start;
	}
		
}

/* Common Style
========================================================================== */

/* -----
	SNS List
------------------------------ */

.c-sns__list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.c-sns__list-item a {
	display: block;
}

.c-sns__list-item a svg {
	fill: var(--text_color);
	height: 20px;
}

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

	.c-sns__list-item a svg {
		height: 25px;
	}
	
}

/* Button Style
========================================================================== */

/* -----
	More Button
------------------------------ */

.c-button__more {
	max-width: 57.14vw;
	margin: 0 auto;
}

.c-button__more a {
	position: relative;
	display: block;
	height: 50px;
	font-size: 1.4rem;
	letter-spacing: .25rem;
	text-align: center;
	line-height: 50px;
}

.c-button__more a::after {
	content: '';
	position: absolute;
	width: 50px;
	height: 1px;
	right: 0;
	top: 50%;
	transform: translateX(50%);
}

.c-button__more__white a {
	color: var(--white);
	border: solid 1px var(--white);
}

.c-button__more__white a::after {
	background: var(--white);
}

.c-button__more__black a {
	color: var(--black);
	border: solid 1px var(--black);
}

.c-button__more__black a::after {
	background: var(--black);
}

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

	.c-button__more a {
		max-width: 22.86vw;
		font-size: 1.6rem;
		margin: 0 auto;
	}
	
}

/* Main
========================================================================== */

.l-main {
	position: relative;
	overflow: hidden;
}

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

/* -----
	Common
------------------------------ */

.c-text__basic {
	font-size: 1.4rem;
    line-height: 1.75;
	letter-spacing: .15rem;
}

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

	.c-text__basic {
		font-size: 1.6rem;
	}	

}

/* -----
	Multiply Bg
------------------------------ */

.c-bg {
	position: relative;
}

.c-bg::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	mix-blend-mode: multiply;
	top: 0;
	left: 0;
	z-index: -1;
}

.c-bg__red::before {
	background: var(--red);
}

.c-bg__black::before {
	background: var(--black);
}

/* -----
	Gold Frame
------------------------------ */

.c-gold__frame {
	position: relative;
}

.c-gold__frame::before {
	content: '';
	position: absolute;
	background: url(./img/texture/gold_texture.jpg);
	background-repeat: repeat;
	background-size: 50%;
	border-radius: 2px;
	top: -5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
	z-index: -1;
}

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

	.c-gold__frame::before {
		background-size: 25%;
	}

}

/* Top
========================================================================== */

/* -----
	Main Visual
------------------------------ */

.l-top__mv {
	position: relative;
	color: var(--white);
	padding: 28.57vw 7.14vw 19.05vw;
	overflow: hidden;
}

.l-top__mv__slide {
	position: relative;
}

.l-top__mv__slide__image-item {
	position: relative;
	width: 100%;
	border-radius: 14px;
	overflow: hidden;
}

.l-top__mv__slide__image-item img {
	max-width: 100%;
	object-fit: cover;
}

.l-top__mv__copy {
	font-size: 1.8rem;
	writing-mode: vertical-rl;
	letter-spacing: .5rem;
	line-height: 2.25;
	margin: 9.52vw auto 0;
}

.en .l-top__mv__copy {
	writing-mode: initial;
	text-align: center;
	letter-spacing: normal;
	line-height: 2;
}

.l-top__mv__bg-text {
	position: absolute;
	font-family: var(--en);
	font-size: 18rem;
	letter-spacing: 1rem;
	bottom: 57.14vw;
	white-space: nowrap;
	left: 14.29vw;
	mix-blend-mode: soft-light;
	pointer-events: none;
}

.l-top__mv__scroll {
	position: absolute;
	bottom: -25%;
	right: 20px;
}
  
.l-top__mv__scroll span {
	position: absolute;
	color: var(--white);
	font-family: var(--en);
	font-size: 1.5rem;
	letter-spacing: .5rem;
	text-transform: uppercase;
	writing-mode: vertical-rl;
	top: calc(-75px - 10px);
	transform: translate(-50%, -100%);
}

.l-top__mv__scroll::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: -2px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #fff;
	animation: circlemove 2.5s ease-in-out infinite, cirlemovehide 2.5s ease-out infinite;
}

.l-top__mv__scroll:after {
	content: '';
	width: 1px;
	height: 75px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: #fff;
}

@keyframes circlemove {
	0% {
		bottom: 75px;
	}
	100% {
		bottom: -5px;
	}
}

@keyframes cirlemovehide {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	80% {
		opacity: 0.9;
	}
	100% {
		opacity: 0;
	}
}

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

	.l-top__mv {
		display: flex;
		flex-flow: row-reverse;
		padding: 7.86vw 7.86vw;
	}
	
	.l-top__mv__slide {
		width: 55.71vw;
	}
	
	.l-top__mv__slide__image-item {
		aspect-ratio: 16 / 9;
	}
		
	.l-top__mv__copy {
		width: 28.57vw;
		font-size: 2.4rem;
		padding-right: 5.71vw;
		margin: 2.86vw auto 0;
	}

	.en .l-top__mv__copy {
		margin: 7.14vw auto 0;
	}	
	
	.l-top__mv__bg-text {
		font-size: 28rem;
		bottom: -5.71vw;
		left: 14.29vw;
	}
	
	.l-top__mv__scroll {
		position: absolute;
		bottom: -10%;
		right: 40px;
	}
	  
}
  
/* -----
	Section Common
------------------------------ */

.l-section {

}

.l-section__head {
	text-align: center;
	letter-spacing: .25rem;
	margin-bottom: 9.52vw;
}

.l-section__head__en {
	font-size: var(--en);
	font-size: 3.6rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .75rem;
	margin-right: -.75rem;
}

.l-section__head__ja {
	font-size: 1.4rem;
	font-weight: 500;
	margin-right: -.25rem;
}

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

	.l-section__head {
		margin-bottom: 4.29vw;
	}
	
	.l-section__head__en {
		font-size: 4.8rem;
	}
	
	.l-section__head__ja {
		font-size: 1.6rem;
	}
	
}

/* -----
	About Section
------------------------------ */

.l-section__about {
	position: relative;
	padding: 19.05vw 0;
	overflow: hidden;
}

.l-section__about__inner {
	padding: 0 7.14vw;
}

.l-section__about__detail {

}

.l-section__about__head {
	text-align: center;
	letter-spacing: .5rem;
	margin-bottom: 10px;
}

.l-section__about__head__sub {
	font-size: 2rem;
	font-weight: 500;
	margin-bottom: 7px;
}

.l-section__about__head__main {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: var(--key_color);
	font-size: 4.2rem;
	font-weight: 700;
}

.l-section__about__head__main__point {
	color: var(--text_color);
	font-size: 1.6rem;
	font-weight: 500;
}

.l-section__about__head__info {
	font-size: 1.2rem;
	font-weight: 500;
	text-align: center;
	letter-spacing: .25rem;
	margin-bottom: 40px;
}

.l-section__about .c-text__basic {
	padding: 0 7.14vw;
}

.l-section__about .c-text__basic:not(:last-child) {
	margin-bottom: 15px;
}

.l-section__about__image {
	position: relative;
}

.l-section__about__image__slide {
	margin-top: 14.29vw;
}

.l-section__about__image__slide-item {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	border: solid 5px var(--text_color);
	border-radius: 50%;
	overflow: hidden;
	box-shadow: inset 15px 25px 25px rgba(0,0,0,.5),inset -15px -25px 25px rgba(0,0,0,.5);
}

.l-section__about__image__slide-item::before, .l-section__about__image__slide-item::after {
	content: '';
	position: absolute;
	background: var(--text_color);
	z-index: 1;
}

.l-section__about__image__slide-item::before {
	width: 100%;
	height: 5px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.l-section__about__image__slide-item::after {
	width: 5px;
	height: 100%;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.l-section__about__image__slide-item img {
	position: absolute;
	width: auto;
	max-width: none;
	height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

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

	.l-section__about {
		padding: 5.71vw 0;
	}
	
	.l-section__about__inner {
		display: flex;
		align-items: center;
		flex-flow: row-reverse;
		padding: 0 7.86vw;
	}
	
	.l-section__about__detail {
		width: 50%;
	}
	
	.l-section__about__head__sub {
		font-size: 2.4rem;
	}
	
	.l-section__about__head__main {
		font-size: 4.8rem;
	}
	
	.l-section__about__head__main__point {
		font-size: 2rem;
	}
	
	.l-section__about__head__info {
		font-size: 1.8rem;
	}

	.l-section__about__head__info {
		margin-bottom: 60px;
	}	
	
	.l-section__about .c-text__basic {
		padding: 0 7.86vw;
	}
	
	.l-section__about__image {
		width: 50%;
	}
	
	.l-section__about__image__slide {
		margin-top: 0;
	}
		
}

/* -----
	Room Section
------------------------------ */

.l-section__room {
	position: relative;
	padding: 19.05vw 0;
}

.l-section__room__inner {
	padding: 0 7.14vw;
}

.l-section__room .l-section__head {
	color: var(--white);
}

.l-section__room__list {

}

.l-section__room__list-item {
	position: relative;
}

.l-section__room__list-item:not(:last-child) {
	margin-bottom: 40px;
}

.l-section__room__list-item__photo {
	position: relative;
	width: 100%;
	aspect-ratio: 5 / 4;
	border-radius: 7px;
	overflow: hidden;
}

.l-section__room__list-item__photo img {
	position: absolute;
	width: auto;
	max-width: none;
	height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.l-section__room__list-item__detail__head {
	position: absolute;
	width: 66.67vw;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--white);
	font-weight: 500;
	letter-spacing: .25rem;
	padding: 5px 20px 5px 25px;
	background: var(--key_color);
	border-radius: 7px;
	bottom: 20px;
	left: -10px;
}

.l-section__room__list-item__detail__head::before {
	content: '';
	position: absolute;
	width: 5px;
	height: calc(100% - 10px);
	background: url(./img/texture/gold_texture.jpg);
	background-repeat: repeat;
	background-size: cover;
	border-radius: 2px;
	top: 50%;
	left: 7px;
	transform: translateY(-50%);
}

.l-section__room__list-item__detail__name__head {
	font-size: 1.8rem;
}

.l-section__room__list-item__detail__name__desc {
	font-size: 1rem;
}

.l-section__room .c-button__more {
	margin-top: 14.29vw;
}

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

	.l-section__room {
		padding: 5.71vw 0;
	}
	
	.l-section__room__inner {
		padding: 0 7.86vw;
	}
	
	.l-section__room__list {
		display: flex;
		gap: 40px;
	}
	
	.l-section__room__list-item {
		width: calc((100% - 40px) / 3);
	}
	
	.l-section__room__list-item:not(:last-child) {
		margin-bottom: 0;
	}
			
	.l-section__room__list-item__detail__head {
		width: 17.14vw;
	}
		
	.l-section__room__list-item__detail__name__head {
		font-size: 1.8rem;
	}
	
	.l-section__room__list-item__detail__name__desc {
		font-size: 1.1rem;
	}
	
	.l-section__room .c-button__more {
		margin-top: 4.29vw;
	}
	
}

/* -----
	News Section
------------------------------ */

.l-section__news {
	position: relative;
	padding: 19.05vw 0;
}

.l-section__news__inner {
	padding: 0 7.14vw;
}

.l-section__news__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	row-gap: 40px;
	column-gap: 20px;
}

.l-section__news__list-item {
	flex-basis: calc((100% - 20px) / 2);
}

.l-section__news__list-item__thumb {
	border-radius: 7px;
	overflow: hidden;
}

.l-section__news__list-item__head {
	color: var(--text_color);
	font-size: 1.3rem;
	line-height: 1.75;
	letter-spacing: .15rem;
	margin-top: 10px;
}

.l-section__news__list-item__date {
	color: var(--text_color);
	font-size: 1rem;
	text-align: right;
	letter-spacing: .15rem;
	margin-top: 10px;
}

.l-section__news .c-button__more {
	margin-top: 14.29vw;
}

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

	.l-section__news {
		padding: 5.71vw 0;
	}
	
	.l-section__news__inner {
		padding: 0 7.86vw;
	}
	
	.l-section__news__list {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		row-gap: 40px;
		column-gap: 20px;
	}
	
	.l-section__news__list-item {
		flex-basis: calc((100% - 40px) / 3);
	}
	
	.l-section__news__list-item__head {
		font-size: 1.5rem;
	}
		
	.l-section__news .c-button__more {
		margin-top: 4.29vw;
	}
	
}

/* -----
	News Section
------------------------------ */

.l-section__map iframe {
	width: 100%;
	height: 300px;
}

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

	.l-section__map iframe {
		height: 400px;
	}	

}

/* Footer
========================================================================== */

.l-footer {
	padding: 19.05vw 0 4.76vw;
}

.l-footer__row {

}

.l-footer__row__box {

}

.l-footer__logo {
	text-align: center;
	margin-bottom: 9.52vw;
}

.l-footer__logo img {
	fill: var(--text_color);
	height: 65px;
	margin: 0 auto;
}

.l-footer__info {
	text-align: center;
	line-height: 1.75;
	margin-top: 60px;
}

.l-footer__info__address {
	font-size: 1.3rem;
	letter-spacing: .15rem;
	margin-bottom: 10px;
}

.l-footer__info__contact {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 7px;
	font-family: var(--en);
	font-size: 2rem;
	letter-spacing: .15rem;
}

.l-footer__info__contact__label {
	font-size: 1.2rem;
	text-transform: uppercase;
}

.l-footer-navigation {
	margin-top: 60px;
}

.l-footer-navigation__list {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.l-footer-navigation__list-item {

}

.l-footer-navigation__list-item a {
	color: var(--text_color);
	font-family: var(--en);
	font-size: 1.2rem;
	letter-spacing: .15rem;
	text-transform: uppercase;
}

.l-footer__sns {
	margin-top: 30px;
}

.l-footer__bottom {

}

.l-footer__bottom__box {

}

.l-footer__link {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 60px;
}

.l-footer__link__list a {
	color: var(--text_color);
	font-size: 1rem;
	letter-spacing: .15rem;
	text-transform: uppercase;
	text-decoration: underline;
}

.l-footer__copy {
	text-align: center;
	margin-top: 40px;
}

.l-footer__copy__text {
	font-size: 1rem;
	letter-spacing: .15rem;
}

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

	.l-footer {
		padding: 4.29vw 7.86vw;
	}
	
	.l-footer__row {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
	}
	
	.l-footer__row__box {
		width: 50%;
	}
	
	.l-footer__logo {
		text-align: left;
		margin-bottom: 40px;
	}
	
	.l-footer__logo img {
		margin: 0;
	}
	
	.l-footer__info {
		text-align: left;
		margin-top: 40px;
	}
	
	.l-footer__info__address {
		font-size: 1.2rem;
		margin-bottom: 5px;
	}

	.l-footer__info__contact {
		justify-content: flex-start;
		font-size: 1.3rem;
	}
	
	.l-footer__info__contact__label {
		font-size: 1.2rem;
		text-transform: uppercase;
	}
	
	.l-footer-navigation {
		margin-top: 0;
	}
	
	.l-footer-navigation__list {
		justify-content: flex-end;
	}
		
	.l-footer-navigation__list-item a {
		font-size: 1.4rem;
	}
	
	.l-footer__sns .c-sns__list {
		justify-content: flex-end;
	}
	
	.l-footer__bottom {
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		margin-top: 60px;
	}
	
	.l-footer__bottom__box {
		width: 50%;
	}
	
	.l-footer__link {
		justify-content: flex-start;
		margin-top: 0;
	}
		
	.l-footer__copy {
		text-align: right;
		margin-top: 0;
	}
					
}

/* Page
========================================================================== */

.l-page {
	position: relative;
}

.l-page__head {
	position: relative;
	padding: 33.33vw 0 19.05vw;
	overflow: hidden;
}

.l-page__head::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0,0,0,.5);
	z-index: -1;
}

.l-page__head img {
	position: absolute;
	max-width: none;
	height: 110%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: -2;
}

.l-page__head__inner {
	padding: 0 7.14vw;
}

.l-page__head__headline {
	color: var(--white);
	text-align: center;
	letter-spacing: .5rem;
}

.l-page__head__headline__en {
	font-family: var(--en);
	font-size: 4.2rem;
	font-weight: 500;
	text-transform: uppercase;
}

.l-page__head__headline__ja {
	font-size: 1.4rem;
	font-weight: 500;;
	margin-top: 10px;
}

.l-page__content {}

.l-page__content__basic {
	padding: 19.05vw 0;
}

.l-page__content__basic__inner {
	padding: 0 7.14vw;
}

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

	.l-page__head {
		position: relative;
		padding: 10vw 0 5.71vw;
	}
		
	.l-page__head img {
		width: 100%;
		height: auto;
	}
	
	.l-page__head__inner {
		padding: 0 7.86vw;
	}
	
	.l-page__head__headline__en {
		font-size: 7.2rem;
	}
	
	.l-page__head__headline__ja {
		font-size: 1.8rem;
	}
	
	.l-page__content__basic {
		padding: 8.57vw 0;
	}
	
	.l-page__content__basic__inner {
		padding: 0 25.71vw;
	}
	
}

/* Room Page
========================================================================== */

.l-page__content__room {
	padding: 19.05vw 7.14vw;
}

.l-page__content__room__list:not(:last-child) {
	margin-bottom: 120px;
}

.l-page__content__room__list__image {
	margin-top: 40px;
}

.c-slider__slide {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
}

.l-page__content__room__list__detail {
	color: var(--white);
}

.l-page__content__room__list__detail__inner {

}

.l-page__content__room__list__detail__name {
	font-size: 2.8rem;
	font-weight: 500;
	letter-spacing: 1rem;
	writing-mode: vertical-rl;
	margin: 0 auto;
}

.l-page__content__room__list__detail__sub::before {
	display: block;
	content: '';
	width: 50px;
	height: 5px;
	background: url(./img/texture/gold_texture.jpg);
	background-repeat: repeat;
	background-size: cover;
	border-radius: 2px;
	margin: 20px auto;
}

.l-page__content__room__list__detail__sub {
	font-size: 1.2rem;
	font-weight: 500;
	text-align: center;
	letter-spacing: .25rem;
}

.l-page__content__room__list__detail__desc {
	margin-top: 40px;
}

.l-page__content__room__info {
	color: var(--white);
	padding: 19.05vw 7.14vw;
}

.l-page__content__room__info__inner {

}

.l-page__content__room__info__box:not(:last-child) {
	margin-bottom: 80px;
}

.l-page__content__room__info__head::before {
	position: absolute;
	content: '';
	width: 75px;
	height: 1px;
	top: 0;
	left: 0;
	background: var(--white);
}

.l-page__content__room__info__head {
	position: relative;
	display: flex;
	font-weight: 500;
	align-items: baseline;
	gap: 15px;
	padding-top: 40px;
	margin-top: 40px;
}

.l-page__content__room__info__head__en {
	font-family: var(--en);
	font-size: 2.8rem;
	letter-spacing: .15rem;
	text-transform: uppercase;
}

.l-page__content__room__info__head__ja {
	font-size: 1.2rem;
	letter-spacing: .25rem;
}

.l-page__content__room__info__head__sub {
	display: flex;
	align-items: center;
	gap: 7px;
	position: relative;
	font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: .25rem;
    padding: 5px 20px 5px 15px;
	margin: 40px 0 10px;
}

.l-page__content__room__info__head__sub::before {
    content: '';
    position: absolute;
    width: 5px;
    height: calc(100% - 10px);
    background: url(./img/texture/gold_texture.jpg);
    background-repeat: repeat;
    background-size: cover;
    border-radius: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.l-page__content__room__info__head__sub__label {
	font-size: 1rem;
	padding: 2px 14px;
	background: var(--key_color);
	border-radius: 14px;
}

.l-page__content__room__info__list {
	display: flex;
	flex-wrap: wrap;
	row-gap: 15px;
}

.l-page__content__room__info__list li {
	width: 50%;
}
.l-page__content__room__info__list li::before {
	content: "▶︎";
	font-size: 1rem;
	margin-right: 7px;
}

.l-page__content__room__info__note {
	margin-top: 10px;
}

.l-page__content__room__info__time {
	font-family: var(--en);
	font-size: 2.4rem;
    font-weight: 500;
	margin-top: 10px;
}

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

	.l-page__content__room {
		padding: 5.71vw 7.86vw;
	}
	
	.l-page__content__room__list {
		display: flex;
		align-items: center;
		gap: 5.71vw;
	}
		
	.l-page__content__room__list:nth-child(2n) {
		flex-flow: row-reverse;
	}
		
	.l-page__content__room__list__image {
		width: 50%;
		margin-bottom: 40px;
	}

	.l-page__content__room__list__detail__inner {
		padding: 0 2.86vw;
	}
	
	.l-page__content__room__list__detail__name {
		font-size: 3.6rem;
	}
		
	.l-page__content__room__list__detail__sub {
		font-size: 1.6rem;
	}
		
	.l-page__content__room__info {
		padding: 5.71vw 7.86vw;
	}
	
	.l-page__content__room__info__inner {
		display: flex;
		gap: 5.71vw;
	}
	
	.l-page__content__room__info__box {
		width: calc(100% / 3);
	}
	
	.l-page__content__room__info__box:not(:last-child) {
		margin-bottom: 0;
	}
		
	.l-page__content__room__info__head {
		position: relative;
		display: flex;
		font-weight: 500;
		align-items: baseline;
		gap: 15px;
		padding-top: 40px;
		margin-top: 40px;
	}

	.l-page__content__room__info__head:first-child {
		margin-top: 0;
	}
		
}

/* Single
========================================================================== */

.l-single {
	position: relative;
}	

.l-single__contet {

}

.l-single__head {
	padding: 33.33vw 0 19.05vw;
}

.l-single__head__inner {
	padding: 0 7.14vw;
}

.l-single__head__date {
	font-family: var(--en);
	font-size: 1.2rem;
	margin-bottom: 10px;
}

.l-single__head__headline {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.75;
	margin-bottom: 30px;
}

.l-single__head__thumb {
	border-radius: 14px;
	overflow: hidden;
}

.l-single__content__post {

}

.l-single__content__post__inner {
	padding: 0 7.14vw;
}

.l-single__prev-next {
	display: flex;
	padding: 0 7.14vw;
	margin-top: 60px;
}

.l-single__prev-next__link {
	width: 50%;
	border-top: solid 1px var(--text_color);
	border-bottom: solid 1px var(--text_color);
}

.l-single__prev-next__link a {
	display: block;
	color: var(--text_color);
	font-size: 1.3rem;
	padding: 28px 10px;
}

.l-single__prev-next__link:last-child {
	text-align: right;
	border-left: solid 1px var(--text_color);
}

.l-single__back {
	padding: 0 7.14vw;
	margin-top: 40px;
}

.l-single__back__link a {
	display: block;
	color: var(--white);
	font-size: 1.3rem;
	text-align: center;
	padding: 28px 0;
	background: var(--text_color);
}

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

	.l-single {
		display: flex;
		gap: 5.71vw;
		padding: 12.86vw 7.86vw;
	}	
	
	.l-single__contet {
		width: 54.29vw;
	}
	
	.l-single__head {
		padding: 0;
		margin-bottom: 5.71vw;
	}
	
	.l-single__head__inner {
		padding: 0;
	}
	
	.l-single__head__date {
		font-size: 1.5rem;
	}
	
	.l-single__head__headline {
		font-size: 2.4rem;
	}
	
	.l-single__content__post__inner {
		padding: 0;
	}
	
	.l-single__prev-next {
		padding: 0;
	}
	
	.l-single__back {
		padding: 0;
	}
	
}

/* Sidebar
========================================================================== */

.l-sidebar {
	margin-top: 60px;
}

.l-sidebar__widget {
	padding: 0 7.14vw;
	margin-bottom: 60px;
}

.lsidebar__widget__head {
	position: relative;
    font-size: 1.6rem;
    font-weight: 500;
    padding: 14px 7px;
    border-bottom: solid 1px var(--text_color);
    margin-bottom: 20px;
}

.l-sidebar__archive {

}

.l-sidebar__archive-item a {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.l-sidebar__archive-item:not(:last-child) {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: solid 1px var(--text_color);
}

.l-sidebar__archive-item__thumb {
	max-width: 125px;
	border-radius: 14px;
	overflow: hidden;
}

.l-sidebar__archive-item__detail {
	letter-spacing: .25rem;
}

.l-sidebar__archive-item__detail__head {
	color: var(--text_color);
	font-size: 1.3rem;
	font-weight: 500;
}

.l-sidebar__archive-item__detail__date {
	color: var(--text_color);
	font-family: var(--en);
	text-align: right;
	margin-top: 7px;
}

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

	.l-sidebar {
		width: 24.29vw;
		margin-top: 0;
	}
	
	.l-sidebar__widget {
		padding: 0;
		margin-bottom: 60px;
	}
		
	.l-sidebar__archive-item a {
		display: flex;
		align-items: flex-start;
		gap: 15px;
	}
	
}

/* Archive
========================================================================== */

.l-archive {
	padding: 14.29vw 7.14vw;
}

.l-archive__news__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	row-gap: 40px;
	column-gap: 20px;
}

.l-archive__news__list-item {
	flex-basis: calc((100% - 20px) / 2);
}

.l-archive__news__list-item__thumb {
	border-radius: 7px;
	overflow: hidden;
}

.l-archive__news__list-item__head {
	color: var(--text_color);
	font-size: 1.3rem;
	line-height: 1.75;
	letter-spacing: .15rem;
	margin-top: 10px;
}

.l-archive__news__list-item__date {
	color: var(--text_color);
	font-size: 1rem;
	text-align: right;
	letter-spacing: .15rem;
	margin-top: 10px;
}

/* -----
	Pager
------------------------------ */

.l-post__archive__list__pager {
	display: flex;
    justify-content: center;
	gap: 7px;
	margin-top: 14.29vw;
}

.l-post__archive__list__pager a, .l-post__archive__list__pager span {
    display: block;
    width: 40px;
    height: 40px;
	color: var(--text_color);
	font-family: var(--en);
    font-size: 1.2rem;
    line-height: 40px;
    text-align: center;
	border: solid 1px var(--text_color);
    border-radius: 14px;
	cursor: pointer;
}

.l-post__archive__list__pager span.dots {
    display: block;
    width: auto;
    height: auto;
	border: none;
    border-radius: 14px;
	cursor: pointer;
}

.l-post__archive__list__pager span.current {
	color: var(--white);
    background: var(--text_color);
}

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

	.l-archive {
		padding: 5.71vw 7.86vw;
	}
	
	.l-archive__news__inner {
		padding: 0 7.86vw;
	}
	
	.l-archive__news__list {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		row-gap: 40px;
		column-gap: 20px;
	}
	
	.l-archive__news__list-item {
		flex-basis: calc((100% - 40px) / 3);
	}
	
	.l-archive__news__list-item__head {
		font-size: 1.5rem;
	}
		
	.l-post__archive__list__pager {
		margin-top: 5.71vw;
	}

}

/* Entry
========================================================================== */

.l-entry h2, .l-entry h3, .l-entry h4,
.l-entry h5, .l-entry h6 {
	line-height: 1.75;
	letter-spacing: .15rem;
}

.l-entry h2 {
	position: relative;
	font-size: 1.8rem;
	font-weight: 500;
	padding: 14px 7px;
	margin: 60px 0 40px;
	border-top: solid 1px var(--text_color);
	border-bottom: solid 1px var(--text_color);
}

.l-entry h2:first-child {
	margin: 0 0 40px;
}

.l-entry h3 {
	position: relative;
	font-size: 1.6rem;
	font-weight: 500;
	padding: 14px 7px;
	border-bottom: solid 1px var(--text_color);
	margin: 60px 0 40px;
}

.l-entry h3::after {
	position: absolute;
	content: '';
	height: 2px;
	width: 28vw;
	background: var(--text_color);
	left: 0;
	bottom: -1.5px;
}

.l-entry h4 {
	font-size: 1.5rem;
	font-weight: 500;
	padding: 7px 14px;
	border-left: solid 1px var(--text_color);
}

.l-entry h5, .l-entry h6 {
	font-size: 1.5rem;
	font-weight: 500;
	margin: 40px 0 40px;
}

.l-entry p {
	font-size: 1.4rem;
	font-weight: 400;
	letter-spacing: .15rem;
	margin-bottom: 40px;
}

.l-entry a {
	font-weight: 500;
}

.l-entry strong {
	position: relative;
	border-bottom: solid 1px var(--key_color);
}

.l-entry ul, .l-entry ol {
	font-size: 1.4rem;
	line-height: 2;
	letter-spacing: .15rem;
	padding: 0 0 0 20px;
	margin: 40px 0;
}

.l-entry ul {
	list-style: disc;
}

.l-entry ol {
	list-style: decimal;
}

.l-entry ul ul,
.l-entry ol ol,
.l-entry ul ol,
.l-entry ol ul {
	background: none;
	border: none;
	padding: 10px 0 10px 20px;
	margin: 0;
}

.l-entry table {
    width: 100%;
	font-size: 1.4rem;
	margin: 40px 0;
}

.l-entry th, .l-entry td {
	display: block;
	width: 100%;
    text-align: center;
    padding: 15px;
}

.l-entry th {
	background-color: var(--bg_color);
	color: var(--text_color);
}

.l-entry blockquote {
	position: relative;
	font-size: 1.4rem;
	font-style: italic;
	line-height: 2;
}

.l-entry blockquote p {
	margin: 0;
}

.l-entry p img,
.l-entry figure img {
	border-radius: 14px;
}

.l-entry figure {
	margin-bottom: 40px;
}

.l-entry figcaption {
	color: var(--line_color);
	font-size: 1rem;
	line-height: 1.5;
	text-align: center;
	margin: 5px 0 0;
}

.l-entry p a + img {
	display: inline-block;
}

.l-entry .item__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.l-entry .item__list iframe {
	width: 50%;
	margin: 15px;
}

.quote__en {
	font-weight: 500;
	font-style: italic;
}

.quote__en .translation {
	display: block;
	font-size: 1.4rem;
	margin-top: 10px;
}

.quote__author, .quote__link {
	text-align: right;
	font-size: 1.4rem;
	font-weight: 500;
	font-style: italic;
	margin-top: 15px;
}

.quote__author__name__en {
	font-style: italic;
}

.quote__author__name__en .translation {
	font-size: 1.2rem;
	margin-left: 5px;
}

.l-entry iframe {
	width: 100%;
	max-width: 100%;
}

.l-entry .video {
	position: relative;
	height: 0;
	padding: 30px 0 56.25%;
	overflow: hidden;
	margin-bottom: 40px;
}

.l-entry .video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

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

	.l-entry h2 {
		font-size: 2rem;
	}
	
	.l-entry h3 {
		font-size: 1.8rem;
	}
	
	.l-entry h4 {
		font-size: 1.6rem;
	}
	
	.l-entry h5, .l-entry h6 {
		font-size: 1.6rem;
	}
	
	.l-entry p {
		font-size: 1.4rem;
	}
	
	.l-entry ul, .l-entry ol {
		font-size: 1.5rem;
	}
	
	.l-entry table {
		display: table;
		width: 100%;
	}
		
	.l-entry table tr {
		display: table-row;
		width: 100%;
	}

	.l-entry th, .l-entry td {
		display: table-cell;
		width: auto;
		text-align: center;
		padding: 15px;
		border: solid 1px #e1e1e1;
	}

	.l-entry th {
		width: 30%;
	}

}

/* Contact
========================================================================== */
	
.l-contact__form {
	padding: 0 7.14vw;
}

.l-contact__form .form__row {
	position: relative;
	margin-bottom: 20px;
}

.l-contact__form .form__row label {
	display: block;
	color: var(--text_color);
    font-size: 1.5rem;
	line-height: 1.5;
    padding: 0.25em 0;
    background: transparent;
	margin-bottom: 10px;
}

.l-contact__form .form__row label .required {
	color: var(--red);
    font-size: 12px;
    font-size: 1.2rem;
	font-weight: 500;
	margin-left: 3px;
}

.l-contact__form input,
.l-contact__form textarea,
.l-contact__form select {
	position: relative;
	width: 100%;
    font-size: 1.5rem;
	padding: 10px;
	border: solid 1px var(--text_color);
	border-radius: 5px;
}

.l-contact__form .form__submit {
	text-align: center;
	margin-top: 40px;
}

.l-contact__form input[type="submit"] {
	width: auto;
	display: inline-block;
    font-size: 1.3rem;
    font-weight: 400;
	color: var(--text_color);
    padding: 13px 40px;
    border: solid 1px var(--text_color);
}

.l-contact__form .ajax-loader {
	display: none!important;
}

.l-contact__form + .wpcf7-response-output {
	color: var(--white);
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 700;
	text-align: center;
	background: var(--text_color);
	border: 0!important;
	padding: 20px 25px;
	margin: 0;
}

.l-contact__form .wpcf7-not-valid-tip {
	font-size: 12px;
	font-size: 1.2rem;
	font-weight: 500;
	margin-top: 5px;
}

.l-contact__form + .wpcf7-validation-errors {
	background: var(--red);
}

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

	.l-contact__form {
		padding: 0 25.71vw;
	}
	
}

/* Slider
========================================================================== */

.c-slider {
	position: relative;
}

.swiper-pagination {

}

.swiper-button-prev i, .swiper-button-next i {
	width: 30px;
	height: 30px;
	color: var(--white);
	font-size: 1.6rem;
	text-align: center;
	line-height: 30px;
	background: var(--key_color);
	border-radius: 50%;
}

.swiper-button-prev::after, .swiper-button-next::after {
	content: '';
}

.swiper-button-next {

}

.swiper-pagination-bullet {
	background: var(--white);
}

.swiper-pagination-bullet-active {
	background: var(--key_color);
}

