/*==================================================
1.leyout 
==================================================*/
/*--------------------------------------
html,body,wrapper
----------------------------------------*/
html {
  font-family: a-otf-gothic-bbb-pr6n, sans-serif;
  line-height: 1.6;
  font-size: 62.5%;
}

@media all and (min-width: 768px) {
  body {
    min-width: 1100px;
  }
}

/*--------------------------------------
l-header
----------------------------------------*/
.l-header {
  position: fixed;
  z-index: 100000;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff;
  font-size: 1.7rem;
  color: #333;
}

@media all and (min-width: 768px) {
  .l-header {
    min-width: 1100px;
  }
}

.l-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1330px;
  height: 80px;
  margin: 0 auto;
  padding: 0 15px;
}

@media all and (min-width: 768px) {
  .l-header-row {
    min-width: 1100px;
  }
}

@media all and (max-width: 767px) {
  .l-header-row {
    height: 60px;
    padding: 0 3.125%;
  }
}

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

.l-header-logo {
  display: block;
  padding-right: 45px;
}

@media all and (max-width: 767px) {
  .l-header-logo {
    width: 25vw;
    padding-right: 0;
  }
}

@media all and (max-width: 767px) {
  .l-header-nav {
    position: absolute;
    top: 60px;
    left: 0;
    opacity: 0;
    pointer-events: none;
    width: 100%;
    transition: all .4s;
  }
}

@media all and (max-width: 767px) {
  .l-header-nav.-show {
    opacity: 1;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.9);
  }
}

.l-header-nav ul {
  display: flex;
}

@media all and (max-width: 767px) {
  .l-header-nav ul {
    display: block;
    padding: 20px 0;
  }
}

.l-header-nav ul li {
  padding: 0 10px;
}

.l-header-nav ul li a {
  font-family: ten-mincho, serif;
}

@media all and (max-width: 767px) {
  .l-header-nav ul li a {
    display: block;
    padding: 10px 0;
    text-align: center;
    font-size: 2rem;
  }
}

.l-header-booking {
  display: block;
  width: 180px;
  height: 40px;
  line-height: 40px;
  background: #808065;
  color: #fff;
  text-align: center;
  letter-spacing: .05em;
}

.l-header-lang-sp {
  display: none;
}

@media all and (max-width: 767px) {
  .l-header-lang-sp {
    display: inline-block;
    margin-left: 12px;
    padding: 4px 10px;
    font-family: ten-mincho, serif;
    font-size: 1.1rem;
    line-height: 1;
    letter-spacing: .05em;
    color: #808065;
    background: #fff;
    border: 1px solid #808065 !important;
    white-space: nowrap;
  }
}

@media all and (max-width: 767px) {
  .l-header-booking {
    width: 24vw;
    height: 35px;
    margin-right: calc(3.125vw + 50px);
    line-height: 35px;
    font-size: 1.4rem;
  }
}

.l-header-booking.-center {
  margin: 0 auto;
}

.l-header-tel {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto 40px;
}

.l-header-tel dt {
  padding-right: 5px;
  font-size: 1.8rem;
}

.l-header-tel dd {
  font-size: 2.6rem;
}

/*--------------------------------------
l-gnav
----------------------------------------*/
.l-gnav-btn {
  position: absolute;
  right: 3.125%;
  top: 5px;
  width: 50px;
  height: 30px;
  margin: auto;
}

.l-gnav-btn:after {
  content: "MENU";
  position: absolute;
  bottom: -22px;
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
}

.l-gnav-btn__line {
  position: absolute;
  left: 0;
  right: 0;
  width: 40px;
  height: 0;
  margin: 3px auto;
  border-top: solid 2px #000;
  transition: all .4s;
}

.l-gnav-btn__line:nth-child(1) {
  top: calc(50% - 10px);
}

.l-gnav-btn__line:nth-child(2) {
  top: calc(50%);
}

.l-gnav-btn__line:nth-child(3) {
  top: calc(50% + 10px);
}

