@charset "utf-8";
/*1.共通設定
=====================================*/
:root {
  --primary-color: #121212;
  --primary-font-family: "Quicksand", ".zen-kaku-gothic-new-regular", YuGothic, "游ゴシック体", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Helvetica Neue", HelveticaNeue,  Verdana, "メイリオ", Meiryo, sans-serif;
  --font-family-en: "EB Garamond", serif;
  --font-family-jp: "Shippori Mincho", serif;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  --color01: #b29e66;
  --color02: #92a1b1;
  --color03: #20303f;
  --font-letter01: 0.15em;
  --lead-line-height: 2.4;
  --catch-line-height: 1.8;
  --normal-line-height: 1.6;
  --ttl-line-height: 1.4;
  --cont_inline-m: 50px;
  --cont_inline-ml: 100px;
  --cont_inline-l: 150px;
  --cont_inline-ll: 200px;
  --cont_block-m: 50px;
  --cont_block-ml: 100px;
  --cont_block-l: 150px;
  --cont_block-ll: 200px;
}
@media screen and (max-width: 1200px) {
  :root {
    --cont_inline-m: 30px;
    --cont_inline-ml: 60px;
    --cont_inline-l: 90px;
    --cont_inline-ll: 120px;
    --cont_block-m: 30px;
    --cont_block-ml: 60px;
    --cont_block-l: 90px;
    --cont_block-ll: 120px;
  }
}
@media screen and (max-width: 960px) {
  :root {
    --cont_inline-m: 30px;
    --cont_inline-ml: 30px;
    --cont_inline-l: 30px;
    --cont_inline-ll: 30px;
  }
}
@media screen and (max-width: 769px) {
  :root {
    --cont_inline-m: 20px;
    --cont_inline-ml: 20px;
    --cont_inline-l: 20px;
    --cont_inline-ll: 20px;
    --cont_block-m: 25px;
    --cont_block-ml: 40px;
    --cont_block-l: 55px;
    --cont_block-ll: 70px;
  }
}