.l-gnav-btn.-show .l-gnav-btn__line:nth-child(1) {
  top: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.l-gnav-btn.-show .l-gnav-btn__line:nth-child(2) {
  display: none;
}

.l-gnav-btn.-show .l-gnav-btn__line:nth-child(3) {
  top: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*--------------------------------------
l-main
----------------------------------------*/
.l-main {
  display: block;
  line-height: 1.6;
  background: #e7e7e7;
  font-size: 1.7rem;
}

@media all and (max-width: 767px) {
  .l-main {
    font-size: 1.4rem;
  }
}

/*--------------------------------------
l-pagetop
----------------------------------------*/
.l-pagetop {
  position: fixed;
  z-index: 9999;
  bottom: 30px;
  right: 30px;
}

@media all and (max-width: 767px) {
  .l-pagetop {
    bottom: 20px;
    right: 20px;
  }
}

/*--------------------------------------
l-footer
----------------------------------------*/
.l-footer {
  background: url("../img/common/footer-bg-100.jpg") no-repeat right center/cover;
  color: #333;
  font-size: 1.6rem;
}

@media all and (max-width: 767px) {
  .l-footer {
    background: none;
    text-align: center;
  }
}

.l-footer-row {
  width: 100%;
  max-width: 1330px;
  padding: 0 15px;
  margin: 0 auto;
}

@media all and (max-width: 767px) {
  .l-footer-row {
    padding: 60px 8%;
  }
}

.l-footer-unit {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 500px;
  height: 314px;
}

@media all and (max-width: 767px) {
  .l-footer-unit {
    width: 100%;
    height: auto;
  }
}

.l-footer-unit:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transform: skewX(-15deg);
          transform: skewX(-15deg);
}

@media all and (max-width: 767px) {
  .l-footer-unit:before {
    content: none;
  }
}

.l-footer-unit__inner {
  position: relative;
  z-index: 2;
}

.l-footer-ttl {
  display: flex;
  margin-bottom: 30px;
  color: #808065;
  font-size: 1.5rem;
}

@media all and (max-width: 767px) {
  .l-footer-ttl {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.l-footer-ttl__logo {
  width: 140px;
  -ms-grid-row-align: center;
      align-self: center;
  padding-right: 20px;
}

@media all and (max-width: 767px) {
  .l-footer-ttl__logo {
    width: 25vw;
    margin: 0 auto 15px auto;
    padding-right: 0;
  }
}

.l-footer-ttl__txt {
  display: block;
  font-family: ten-mincho, serif;
}

@media all and (max-width: 767px) {
  .l-footer-ttl__txt {
    width: 100%;
    text-align: center;
  }
}

.l-footer-ttl__en {
  display: block;
  font-size: 1.4rem;
  letter-spacing: .3em;
}

.l-footer-ttl__jp {
  font-size: 1.5rem;
  letter-spacing: .4em;
}

.l-footer-address {
  font-size: 1.6rem;
}

.l-footer-tel {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  letter-spacing: .2em;
}

@media all and (max-width: 767px) {
  .l-footer-tel {
    justify-content: center;
  }
}

.l-footer-tel dt {
  padding-right: 5px;
  font-size: 2rem;
}

.l-footer-tel dd {
  font-size: 2.9rem;
}

@media all and (max-width: 374px) {
  .l-footer-tel dd {
    font-size: 2.4rem;
  }
}

.l-footer-copy {
  font-size: 1.5rem;
  letter-spacing: .1em;
}

/*--------------------------------------
l-page-heaer
----------------------------------------*/
.l-page-header {
  padding: 170px 0 130px 0;
  background: linear-gradient(to bottom, #fff 0%, #ececec 100%);
  text-align: center;
  font-family: ten-mincho, serif;
  font-weight: bold;
  color: #808065;
}

@media all and (max-width: 767px) {
  .l-page-header {
    padding: 90px 8% 40px 8%;
  }
}

.l-page-header.-low {
  padding-bottom: 60px;
}

@media all and (max-width: 767px) {
  .l-page-header.-low {
    padding-bottom: 40px;
  }
}

.l-page-header.-middle {
  padding-bottom: 80px;
}

@media all and (max-width: 767px) {
  .l-page-header.-middle {
    padding-bottom: 40px;
  }
}

.l-page-header__logo {
  margin-bottom: 30px;
}

@media all and (max-width: 767px) {
  .l-page-header__logo {
    width: 25vw;
    margin: 0 auto 30px auto;
  }
}

.l-page-header__en {
  font-size: 1.6rem;
  font-family: a-otf-gothic-bbb-pr6n, sans-serif;
  letter-spacing: .3em;
}

.l-page-header__jp {
  margin-bottom: 10px;
  font-size: 5.2rem;
  line-height: 1.3;
}

@media all and (max-width: 767px) {
  .l-page-header__jp {
    font-size: 9.5vw;
  }
}

.l-page-header__txt {
  line-height: 1.8;
  font-size: 1.9rem;
}

@media all and (max-width: 767px) {
  .l-page-header__txt {
    font-size: 1.7rem;
    text-align: left;
  }
}

.l-page-header__access {
  line-height: 1.8;
  font-size: 1.9rem;
}

@media all and (max-width: 767px) {
  .l-page-header__access {
    font-size: 1.7rem;
  }
}

/*==================================================
2.sp pc
==================================================*/
@media all and (min-width: 375px) {
  .ise-only {
    display: none !important;
  }
}

@media all and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

/*==================================================
3.module
==================================================*/
/*--------------------
float
--------------------*/
.m-fl {
  float: left;
}

.m-fr {
  float: right;
}

.m-clear {
  clear: both;
}

.m-cf:after {
  content: "";
  display: block;
  clear: both;
}

/*--------------------
text
--------------------*/
.m-bold {
  font-weight: bold;
}

.m-under {
  text-decoration: underline;
}

.m-tl {
  text-align: left;
}

.m-tc {
  text-align: center;
}

.m-tr {
  text-align: right;
}

/*--------------------
txt
--------------------*/
/*--------------------
btn
--------------------*/
.m-btn {
  display: block;
  width: 200px;
  padding: 8px;
  background: #fff;
  color: #808065;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: .1em;
}

.m-btn.-bg01 {
  background: #808065;
  color: #fff;
}

.m-btn.-bg02 {
  background: #e2e2e2;
  color: #808065;
}

.m-btn.-center {
  margin: 0 auto;
}

.m-btn.-size-s {
  width: 170px;
  padding: 12px;
}

.m-btn.-size-l {
  width: 300px;
  padding: 12px;
}

/*--------------------
ttl 
--------------------*/
.m-ttl {
  text-align: center;
}

.m-ttl.-space-m {
  margin-bottom: 20px;
}

.m-ttl__cat {
  display: inline-block;
  padding: 7px 20px;
  border-radius: 30px;
  background: #fff;
  font-size: 2.2rem;
}

@media all and (max-width: 767px) {
  .m-ttl__cat {
    margin-bottom: 5px;
    padding: 3px 15px;
    font-size: 1.6rem;
  }
}

.m-ttl__txt {
  font-family: ten-mincho, serif;
  font-size: 4.5rem;
  letter-spacing: .05em;
}

@media all and (max-width: 767px) {
  .m-ttl__txt {
    font-size: 8vw;
    line-height: 1.2;
  }
}

.m-ttl-02 {
  text-align: center;
}

.m-ttl-02.-space-s {
  margin-bottom: 15px;
}

.m-ttl-02.-space-m {
  margin-bottom: 30px;
}

@media all and (max-width: 767px) {
  .m-ttl-02.-space-m {
    margin-bottom: 25px;
  }
}

.m-ttl-02.-left {
  text-align: left;
}

.m-ttl-02.-size-auto {
  display: block;
}

.m-ttl-02__en {
  padding-left: 0.5em;
  letter-spacing: .4em;
  font-size: 1.6rem;
}

.m-ttl-02__en.-left {
  text-align: left;
}

.m-ttl-02__jp {
  font-size: 4.8rem;
  font-family: ten-mincho, serif;
  line-height: 1.2;
  letter-spacing: .075em;
}

@media all and (max-width: 767px) {
  .m-ttl-02__jp {
    font-size: 10vw;
  }
}

.m-ttl-02__jp.-size-l {
  font-size: 5.2rem;
}

@media all and (max-width: 767px) {
  .m-ttl-02__jp.-size-l {
    font-size: 11vw;
  }
}

.m-ttl-02__jp.-size-s {
  font-size: 3.7rem;
  line-height: 1.7;
}

@media all and (max-width: 767px) {
  .m-ttl-02__jp.-size-s {
    font-size: 9.5vw;
  }
}

.m-ttl-02__inner {
  display: inline-block;
}

/*--------------------
list nav
--------------------*/
/*--------------------
table
--------------------*/
.m-table {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.m-table tr th, .m-table tr td {
  padding: 28px 0;
  border-bottom: solid 2px #fff;
  font-family: ten-mincho, serif;
}

@media all and (max-width: 767px) {
  .m-table tr th, .m-table tr td {
    display: block;
    padding: 14px 0;
  }
}

.m-table tr th {
  width: 220px;
}

@media all and (max-width: 767px) {
  .m-table tr th {
    width: 100%;
  }
}

.m-table tr td {
  width: 580px;
}

@media all and (max-width: 767px) {
  .m-table tr td {
    width: 100%;
  }
}

/*--------------------
row
--------------------*/
.m-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.m-row__col-2 {
  width: 50%;
}

/*--------------------
inner
--------------------*/
.m-inner-l {
  width: 100%;
  max-width: 1050px;
  margin-right: auto;
  margin-left: auto;
}

@media all and (max-width: 767px) {
  .m-inner-l {
    width: 100%;
    padding-left: 8%;
    padding-right: 8%;
  }
}

.m-inner {
  width: 100%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

@media all and (max-width: 767px) {
  .m-inner {
    width: 100%;
    padding-left: 8%;
    padding-right: 8%;
  }
}

.m-narrow-inner {
  width: 100%;
  max-width: 786px;
  margin-right: auto;
  margin-left: auto;
}

@media all and (max-width: 767px) {
  .m-inner .m-narrow-inner {
    padding-left: 0;
    padding-right: 0;
  }
}

/*--------------------
box unit
--------------------*/
.m-slider-unit.-space-m {
  margin-bottom: 40px;
}

.m-slider-unit .slick-prev {
  left: -25px;
  z-index: 10;
  background: url("../img/common/prev.png") no-repeat center;
}

.m-slider-unit .slick-prev:before {
  content: none;
}

.m-slider-unit .slick-next {
  right: -25px;
  z-index: 10;
  background: url("../img/common/next.png") no-repeat center;
}

.m-slider-unit .slick-next:before {
  content: none;
}

.m-separate-row {
  display: flex;
}

@media all and (max-width: 767px) {
  .m-separate-row {
    flex-wrap: wrap;
  }
}

.m-separate-row__col {
  width: 50%;
}

@media all and (max-width: 767px) {
  .m-separate-row__col {
    width: 100%;
  }
}

.m-separate-row__col img {
  width: 100%;
}

.m-separate-row__col.-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 65px;
  background: #fff;
  color: #808065;
}

@media all and (max-width: 767px) {
  .m-separate-row__col.-body {
    order: 1;
    padding: 30px 15px;
  }
}

.m-separate-ttl__en {
  letter-spacing: .15em;
}

.m-separate-ttl__jp {
  font-size: 5.2rem;
  line-height: 1.4;
  font-family: ten-mincho, serif;
}

@media all and (max-width: 767px) {
  .m-separate-ttl__jp {
    font-size: 11vw;
  }
}

.m-separate-txt {
  margin-bottom: 20px;
  font-family: ten-mincho, serif;
  font-size: 1.9rem;
  line-height: 1.8;
}

@media all and (max-width: 767px) {
  .m-separate-txt {
    font-size: 1.7rem;
  }
}

/*==================================================
4.page
==================================================*/
/*--------------------------------------
top
----------------------------------------*/
.main-img {
  width: 100%;
  height: 100vh;
}

.main-img-unit {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 168px;
  height: 380px;
  margin: auto;
  background: rgba(255, 255, 255, 0.8);
}

@media all and (max-width: 767px) {
  .main-img-unit {
    justify-content: center;
    width: 35vw;
    height: 80vw;
    padding: 0 15px;
    letter-spacing: .1em;
  }
}

.main-img-unit__logo {
  margin-bottom: 20px;
}

@media all and (max-width: 767px) {
  .main-img-unit__logo {
    margin-bottom: 15px;
  }
}

.main-img-unit__txt {
  letter-spacing: .25em;
  line-height: 1.8;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.top-concept {
  display: flex;
  align-items: center;
  height: 580px;
  background: url("../img/concept-bg.jpg") no-repeat center/cover;
  color: #fff;
}

.top-concept-unit {
  width: 450px;
}

@media all and (max-width: 767px) {
  .top-concept-unit {
    width: 100%;
  }
}

.top-concept-unit__txt {
  margin-bottom: 25px;
  line-height: 1.7;
  font-family: ten-mincho, serif;
  font-size: 1.9rem;
  letter-spacing: .05em;
}

@media all and (max-width: 767px) {
  .top-concept-unit__txt {
    font-size: 1.7rem;
  }
}

.news {
  padding: 80px 0 90px 0;
}

@media all and (max-width: 767px) {
  .news {
    padding: 60px 0 70px 0;
  }
}

.news-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media all and (max-width: 767px) {
  .news-row {
    flex-wrap: wrap;
  }
}

.news-row__left {
  width: 280px;
  padding-top: 100px;
  background: url("../img/news-ico.png") no-repeat 30px top;
}

@media all and (max-width: 767px) {
  .news-row__left {
    width: 100%;
    background-position: center top;
  }
}

.news-row__right {
  width: 720px;
}

@media all and (max-width: 767px) {
  .news-row__right {
    width: 100%;
  }
}

.news-list {
  font-size: 1.9rem;
}

@media all and (max-width: 767px) {
  .news-list {
    font-size: 1.7rem;
  }
}

.news-list li {
  padding: 16px 0;
  border-bottom: solid 2px #fff;
  font-family: ten-mincho, serif;
}

.instagram {
  position: relative;
  padding: 95px 0 50px 0;
  background: #fff;
}

.instagram:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 152px;
  height: 129px;
  background: url("../img/instagram-ico.png") no-repeat center top;
}

.instagram-list {
  overflow: hidden;
}

.instagram-list ul {
  display: flex;
  flex-wrap: wrap;
}

@media all and (max-width: 767px) {
  .instagram-list ul {
    justify-content: center;
    margin: 0 -14px;
  }
}

.instagram-list li {
  width: 210px;
  margin-right: 50px;
  margin-bottom: 50px;
}

@media all and (max-width: 767px) {
  .instagram-list li {
    width: 33.3%;
    margin-right: 0;
    margin-bottom: 15px;
    padding: 0 7px;
  }
}

@media all and (min-width: 768px) {
  .instagram-list li:nth-child(4n) {
    margin-right: 0;
  }
}

@media all and (max-width: 767px) {
  .instagram-list li:nth-child(3n) {
    margin-right: 0;
  }
}

.instagram-list li a {
  display: block;
}

.top-onsen {
  display: flex;
  align-items: center;
  height: 580px;
  background: url("../img/onsen-bg.jpg") no-repeat center/cover;
  color: #fff;
}

.top-onsen-unit {
  width: 400px;
  margin-left: auto;
}

@media all and (max-width: 767px) {
  .top-onsen-unit {
    width: 100%;
  }
}

.top-onsen-unit__txt {
  margin-bottom: 25px;
  font-size: 1.9rem;
  font-family: ten-mincho, serif;
  text-align: left;
  line-height: 1.8;
}

@media all and (max-width: 767px) {
  .top-onsen-unit__txt {
    font-size: 1.7rem;
  }
}

.category-cnt {
  display: flex;
  color: #fff;
}

@media all and (max-width: 767px) {
  .category-cnt {
    flex-wrap: wrap;
  }
}

.category-cnt-unit {
  width: 33.3%;
  padding-top: 150px;
  height: 650px;
  background: no-repeat center  / cover;
}

@media all and (max-width: 767px) {
  .category-cnt-unit {
    display: flex;
    align-items: center;
    width: 100%;
    height: 430px;
    padding-top: 0;
  }
}

.category-cnt-unit.-unit-01 {
  background-image: url("../img/cuisine-bg.jpg");
}

.category-cnt-unit.-unit-02 {
  background-image: url("../img/room-bg.jpg");
}

.category-cnt-unit.-unit-03 {
  background-image: url("../img/photo-bg.jpg");
}

.category-cnt-unit__txt {
  margin-bottom: 30px;
  line-height: 1.8;
  font-size: 1.8rem;
}

.category-cnt-unit__inner {
  width: 320px;
  margin: 0 auto;
}

@media all and (max-width: 767px) {
  .category-cnt-unit__inner {
    width: 100%;
    padding: 0 8%;
  }
}

.one {
  padding: 100px 0;
  background: #e5e5e5;
}

@media all and (max-width: 767px) {
  .one {
    padding: 65px 0;
  }
}

.one-logo {
  margin-bottom: 30px;
  text-align: right;
}

@media all and (max-width: 767px) {
  .one-logo {
    width: 70vw;
    margin: 0 auto 15px auto;
  }
}

.one-ttl {
  margin-bottom: 10px;
  font-family: ten-mincho, serif;
}

.one-ttl__01 {
  font-size: 2.2rem;
}

@media all and (max-width: 767px) {
  .one-ttl__01 {
    font-size: 2rem;
  }
}

.one-ttl__02 {
  font-size: 5rem;
}

@media all and (max-width: 767px) {
  .one-ttl__02 {
    font-size: 11vw;
    list-style: heigh;
    t: 1.4;
  }
}

.one-txt {
  margin-bottom: 30px;
  line-height: 2;
  font-size: 1.9rem;
  font-family: ten-mincho, serif;
}

@media all and (max-width: 767px) {
  .one-txt {
    font-size: 1.7rem;
  }
}

.one-row {
  display: flex;
  justify-content: space-between;
}

@media all and (max-width: 767px) {
  .one-row {
    flex-wrap: wrap;
  }
}

.one-row__left {
  width: 480px;
}

@media all and (max-width: 767px) {
  .one-row__left {
    width: 100%;
    margin-bottom: 60px;
  }
}

.one-row__right {
  width: 500px;
}

@media all and (max-width: 767px) {
  .one-row__right {
    width: 100%;
  }
}

.bnr {
  padding-bottom: 100px;
}

@media all and (max-width: 767px) {
  .bnr {
    padding-bottom: 60px;
  }
}

.bnr-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 90px;
}

@media all and (max-width: 767px) {
  .bnr-list {
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 0 20px;
  }
}

@media all and (max-width: 767px) {
  .bnr-list li {
    margin-bottom: 30px;
  }
}

/*--------------------------------------
access
----------------------------------------*/
.access-map {
  border-top: solid 2px #fff;
  border-bottom: solid 2px #fff;
  background: #ece8d3;
}

.access-root {
  padding: 130px 0 150px 0;
  background: #e7e7e7;
}

@media all and (max-width: 767px) {
  .access-root {
    padding: 65px 0 70px 0;
  }
}

.access-root-row {
  display: flex;
  justify-content: center;
}

@media all and (max-width: 767px) {
  .access-root-row {
    flex-wrap: wrap;
  }
}

.access-root-unit {
  width: 280px;
  margin: 0 55px;
}

@media all and (max-width: 767px) {
  .access-root-unit {
    width: 100%;
    margin: 0 25px 50px 25px;
  }
}

.access-root-ttl {
  margin-bottom: 50px;
  text-align: center;
}

.access-root-ttl__jp {
  display: inline-block;
  padding: 8px 20px;
  background: #fff;
  font-size: 2.2rem;
  border-radius: 30px;
}

.access-root-ttl__en {
  text-align: center;
  font-size: 4.5rem;
  font-family: ten-mincho, serif;
  letter-spacing: .05em;
}

.access-root-data dt {
  padding: 15px 34px;
  background: #fff;
  font-size: 2rem;
}

.access-root-data dd {
  position: relative;
  display: flex;
  align-items: center;
  height: 120px;
  padding: 35px 0 35px 100px;
  font-size: 1.8rem;
  color: #8c8c8c;
}

.access-root-data dd:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 70px;
  height: 100%;
  border-left: solid 4px #c8c8c8;
}

.access-root-data__arrival {
  padding: 15px 34px;
  font-size: 2rem;
  background: #a6a693;
  color: #fff;
}

/*--------------------------------------
blog
----------------------------------------*/
.blog-page {
  padding-bottom: 100px;
}

.blog-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

@media all and (max-width: 767px) {
  .blog-row {
    flex-wrap: wrap;
    padding: 0 8%;
  }
}

.blog-row:before {
  content: "";
  position: absolute;
  left: 30%;
  top: 0;
  height: 100%;
  border-right: solid 3px #fff;
}

@media all and (max-width: 767px) {
  .blog-row:before {
    content: none;
  }
}

.blog-row__left {
  order: 1;
  width: 30%;
  padding: 35px 5% 0 0;
}

@media all and (max-width: 767px) {
  .blog-row__left {
    order: 2;
    width: 100%;
    padding: 0;
  }
}

.blog-row__right {
  order: 2;
  width: 70%;
  padding: 0 0 60px 5%;
}

@media all and (max-width: 767px) {
  .blog-row__right {
    order: 1;
    width: 100%;
    margin-bottom: 60px;
    padding: 30px 0 0 0;
  }
}

.blog-article {
  margin-bottom: 110px;
  padding-top: 30px;
}

@media all and (max-width: 767px) {
  .blog-article {
    margin-bottom: 55px;
  }
}

.blog-ttl {
  margin-bottom: 15px;
  font-size: 2.4rem;
}

.blog-img {
  margin-bottom: 25px;
}

.blog-body p {
  margin-bottom: 1.5em;
  font-size: 1.8rem;
  font-family: ten-mincho, serif;
}

.blog-data {
  display: flex;
  justify-content: flex-end;
  color: #808065;
  font-size: 1.5rem;
  line-height: 1;
}

.blog-data dt {
  padding-right: 10px;
  border-right: solid 1px #808065;
}

.blog-data dd {
  display: flex;
  padding-left: 10px;
}

.blog-pager {
  display: flex;
  justify-content: center;
}

@media all and (max-width: 767px) {
  .blog-pager {
    justify-content: space-between;
  }
}

.blog-pager li {
  padding: 0 25px;
}

@media all and (max-width: 767px) {
  .blog-pager li {
    width: calc(50% - 5px);
    padding: 0;
  }
}

.blog-pager li a {
  display: block;
  width: 185px;
  padding: 7px;
  background: #808065;
  color: #fff;
  text-align: center;
}

@media all and (max-width: 767px) {
  .blog-pager li a {
    width: 100%;
  }
}

.blog-list {
  margin-bottom: 80px;
}

@media all and (max-width: 767px) {
  .blog-list {
    margin-bottom: 40px;
  }
}

.blog-list__ttl {
  margin-bottom: 5px;
  padding: 10px 5px 10px 30px;
  border-bottom: solid 2px #808065;
  color: #666;
  font-size: 2rem;
  background: url("../img/blog/ico-pen.png") no-repeat 5px center;
}

.blog-list__ttl.-cat {
  padding-top: 3px;
  background-image: url("../img/blog/ico-cat.png");
  background-position: left center;
}

.blog-list__ttl.-time {
  padding-top: 7px;
  background-image: url("../img/blog/ico-time.png");
  background-position: left center;
}

.blog-list__ttl.-space {
  margin-bottom: 20px;
}

.blog-list li {
  border-bottom: solid 2px #fff;
}

.blog-list li a {
  display: block;
  padding: 15px 0;
  font-family: ten-mincho, serif;
  color: #666;
  line-height: 1.4;
  font-size: 1.7rem;
}

.blog-list select {
  min-width: 150px;
  height: 26px;
  font-size: 1.4rem;
}

/*--------------------------------------
gallery
----------------------------------------*/
.gallery-page {
  padding: 70px 0 170px 0;
}

@media all and (max-width: 767px) {
  .gallery-page {
    padding: 50px 0;
  }
}

.gallery-list {
  overflow: hidden;
}

.gallery-list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -28px;
}

@media all and (max-width: 767px) {
  .gallery-list ul {
    justify-content: space-between;
    margin: 0;
  }
}

.gallery-list ul li {
  width: 296px;
  margin: 0 28px 56px 28px;
}

@media all and (max-width: 767px) {
  .gallery-list ul li {
    width: calc(50% - 7px);
    margin: 0 0 14px 0;
  }
}

.gallery-list ul li a {
  display: block;
}

.gallery-dot {
  text-align: center;
}

/*--------------------------------------
room
----------------------------------------*/
.room-section {
  padding: 70px 0;
}

@media all and (max-width: 767px) {
  .room-section {
    padding: 35px 0;
  }
}

.room-txt {
  margin-bottom: 25px;
  text-align: center;
  line-height: 2;
  font-size: 1.8rem;
  font-family: ten-mincho, serif;
}

.room-btn-list {
  display: flex;
  justify-content: center;
}

@media all and (max-width: 767px) {
  .room-btn-list {
    flex-wrap: wrap;
  }
}

.room-btn-list li {
  padding: 0 20px;
}

@media all and (max-width: 767px) {
  .room-btn-list li {
    margin-bottom: 15px;
  }
}

.room-wifi {
  padding: 50px 0 140px 0;
  text-align: center;
}

@media all and (max-width: 767px) {
  .room-wifi {
    width: 35vw;
    margin: 0 auto;
    padding: 30px 0 100px 0;
  }
}

.room-modal iframe {
  width: 100%;
  height: 600px;
}

@media all and (max-width: 767px) {
  .room-modal iframe {
    width: 100%;
    height: 100%;
  }
}

.iziModal {
  background: none !important;
}

@media all and (max-width: 767px) {
  .iziModal {
    width: 80vw;
  }
}

/*--------------------------------------
cuisine
----------------------------------------*/
.cuisine-page {
  padding-bottom: 80px;
}

@media all and (max-width: 767px) {
  .cuisine-page {
    padding-bottom: 40px;
  }
}

.cuisine-section {
  padding: 50px 0 70px 0;
}

@media all and (max-width: 767px) {
  .cuisine-section {
    padding: 30px 0;
  }
}

.cuisine-txt {
  margin-bottom: 25px;
  font-family: ten-mincho, serif;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.8;
}

@media all and (max-width: 767px) {
  .cuisine-txt {
    font-size: 1.7rem;
    text-align: left;
  }
}

.cuisine-person {
  display: flex;
  align-items: center;
  height: 680px;
  background: url("../img/cuisine/person-bg.jpg") no-repeat center/cover;
}

@media all and (max-width: 767px) {
  .cuisine-person {
    flex-wrap: wrap;
    height: auto;
    padding: 60px 8%;
  }
}

.cuisine-person-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media all and (max-width: 767px) {
  .cuisine-person-row {
    flex-wrap: wrap;
  }
}

.cuisine-person-row__left {
  width: 267px;
}

@media all and (max-width: 767px) {
  .cuisine-person-row__left {
    width: 60%;
    margin: 0 auto 30px auto;
  }
}

.cuisine-person-row__right {
  width: 450px;
}

@media all and (max-width: 767px) {
  .cuisine-person-row__right {
    width: 100%;
  }
}

.cuisine-person-ttl {
  color: #fff;
}

.cuisine-person-ttl__job {
  font-size: 2rem;
  line-height: 1;
}

@media all and (max-width: 767px) {
  .cuisine-person-ttl__job {
    font-size: 1.8rem;
  }
}

.cuisine-person-ttl__name {
  font-size: 5.2rem;
  font-family: ten-mincho, serif;
  line-height: 1.4;
}

@media all and (max-width: 767px) {
  .cuisine-person-ttl__name {
    font-size: 11vw;
  }
}

.cuisine-person-txt {
  color: #fff;
  font-size: 1.9rem;
  line-height: 1.8;
  font-family: ten-mincho, serif;
  letter-spacing: .05em;
}

@media all and (max-width: 767px) {
  .cuisine-person-txt {
    font-size: 1.7rem;
  }
}

.cuisine-pick {
  padding: 180px 0 100px 0;
}

@media all and (max-width: 767px) {
  .cuisine-pick {
    padding: 90px 0 50px 0;
  }
}

/*--------------------------------------
onsen
----------------------------------------*/
.onsen-txt {
  margin-bottom: 25px;
  font-family: ten-mincho, serif;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.8;
}

@media all and (max-width: 767px) {
  .onsen-txt {
    font-size: 1.7rem;
    text-align: left;
  }
}

.onsen-history {
  display: flex;
  align-items: center;
  height: 820px;
  max-width: 100%;
  background: url("../img/onsen/history.jpg") no-repeat center/cover;
  color: #fff;
}

@media all and (max-width: 767px) {
  .onsen-history {
    height: auto;
    padding: 60px 0;
  }
}

.onsen-history-ttl {
  text-align: center;
}

.onsen-history-ttl__01 {
  font-size: 2rem;
}

@media all and (max-width: 767px) {
  .onsen-history-ttl__01 {
    font-size: 1.8rem;
  }
}

.onsen-history-ttl__02 {
  margin-bottom: 25px;
  font-size: 5.2rem;
  font-family: ten-mincho, serif;
  line-height: 1.4;
}

@media all and (max-width: 767px) {
  .onsen-history-ttl__02 {
    font-size: 11vw;
  }
}

.onsen-history-body p {
  margin-bottom: 25px;
  font-size: 1.9rem;
  font-family: ten-mincho, serif;
}

@media all and (max-width: 767px) {
  .onsen-history-body p {
    font-size: 1.7rem;
  }
}

.onsen-history-body p:last-child {
  margin-bottom: 0;
}

.onsen-pick {
  padding: 180px 0;
}

@media all and (max-width: 767px) {
  .onsen-pick {
    padding: 90px 0;
  }
}

/*--------------------------------------
concept
----------------------------------------*/
.concept-location {
  display: flex;
  align-items: center;
  height: 710px;
  background: #fff url("../img/concept/lead-img.jpg") no-repeat center;
}

@media all and (max-width: 767px) {
  .concept-location {
    height: auto;
    padding: 75vw 0 60px 0;
    background: #fff url("../img/concept/sp-lead-img.jpg") no-repeat center top/auto 70vw;
  }
}

.concept-location-unit {
  width: 490px;
}

@media all and (max-width: 767px) {
  .concept-location-unit {
    width: 100%;
  }
}

.concept-location-txt {
  font-family: ten-mincho, serif;
  line-height: 1.7;
  font-size: 1.9rem;
  letter-spacing: .05em;
}

@media all and (max-width: 767px) {
  .concept-location-txt {
    font-size: 1.7rem;
  }
}

.concept-photo {
  display: flex;
  justify-content: center;
}

@media all and (max-width: 767px) {
  .concept-photo {
    flex-wrap: wrap;
  }
}

.concept-photo__img {
  position: relative;
  width: 25%;
  height: 250px;
  background: no-repeat center / cover;
}

@media all and (max-width: 767px) {
  .concept-photo__img {
    width: 50%;
    height: 100px;
  }
}

.concept-photo__img.-photo-01 {
  background-image: url("../img/concept/photo-list-01.jpg");
}

.concept-photo__img.-photo-02 {
  background-image: url("../img/concept/photo-list-02.jpg");
}

.concept-photo__img.-photo-03 {
  background-image: url("../img/concept/photo-list-03.jpg");
}

.concept-photo__img.-photo-04 {
  background-image: url("../img/concept/photo-list-04.jpg");
}

.concept-onsen {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 620px;
  background: url("../img/concept/onsen-bg.jpg") no-repeat center/cover;
  color: #fff;
}

@media all and (max-width: 767px) {
  .concept-onsen {
    height: auto;
    padding: 60px 8%;
  }
}

.concept-onsen__txt {
  margin-bottom: 35px;
  line-height: 1.8;
  font-family: ten-mincho, serif;
  font-size: 1.9rem;
}

@media all and (max-width: 767px) {
  .concept-onsen__txt {
    font-size: 1.7rem;
  }
}

.concept-onsen__btn {
  display: block;
  width: 290px;
  height: 50px;
  line-height: 50px;
  margin: 0 auto;
  background: #dfdfdf;
  text-align: center;
  color: #808065;
}

@media all and (max-width: 374px) {
  .concept-onsen__btn {
    width: 100%;
  }
}

.concept-pick {
  padding: 150px 0 80px 0;
}

@media all and (max-width: 767px) {
  .concept-pick {
    padding: 80px 0 40px 0;
  }
}

.concept-outline {
  padding: 80px 0 160px 0;
}

@media all and (max-width: 767px) {
  .concept-outline {
    padding: 40px 0 80px 0;
  }
}

/*==================================================
5.js ie
==================================================*/
.-js-tab-btn {
  cursor: pointer;
}

[data-aos=fade] {
  transition: opacity 1s !important;
}


.video-fullscreen{
	width: 100%;
}