* {
  color: var( --color03 );
}
html {
  font-size: 62.5%;
}
body {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: var(--primary-font-family);
  font-feature-settings : "palt";
  letter-spacing: 0.1em;
  font-weight: var(--font-weight-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-display: swap;
  line-height: 2.2;
  position: relative;
  background: url( "../images/bg_fix.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
body.fixed {
	position: fixed;
	overflow: hidden;
	width: 100%;
	height: 100%;
	left: 0;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}
img {
  border: 0;
  vertical-align: bottom;
}
a {
  color: var( --color03 );
}
@media screen and (max-width: 1200px) {
  img {
    max-width: 100%;
    height: auto;
  }
  a:hover > img {
    opacity: 1;
  }
}
b, strong {
  font-weight: var( --font-weight-bold );
}

/*2.レイアウト
======================================*/
/* ====================================
Layout
====================================== */
/* CSS animation */
.-fadein {
  opacity: 0;  
}
.-translete {
  opacity: 0;  
  transform : translate(0, -20px);
}
.-blur {
  opacity: 0;  
}
.fv-fadein {  
  opacity: 0;
  animation: fadeIn 0.8s ease-in-out 1.5s forwards;
}
.fv-translete {  
  opacity: 0;
  animation: translete 0.8s ease-in-out 1.5s forwards;
}
.fv-blur {  
  opacity: 0;
  animation: blur 0.8s ease-in-out 1.5s forwards;
}
.js-effect__fade {
  animation: fadeIn 1s ease-in-out 0.5s forwards;
}
.effect-group div:nth-of-type(2).js-effect__fade,
.effect-group > div:nth-of-type(2) .js-effect__fade{
  animation: fadeIn 1s ease-in-out 1.0s forwards;
}
.effect-group div:nth-of-type(3).js-effect__fade,
.effect-group > div:nth-of-type(3) .js-effect__fade {
  animation: fadeIn 1s ease-in-out 1.5s forwards;
}
.effect-group div:nth-of-type(4).js-effect__fade,
.effect-group > div:nth-of-type(4) .js-effect__fade {
  animation: fadeIn 1s ease-in-out 2.0s forwards;
}
.effect-group div:nth-of-type(5).js-effect__fade,
.effect-group > div:nth-of-type(5) .js-effect__fade {
  animation: fadeIn 1s ease-in-out 2.5s forwards;
}
.effect-group div:nth-of-type(6).js-effect__fade,
.effect-group > div:nth-of-type(6) .js-effect__fade {
  animation: fadeIn 1s ease-in-out 3.0s forwards;
}
.js-effect__translete {
  animation: translete 1s ease-in-out 0.5s forwards;
}
.effect-group div:nth-of-type(2).js-effect__translete,
.effect-group > div:nth-of-type(2) .js-effect__translete {
  animation: translete 1s ease-in-out 1.0s forwards;
}
.effect-group div:nth-of-type(3).js-effect__translete,
.effect-group > div:nth-of-type(3) .js-effect__translete {
  animation: translete 1s ease-in-out 1.5s forwards;
}
.effect-group div:nth-of-type(4).js-effect__translete,
.effect-group > div:nth-of-type(4) .js-effect__translete {
  animation: translete 1s ease-in-out 2.0s forwards;
}
.effect-group div:nth-of-type(5).js-effect__translete,
.effect-group > div:nth-of-type(5) .js-effect__translete {
  animation: translete 1s ease-in-out 2.5s forwards;
}
.effect-group div:nth-of-type(6).js-effect__translete,
.effect-group > div:nth-of-type(6) .js-effect__translete {
  animation: translete 1s ease-in-out 3.0s forwards;
}
.js-effect__blur {
  animation: blur 1s ease-in-out 0.5s forwards;
}
.effect-group div:nth-of-type(2).js-effect__blur,
.effect-group > div:nth-of-type(2) .js-effect__blur {
  animation: blur 1s ease-in-out 1.0s forwards;
}
.effect-group div:nth-of-type(3).js-effect__blur,
.effect-group > div:nth-of-type(3) .js-effect__blur {
  animation: blur 1s ease-in-out 1.5s forwards;
}
.effect-group div:nth-of-type(4).js-effect__blur,
.effect-group > div:nth-of-type(4) .js-effect__blur {
  animation: blur 1s ease-in-out 2.0s forwards;
}
.effect-group div:nth-of-type(5).js-effect__blur,
.effect-group > div:nth-of-type(5) .js-effect__blur {
  animation: blur 1s ease-in-out 2.5s forwards;
}
.effect-group div:nth-of-type(6).js-effect__blur,
.effect-group > div:nth-of-type(6) .js-effect__blur {
  animation: blur 1s ease-in-out 3.0s forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes translete {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform : translate(0, 0);
  }
}
@keyframes blur {
  0% {
    opacity: 0;
    -ms-filter: blur(6px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    -ms-filter: blur(0);
    filter: blur(0);
  }
}

/*Layout*/
#l-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/*movie*/
.l-movie {
	width: 100vw;
	height: 100vh;
	position: relative;
	overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
}
.l-movie:before {
  position: absolute;
  content: "";
	width: 100vw;
	height: 100vh;
  background: url( "../images/bg_cover.png") repeat center center;
}
.l-movie__movie {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.l-start {
  z-index: 99999;
}
.l-start.is-visible {
  display: block;
}
.l-start p {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 100000;
	width: 145px;
}
.l-start p img {
	width: 100%;
	height: auto;
}
.l-bg {
  z-index: -1;
	display: block;
}
.l-bg p {
  display: none;
}

/* header */
.l-header {
  width: 100%;
  position: fixed;
  z-index: 9999;
  opacity: 0;
  animation: blur 1.0s ease-in-out 0.5s forwards;
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.l-header-logo {
  position: absolute;
  width: 145px;
  height: 100px;
  top: var(--cont_inline-m);
  left: var(--cont_inline-m);
  z-index: 1;
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  opacity: 1.0;
}
.l-header-logo.hidden {
  opacity: 0;
}
.l-header-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.l-header-info {
  position: fixed;
  top: 75px;
  right: var(--cont_inline-m);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.l-header-menu {
  width: 50px;
  height: 50px;  
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #d0bb84;
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.-transform .l-header-menu {
  top: 0;
  right: 0;
}
.l-header-tel {
  margin-right: 20px;
  width: 220px;
  height: 50px;
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  position: relative; 
}
.l-header-tel.hidden {
  opacity: 0;
}
.l-header-tel__inner {
	position: sticky !important;
	height: 100%;
}
.l-header-tel p {
  line-height: 1.0;
}
.l-header-tel__txt {
	font-size: 1.5rem;
	padding: 0 0 5px 0;
}
.l-header-tel__num {
	font-size: 2.8rem;
	padding: 0 0 0 20px;
  background: url( "../images/icon_tel_g.svg") no-repeat left bottom 4px;
  background-size: 15px auto;
}
.black * {
	color: #fff;
}
.black .l-header-tel__num {
  background: url( "../images/icon_tel_w.svg") no-repeat left bottom 4px;
  background-size: 15px auto;
}
.midnightInner {
	height: 100%;
	overflow: hidden !important;
}
.l-header-reservation {
  margin-right: 20px;
  width: 180px;
  height: 50px; 
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.l-header-reservation a {  
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 180px;
  height: 50px;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #fff;
  background: rgba(175,154,100,0.75);
  border-radius: 50px;
  text-decoration: none;
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.l-header-reservation a span {
  display: block;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
}
.l-header-reservation a:hover {  
  background: rgba(175,154,100,1);
}
@media screen and (max-width: 1200px) {
  .l-header-logo {
    width: 120px;
    height: auto;
  }
  .l-header-info {
    top: 45px;
  }
}
@media screen and (max-width: 960px) {
	.l-header-tel {
		margin: 10px 10px 0 0;
	  width: 190px;
	  height: 50px;
	}
	.l-header-tel__txt {
		font-size: 1.2rem;
	}
	.l-header-tel__num {
		font-size: 2.2rem;
	}
  .l-header-reservation {
    margin-right: 10px;
  }
}
@media screen and (max-width: 769px) {
  .l-header-logo {
    width: 90px;
  }
  .l-header-info {
    top: 30px;
    right: var(--cont_inline-m);
  }
  .l-header-tel {
	  margin: 0 10px 0 0;
    width: 40px;
    height: 40px; 
  }
	.l-header-tel.hidden {
	  opacity: 1;
	}
  .l-header-tel a {
  	display: block;
    width: 40px;
    height: 40px;
    border: 1px solid #d0bb84;
    border-radius: 50px;
	  background: url( "../images/icon_tel_g.svg") no-repeat center center;
	  background-size: 15px auto;
	  transition: all .5s;
	  -webkit-transition: .5s ease-in-out;
	  transition: .5s ease-in-out;
  }
  .l-header-menu {
    width: 40px;
    height: 40px; 
  }
  .l-header-reservation {
    width: 120px;
    height: 40px;
  }
  .l-header-reservation a {
    width: 120px;
    height: 40px;
    font-size: 1.2rem;
  }
	.l-header-reservation a span {
	  font-size: 1.0rem;
	}
}

/* footer */
.l-footer {
  background: rgba(0,0,0,0.70);
  background: rgba(18,10,10,0.85);
  position: relative;
  padding-top: 50px;
}
.l-footer__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.l-footer-nav {
  margin-bottom: 40px;
}
.l-footer-nav__ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}
.l-footer-nav__li a {
  font-size: 2.0rem;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: all .3s;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
.l-footer-nav__li a:before {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  opacity: 0;
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.l-footer-nav__li a:hover:before {
  opacity: 1.0;
}
.l-footer-resevation {
  margin-bottom: 40px;  
  margin-right: 20px;
  width: 180px;
  height: 50px; 
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.l-footer-resevation a {  
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 180px;
  height: 50px;
  font-size: 1.6rem;
  line-height: 1.3;
  color: #d6c18a;
  background: rgba(175,154,100,0.3);
  border-radius: 50px;
  text-decoration: none;
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.l-footer-resevation a span {
    display: block;
    font-size: 1.3rem;
    color: #d6c18a;
    text-align: center;
	transition: all .5s;
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}
.l-footer-resevation a:hover {  
  background: rgba(175,154,100,1);
  color: #fff;
}
.l-footer-resevation a:hover span {  
  color: #fff;
}
.l-footer-detail {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
}
.l-footer-outline * {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.6;
}
.l-footer-outline__tel {
  font-size: 2.0rem;
}
.l-footer-outline__tel span {
  font-size: 1.3rem;
}
.l-footer-outline__tel * {
  color: #fff;
}
.l-footer-insta {
  width: 44px;
  height: 44px;
}
.l-footer-insta a {
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.l-footer-insta a:hover {
  opacity: 0.6;
}
.l-footer-insta img {
  width: 100%;
  height: auto;
}
.l-footer-logo {
  width: 250px;
}
.l-footer-logo img {
  width: 100%;
  height: auto;
}
.l-footer-copy {
  width: 100%;
  margin-top: 35px;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 1.2rem;
  color: #999;
  border-top: 1px solid #657380;
  border-top: 1px solid #666;
}
@media screen and (max-width: 1300px) {
  .l-footer-nav__ul {
    gap: 30px;
  }
  .l-footer-logo {
    width: 200px;
  }
}
@media screen and (max-width: 1200px) {
  .l-footer-nav {
    margin-bottom: 30px;
  }
  .l-footer-nav__li a {
    font-size: 1.6rem;
  }
  .l-footer-resevation {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1080px) {
  .l-footer-nav__ul {
    gap: 20px;
  }
  .l-footer-logo {
    width: 160px;
  }
}
@media screen and (max-width: 960px) {
  .l-footer-nav__ul {
    gap: 0 15px;
  }
  .l-footer-nav__li a {
    font-size: 1.4rem;
  }
  .l-footer-detail {
    gap: 30px;
  }
	.l-footer-outline * {
    font-size: 1.3rem;
	}
	.l-footer-outline__add {
		margin-bottom: 5px;
	}
	.l-footer-outline__tel {
	  font-size: 2.0rem;
	  line-height: 1.0;
	}
	.l-footer-outline__tel span {
	  font-size: 1.2rem;
	}
  .l-footer-insta {
    width: 35px;
    height: 35px;
  }
  .l-footer-logo {
    width: 120px;
  }
}
@media screen and (max-width: 769px) {
  .l-footer__wrap {
    display: block;
  }
  .l-footer-nav__ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 20px;
  }
  .l-footer-resevation {
    margin: 0 auto 30px;
    width: 200px;
    height: 60px;
  }
  .l-footer-resevation a {
    width: 200px;
    height: 60px;
    font-size: 1.4rem;
    line-height: 1.4;
  }
	.l-footer-resevation a span {
	    font-size: 1.2rem;
	}
  .l-footer-detail {
    display: block;
  }
  .l-footer-outline {
    margin-bottom: 20px;
    text-align: center;
  }
  .l-footer-insta {
    width: 25px;
    height: 25px;
    margin: 0 auto 50px;
  }
  .l-footer-logo {
    margin: 0 auto 30px;
  }
}

/* ====================================
Component
====================================== */
/*--wrap--*/
.c-cont__f {
  margin: 0;
}
.c-cont__ll {
  margin: 0 50px;
  margin: 0 var( --cont_inline-m );
}
.c-cont__l {
  margin: 0 100px;
  margin: 0 var( --cont_inline-ml );
}
.c-cont__ml {
  margin: 0 150px;
  margin: 0 var( --cont_inline-l );
}
.c-cont__m {
  max-width: 1520px;
  margin: 0 auto;
}
.c-cont__s {
  max-width: 1200px;
  margin: 0 auto;
}
.c-cont-pb__m {
  padding-block: var( --cont_block-ll );
}
.c-cont-pb__s {
  padding-block: var( --cont_block-l );
}
.c-cont-pbtm__m {
  padding-bottom: var( --cont_block-ll );
}
.c-cont-pbtm__s {
  padding-bottom: var( --cont_block-l );
}
@media screen and (max-width: 1820px) {
  .c-cont__ll,
  .c-cont__l {
    margin: 0 50px;
  }
}
@media screen and (max-width: 1720px) {
  .c-cont__ml {
    margin: 0 50px;
  }
}
@media screen and (max-width: 1620px) {
  .c-cont__m {
    margin: 0 50px;
  }
}
@media screen and (max-width: 1300px) {
  .c-cont__s {
    margin: 0 50px;
  }
}
@media screen and (max-width: 960px) {
  .c-cont__ll,
  .c-cont__l,
  .c-cont__ml,
  .c-cont__m,
  .c-cont__s {
    margin: 0 30px;
  }
  .c-cont {
    padding-top: 100px;
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 769px) {
  .c-cont__ll,
  .c-cont__l,
  .c-cont__ml,
  .c-cont__m,
  .c-cont__s {
    margin: 0 20px;
  }
  .c-cont__f .c-cont__ll,
  .c-cont__f .c-cont__l,
  .c-cont__f .c-cont__ml,
  .c-cont__f .c-cont__m,
  .c-cont__f .c-cont__s {
    margin: 0;    
  }
  .c-cont {
    padding-top: 70px;
    padding-bottom: 100px;
  }
}

/*--c-page-ttl--*/
.c-page-ttl {
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out 1.0s forwards;
  height: 420px;
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  flex-wrap: wrap;
}
.c-page-ttl__l {
  height: 470px;
  margin-bottom: 160px;  
}
.c-page-ttl__s {
  height: 330px;
  margin-bottom: 70px;  
}
.c-page-ttl__en {
  color: var( --color03 );
  font-size: 8.0rem;
  font-family: var( --font-family-en );
  letter-spacing: var( --font-letter01 );
}
.c-page-ttl__en.-about,
.c-page-ttl__en.-hotspring {
  color: #fff;
}
.c-page-ttl__l .c-page-ttl__en {
  font-size: 3.0rem;
  margin-bottom: 40px;
}
.c-page-ttl__s .c-page-ttl__en {
  font-size: 3.0rem;
}
.c-page-ttl__detail-en {
  font-size: 1.8rem;
}
.c-page-ttl__ja {
  margin-top: -30px;
  font-size: 2.8rem;
  letter-spacing: 0.3em;
  line-height: 1;
}
.c-page-ttl__ja.-hotspring,
.c-page-ttl__ja.-about {
  color: #fff;
}
.c-page-ttl__detail-jp {
  font-size: 5.0rem;
  line-height: var( --ttl-line-height );
}
.c-page-ttl__detail-jp span {
  display: inline-block;
  padding-left: 15px;
  font-size: 2.0rem;
  font-family: var(--font-family-en);
}
.c-page-ttl__remarks {
	margin-left: 15px;
	display: inline-block;
	font-size: 1.6rem;
	letter-spacing: .1em;
	line-height: 1.0;
}
@media screen and (max-width: 1200px) {
  .c-page-ttl {
    height: 350px;
  }
  .c-page-ttl__l {
    height: 400px;
    margin-bottom: 120px;
  }
  .c-page-ttl__s {
    height: 300px;
    margin-bottom: 70px;
  }
  .c-page-ttl__en {
    font-size: 7.0rem;
  }
  .c-page-ttl__ja {
    font-size: 2.5rem;
  }
  .c-page-ttl__l .c-page-ttl__en {
    font-size: 2.6rem;
    margin-bottom: 40px;
  }
  .c-page-ttl__s .c-page-ttl__en {
    font-size: 2.6rem;
  }
  .c-page-ttl__detail-en {
    font-size: 1.8rem;
  }
  .c-page-ttl__detail-jp {
    font-size: 4.0rem;
  }
  .c-page-ttl__detail-jp span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 960px) {
  .c-page-ttl {
    margin-bottom: 50px;
  }
  .c-page-ttl__l {
    height: 350px;
    margin-bottom: 70px;
  }
  .c-page-ttl__s {
    height: 230px;
    margin-bottom: 70px;
  }
  .c-page-ttl__en {
    font-size: 6.5rem;
  }
  .c-page-ttl__ja {
    font-size: 2.3rem;
  }
  .c-page-ttl__l .c-page-ttl__en {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  .c-page-ttl__s .c-page-ttl__en {
    font-size: 2.2rem;
  }
  .c-page-ttl__detail-en {
    font-size: 1.6rem;
  }
  .c-page-ttl__detail-jp {
    font-size: 3.8rem;
  }
  .c-page-ttl__remarks {
    margin-left: 10px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 769px) {
  .c-page-ttl {
    height: 250px;
  }
  .c-page-ttl__l {
    height: 300px;
    margin-bottom: 50px;
  }
  .c-page-ttl__s {
    height: 210px;
    margin-bottom: 50px;
  }
  .c-page-ttl__en {
    font-size: 5.0rem;
  }
  .c-page-ttl__ja {
    margin-top: -20px;
    font-size: 1.8rem;
  }
  .c-page-ttl__l .c-page-ttl__en {
    font-size: 2.0rem;
    margin-bottom: 20px;
  }
  .c-page-ttl__s .c-page-ttl__en {
    font-size: 2.0rem;
  }
  .c-page-ttl__detail-en {
    font-size: 1.4rem;
  }
  .c-page-ttl__detail-jp {
    font-size: 3.0rem;
  }
  .c-page-ttl__detail-jp span {
    font-size: 1.4rem;
  }
  .c-page-ttl__remarks {
    margin-left: 5px;
    font-size: 1rem;
  }
}

/*--Btn--*/
/* c-btn__m */
.c-btn__m {
  width: fit-content;
}
.c-btn__m a {
  border: 1px solid #abb1bb;
  border-radius: 60px;
  min-width: 280px;
  height: 60px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 50px 0 40px;
  text-decoration: none;
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.c-btn__m a:hover {
  background: #abb1bb;
  color: #fff;
}
.c-btn__m a:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  top: 50%;
  right: 30px;
  background: var( --color03 );
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.c-btn__m a:hover:before {
  width: 25px;
  height: 1px;
  top: 50%;
  right: 20px;
  background: #fff;
}
.c-btn__m a:after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: calc( 50% - 1px );
  right: 33px;
  border: 1px solid var( --color03 );
  border-left: none;
  border-bottom: none;
  transform: rotate( 45deg ) translateY( -50% );
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.c-btn__m a:hover:after {
  right: 23px;
  border: 1px solid #fff;
  border-left: none;
  border-bottom: none;
}
.c-btn__m-w a {
  border: 1px solid #fff;
  color: #fff;
}
.c-btn__m-w a:hover {
  background: #fff;
  color: var( --color03 );
}
.c-btn__m-w a:before {
  background: #fff;
}
.c-btn__m-w a:hover:before {
  background: var( --color03 );
}
.c-btn__m-w a:after {
  border: 1px solid #fff;
  border-left: none;
  border-bottom: none;
}
.c-btn__m-w a:hover:after {
  border: 1px solid var( --color03 );
  border-left: none;
  border-bottom: none;
}
.c-btn__m-b a {
  border: none;
  background: rgba(175,154,100,0.3);
  color: var( --color03 );
}
.c-btn__m-b a:hover {
  background: var( --color03 );
  color: #fff;
}
.c-btn__m-b a:before {
  background: var( --color03 );
}
.c-btn__m-b a:hover:before {
  background: #fff;
}
.c-btn__m-b a:after {
  border: 1px solid var( --color03 );
  border-left: none;
  border-bottom: none;
}
.c-btn__m-b a:hover:after {
  border: 1px solid #fff;
  border-left: none;
  border-bottom: none;
}
@media screen and (max-width: 769px) {
  .c-btn__m a {
    border: 1px solid #abb1bb;
    border-radius: 60px;
    min-width: 220px;
    height: 50px;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 40px 0 30px;
    text-decoration: none;
    transition: all .5s;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
  }
  .c-btn__m a:hover {
    background: #abb1bb;
    color: #fff;
  }
  .c-btn__m a:before {
    position: absolute;
    content: "";
    width: 15px;
    height: 1px;
    top: 50%;
    right: 25px;
    background: var( --color03 );
    transition: all .5s;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
  }
  .c-btn__m a:hover:before {
    width: 25px;
    height: 1px;
    top: 50%;
    right: 15px;
    background: #fff;
  }
  .c-btn__m a:after {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    top: calc( 50% - 1px );
    right: 28px;
    border: 1px solid var( --color03 );
    border-left: none;
    border-bottom: none;
    transform: rotate( 45deg ) translateY( -50% );
    transition: all .5s;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
  }
  .c-btn__m a:hover:after {
    right: 18px;
    border: 1px solid #fff;
    border-left: none;
    border-bottom: none;
  }
  .c-btn__m-w a {
    border: 1px solid #fff;
    color: #fff;
  }
  .c-btn__m-w a:hover {
    background: #fff;
    color: var( --color03 );
  }
  .c-btn__m-w a:before {
    background: #fff;
  }
  .c-btn__m-w a:hover:before {
    background: var( --color03 );
  }
  .c-btn__m-w a:after {
    border: 1px solid #fff;
    border-left: none;
    border-bottom: none;
  }
  .c-btn__m-w a:hover:after {
    border: 1px solid var( --color03 );
    border-left: none;
    border-bottom: none;
  }
  .c-btn__m-b a {
    border: none;
    color: var( --color03 );
    padding: 0 60px 0 30px;
  }
  .c-btn__m-b a:hover {
    background: var( --color03 );
    color: #fff;
  }
  .c-btn__m-b a:before {
    background: var( --color03 );
  }
  .c-btn__m-b a:hover:before {
    background: #fff;
  }
  .c-btn__m-b a:after {
    border-left: none;
    border-bottom: none;
  }
  .c-btn__m-b a:hover:after {
    border: 1px solid #fff;
    border-left: none;
    border-bottom: none;
  }
}

/*--c-menu--*/
.c-menu-trigger, .c-menu-trigger span {
  transition: all .4s;
  box-sizing: border-box;
}
.c-menu-trigger {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 50px;
}
@media (hover: hover) {
  .c-menu-trigger:hover {
    background: #d0bb84;
  }
}
@media (hover: none) {
  .c-menu-trigger:hover {
    background: none;
  }
}
.c-menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #d0bb84;
}
.c-menu-trigger span:nth-of-type(1) {
  top: 20px;
  left: 11px;
  width: 25px;
}
.c-menu-trigger span:nth-of-type(2) {
  top: 28px;
  left: 11px;
  width: 15px;
}
@media (hover: hover) {
  .c-menu-trigger:hover span:nth-of-type(1) {
    top: 22px;
    left: 11px;
    width: 25px;
    background: #fff;
  }
  .c-menu-trigger:hover span:nth-of-type(2) {
    top: 26px;
    left: 11px;
    width: 15px;
    background: #fff;
  }
}
.c-menu-trigger span.show {
  display: block;
}
.c-menu-trigger span.hide {
  display: none;
}
.c-menu-trigger.active span:nth-of-type(1) {
  top: 24px;
  left: 12px;
  width: 25px;
  -webkit-transform: translateY(0) rotate(-20deg);
  transform: translateY(0) rotate(-20deg);
  background: #d0bb84;
}
.c-menu-trigger.active span:nth-of-type(2) {
  top: 24px;
  left: 12px;
  width: 25px;
  -webkit-transform: translateY(-0) rotate(20deg);
  transform: translateY(-0) rotate(20deg);
  background: #d0bb84;
}
@media (hover: hover) {
  .c-menu-trigger:hover.active span:nth-of-type(1) {
    background: #fff;
  }
  .c-menu-trigger:hover.active span:nth-of-type(2) {
    background: #fff;
  }
}
@media screen and (max-width: 769px) {
  .c-menu-trigger {
    width: 40px;
    height: 40px;
  }
  .c-menu-trigger span:nth-of-type(1) {
    top: 17px;
    width: 15px;
  }
  .c-menu-trigger span:nth-of-type(2) {
    top: 22px;
    width: 10px;
  }
  @media (hover: hover) {
    .c-menu-trigger:hover span:nth-of-type(1) {
      top: 18px;
      width: 15px;
    }
    .c-menu-trigger:hover span:nth-of-type(2) {
      top: 21px;
      width: 10px;
    }
  }
  .c-menu-trigger.active span:nth-of-type(1) {
    top: 19px;
    left: 11px;
    width: 16px;
  }
  .c-menu-trigger.active span:nth-of-type(2) {
    top: 19px;
    left: 11px;
    width: 16px;
  }
}

/*--c-dl-menu--*/
.c-dl-menu {
	display:none;
	width: 100vw;
	position:fixed;
	top: 0;
	right: 0;
	z-index: 999;
	overflow-y: scroll;
  overflow-x: hidden;
  min-height: 100vh; /* Fallback */
  min-height: calc(var(--vh, 1vh) * 100);
}
.c-dl-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  top: 75px;
  right: var(--cont_inline-m);
}
.c-dl-menu__wrap {
  min-height: 100vh; /* Fallback */
  min-height: calc(var(--vh, 1vh) * 100);
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.c-dl-menu__img {
  background: url("../images/bm_img.jpg") no-repeat center center;
  background-size: cover;
  width: calc( 100% - 660px );
}
.c-dl-menu__cont {
  width: 660px;
  min-height: 100vh; /* Fallback */
  min-height: calc(var(--vh, 1vh) * 100);
  padding: 50px 0 0;
  background: url("../images/bm_bg.jpg") repeat 0 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-dl-menu-logo {
  position: absolute;
  width: 145px;
  top: var(--cont_inline-m);
  left: var(--cont_inline-m);
}
.c-dl-menu-logo img {
  width: 100%;
  height: auto;
}
.c-dl-menu-nav {
  margin-bottom: 50px;
}
.c-dl-menu-ul {
  text-align: center;
}
.c-dl-menu-li {
  margin-bottom: 10px;
}
.c-dl-menu-li a {
  color: #fff;
  text-decoration: none;
  font-size: 2.2rem;
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  position: relative;
}
.c-dl-menu-li a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -10px;
  background: #fff;
  opacity: 0;
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.c-dl-menu-li a:hover:before {
  opacity: 1;
}
.c-dl-menu-sns {
  width: 22px;
  height: 22px;
  margin: 0 auto;
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.c-dl-menu-sns:hover {
  opacity: 0.5;
}
.c-dl-menu-sns img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1400px) {
  .c-dl-menu__img {
    width: 50%;
  }
  .c-dl-menu__cont {
    width: 50%;
  }
  .c-dl-menu-logo {
    width: 120px;
    top: var(--cont_inline-m);
    left: var(--cont_inline-m);
  }
  .c-dl-menu-li a {
    font-size: 2.0rem;
  }
}
@media screen and (max-width: 960px) {
  .c-dl-menu__img {
    width: 40%;
  }
  .c-dl-menu__cont {
    width: 60%;
  }
  .c-dl-menu-li a {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 769px) {
  .c-dl-menu__img {
    display: none;
  }
  .c-dl-menu__cont {
    width: 100%;
    padding: 30px 0 0;
  }
  .c-dl-menu-logo {
    width: 90px;
  }
  .c-dl-menu-li {
    margin-bottom: 5px;
  }
  .c-dl-menu-li a {
    font-size: 1.6rem;
  }
  .c-dl-menu-sns {
    width: 18px;
    height: 18px;
  }
}


/*--c-entry__date--*/
.c-entry__date {
  font-size: 1.4rem;
}
@media screen and (max-width: 769px) {
  .c-entry__date {
    font-size: 1.2rem;
  }
}

/*--font--*/
.c-font-en {
  color: var( --color01 );
}
.c-font-jp {
  font-family: var(--font-family-jp);
}

/*--Title--*/
.c-sec-ttl-en {
  font-size: 1.6rem; 
  color: var( --color01 ); 
}
.c-sec-ttl01 {
  margin-bottom: var( --cont_block-ml );
  text-align: center;
}
.c-sec-ttl01__en {
  margin-bottom: 10px;
}
.c-sec-ttl01__jp {
  font-size: 3.8rem;
  line-height: var( --ttl-line-height );
}
.c-sec-ttl01__jp.-quality {
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .c-sec-ttl01__jp {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 960px) {
  .c-sec-ttl01__jp {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 769px) {
  .c-sec-ttl01__jp {
    font-size: 2.4rem;
  }
}
.c-sec-ttl02 {
  font-size: 4.0rem;
  margin-bottom: var( --cont_block-m );
  line-height: var( --ttl-line-height );
  color: var(--color03);
  font-family: var(--font-family-en);
  letter-spacing: var(--font-letter01);
}
.c-sec-ttl02 span {
	display: inline-block;
  font-size: 2.0rem;
  margin-left: 20px;
}
@media screen and (max-width: 769px) {
  .c-sec-ttl02 {
    font-size: 3.0rem;
  }
	.c-sec-ttl02 span {
	  font-size: 1.3rem;
	}
}
.c-sec-ttl03 {
  margin-bottom: var( --cont_block-m );
}
.c-sec-ttl03__en {
  margin-bottom: 5px;
}
.c-sec-ttl03__jp {
  font-size: 3.0rem;
  line-height: var( --ttl-line-height );
}
@media screen and (max-width: 1200px) {
  .c-sec-ttl03__jp {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 960px) {
  .c-sec-ttl03__jp {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 769px) {
  .c-sec-ttl03__jp {
    font-size: 2.0rem;
  }
}

/*--pankuzu--*/
.c-breadcrumb {
  margin: 20px;
}
.c-breadcrumb-ul {
}
.c-breadcrumb-ul li {
	display: inline-block;
	margin: 0 20px 0 0;
	position: relative;
}
.c-breadcrumb-ul li:before {
	position: absolute;
	content: "";
	top: 10px;
	right: -20px;
  width: 15px;
  height: 1px;
  background: #5e5e5e;
  transform: rotate( -65deg );
}
.c-breadcrumb-ul li:first-child {
	margin: 0 20px 0 0;
}
.c-breadcrumb-ul li:first-child a {
  text-decoration: none;
  letter-spacing: 0.01em;
  text-decoration: underline;
}
.c-breadcrumb-ul li:last-child {
	margin: 0;
}
.c-breadcrumb-ul li:last-child:before {
	display: none;
}
.c-breadcrumb-ul li span {
	display: block;
	font-size: 1.2rem;
  line-height: 1.6;
}
.c-breadcrumb-ul li span a {
	display: block;
	font-size: 1.2rem;
  line-height: 1.0;
  text-decoration: underline;
}

/*--c-innerlink--*/
.c-innerlink {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: var( --cont_block-ml );
}
.c-innerlink li {
  margin-right: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  .c-innerlink li {
    margin-right: 10px;
    margin-bottom: 10px;
  }
}

/*--c-lead--*/
.c-lead {
  margin-bottom: 100px;
  font-size: 1.6rem;
}
@media screen and (max-width: 769px) {
  .c-lead {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
}

/*--Table--*/
.c-table {
	width: 100%;
	border-bottom: 1px solid #d7d7d7;
  margin-bottom: 50px;
}
.c-table th,.c-table td {
	border-top: 1px solid #d7d7d7;
	padding: 40px;
  line-height: 1.4;
}
.c-table th {
	width: 26%;
	max-width: 320px;
	padding: 40px;
  font-weight: 400;
}
.c-table td a {
  color: #046ea4;
}
@media screen and (max-width: 769px) {
  .c-table {
    margin-bottom: 20px;
  }
	.c-table th,.c-table td {
		font-size: 1.4rem;
		width: 100%;
    max-width: inherit;
    display: block;
	}
  .c-table th {
		padding: 20px 10px 5px;
  }
  .c-table tr:last-child th {
    border-bottom: none;
  }
  .c-table td {
    border-top: none;
		padding: 5px 10px 20px;
  }
}

/* c-page-link */
.c-page-link {
  margin: var( --cont_inline-ml );
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.c-page-link-box {
  background: #000;
  width: 50%;
}
.c-page-link-box a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 300px;
  z-index: 1;
  overflow: hidden;
  font-size: 3.0rem;
  text-decoration: none;
  color: #fff;
}
.c-page-link-box a:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: -1;
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.c-page-link-box a:hover:before {
  transform: scale( 1.05 );
  opacity: 1;
}
.c-page-link-box.-spa a:before {
  background: url("../images/page_link_spa.jpg") no-repeat center center;
  background-size: cover;
}
.c-page-link-box.-sauna a:before {
  background: url("../images/page_link_sauna.jpg") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 1200px) {
  .c-page-link-box a {
    height: 250px;
  }
}
@media screen and (max-width: 960px) {
  .c-page-link-box a {
    height: 200px;
  }
}
@media screen and (max-width: 769px) {
  .c-page-link {
    display: block;
  }
  .c-page-link-box {
    width: 100%;
    margin-bottom: 10px;
  }
  .c-page-link-box a {
    height: 150px;
    font-size: 2.5rem;
  }
}

/* c-page-top */
.c-page-top {
  position: fixed;
  z-index: 999;
  right: var(--cont_inline-l);
  bottom: 20px;
}
.c-page-top a {
  display: block;
  position: relative;
  font-size: 1.2rem;
  color: #999;
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  text-decoration: none;
  padding-right: 20px;
}
.c-page-top a:hover {
  color: #fff;
}
.c-page-top a:before,
.c-page-top a:after {
  position: absolute;
  content: "";  
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.c-page-top a:before {
  width: 1px;
  height: 10px;
  top: calc( 50% - 6px );
  right: 5px;
  background: #999;
}
.c-page-top a:after {
  width: 6px;
  height: 6px;
  border: 1px solid #999;
  border-left: none;
  border-bottom: none;
  transform: rotate(-45deg);
  top: 8px;
  right: 2px;
}
.c-page-top a:hover:before {
  background: #fff;
}
.c-page-top a:hover:after {
  border: 1px solid #fff;
  border-left: none;
  border-bottom: none;
}
@media screen and (max-width: 1720px) {
  .c-page-top {
    right: var(--cont_inline-m);
  }
}


/* ====================================
Project
====================================== */
/*--INDEX--*/
/*--MV--*/
.p-mv {
  width: 100%;
  height: 100vh; 
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
  overflow: hidden;
}
.p-mv-slider {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
  /*animation: blur 1.0s ease-in-out 0s forwards;*/
}
.p-mv-slider .p-mv-slider__img {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
}
.p-mv-slider__img img {
  object-fit: cover;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

/*--mv-catch--*/
.p-mv-catch {
  position: absolute;
  bottom: 200px;
  left: var(--cont_inline-ml);
}
.p-mv-catch__en {
  font-size: 4.6rem;
  font-family: var(--font-family-en);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
  animation: blur 1.0s ease-in-out 1.0s forwards;
  opacity: 0;
}
.p-mv-catch__jp {
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.6;
  animation: blur 1.0s ease-in-out 1.0s forwards;
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .p-mv-catch__en {
    font-size: 4.0rem;
  }
  .p-mv-catch__jp {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 769px) {
  .p-mv-catch {
    bottom: 180px;
  }
  .p-mv-catch__en {
    font-size: 3.6rem;
  }
}

/*--mv-news--*/
.p-mv-news {
  position: absolute;
  left: 20px;
  bottom: 50px;
  background:rgba(32,40,55,0.7);
  border-radius: 100px;
  width: fit-content;
  max-width: calc( 100% - 40px );
  animation: blur 1.0s ease-in-out 1.5s forwards;
  opacity: 0;
}
.p-mv-news__inner {
  padding: 15px 30px 15px 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
}
.p-mv-news__ttl {
  font-size: 1.6rem;
  color: #d6c18a;
  padding-right: 20px;
  margin-right: 20px;
  position: relative;
}
.p-mv-news__ttl:before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #cab47e;
}
.p-mv-news-entry {
  display: flex;
  justify-content: flex-start;
  align-items: center; 
}
.p-mv-news-entry > * {
  font-size: 1.6rem;
  color: #fff; 
  line-height: 1.6; 
}
.p-mv-news-entry__date {
  margin-right: 20px;
}
@media screen and (max-width: 1200px) {
  .p-mv-news__inner {
    padding: 15px 20px;
    align-items: stretch;
    min-width: inherit;
  }
  .p-mv-news__ttl {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
@media screen and (max-width: 960px) {
  .p-mv-news {
    bottom: 40px;
  }
  .p-mv-news-entry {
    display: block; 
  }
  .p-mv-news-entry > * {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 769px) {
  .p-mv-news {
    bottom: 20px;
    border-radius: 15px;
  }
  .p-mv-news__inner {
    padding: 10px 20px 15px;
    display: block;
  }
  .p-mv-news__ttl {
    font-size: 1.3rem;
    margin-right: 0;
    margin-bottom: 10px;
    padding-bottom: 5px;
  }
  .p-mv-news__ttl:before {
    right: inherit;
    top: inherit;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
  }
  .p-mv-news-entry > * {
    font-size: 1.3rem;
  }
  .p-mv-news-entry__date {
    font-size: 1.0rem;
  }
}


/*--TOP CMN--*/
.p-tp__catch {
  font-size: 3.8rem;
  line-height: var(--catch-line-height);
  margin-bottom: 70px;  
}
.p-tp__en {
  margin-bottom: 80px;
}
@media screen and (max-width: 1200px) {
  .p-tp__catch {
    font-size: 3.2rem;
    line-height: var(--catch-line-height);
    margin-bottom: 40px;  
  }
  .p-tp__en {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 960px) {
  .p-tp__catch {
    font-size: 2.8rem;
    line-height: var(--catch-line-height);
    margin-bottom: 30px;  
  }
  .p-tp__en {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 769px) {
  .p-tp__catch {
    font-size: 2.4rem;
    line-height: var(--catch-line-height);
    margin-bottom: 20px;  
  }
  .p-tp__en {
    margin-bottom: 20px;
  }
}

/*--TOP Concept--*/
.p-tp-concept__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.p-tp-concept__info {
  padding-left: var(--cont_inline-ml);
  padding-right: var(--cont_inline-ml);
  max-width: 51.5%;
}
.p-tp-concept__en {
  margin-left: calc( var(--cont_inline-m) * -1 );
}
.p-tp-concept__txt {
  margin-bottom: 60px;
}
.p-tp-concept__btn:nth-of-type(2) {
  margin-bottom: 10px;
}
.p-tp-concept__img {
  max-width: 48.5%;
}
@media screen and (max-width: 1200px) {
  .p-tp-concept__txt {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 960px) {
  .p-tp-concept__txt {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 769px) {
  .p-tp-concept__inner {
    display: block;
  }
  .p-tp-concept__info {
    padding-left: 0;
    padding-right: 0;
    max-width: inherit;
    margin-bottom: 50px;
  }
  .p-tp-concept__en {
    margin-left: 0;
  }
  .p-tp-concept__txt {
    margin-bottom: 30px;  
  }
  .p-tp-concept__img {
    max-width: inherit;
    text-align: center;
  }
}

/*--TOP Spa--*/
.p-tp-spa {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.p-tp-spa-bg {
  position: relative;
  height: 0;
}
.p-tp-spa-bg__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #000;
}
.p-tp-spa-bg__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: blur( 5px );
}
.p-tp-spa-bg .slick-dots {
  bottom: -100px;
}
.p-tp-spa__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-tp-spa__info {
  max-width: 38%;
}
.p-tp-spa__catch {
  color: #fff;
}
.p-tp-spa__txt {
  margin-bottom: 60px;  
  color: #fff;
}
.p-tp-spa-main {
  max-width: 52.6%;
}
.p-tp-spa-main__img img {
  width: 100%;
  height: auto;  
}
.p-tp-spa-main .slick-dots {
  bottom: -15px;
  display: flex;
  padding: 0 0 0 40px;
}
.p-tp-spa-main .slick-dots:before {
  position: absolute;
  content: "SPA";
  line-height: 1.0;
  font-size: 1.2rem;
  top: -5px;
  left: 0;
  color: #fff;
}
.p-tp-spa-main .slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}
.p-tp-spa-main .slick-dots li.slick-active button {
  background: #fff;
}
.p-tp-spa-main .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  padding: 0;
  color: #fff;
  border: 0;
  outline: 0;
  background: #2d3b42;
}
.p-tp-spa-main .slick-dots li,.p-tp-spa-main .slick-dots li button {
  width: 100%;
  height: 1px;
  border-radius: 0;
  cursor: pointer;
}
@media screen and (max-width: 1620px) {
  .p-tp-spa__info {
    max-width: 42%;
  }
  /*.p-tp-spa__catch br {
    display: none;
  }*/
  .p-tp-spa-main {
    max-width: 53%;
  }
}
@media screen and (max-width: 960px) {
  .p-tp-spa__inner {
    display: block;
  }
  .p-tp-spa__info {
    max-width: 100%;
  }
  .p-tp-spa__catch br {
    display: block;
  }
  .p-tp-spa__txt {
    margin-bottom: 40px;
  }
  .p-tp-spa-main {
    max-width: 800px;
    margin: 0 auto 100px;
  }
}
@media screen and (max-width: 769px) {
  .p-tp-spa__txt {
    margin-bottom: 30px;  
  }
  .p-tp-spa-main {
    margin: 0 auto 50px;
  }
}
@media screen and (max-width: 500px) {
  .p-tp-spa__catch br {
    display: none;
  }
}


/*--TOP Concept--*/
.p-tp-sauna__inner {
  position: relative;
}
.p-tp-sauna__info {
  max-width: 33%;
  margin-left: 18.6%;
}
.p-tp-sauna__txt {
  margin-bottom: 60px;  
  margin-left: 170px;
}
.p-tp-sauna__btn { 
  margin-left: 170px;  
}
.p-tp-sauna-img {
  width: 100%;
  height: calc( 100% - var(--cont_inline-ll) * 2 );
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: absolute;
  top: var(--cont_inline-ll);
  left: 0;
  z-index: -1;
}
.p-tp-sauna-img img {
  width: 100%;
  height: auto;
}
.p-tp-sauna-img__001 {
  width: 23.2%;
  position: absolute;
  left: -50px;
  bottom: -100px;
}
.p-tp-sauna-img__002 {
  width: 39.5%;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 1720px) {
  .p-tp-sauna__info {
    max-width: 38%;
  }
  .p-tp-sauna__txt { 
    margin-left: 120px;
  }
  .p-tp-sauna__btn { 
    margin-left: 120px;  
  }
}
@media screen and (max-width: 1300px) {
  .p-tp-sauna__info {
    max-width: 42%;
    margin-left: 12%;
  }
}
@media screen and (max-width: 1200px) {
  .p-tp-sauna__info {
    max-width: 45%;
  }
  .p-tp-sauna__txt {
    margin-left: 80px;
  }
  .p-tp-sauna__btn { 
    margin-left: 80px;  
  }
  .p-tp-sauna-img__001 {
    bottom: -50px;
  }
}
@media screen and (max-width: 960px) {
  .p-tp-sauna__info {
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 70px;
  }
  .p-tp-sauna__txt {
    margin-bottom: 40px;
    margin-left: 0;
  }
  .p-tp-sauna__btn { 
    margin-left: 0;  
  }
  .p-tp-sauna-img {
    position: relative;
  }
  .p-tp-sauna-img__001 {
    width: 30%;
    position: relative;
    left: 0;
    bottom: 50px;
    top: 50px;
  }
  .p-tp-sauna-img__002 {
    width: 45%;
    position: relative;
    top: -50px;
  }
}
@media screen and (max-width: 769px) {
  .p-tp-sauna__info {
    margin-bottom: 80px;
  }
  .p-tp-sauna__txt {
    margin-bottom: 30px;
  }
  .p-tp-sauna__btn { 
    margin-left: 0;  
  }
}
@media screen and (max-width: 500px) {
  .p-tp-sauna-img__001 {
    width: 40%;
    top: 0;
  }
  .p-tp-sauna-img__002 {
    width: 50%;
    top: -70px;
  }
}


/*--TOP Faq--*/
.p-tp-faq {
  background: rgba(18,10,10,0.65);
  padding-left: calc( var(--cont_inline-ll) + 50px );
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.p-tp-faq-ttl {
  width: 300px;
  position: relative;
}
.p-tp-faq__ttl {
  color: #fff;
}
.p-tp-faq__en {
  margin-bottom: 20px;
}
.p-tp-faq__btn {
  position: absolute;
  bottom: 0;
}
.p-tp-faq-info {
  width: 57.3%;
}
.p-tp-faq-box {
  border-top: 1px solid var( --color02 );
  padding: 35px 100px 35px 60px;
  position: relative;
  cursor: pointer;
}
.p-tp-faq-box:last-child {
  border-bottom: 1px solid var( --color02 );
}
.p-tp-faq-q {
  position: relative;
  color: #fff;
  font-size: 1.6rem;
}
.p-tp-faq-q:before {
  position: absolute;
  content: "Q";
  top: 0;
  left: -50px;
  color: var(--color01);
  font-size: 3.0rem;
  line-height: 1.0;
}
.p-tp-faq-txt * {
  color: #fff;
  font-size: 1.5rem;  
}
.p-tp-faq-btn {
  position: absolute;
  width: 15px;
  height: 15px;
  right: 30px;
  top: calc( 50% - 8px );
}
.p-tp-faq-btn:before,
.p-tp-faq-btn:after {
  position: absolute;
  content: "";
  background: #bdc2c8;
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;  
}
.p-tp-faq-btn:before {
  width: 15px;
  height: 1px;
  left: calc(50% - 7px);
  top: 50%;
}
.p-tp-faq-btn:after {
  width: 1px;
  height: 15px;
  left: 50%;
  top: calc(50% - 7px);
  display: block;
}
.p-tp-faq-btn.active:before{
  display: none;
}
.p-tp-faq-btn.active:after {
  width: 1px;
  height: 15px;
  left: 50%;
  transform: rotate(-90deg);
}
@media screen and (max-width: 1720px) {
  .p-tp-faq {
    padding-left: var(--cont_inline-l);
  }
  .p-tp-faq-info {
    width: 65%;
    max-width: calc( 100% - 300px );
  }
}
@media screen and (max-width: 1200px) {
  .p-tp-faq {
    padding-left: var(--cont_inline-ml);
  }
  .p-tp-faq-info {
    max-width: calc( 100% - 320px );
  }
}
@media screen and (max-width: 960px) {
  .p-tp-faq {
    padding-right: var(--cont_inline-ml);
    display: block;
  }
  .p-tp-faq-ttl {
    width: 100%;
    margin-bottom: 50px;
  }
  .p-tp-faq__btn {
    position: static;
  }
  .p-tp-faq-info {
    width: 100%;
    max-width: inherit;
  }
  .p-tp-faq-block {
    margin-bottom: 50px;    
  }
}
@media screen and (max-width: 769px) {
  .p-tp-faq-ttl {
    margin-bottom: 40px;
  }
  .p-tp-faq-block {
    margin-bottom: 40px;    
  }
  .p-tp-faq-box {
    padding: 25px 30px 25px 30px;
  }
  .p-tp-faq-q {
    font-size: 1.4rem;
  }
  .p-tp-faq-q:before {
    left: -30px;
    font-size: 2.4rem;
  }
  .p-tp-faq-txt > * {
    font-size: 1.3rem;  
  }
  .p-tp-faq-btn {
    right: 10px;
  }
}


/*--TOP News--*/
.p-tp-news {
  padding-left: calc( var(--cont_inline-ll) + 50px );
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.p-tp-news-ttl {
  width: 300px;
  position: relative;
}
.p-tp-news__en {
  margin-bottom: 20px;
}
.p-tp-news__btn {
  position: absolute;
  bottom: 0;
}
.p-tp-news-info {
  width: 57.3%;
}
.p-tp-news-box {
  border-bottom: 1px solid var( --color02 );
  position: relative;
  cursor: pointer;
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out; 
}
.p-tp-news-box:hover {
  border-bottom: 1px solid var( --color03 );
}
.p-tp-news-box:before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  border: 1px solid #abb1bb;
  border-radius: 50px;
  top: calc( 50% - 25px );
  right: 30px;
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;  
}
.p-tp-news-box:hover:before {
  border: 1px solid var( --color03 );
  right: 20px;
}
.p-tp-news-box a {
  text-decoration: none;
  position: relative;
  padding: 35px 110px 35px 10px;
  display: block;
}
.p-tp-news-box a:before {
  position: absolute;
  content: "";
  width: 12px;
  height: 1px;
  background: var( --color03 );
  top: 50%;
  right: 50px;
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out; 
}
.p-tp-news-box a:hover:before {
  right: 40px;
}
.p-tp-news-box a:after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border: 1px solid var( --color03 );
  border-bottom: none;
  border-left: none;
  top: calc( 50% - 3px );
  right: 50px;
  transform: rotate(45deg);
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out; 
}
.p-tp-news-box a:hover:after {
  right: 40px;
}
.p-tp-news-box:first-child {
  border-top: 1px solid var( --color02 );
}
.p-tp-news-box__date {
  font-size: 1.4rem;
}
.p-tp-news-box__ttl {
  font-size: 1.6rem;
}
@media screen and (max-width: 1720px) {
  .p-tp-news {
    padding-left: var(--cont_inline-l);
  }
  .p-tp-news-info {
    width: 65%;
    max-width: calc( 100% - 300px );
  }
}
@media screen and (max-width: 1200px) {
  .p-tp-news {
    padding-left: var(--cont_inline-ml);
  }
  .p-tp-news-info {
    max-width: calc( 100% - 320px );
  }
}
@media screen and (max-width: 960px) {
  .p-tp-news {
    padding-right: var(--cont_inline-ml);
    display: block;
  }
  .p-tp-news-ttl {
    width: 100%;
    margin-bottom: 50px;
  }
  .p-tp-news__btn {
    position: static;
  }
  .p-tp-news-info {
    width: 100%;
    max-width: inherit;
  }
  .p-tp-news-block {
    margin-bottom: 50px;    
  }
  .p-tp-news-box:before {
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;
    border: 1px solid #abb1bb;
    border-radius: 50px;
    top: calc( 50% - 25px );
    right: 10px;
  }
  .p-tp-news-box a {
    text-decoration: none;
    position: relative;
    padding: 35px 90px 35px 10px;
    display: block;
  }
  .p-tp-news-box a:before {
    position: absolute;
    content: "";
    width: 12px;
    height: 1px;
    background: var( --color03 );
    top: 50%;
    right: 30px;
  }
  .p-tp-news-box a:after {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border: 1px solid var( --color03 );
    border-bottom: none;
    border-left: none;
    top: calc( 50% - 3px );
    right: 30px;
    transform: rotate(45deg);
  }
}
@media screen and (max-width: 769px) {
  .p-tp-news-ttl {
    margin-bottom: 40px;
  }
  .p-tp-news-block {
    margin-bottom: 40px;    
  }
  .p-tp-news-box:before {
    width: 30px;
    height: 30px;
    top: calc( 50% - 15px );
    right: 0;
  }
  .p-tp-news-box a {
    text-decoration: none;
    position: relative;
    padding: 25px 40px 25px 0;
    display: block;
  }
  .p-tp-news-box a:before {
    width: 8px;
    height: 1px;
    right: 12px;
  }
  .p-tp-news-box a:after {
    width: 4px;
    height: 4px;
    top: calc( 50% - 2px );
    right: 12px;
  }
  .p-tp-news-box__date {
    font-size: 1.2rem;
  }
  .p-tp-news-box__ttl {
    font-size: 1.4rem;
  }
  .p-tp-news-btn {
    right: 10px;
  }
}


/*--TOP Access--*/
.p-tp-access {
  margin-top: var(--cont_inline-m);
  margin-bottom: var(--cont_inline-ll);
}
.p-tp-access__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-tp-access__info {
  width: 660px;
  position: relative;
  padding-left: var(--cont_inline-l);
}
.p-tp-access__en {
  margin-bottom: 20px;
}
.p-tp-access__catch {
  margin-bottom: 70px;  
}
.p-tp-access__txt {
  margin-bottom: 50px;   
}
.p-tp-access-map {
  width: calc( 100% - 660px );
}
@media screen and (max-width: 1400px) {
  .p-tp-access__info {
    width: 50%;
    position: relative;
    padding-left: var(--cont_inline-l);
  }
  .p-tp-access-map {
    width: 50%;
  }
}
@media screen and (max-width: 960px) {
  .p-tp-access__info {
    padding-left: 70px;
  }
  .p-tp-access__catch {
    margin-bottom: 30px;  
  }
  .p-tp-access__txt {
    margin-bottom: 40px;   
  }
}
@media screen and (max-width: 769px) {
  .p-tp-access__inner {
    display: block;
  }
  .p-tp-access__info {
    width: 100%;
    padding-left: var(--cont_block-m);
    padding-right: var(--cont_block-m);
    margin-bottom: 50px;
  }
  .p-tp-access__catch {
    margin-bottom: 20px;  
  }
  .p-tp-access__txt {
    margin-bottom: 30px;   
  }
  .p-tp-access-map {
    width: 100%;
    margin-bottom: 30px;
  }
  .p-tp-access-map iframe {
    width: 100%;
    height: 60vw;
  }
}
@media screen and (max-width: 500px) {
  .p-tp-access-map iframe {
    height: 90vw;
  }
}

/*--TOP Footer--*/
.p-footer-slide {
  width: 100%;
  height: auto;
  max-height: 1000px;
}
@media screen and (max-width: 769px) {
	.p-footer-slide {
	  height: 750px;
	}
	.p-footer-slide p,.p-footer-slide p img {
	  height: 750px;
	}
}
@media screen and (max-width: 500px) {
	.p-footer-slide {
	  height: 500px;
	}
	.p-footer-slide p,.p-footer-slide p img {
	  height: 500px;
	}
}



/*--SUB--*/
/*--FAQ--*/
.p-faq-cat {
  margin-bottom: var( --cont_block-l );
}
.p-faq-cat__ttl {
  padding-bottom: var( --cont_block-m );
  font-size: 3.0rem;
  font-family: var( --font-family-jp );
}
.p-faq-cat__box {
  border-top: 1px solid var( --color02 );
  position: relative;
  cursor: pointer;
}
.p-faq-cat__box:last-child {
  border-bottom: 1px solid var( --color02 );
}
.p-faq-cat__q {
  position: relative;
  font-size: 1.6rem;
  padding: 35px 100px 35px 60px;
}
.p-faq-cat__q:before {
  position: absolute;
  content: "Q";
  top: 35px;
  left: 10px;
  color: var(--color01);
  font-size: 3.0rem;
  line-height: 1.0;
}
.p-faq-cat__txt {
  padding: 35px 35px 35px 80px; 
  background: rgba(18,10,10,0.65);
  position: relative;
}
.p-faq-cat__txt:before {
  position: absolute;
  content: "A";
  top: 35px;
  left: 35px;
  color: var(--color01);
  font-size: 3.0rem;
  line-height: 1.0;
}
.p-faq-cat__txt * {
  color: #fff;
  font-size: 1.6rem;  
}
.p-faq-cat__btn {
  position: absolute;
  width: 15px;
  height: 15px;
  right: 30px;
  top: 45px;
}
.p-faq-cat__btn:before,
.p-faq-cat__btn:after {
  position: absolute;
  content: "";
  background: #bdc2c8;
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;  
}
.p-faq-cat__btn:before {
  width: 15px;
  height: 1px;
  left: calc(50% - 7px);
  top: 50%;
}
.p-faq-cat__btn:after {
  width: 1px;
  height: 15px;
  left: 50%;
  top: calc(50% - 7px);
  display: block;
}
.p-faq-cat__btn.active:before{
  display: none;
}
.p-faq-cat__btn.active:after {
  width: 1px;
  height: 15px;
  left: 50%;
  transform: rotate(-90deg);
}
@media screen and (max-width: 769px) {
  .p-faq-cat__ttl {
    font-size: 2.4rem;
  }
  .p-faq-cat__box:last-child {
    border-bottom: 1px solid var( --color02 );
  }
  .p-faq-cat__q {
    font-size: 1.4rem;
    padding: 25px 30px 25px 40px;
  }
  .p-faq-cat__q:before {
    top: 25px;
    font-size: 2.4rem;
  }
  .p-faq-cat__txt {
    padding: 25px 25px 25px 50px; 
  }
  .p-faq-cat__txt:before {
    top: 25px;
    left: 25px;
    font-size: 2.4rem;
  }
  .p-faq-cat__txt > * {
    font-size: 1.4rem;  
  }
  .p-faq-cat__btn {
    right: 10px;
    top: 30px;
  }
}

/*--DESIGN--*/
.p-about-concept {
  background: url("../images/about_main_img.jpg") no-repeat center 0;
  background-size: cover;
}
.p-about-concept__inner {
  padding: calc(250 / 1920 * 100vw) calc(350 / 1920 * 100vw) calc(450 / 1920 * 100vw);
}
.p-about-concept__catch {
  color: #fff;
  font-size: 3.8rem;
  margin-bottom: var( --cont_block-m );  
  line-height: var(--catch-line-height);
}
.p-about-concept__txt {
  color: #fff;  
}
@media screen and (max-width: 1200px) {
  .p-about-concept__inner {
    padding: calc(250 / 1920 * 100vw) calc(350 / 1920 * 100vw) calc(450 / 1920 * 100vw);
  }
  .p-about-concept__catch {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 960px) {
  .p-about-concept__inner {
    padding: calc(250 / 1920 * 100vw) 30px calc(450 / 1920 * 100vw);
  }
  .p-about-concept__catch {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 769px) {
  .p-about-concept__inner {
    padding: 100px 20px 150px;
  }
  .p-about-concept__catch {
    font-size: 2.4rem;
  }
}

.p-about-attractions__inner {
  display: flex;
  justify-content: space-between;
  /*align-items: flex-start;*/
  align-items: stretch;
}
.p-about-attractions-img {
  width: 45%;
  position: relative;
}
.p-about-attractions-img .fixed {
  width: calc( 1520px * 0.45 );
  position: fixed;
  top: 100px;
  left: calc( (100% - 1520px) / 2 );
  bottom: auto;
  height: auto;
}
.p-about-attractions-img .absolute {
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
  height: auto;
}
.p-about-attractions-img .relative {
  position: relative;
  top: auto;
  left: auto;
  bottom: auto;
  height: inherit;
}
.p-about-attractions-img img {
  width: 100%;
  height: auto;
}
.p-about-attractions-info {
  width: 45%;
}
.p-about-attractions-info__box {
  border-top: 1px solid var( --color02 );
  padding: 15px 0 30px;
}
.p-about-attractions-info__box:last-child {
  border-bottom: 1px solid var( --color02 );
}
.p-about-attractions-info__en {
  font-size: 1.2rem;
  color: var( --color01 );
  margin-bottom: 15px;
}
.p-about-attractions-info__ttl {
  font-size: 2.4rem;
  line-height: var( --ttl-line-height );
  margin-bottom: 10px;
}
@media screen and (max-width: 1620px) {
  .p-about-attractions-img .fixed {
    width: calc( (100% - 100px) * 0.45 );
    top: 100px;
    left: 50px;
  }
}
@media screen and (max-width: 1200px) {
  .p-about-attractions-img {
    width: 47%;
  }
  .p-about-attractions-img .fixed {
    width: calc( (100% - 100px) * 0.47 );
  }
  .p-about-attractions-info {
    width: 47%;
  }
  .p-about-attractions-info__ttl {
    font-size: 2.0rem;
  }
}
@media screen and (max-width: 960px) {
  .p-about-attractions-img .fixed {
    width: calc( (100% - 60px) * 0.47 );
    top: 100px;
    left: 30px;
  }
  .p-about-attractions-info__box {
    padding: 15px 0 25px;
  }
  .p-about-attractions-info__en {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 769px) {
  .p-about-attractions__inner {
    display: block;
  }
  .p-about-attractions-img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 50px;
    position: static;
    top: auto;
    left: auto;
    bottom: auto;
    height: inherit;
  }
  .p-about-attractions-info {
    width: 100%;
  }
}

.p-about-creator {
  background: rgba(18,10,10,0.8);
}
.p-about-creator__catch {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: var( --cont_block-ml );
  line-height: var(--catch-line-height);
}
.p-about-creator-personal {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /*flex-direction:row-reverse;*/
  margin-bottom: 100px;
}
.p-about-creator-personal-img {
  width: 40%;
}
.p-about-creator-personal-img img {
  width: 100%;
  height: auto;
}
.p-about-creator-personal-img__creator {
  margin-bottom: 50px;
}
.p-about-creator-personal-img__works {
  display: flex;
  justify-content: space-between;
  column-gap: 50px;
}
.p-about-creator-personal-img__works * {
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
}
.p-about-creator-personal__info {
  width: 45%;
}
.p-about-creator-personal-company {
  display: flex;
  justify-content: flex-start;
  column-gap: 20px;
  margin-bottom: 50px;
}
.p-about-creator-personal-company_post {
  font-size: 1.6rem;
  color: var( --color01 );
  border-right: 1px solid #666;
  padding-right: 20px;
  line-height: 1.8;
}
.p-about-creator-personal-company_post:last-child {
  border-right: none;
  padding-right: 0;
}
.p-about-creator-personal__name-jp {
  font-size: 5.0rem;
  line-height: var( --ttl-line-height );
  margin-bottom: 10px;
  color: #fff;
}
.p-about-creator-personal__name-en,
.p-about-creator-personal__name-en a {
  font-size: 1.3rem;
  margin-bottom: 80px;
  color: #fff;
}
.p-about-creator-personal__txt {
  color: #fff;
}
.p-about-creator-history__profile * {
  font-size: 1.4rem;
  color: #fff;
}
.p-about-creator-history * {
  color: #fff;
}
.p-about-creator-history__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.p-about-creator-history__ttl {
  font-size: 1.5rem;
  border-bottom: 1px solid #666;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.p-about-creator-personal__txt {
  margin-bottom: 50px;
}
.p-about-creator-history__prize {
  width: 48.5%;
}
.p-about-creator-history__prize p {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
}
.p-about-creator-history__prize p img {
  margin-right: 10px;
}
@media screen and (max-width: 1520px) {
  .p-about-creator-personal-img__creator {
    margin-bottom: 30px;
  }
  .p-about-creator-personal-img__works {
    column-gap: 30px;
  }
  .p-about-creator-personal__company {
    margin-bottom: 40px;
    column-gap: 15px;
  }
  .p-about-creator-personal-company_post {
    padding-right: 15px;
    font-size: 1.5rem;
  }
  .p-about-creator-personal__name-en {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1200px) {
  .p-about-creator__catch {
    font-size: 2.4rem;
  }
  .p-about-creator-personal {
    margin-bottom: 80px;
  }
  .p-about-creator-personal-img {
    width: 50%;
  }
  .p-about-creator-personal-img__creator {
    margin-bottom: 20px;
  }
  .p-about-creator-personal-img__works {
    column-gap: 20px;
  }
  .p-about-creator-personal__info {
    width: 45%;
  }
  .p-about-creator-personal-company {
    margin-bottom: 30px;
  }
  .p-about-creator-personal-company_post {
    font-size: 1.6rem;
  }
  .p-about-creator-personal__name-jp {
    font-size: 4.5rem;
  }
  .p-about-creator-personal__name-en {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 960px) {
  .p-about-creator__catch {
    font-size: 2.2rem;
  }
  .p-about-creator-personal {
    display: block;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 100px;
  }
  .p-about-creator-personal-img {
    width: 100%;
    max-width: 560px;
    margin: 0 auto 50px;
  }
  .p-about-creator-personal__info {
    width: 100%;
  }
  .p-about-creator-personal-company {
    margin-bottom: 20px;
    font-size: 1.5rem;
  }
  .p-about-creator-personal__name-jp {
    font-size: 3.5rem;
  }
  .p-about-creator-personal__name-en {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 769px) {
  .p-about-creator__catch {
    font-size: 1.8rem;
  }
  .p-about-creator-personal {
    display: block;
    margin-bottom: 50px;
  }
  .p-about-creator-personal-img {
    width: 100%;
    max-width: 560px;
    margin: 0 auto 50px;
  }
  .p-about-creator-personal-img__creator {
    margin-bottom: 30px;
  }
  .p-about-creator-personal-img__works {
    column-gap: 10px;
  }
  .p-about-creator-personal-img__works * {
    font-size: 1.3rem;
  }
  .p-about-creator-personal__info {
    width: 100%;
  }
  .p-about-creator-personal-company {
    display: block;
    margin-bottom: 25px;
  }
  .p-about-creator-personal-company_post {
    font-size: 1.6rem;
    border-right: none;
    padding-right: 0;
    margin-bottom: 15px;
  }
  .p-about-creator-personal__name-jp {
    font-size: 3.2rem;
  }
  .p-about-creator-personal__txt {
    margin-bottom: 50px;
  }
  .p-about-creator-history {
    display: block;
  }
  .p-about-creator-history__profile {
    width: 100%;
    margin-bottom: 50px;
  }
  .p-about-creator-history__inner {
    display: block;
  }
  .p-about-creator-history__prize {
    width: 100%;
  }
  .p-about-creator-history__prize p {
    flex-wrap: wrap;
    font-size: 1.4rem;
  }
}

/*--SAUNA--*/
.p-sauna-concept {
  background: url("../images/sauna_main_img.jpg") no-repeat center 0;
  background-size: cover;
}
.p-sauna-concept__inner {
  padding-block: 0 calc(400 / 1920 * 100vw);
}
.p-sauna-concept__catch {
  margin-bottom: var( --cont_block-m );
}
.p-sauna-concept__catch img {
  width: 100%;
  max-width: 336px;
  height: auto;
}
.p-sauna-concept__txt, .p-sauna-concept__txt a {
  color: #fff;
}
.p-sauna-concept__txt a:hover {
  text-decoration: none;
}
@media screen and (max-width: 769px) {
  .p-sauna-concept__catch img {
    max-width: 250px;
  }
}

.p-sauna-about__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var( --cont_block-l );
}
.p-sauna-about__inner:last-child {
  margin-bottom: 0;
}
.p-sauna-about-info {
  width: 37%;
}
.p-sauna-about-info__ttl {
  text-align: left;
}
.p-sauna-about__txt {
  margin-bottom: 40px;
}
.p-sauna-about-features {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.p-sauna-about-features__box {
  width: 50%;
  text-align: center;
  padding: 10px 20px 10px 0;
}
.p-sauna-about-features__box:last-child {
  border-left: 1px solid var( --color02 );
  padding: 10px 0 10px 20px;
}
.p-sauna-about-features__img {
  margin-bottom: 20px;
}
.p-sauna-about-features__img img {
  width: 50%;
  max-width: 88px;
}
.p-sauna-about-features__txt {
  line-height: var( --normal-line-height );
  font-size: 2.0rem;
}
.p-sauna-about__img {
  width: 53%;
}
.p-sauna-about__img img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1520px) {
  .p-sauna-about-info {
    width: 40%;
  }
  .p-sauna-about-features__txt {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1200px) {
  .p-sauna-about-features__img img {
    max-width: 70px;
  }
}
@media screen and (max-width: 960px) {
  .p-sauna-about-features__img img {
    max-width: 50px;
  }
  .p-sauna-about-features__txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 769px) {
  .p-sauna-about__inner {
    display: block;
  }
  .p-sauna-about-info {
    width: 100%;
  }
  .p-sauna-about__txt {
    margin-bottom: 30px;
  }
  .p-sauna-about-features {
    margin-bottom: 30px;
  }
  .p-sauna-about-features__txt {
    font-size: 1.4rem;
  }
  .p-sauna-about__img {
    width: 100%;
    text-align: center;
  }
}

.p-sauna-about-gallery {
  width: 45%;
}
.p-sauna-about-gallery__img {
  margin-bottom: 20px;
}
.p-sauna-about-gallery__img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 960px) {
  .p-sauna-about-gallery {
    width: 47%;
  }
  .p-sauna-about-gallery__img {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 769px) {
  .p-sauna-about-gallery {
    width: 100%;
    margin-bottom: 30px;
  }
}

.p-sauna-about-indoor,
.p-sauna-about-main {
  width: 45%;
}
.p-sauna-about-indoor__ttl {
  font-size: 3.0rem;
  margin-bottom: 40px;
}
.p-sauna-about-indoor__txt {
  margin-bottom: 10px;
  letter-spacing: .15em;
}
.p-sauna-about-indoor-link__ttl {
  margin-bottom: -5px;
}
.p-sauna-about-indoor-link__li:not(:nth-last-of-type(1)) {
  margin-bottom: -5px;
}
.p-sauna-about-indoor-link__li a {
  text-decoration: none;
}
.p-sauna-about-indoor-link__li a span {
  text-decoration: underline;
  text-decoration-color: #cfcfd1;
  text-underline-offset: 3px;
  -webkit-transition: .5s ease-in-out;
  transition: all .5s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .p-sauna-about-indoor-link__li a:hover span {
    text-decoration-color: #20303f;
  }
}

.p-sauna-about-main__img img {
  width: 100%;
}
.p-sauna-about-main .slick-dots {
  display: flex;
  bottom: -15px;
}
.p-sauna-about-main .slick-dots li,
.p-sauna-about-main .slick-dots li button {
  height: 1px;
  border-radius: 0;
  cursor: pointer;
}
.p-sauna-about-main .slick-dots li {
  flex: 1;
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}
.p-sauna-about-main .slick-dots li button {
  width: 100%;
  font-size: 0;
  line-height: 0;
  display: block;
  padding: 0;
  color: #fff;
  border: 0;
  outline: 0;
  background: #abb1bb;
}
.p-sauna-about-main .slick-dots li.slick-active button {
  background: var(--color03);
}
@media screen and (max-width: 960px) {
  .p-sauna-about__inner.-indoor {
    display: flex;
    flex-direction: column;
  }
  .p-sauna-about-indoor,
  .p-sauna-about-main {
    width: 100%;
  }
  .p-sauna-about-indoor {
    margin-bottom: 60px;
  }
  .p-sauna-about-main {
    max-width: 800px;
    margin-inline: auto;
  }
  .p-sauna-about-indoor__ttl {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .p-sauna-about-indoor {
    margin-bottom: 50px;
  }
  .p-sauna-about-indoor__ttl {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}

/*--SPA--*/
.p-spa-list__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var( --cont_block-l );
}
.p-spa-list-box {
  width: 45%;
  margin-bottom: 100px;
}
.p-spa-list-box__inner {
  text-decoration: none;
  position: relative;
  display: block;
}
/*.p-spa-list-box__inner:before {
  position: absolute;
  content: "";
  width: 60px;
  height: 60px;
  border: 1px solid #abb1bb;
  border-radius: 60px;
  right: 0;
  bottom: 0;
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.p-spa-list-box__inner:hover:before {
  border: 1px solid var( --color03 );
}*/
.p-spa-list__img {
  overflow: hidden;
}
.p-spa-list__img img {
  width: 100%;
  height: auto;
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.p-spa-list-box__inner:hover .p-spa-list__img img {
  transform: scale( 1.05 );
}
.p-spa-list-ttl {
  width: 66%;
  max-width: 450px;
  background: rgba(178,158,102,0.9);
  padding: 30px;
  position: relative;
  margin: -50px -30px 0 auto;
}
.p-spa-list-ttl:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #cbc1a5;
  left: 0;
  bottom: 10px;
}
.p-spa-list-ttl:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: #cbc1a5;
  right: 10px;
  top: 0;
}
.p-spa-list-ttl__en {
  font-size: 1.5rem;
  line-height: var( --ttl-line-height );
  color: #fff;
}
.p-spa-list-ttl__jp {
  font-size: 2.6rem;
  line-height: var( --ttl-line-height );
  text-align: right;
}
/*.p-spa-list-box__inner .p-spa-list-ttl:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  bottom: 31px;
  right: 25px;
  background: var( --color03 );
}
.p-spa-list-box__inner .p-spa-list-ttl:after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  bottom: 24px;
  right: 28px;
  border: 1px solid var( --color03 );
  border-left: none;
  border-bottom: none;
  transform: rotate( 45deg ) translateY( -50% );
}*/
.p-spa-list-ttl__kana {
	margin-bottom: -2px;
	font-size: 1.3rem;
	line-height: 1.0;
	text-align: right;
}
@media screen and (max-width: 1200px) {
  .p-spa-list-box {
    width: 47%;
    margin-bottom: 70px;
  }
  .p-spa-list-ttl {
    padding: 25px;
  }
  .p-spa-list-ttl__en {
    font-size: 1.3rem;
  }
  .p-spa-list-ttl__jp {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 960px) {
  .p-spa-list-box {
    margin-bottom: 50px;
  }
  .p-spa-list-ttl {
    padding: 20px;
    margin: -30px -20px 0 auto;
  }
}
@media screen and (max-width: 769px) {
  .p-spa-list-box__inner:before {
    width: 30px;
    height: 30px;
  }
  .p-spa-list__img {
    margin-bottom: 10px;
  }
  .p-spa-list-ttl {
    width: 85%;
    padding: 20px;
    margin: -30px -10px 0 auto;
  }
  .p-spa-list-ttl:before {
    bottom: 5px;
  }
  .p-spa-list-ttl:after {
    right: 5px;
  }
  .p-spa-list-ttl__en {
    font-size: 1.1rem;
  }
  .p-spa-list-ttl__jp {
    font-size: 2.0rem;
  }
  /*.p-spa-list-box__inner .p-spa-list-ttl:before {
    width: 8px;
    bottom: 16px;
    right: 12px;
  }
  .p-spa-list-box__inner .p-spa-list-ttl:after {
    width: 4px;
    height: 4px;
    bottom: 12px;
    right: 14px;
  }*/
}
@media screen and (max-width: 600px) {
  .p-spa-list__block {
    display: block;
  }
  .p-spa-list-box {
    width: 100%;
    margin-bottom: 30px;
  }
  .p-spa-list-ttl {
    width: 85%;
    max-width: 450px;
    background: rgba(178,158,102,0.9);
    padding: 15px;
    position: relative;
    margin: -30px -10px 0 auto;
  }
  .p-spa-list-ttl:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #cbc1a5;
    left: 0;
    bottom: 5px;
  }
  .p-spa-list-ttl:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background: #cbc1a5;
    right: 5px;
    top: 0;
  }
  .p-spa-list-ttl__en {
    font-size: 1.1rem;
    line-height: var( --ttl-line-height );
    color: #fff;
  }
  .p-spa-list-ttl__jp {
    font-size: 2.0rem;
    line-height: var( --ttl-line-height );
    text-align: right;
  }
	.p-spa-list-ttl__kana {
		font-size: 1.1rem;
	}
}

.p-spa-analysis {
  background: rgba(18,10,10,0.65);
}
.p-spa-analysis-ttl {
  color: #fff;
}
.p-spa-analysis-lead {
  text-align: center;
  color: #fff;
}
.p-spa-analysis__block {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.6%;
}
.p-spa-analysis-box {
  width: 23%;
  margin-bottom: 30px;
}
.p-spa-analysis-box img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 960px) {
  .p-spa-analysis-box {
    width: 48.7%;
    margin-bottom: 2.6vw;
  }
}

/*--SPA-DETAIL--*/
.p-spa-detail__main {
  margin-bottom: var( --cont_block-l );
}
.p-spa-detail__lead {
  margin-bottom: var( --cont_block-m );
}
.p-spa-detail-gallery {
  margin-bottom: var( --cont_block-l );
}
.p-spa-detail-gallery__img img {
  max-width: 100%;
  height: auto;
}
.p-spa-detail-gallery__001,
.p-spa-detail-gallery__002 {
  margin-bottom: 30px;
}
.p-spa-detail-gallery__001 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-spa-detail-gallery__002 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.p-spa-detail-gallery__002 .p-spa-detail-gallery__img {
  width: 50%;
}
.p-spa-detail-info {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
.p-spa-detail-info__spec {
  width: calc( 100% - 400px );
  border-right: 1px solid var( --color02 );
}
.p-spa-detail-info-spec__dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.p-spa-detail-info-spec__dl dt {
  width: 200px;
  line-height: var( --normal-line-height );
    margin-bottom: 10px;
}
.p-spa-detail-info-spec__dl dd {
  width: calc( 100% - 200px );
  line-height: var( --normal-line-height );
    margin-bottom: 10px;
}
.p-spa-detail-reserve {
  width: 400px;
  display: flex;
  align-items: flex-end;
}
.p-spa-detail-reserve p {
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  .p-spa-detail-info__spec {
    width: calc( 100% - 350px );
  }
  .p-spa-detail-reserve {
    width: 350px;
  }
}
@media screen and (max-width: 960px) {
  .p-spa-detail-info {
    display: block;
  }
  .p-spa-detail-info__spec {
    width: 100%;
    border-right: none;
    margin-bottom: 30px;
  }
  .p-spa-detail-info-spec__dl dt {
    border-right: 1px solid var( --color02 );
  }
  .p-spa-detail-info-spec__dl dd {
    padding-left: 30px;
  }
  .p-spa-detail-reserve {
    width: 100%;
  }
  .p-spa-detail-reserve p {
    margin: 0 auto;
  }
}
@media screen and (max-width: 769px) {
  .p-spa-detail-gallery__002 {
    display: block;
  }
  .p-spa-detail-gallery__002 .p-spa-detail-gallery__img {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .p-spa-detail-info__spec {
    margin-bottom: 50px;
  }
  .p-spa-detail-info-spec__dl dt {
    width: 130px;
  }
  .p-spa-detail-info-spec__dl dd {
    width: calc( 100% - 150px );
  }
}

.p-spa-detail-price {
  margin-bottom: var( --cont_block-m );
}
.p-spa-detail-price__inner {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1px;
}
.p-spa-detail-price__block {
  width: calc( 25% - 1px );
  margin-bottom: 10px;
}
.p-spa-detail-price__dt {
  background: rgba(178,158,102,0.3);
  padding: 5px;
  text-align: center;
}
.p-spa-detail-price__dd {
  border: 1px solid #e3dccb;
  padding: 5px;
  text-align: center;
}
.p-spa-detail-price__txt {
  color: var( --color01 );
  font-size: 1.5rem;
}
@media screen and (max-width: 769px) {
  .p-spa-detail-price__block {
    width: calc( 50% - 1px );
    margin-bottom: 0px;
  }
  .p-spa-detail-price__dt {
    padding: 3px;
    font-size: 1.3rem;
  }
  .p-spa-detail-price__dd {
    padding: 3px;
    font-size: 1.3rem;
  }
  .p-spa-detail-price__txt {
    font-size: 1.3rem;
  }
}


/*--ACCESS--*/
.p-access-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction:row-reverse;
  margin-bottom: var( --cont_block-ml );
}
.p-access-main-info {
  width: 50%;
}
.p-access-main-info__ttl {
  font-size: 3.0rem;
  margin-bottom: 30px;
}
.p-access-main-info__txt {
  margin-bottom: 50px;
}
.p-access-main-name {
  font-size: 2.0rem;
  margin-bottom: 5px;
}
.p-access-main-img {
  width: 46%;
}
.p-access-main-img img {
  width: 100%;
  height: auto;
}
.p-access-cont-map {
  margin-bottom: var( --cont_block-l );
}
.p-access-route {
  margin-bottom: var( --cont_block-ll );
}
.p-access-route__img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .p-access-main-name {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 960px) {
  .p-access-main-info__ttl {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  .p-access-main-info__txt {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 769px) {
  .p-access-main {
    display: block;
  }
  .p-access-main-info {
    width: 100%;
  }
  .p-access-main-info__ttl {
    font-size: 2.0rem;
    margin-bottom: 10px;
  }
  .p-access-main-name {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
  .p-access-main-img {
    width: 100%;
    margin-bottom: 20px;
  }
  .p-access-cont-map iframe {
    height: 90vw;
    max-height: 500px;
  }
  .p-access-route {
    margin-bottom: var( --cont_block-ll );
  }
}

/*--PRICE--*/
.p-price {
  margin-bottom: var( --cont_block-ml );
}
.p-price-ttl {
  display: flex;
  justify-content: flex-start;
  padding: 0 0 20px 0;
}
.p-price-ttl__name {
  width: 45%;
}
.p-price-ttl__cont {
  width: 15%;
  text-align: center;
}
.p-price-dl {
  margin-bottom: 10px;
  border-top: 1px solid var( --color02 );
}
.p-price-dl__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid var( --color02 );
  padding: 20px 0;
}
.p-price-dt,
.p-price-dd {
}
.p-price-dt {
  width: 45%;
  font-size: 2.4rem;
  /*display: flex;
  justify-content: flex-start;
  align-items: center;*/
  line-height: 1.6;
}
.p-price-dt .p-price-dt__head {
	margin-bottom: 5px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.p-price-dt span {
  font-size: 1.3rem;
  line-height: 1.0;
  display: inline-block;
  margin-left: 20px;
}
.p-price-dt span.p-price-dt__num {
	margin-inline: 0 20px;
	color: #abb1bb;
	font-size: 2rem;
}
.p-price-dt span.p-price-dt__ja {
	margin-left: 10px;
	color: #b29e66;
	font-size: 1.3rem;
}
.p-price-dt__bot {
	padding-left: 44px;
	display: flex;
	align-items: flex-start;
	font-size: 1.3rem;
}
.p-price-dt span.p-price-dt__label {
	margin-inline: 0 10px;
	padding: 3px 5px;
	color: #fff;
	background: #b29e66;
}
.p-price-dt span.p-price-dt__features {
	margin-left: 0;
	line-height: 1.5;
}
.p-price-dd {
  width: 15%;
  text-align: center;
  font-size: 1.8rem;
}
.p-price-dd span {
  display: none;
}
.p-price-link {
  width: 10%;
}
.p-price-link a {
  display: block;
  position: relative;
  width: 50px;
  height: 50px;
  border: 1px solid #abb1bb;
  margin-left: auto;
  border-radius: 50px;
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.p-price-link a:hover {
  border: 1px solid var( --color03 );
}
.p-price-link a:before {
  position: absolute;
  content: "";
  width: 12px;
  height: 1px;
  background: var( --color03 );
  top: 50%;
  left: calc( 50% - 6px );
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.p-price-link a:hover:before {
  right: 30px;
}
.p-price-link a:after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border: 1px solid var( --color03 );
  border-bottom: none;
  border-left: none;
  top: calc( 50% - 3px );
  left: calc( 50% - 2px );
  transform: rotate(45deg);
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.p-price-link a:hover:after {
  right: 30px;
}
.p-price__txt {
  color: var( --color01 );
  font-size: 1.5rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 959px) {  
  .p-price-ttl {
    display: none;
  }
  .p-price-dl {
    margin-bottom: 10px;
  }
  .p-price-dl__block {
    padding: 15px 0;
  }
  .p-price-dt {
    width: 100%;
    font-size: 2.0rem;
    margin-bottom: 5px;
  }
  .p-price-dt span {
    font-size: 1.2rem;
    margin-left: 10px;
  }
	.p-price-dt .p-price-dt__head {
		margin-bottom: 2px;
	}
	.p-price-dt span.p-price-dt__num {
		margin-inline: 0 10px;
		font-size: 1.6rem;
	}	
	.p-price-dt span.p-price-dt__ja {
		margin-left: 5px;
		font-size: 1.2rem;
	}
	.p-price-dt__bot {
		padding-left: 30px;
	}
  .p-price-dd {
    width: 29.3%;
    text-align: left;
    font-size: 1.4rem;
    line-height: var( --normal-line-height );
  }
  .p-price-dd span {
    font-size: 1.1rem;
    display: inline;
    margin-right: 10px;
  }
  .p-price-link {
    width: 12%;
  }
  .p-price-link a {
    width: 30px;
    height: 30px;
  }
  .p-price-link a:before {
    width: 8px;
    height: 1px;
    left: calc( 50% - 5px );
  }
  .p-price-link a:after {
    width: 4px;
    height: 4px;
    top: calc( 50% - 2px );
    left: calc( 50% - 1px );
  }
  .p-price__txt {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 600px) {
  .p-price-ttl {
    border-bottom: 1px solid var( --color02 );
  }
  .p-price-dd span {
    display: block;
  }
}

/*--NEWS--*/
.p-news-lead {
  padding: 0 0 70px;
	border-bottom: 1px solid var( --color02 );
}
.p-news-lead__txt {
  margin-bottom: 70px;
}
.p-news-archive__inner {
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.p-news-archive__inner .p-na-select select {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	border: 1px solid #abb1bb;
	padding: 0 50px 0 40px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
  background: url(../images/select_down.png) no-repeat;
  background-size: 8px 8px;
  background-position: right 30px center;
	border-radius: 100px;
  width: 280px;
  height: 60px;
  letter-spacing: 0.1em;
  cursor: pointer;
}
@-moz-document url-prefix() { /* for firefox */
  .p-news-archive__inner .p-na-select select {
      background:none;
      background-color: #FFF;
  }
}
@media screen and (max-width: 769px) {
  .p-news-lead {
    padding: 0 0 50px;
  }
  .p-news-lead__txt {
    margin-bottom: 50px;
  }
  .p-news-archive__inner .p-na-select select {
    padding: 0 40px 0 30px;
    background-position: right 20px center;
    width: 220px;
    height: 50px;
  }
}

.p-news-list__block {
	width: 100%;
	margin: 0 auto;
	position: relative;
}
.p-news-article {
	border-bottom: 1px solid var( --color02 );
	position: relative;
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.p-news-article:last-child {
  margin-bottom: 100px;
}
.p-news-article:hover {
	border-bottom: 1px solid var( --color03 );
}
.p-news-article:before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  border: 1px solid #abb1bb;
  border-radius: 50px;
  top: calc( 50% - 25px );
  right: 20px;
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.p-news-article:hover:before {
  right: 10px;
  border: 1px solid var( --color03 );
}
.p-news-article a {
	text-decoration: none;
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  padding: 35px 110px 35px 10px;
	display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.p-news-article a:before {
  position: absolute;
  content: "";
  width: 12px;
  height: 1px;
  background: var( --color03 );
  top: 50%;
  right: 40px;
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.p-news-article a:hover:before {
  right: 30px;
}
.p-news-article a:after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border: 1px solid var( --color03 );
  border-bottom: none;
  border-left: none;
  top: calc( 50% - 3px );
  right: 40px;
  transform: rotate(45deg);
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.p-news-article a:hover:after {
  right: 30px;
}
.p-news-article__date {
  width: 150px;
  padding: 0 10px;
}
.p-news-article__ttl {
  width: calc( 100% - 150px );
	font-size: 1.6rem;
}
@media screen and (max-width: 960px) {
  .p-news-article:before {
    right: 10px;
  }
  .p-news-article a {
    display: block;
  }
  .p-news-article a:before {
    right: 30px;
  }
  .p-news-article a:hover:before {
    right: 20px;
  }
  .p-news-article a:after {
    right: 30px;
  }
  .p-news-article a:hover:after {
    right: 20px;
  }
  .p-news-article__date {
    width: 100%;
    padding: 0 10px 0 0;
  }
  .p-news-article__ttl {
    width: 100%;
  }
}
@media screen and (max-width: 769px) {
  .p-news-article:before {
    width: 30px;
    height: 30px;
    top: calc( 50% - 15px );
    right: 0;
  }
  .p-news-article:hover:before {
    right: 0;
  }
  .p-news-article a {
    padding: 25px 40px 25px 0;
  }
  .p-news-article a:before {
    width: 8px;
    right: 12px;
  }
  .p-news-article a:hover:before {
    top: 50%;
    right: 12px;
  }
  .p-news-article a:after {
    width: 4px;
    height: 4px;
    top: calc( 50% - 2px );
    right: 12px;
  }
  .p-news-article a:hover:after {
    top: calc( 50% - 2px );
    right: 12px;
  }
  .p-news-article__ttl {
    font-size: 1.4rem;
  }
}

/*--News Detail--*/
.p-news-detail__block {
	width: 100%;
	margin: 0 auto var( --cont_block-ml );
	position: relative;
}
.p-news-detail__ttl-area {
  position: relative;
  padding: 0 0 40px;
  border-bottom: 1px solid var( --color02 );
  margin-bottom: var( --cont_block-ml );
}
.p-news-detail__ttl {
  font-size: 3.6rem;
  line-height: var( --normal-line-height );
}
.p-news-detail__block .p-news-entry h2 {
	font-size: 2.2rem;
	margin: 0 0 30px;
	padding: 0 0 0 14px;
	position: relative;
  font-family: var(--font-family-jp);
}
.p-news-detail__block .p-news-entry h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 4px;
	height: 30px;
	background: var( --color01 );
}
.p-news-detail__block .p-news-entry h3 {
	font-size: 1.8rem;
	margin: 0 0 20px;
	padding: 0 0 0 14px;
	position: relative;
  font-family: var(--font-family-jp);
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
.p-news-detail__block .p-news-entry h3::before {
	content: '';
	position: absolute;
	top: 100%;
	border-style: solid;
	border-color: transparent;
	left: 0;
	top: 16px;
	width: 2px;
	height: 2px;
	background: var( --color01 );
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}
.p-news-detail__block .p-news-entry h4 {
	font-size: 1.6rem;
	margin-bottom: 20px;
  font-family: var(--font-family-jp);
}
.p-news-detail__block .p-news-entry img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.p-news-detail__block .p-news-entry img.alignright {
  margin: 0 0 0 10px;
  display: inline;
}	 
.p-news-detail__block .p-news-entry img.alignleft {
  margin: 0 10px 0 0;
  display: inline;
}		 
.p-news-detail__block .p-news-entry .aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}  
.p-news-detail__block .p-news-entry .alignright {
  float: right;
} 
.p-news-detail__block .p-news-entry .alignleft {
  float: left;
}
.p-news-detail__block .p-news-entry p{
	margin-bottom: 20px;
}
.p-news-detail__block .p-news-entry img {
	margin-bottom: 10px;
}
.p-news-detail__block .p-news-entry a {
	color: var( --color01 );
}
@media screen and (max-width: 1200px) {
  .p-news-detail__ttl-area {
    padding: 0 0 30px;
  }
  .p-news-detail__ttl {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 960px) {
  .p-news-detail__ttl {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 769px) {
  .p-news-detail__ttl-area {
    margin-bottom: var( --cont_block-ml );
  }
  .p-news-detail__ttl {
    font-size: 2.2rem;
  }
  .p-news-detail__block .p-news-entry h2 {
    font-size: 1.8rem;
  }
  .p-news-detail__block .p-news-entry h2::before {
    top: 5px;
  }
  .p-news-detail__block .p-news-entry h3 {
    font-size: 1.6rem;
  }
  .p-news-detail__block .p-news-entry h3::before {
    top: 14px;
  }
  .p-news-detail__block .p-news-entry h4 {
    font-size: 1.5rem;
  }
  .p-news-detail__block .p-news-entry img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .p-news-detail__block .p-news-entry img.alignright {
    margin: 0 auto;
    display: block;
  }	 
  .p-news-detail__block .p-news-entry img.alignleft {
    margin: 0 auto;
    display: block;
  }		 
  .p-news-detail__block .p-news-entry .aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }  
  .p-news-detail__block .p-news-entry .alignright {
    float: none;
  } 
  .p-news-detail__block .p-news-entry .alignleft {
    float: none;
  }
}
@media screen and (max-width: 500px) {
  .p-news-detail__block .p-news-entry {
    padding: 0;
  }
}

/*--Pager--*/
.p-pager {
	margin: 50px 0 ;
	text-align:center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.p-pager span,
.p-pager a {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 7px;
	width: 40px;
	height: 40px;
	line-height: 1.0;
	border: 1px solid #abb1bb;
	font-size: 1.4rem;
	-moz-border-radius: 40px;
	-webkit-border-radius: 40px;
	border-radius: 40px;
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
	letter-spacing: 0.05em;
}
.p-pager a {
	color: var( --color03 );
	text-decoration:none;
	background: none;
}
.p-pager span,
.p-pager a:hover {
  background: rgba(18,10,10,0.45);
	color: #fff;
	border: none;
	text-decoration:none;
}
.p-pager a.next ,
.p-pager a.prev {
  color: var( --color03 );
  border: none;
  border-radius: 0;
	width: 60px;
	height: 40px;
  position: relative;
}
.p-pager a.next {
  justify-content: flex-start;
  margin: 0 0 0 30px;
}
.p-pager a.prev {
  justify-content: flex-end;
  margin: 0 30px 0 0;
}
.p-pager a:hover.next ,
.p-pager a:hover.prev {
  background: none;
}
.p-pager a.prev:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  bottom: 19px;
  left: -3px;
  background: var( --color03 );
}
.p-pager a.prev:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  bottom: 14px;
  left: -4px;
  border: 1px solid var( --color03 );
  border-right: none;
  border-top: none;
  transform: rotate( 45deg ) translateY( -50% );
}
.p-pager a.next:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  bottom: 19px;
  right: -3px;
  background: var( --color03 );
}
.p-pager a.next:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  bottom: 14px;
  right: 0;
  border: 1px solid var( --color03 );
  border-left: none;
  border-bottom: none;
  transform: rotate( 45deg ) translateY( -50% );
}
@media screen and (max-width: 769px) {
  .p-pager span,
  .p-pager a {
    margin: 0 3px;
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
  }
  .p-pager a.next ,
  .p-pager a.prev {
    width: 45px;
  }
  .p-pager a.next {
    margin: 0 0 0 10px;
  }
  .p-pager a.prev {
    margin: 0 10px 0 0;
  }
}

.p-detail-pager {
  border-top: 1px solid var( --color02 );
  padding: 60px 0 0;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items: center;
}
.p-detail-pager div {
  width: 33%;
}
.p-detail-pager a {
  font-size: 1.4rem;
  text-decoration: none;
  position: relative;
  display: inline-block;
}
.p-detail-pager a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: var( --color03 );
  bottom: -10px;
  left: 0;
  opacity: 0;
  transition: all .5s;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}
.p-detail-pager a:hover:before {
  opacity: 1;
}
.p-detail-pager__list {
	text-align: center;
}
.p-detail-pager__prev {
	text-align: left;
}
.p-detail-pager__next {
	text-align: right;
}
.p-detail-pager__prev span {
  padding: 0 0 0 20px;
}
.p-detail-pager__next span {
  padding: 0 20px 0 0;
}
.p-detail-pager__prev span,
.p-detail-pager__next span {
  position: relative;
}
.p-detail-pager__prev span:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  top: 50%;
  left: -3px;
  background: var( --color03 );
}
.p-detail-pager__prev span:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 50%;
  left: -4px;
  border: 1px solid var( --color03 );
  border-right: none;
  border-top: none;
  transform: rotate( 45deg ) translateY( -50% );
}
.p-detail-pager__next span:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  top: 50%;
  right: -3px;
  background: var( --color03 );
}
.p-detail-pager__next span:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 50%;
  right: 0;
  border: 1px solid var( --color03 );
  border-left: none;
  border-bottom: none;
  transform: rotate( 45deg ) translateY( -50% );
}


/*editor*/
/* Alignments */
.alignleft {
  float: left;
  margin-right: 1rem;
}
@media only screen and (min-width: 768px) {
  .alignleft {
    margin-right: calc(2 * 1rem);
  }
}
.alignright {
  float: right;
  margin-left: 1rem;
}
@media only screen and (min-width: 768px) {
  .alignright {
    margin-left: calc(2 * 1rem);
  }
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*キャプション崩れ*/
.wp-caption {
	max-width: 100% !important;
}


/*--ABOUT US--*/
.p-us {
  padding-bottom: var(--cont_block-ll);
}
.p-us__philosophy {
  margin-bottom: 230px;
  position: relative;
  z-index: 0;
}
.p-us__philosophy:before {
  width: 595px;
  aspect-ratio: 595 / 596;
  margin-left: -298px;
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  background: url("../images/aboutus_logo.svg") no-repeat 0 0 / 100%;
  opacity: 0;
  animation: blur 0.8s ease-in-out 1.5s forwards;
}
.p-us-philosophy__inner * {
  font-family: var(--font-family-jp);
}
.p-us-philosophy__cont {
  margin-bottom: 15px;
}
.p-us-philosophy__cont:nth-last-of-type(1) {
  margin-bottom: 30px;
}
.p-us-philosophy__txt {
  font-size: 2rem;
  line-height: 2.5;
  text-align: center;
}
.p-us-philosophy__txt span {
  color: var(--color01);
  font-size: 2.4rem;
}
.p-us-philosophy__name {
  font-size: 3rem;
  line-height: 1.5;
  text-align: center;
}
.p-us-philosophy__name span {
  font-size: 1.6rem;
}

.p-us-recruit__ttl {
  margin-bottom: 25px;
  font-family: var(--font-family-jp);
  font-size: 3rem;
}
.p-us-recruit__block {
  display: flex;
  align-items: flex-start;
}
.p-us-recruit__col01,
.p-us-recruit__col02 {
  width: 50%;
}
.p-us-recruit__col01 {
  padding-right: 40px;
}
.p-us-recruit__col02 {
  padding-left: 40px;
}
.p-us-recruit-col__lead {
  margin-bottom: 25px;
}
.p-us-recruit-col__txt {
  margin-bottom: -10px;
}
.p-us-recruit-col__tel span {
  font-size: 2.6rem;
}
.p-us-recruit-col__table {
  width: 100%;
  margin-bottom: 15px;
}
.p-us-recruit-col__table dl {
  width: 100%;
  padding-block: 19px 16px;
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid var(--color02);
}
.p-us-recruit-col__table dl:nth-of-type(1) {
  border-top: 1px solid var(--color02);
}
.p-us-recruit-col__table dl dt {
  width: 135px;
}
.p-us-recruit-col__table dl dd {
  width: calc(100% - 135px);
}
.p-us-recruit-col__note {
  color: var(--color01);
  font-size: 1.5rem;
}

@media screen and (max-width: 960px) {
  .p-us__philosophy {
    margin-bottom: 180px;
  }
  .p-us-philosophy__txt {
    font-size: 1.6rem;
  }
  .p-us-philosophy__txt span {
    font-size: 2rem;
  }
  .p-us-philosophy__name {
    font-size: 2.4rem;
  }
  .p-us-philosophy__name span {
    font-size: 1.4rem;
  }

  .p-us-recruit__ttl {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }
  .p-us-recruit__block {
    flex-direction: column;
  }
  .p-us-recruit__col01,
  .p-us-recruit__col02 {
    width: 100%;
    padding: 0;
  }
  .p-us-recruit__col01 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 769px) {
  .p-us__philosophy {
    margin-bottom: 140px;
  }
  .p-us-recruit__ttl {
    font-size: 2rem;
  }
  .p-us-recruit-col__table dl dt {
    width: 100px;
  }
  .p-us-recruit-col__table dl dd {
    width: calc(100% - 100px);
  }
  .p-us-recruit-col__note {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 600px) {
  .p-us__philosophy {
    margin-bottom: 100px;
  }
  .p-us-philosophy__txt {
    line-height: 2.2;
  }
  .p-us-recruit-col__table dl dt {
    width: 80px;
  }
  .p-us-recruit-col__table dl dd {
    width: calc(100% - 80px);
  }
}


/* ====================================
Utility
====================================== */
.u-font-s {
  font-size: 1.5rem;
}
@media screen and (max-width:769px) {
  .u-font-s {
    font-size: 1.2rem;
  }
}
.u-left {
  text-align: left !important;
}
.u-right {
  text-align: right;
}
.u-center {
  text-align: center;
}
.u-mb15 { margin-bottom: 15px; }
/*----クリア----*/
.clear { clear: both; }
/*--clearfix--*/
.cf, main {
  *zoom: 1;
}
.cf:before, .cf:after, main:before, main:after {
  content: " ";
  display: table;
}
.cf:after, main:after, .p-news-entry:after {
  clear: both;
}
/*--show/hide--*/
.u-cont-sll { display: none; }
.u-cont-sl { display: none; }
.u-cont-sm { display: none; }
.u-cont-sn { display: none; }
.u-cont-st  { display: none; }
.u-cont-s { display: none; }
.u-cont-pll { display: block; }
.u-cont-pl { display: block; }
.u-cont-pm { display: block; }
.u-cont-pn { display: block; }
.u-cont-pt  { display: block; }
.u-cont-p { display: block; }
@media screen and (max-width:1620px) {
	.u-cont-sll { display: block; }
	.u-cont-pll { display: none; }
}
@media screen and (max-width:1400px) {
	.u-cont-sl { display: block; }
	.u-cont-pl { display: none; }
}
@media screen and (max-width:1200px) {
	.u-cont-sm { display: block; }
	.u-cont-pm { display: none; }
}
@media screen and (max-width:960px){
	.u-cont-sn { display: block; }
	.u-cont-pn { display: none; }
}
@media screen and (max-width:769px) {
	.u-cont-st  { display: block; }
	.u-cont-pt  { display: none; }
}
@media screen and (max-width:600px) {
	.u-cont-s  { display: block; }
	.u-cont-p  { display: none; }
}

/*--
.p-price-dt span.p-price-dt__num,
.p-price-dt span.p-price-dt__ja,
.p-price-dt p.p-price-dt__bot,
.p-spa-list-ttl__kana,
.c-page-ttl__remarks {
	display: none;
}
.p-price-dt .p-price-dt__head {
	margin-bottom: 0;
}
--*/


.l-passport {
	width: 200px;
	height: 200px;
	position: fixed;
	right: 20px;
	bottom: 50px;
	transition: all .5s;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}
.l-passport a {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 200px;
	height: 200px;
	background: rgba(175, 154, 100, 0.6);
	border-radius: 50%;
	text-decoration: none;
	transition: all .5s;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}
.l-passport a:hover {
    background: rgba(175, 154, 100, 1);
}
.l-passport a:before {
	position: absolute;
    content: "";
    width: 15px;
    height: 1px;
    bottom: 27px;
    left: calc( 50% - 3px );
    background: #ffffff;
    transition: all .5s;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}
.l-passport a:hover:before {
    width: 25px;
    left: calc( 50% - 12px );
}
.l-passport a:after {
	position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    bottom: 20px;
    left: 50%;
    border: 1px solid #ffffff;
    border-left: none;
    border-bottom: none;
    transform: rotate(45deg) translateY(-50%);
    transition: all .5s;
    -webkit-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}
.c-pass_en {
	display: inline-block;
	margin-bottom: 5px;
	font-size: 1.2rem;
	color: #ecdeb5;
	text-align: center;
}
.c-pass__txt {
	color: #ffffff;
	font-size: 2.0rem;
	line-height: 1.4;
	text-align: center;
}
@media screen and (max-width:1200px) {
	.l-passport {
		width: 140px;
		height: 140px;
	}
	.l-passport a {
		width: 140px;
		height: 140px;
	}
	.l-passport a:before {
		bottom: 15px;
	}
	.l-passport a:after {
		bottom: 8px;
	}
	.c-pass_en {
		font-size: 1.0rem;
	}
	.c-pass__txt {
		font-size: 1.4rem;
	}
}
@media screen and (max-width:640px) {
	.l-passport {
		width: 180px;
		height: 60px;
		right: 20px;
		top: 80px;
	}
	.l-passport a {
		width: 180px;
		height: 60px;
		border-radius: 40px;
	}
	.l-passport a:before {
		display: none;
	}
	.l-passport a:after {
		display: none;
	}
	.c-pass_en {
		margin-bottom: 0px;
		line-height: 1.0;
	}
	.c-pass__txt {
		font-size: 1.2rem;
	}
}

/*--HOT SPRING--*/
.p-hotspring-concept {
  background: url("../images/hotspring_main_img.jpg") no-repeat center 0;
  background-size: cover;
}
.p-hotspring-concept__catch {
  margin-bottom: 40px;
  color: #fff;
  font-size: 3.8rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.p-hotspring-concept__inner {
  padding-block: calc(40 / 1920 * 100vw) calc(390 / 1920 * 100vw);
}

.p-hotspring-features-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 100px 10%;
}
.p-hotspring-features-info__block {
  width: 45%;
  display: flex;
}
.p-hotspring-features-info-block__img {
  width: 50%;
  max-width: 340px;
}
.p-hotspring-features-info-block__img img {
  width: 100%;
}
.p-hotspring-features-info-block__cont {
  width: 50%;
  padding-left: 40px;
}
.p-hotspring-features-info-block__num {
  margin-bottom: 10px;
  color: var( --color01 );
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 1;
}
.p-hotspring-features-info-block__ttl {
  margin-bottom: 15px;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.p-hotspring-features-info-block__txt {
  line-height: 2;
}

.p-hotspring-quality {
  background: rgba(18, 10, 10, .65);
}
.p-hotspring-quality__inner {
  display: flex;
}
.p-hotspring-quality__ttl {
  width: 39.5%;
  margin-bottom: 0;
  text-align: left;
}
.p-hotspring-quality__list {
  width: 60.5%;
}
.p-hotspring-quality-list__item {
  display: flex;
  align-items: flex-start;
}
.p-hotspring-quality-list__item:not(:nth-last-of-type(1)) {
  margin-bottom: 10px;
}
.p-hotspring-quality-list__item dt {
  width: 100px;
  padding-block: 17px;
  color: #fff;
  line-height: 1;
  text-align: center;
  background: rgba(178, 158, 102, .3);
}
.p-hotspring-quality-list__item dd {
  width: calc(100% - 100px);
  padding: 8px 0 0 30px;
  color: #fff;
}

@media screen and (max-width: 1620px) {
  .p-hotspring-features-info {
    gap: 6vw 10%;
  }
}
@media screen and (max-width: 1200px) {
  .p-hotspring-concept__catch {
    font-size: 3.2rem;
  }
  .p-hotspring-features-info-block__ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 960px) {
  .p-hotspring-concept__catch {
    font-size: 2.8rem;
  }
  .p-hotspring-features-info {
    gap: 6vw 6%;
  }
  .p-hotspring-features-info__block {
    width: 47%;
    flex-direction: column;
  }
  .p-hotspring-features-info-block__img {
    width: 100%;
    margin-bottom: 25px;
    max-width: none;
  }
  .p-hotspring-features-info-block__cont {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (max-width: 769px) {
  .p-hotspring-concept__catch {
    font-size: 2.4rem;
  }
  .p-hotspring-quality__inner {
    flex-direction: column;
  }
  .p-hotspring-quality__ttl {
    width: 100%;
    margin-bottom: var( --cont_block-ml );
  }
  .p-hotspring-quality__list {
    width: 100%;
  }
  .p-hotspring-features-info {
    gap: 30px 0;
  }
  .p-hotspring-features-info__block {
    width: 100%;
  }
  .p-hotspring-features-info-block__img {
    margin-bottom: 20px;
  }
  .p-hotspring-features-info-block__ttl {
    margin-bottom: 10px;
  }
  .p-hotspring-quality-list__item dt {
    width: 60px;
    padding-block: 10px;
  }
  .p-hotspring-quality-list__item dd {
    width: calc(100% - 60px);
    padding: 4px 0 0 15px;
  }
}
