@charset "UTF-8";
/*====================================================

	common-layout

====================================================*/
/* .l-mainvisual
----------------------------------------------------*/
.l-mainvisual {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.l-mainvisual .movie {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 90vh;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.mv-info {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.mv-info .logo {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  width: 150px;
}

.mv-info .logo.oku {
  margin-top: calc(160 / 760 * 100vw);
  width: 105px;
}

.mv-info .catch {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  color: #fff;
}

@media print, screen and (min-width: 768px) {
  .l-mainvisual {
    margin-bottom: 20px;
    height: auto;
  }
  .l-mainvisual .movie {
    position: static;
    width: 100%;
    height: auto;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .mv-info .logo.oku {
    margin-top: calc(120 / 1000 * 100vw);
  }
}

@media print, screen and (min-width: 1000px) {
  .mv-info .logo {
    width: 230px;
  }
  .mv-info .logo.oku {
    margin-top: calc(140 / 2000 * 100vw);
    width: 160px;
  }
  .mv-info .catch {
    font-size: 2.6rem;
  }
}

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

.header-nav-btn {
  position: fixed;
  top: 0;
  right: 0;
  width: 58px;
  height: 56px;
  background: #231815;
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  z-index: 200;
}

.header-nav-btn span {
  position: absolute;
  right: 16px;
  width: 26px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: -webkit-transform .4s;
  transition: -webkit-transform .4s;
  transition: transform .4s;
  transition: transform .4s, -webkit-transform .4s;
}

.header-nav-btn span:nth-of-type(1) {
  top: 16px;
}

.header-nav-btn span:nth-of-type(2) {
  top: 26px;
}

.header-nav-btn span:nth-of-type(3) {
  top: 36px;
}

.header-nav-btn.is-open span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
          transform: translateY(10px) rotate(-45deg);
}

.header-nav-btn.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header-nav-btn.is-open span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
          transform: translateY(-10px) rotate(45deg);
}

.header-nav-btn.is-fixed {
  opacity: 1;
}

.header-wrap {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(35, 24, 21, 0.7);
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  overflow: auto;
  z-index: 100;
}

.header-wrap.is-open {
  display: block;
  opacity: 1;
}

.header-logo {
  display: none;
}

.header-nav {
  position: absolute;
  top: 2.5vw;
  left: 50%;
  padding: 40px 0 20px;
  width: calc(100% - 5vw);
  min-height: calc(100% - 5vw);
  text-align: center;
  background: #fff;
  border-radius: 10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 100;
}

.header-nav li {
  list-style: none;
}

.header-nav a {
  display: block;
  color: #231815;
  text-decoration: none;
}

.header-nav .global-link {
  display: inline-block;
  padding-left: 0;
  font-size: 1.7rem;
  font-weight: 600;
}

.header-nav .global-link li {
  margin-bottom: 30px;
  width: 100px;
}

.header-nav .global-link li.home a {
  padding-left: 0;
  padding-right: 0;
  border-bottom: 0;
}

.header-nav .global-link a {
  padding: 0 10px 2px;
  border-bottom: 1px solid #231815;
}

.header-nav .other-link {
  margin-top: 10px;
  padding: 0;
  font-size: 1.3rem;
}

.header-nav .other-link li {
  margin-bottom: 15px;
}

.nav-contact {
  display: none;
}

.nav-rsv {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 10px;
  text-align: center;
  width: 100%;
  background: rgba(35, 24, 21, 0.6);
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  z-index: 50;
}

.nav-rsv.is-fixed {
  opacity: 1;
}

.nav-rsv a {
  display: block;
  color: #fff;
  text-decoration: none;
}

.nav-rsv .line01 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.nav-rsv .line02 {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5px;
  width: 180px;
}

.nav-rsv .line03 {
  font-size: 0.8rem;
}

@media print, screen and (min-width: 768px) {
  .header-nav-btn {
    display: none;
  }
  .header-wrap {
    display: block;
    position: relative;
    padding: 30px 130px 20px 5vw;
    height: auto;
    background: #fff;
    opacity: 1;
    overflow: hidden;
  }
  .header-wrap.is-fixed {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
  }
  .header-logo {
    display: block;
    width: 160px;
  }
  .header-nav {
    position: static;
    padding-top: 30px;
    padding-bottom: 0;
    width: auto;
    max-height: initial;
    max-height: auto;
    background: transparent;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .header-nav a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header-nav a:hover {
    opacity: 0.7;
  }
  .header-nav .global-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 1.4rem;
  }
  .header-nav .global-link li {
    margin-right: 15px;
    margin-bottom: 0;
    width: 85px;
  }
  .header-nav .global-link li.home {
    display: none;
  }
  .header-nav .other-link {
    display: none;
  }
  .header-form-nav {
    position: absolute;
    top: 10px;
    right: 0;
    z-index: 500;
  }
  .header-form-nav.is-fixed {
    position: fixed;
  }
  .nav-contact, .nav-rsv {
    position: static;
    display: block;
    width: 130px;
    border-radius: 10px 0 0 10px;
  }
  .nav-contact a, .nav-rsv a {
    display: block;
    padding: 16px 0;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .nav-contact a:hover, .nav-rsv a:hover {
    opacity: 0.7;
  }
  .nav-contact {
    background: #9fa0a0;
  }
  .nav-contact img {
    width: 78px;
  }
  .nav-rsv {
    margin-bottom: 10px;
    padding: 0;
    background: #231815;
    opacity: 1;
  }
  .nav-rsv .line01 {
    display: none;
  }
  .nav-rsv .line02 {
    margin-left: auto;
    margin-right: auto;
    width: 90px;
  }
  .nav-rsv .line03 {
    display: none;
  }
}

@media print, screen and (min-width: 1000px) {
  .header-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-right: 130px;
  }
  .header-nav {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-top: 0;
  }
  .header-nav .global-link li {
    width: 90px;
    margin-left: 15px;
  }
}

/* .l-footer
----------------------------------------------------*/
.l-footer {
  margin-top: 100px;
  padding-bottom: 20px;
}

.l-footer.is-add {
  padding-bottom: 130px;
}

.footer-nav {
  display: none;
}

.footer-logo {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.footer-logo img {
  width: 100px;
}

.footer-logo p {
  margin-top: 20px;
  font-size: 1.2rem;
  line-height: 1.6;
}

.footer-copy {
  margin-top: 20px;
  text-align: center;
}

.footer-copy .copyright {
  color: #9fa0a0;
  font-size: 0.8rem;
}

@media print, screen and (min-width: 768px) {
  .l-footer {
    margin-top: 180px;
  }
  .footer-wrap {
    position: relative;
    margin: 0 2vw;
  }
  .footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footer-nav .nav-head {
    padding-bottom: 3px;
    font-size: 1rem;
    font-weight: 400;
    color: #9fa0a0;
    border-bottom: 1px solid #9fa0a0;
  }
  .footer-nav .nav-link {
    margin-bottom: 20px;
    padding-left: 0;
    list-style: none;
  }
  .footer-nav .nav-link li {
    margin-bottom: 10px;
  }
  .footer-nav .nav-link a {
    color: #231815;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .footer-nav .nav-link a:hover {
    opacity: 0.7;
  }
  .footer-left-nav {
    margin-bottom: -20px;
  }
  .footer-right-nav {
    margin-left: 20px;
    margin-bottom: -20px;
  }
  .footer-right-nav .nav-link li {
    margin-bottom: 13px;
  }
  .footer-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-bottom: 0;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .footer-copy {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .footer-copy .copyright {
    font-size: 1rem;
  }
}

@media print, screen and (min-width: 1000px) {
  .footer-right-nav {
    margin-left: 60px;
  }
}

/*====================================================

	common parts

====================================================*/
/* layout
--------------------------------------*/
.l-outer {
  margin-left: auto;
  margin-right: auto;
  width: 93vw;
}

.l-inner {
  margin-left: auto;
  margin-right: auto;
  width: 82vw;
}

@media print, screen and (min-width: 768px) {
  .l-outer {
    width: 91vw;
  }
  .l-inner {
    width: 78vw;
  }
}

/* head
--------------------------------------*/
.l-page-head {
  position: relative;
}

.l-page-head img {
  width: 100%;
}

.l-page-head .page-ttl {
  padding-top: 50px;
}

.l-page-head .page-ttl.cuisine {
  position: absolute;
  top: 0;
  left: 9vw;
}

.l-page-head .page-ttl .ttl-txt {
  margin-top: 40px;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
}

.l-page-head .head-ver {
  margin-left: auto;
  margin-right: auto;
  width: 60px;
}

.l-page-head .page-img {
  margin-top: 30px;
  margin-right: 0;
  margin-left: 0;
}

.l-page-head .page-img.cuisine {
  padding-top: 185px;
}

.l-page-head .page-room {
  position: absolute;
  bottom: -50px;
  left: 9vw;
  width: 52px;
  height: 174px;
  background-image: var(--wpr-bg-bc5860c4-003d-40ba-b145-0d53a9b2d82e);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
}

.l-page-head .room-ttl {
  margin: 0;
}

.l-page-head .page-catch-img {
  position: relative;
}

.l-page-head .page-catch {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: 0;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.l-page-head .page-catch .logo {
  width: 150px;
}

.head-ul {
  margin-bottom: 50px;
}

.head-ul .el-en {
  position: relative;
  display: block;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.head-ul .el-en:before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #231815;
}

.head-ul .el-jp {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
}

.head-ul .en-img {
  width: 186px;
}

.head-ul .en-img.hirata {
  width: 188px;
}

.head-ul .en-img.sagiura {
  width: 222px;
}

.head-ul .en-img.taisha {
  width: 188px;
}

.head-ul .icon-inst {
  position: relative;
}

.head-ul .icon-inst:after {
  position: absolute;
  bottom: 25px;
  right: 0;
  content: '';
  width: 30px;
  height: 30px;
  background: var(--wpr-bg-309c098e-6df2-461c-b257-b64c893c6d78) no-repeat 0 0;
  background-size: contain;
}

.head-catch {
  text-align: center;
}

.head-catch .catch {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2;
}

.head-catch-ul {
  display: inline-block;
  margin-bottom: 0;
  padding-right: 10px;
  padding-left: 10px;
  padding-bottom: 10px;
  font-size: 1.6rem;
  font-weight: 600;
  border-bottom: 1px solid #231815;
}

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

.l-tag-head .tag-head img {
  width: 48px;
}

.l-tag-head .tag-txt {
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 0;
  padding: 0 30px 15px;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  border-bottom: 1px solid #231815;
}

@media print, screen and (min-width: 768px) {
  .l-page-head .page-ttl {
    padding-top: 80px;
  }
  .l-page-head .page-ttl.cuisine {
    left: 11vw;
  }
  .l-page-head .page-ttl .ttl-txt {
    margin-top: 100px;
    font-size: 2.6rem;
  }
  .l-page-head .head-ver {
    width: 112px;
  }
  .l-page-head .page-img {
    margin-right: auto;
    margin-left: auto;
    padding-top: 60px;
    width: 91vw;
  }
  .l-page-head .page-img.cuisine {
    padding-top: 225px;
  }
  .l-page-head .page-room {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    bottom: -90px;
    left: 20vw;
    width: 70px;
    height: 309px;
    background-image: var(--wpr-bg-a2ee484d-2736-437b-8759-af35fb9de34f);
  }
  .l-page-head .room-ttl img {
    width: 70px;
  }
  .l-page-head .page-catch-img {
    margin-left: auto;
    margin-right: auto;
    width: 91vw;
  }
  .l-page-head .page-catch {
    font-size: 2.6rem;
  }
  .l-page-head .page-catch .logo {
    width: 110px;
  }
  .head-ul .el-en {
    display: inline-block;
  }
  .head-ul .el-en:before {
    left: -5%;
    width: 120%;
  }
  .head-ul .el-jp {
    font-size: 1.8rem;
  }
  .head-ul .en-img {
    width: 510px;
    -webkit-transform: rotate(0.0001deg);
            transform: rotate(0.0001deg);
  }
  .head-ul .en-img.hirata {
    width: 70vw;
    max-width: 737px;
  }
  .head-ul .en-img.sagiura {
    width: 70vw;
    max-width: 784px;
  }
  .head-ul .en-img.taisha {
    width: 70vw;
    max-width: 730px;
  }
  .head-ul .icon-inst:after {
    bottom: 13px;
    right: -60px;
  }
  .head-catch .catch {
    font-size: 2.2rem;
  }
  .head-catch-ul {
    padding-right: 0;
    padding-left: 0;
    font-size: 1.8rem;
  }
  .l-tag-head {
    margin-top: 60px;
  }
  .l-tag-head .tag-head img {
    width: 52px;
  }
  .l-tag-head .tag-txt {
    margin-top: 30px;
    font-size: 2rem;
  }
}

@media print, screen and (min-width: 1000px) {
  .l-page-head .page-catch {
    font-size: 2.6rem;
  }
  .l-page-head .page-catch .logo {
    width: 170px;
  }
}

/* navigation
--------------------------------------*/
.category-nav {
  margin-top: 40px;
}

.category-nav.bdr-top {
  padding-top: 30px;
}

.category-nav.bdr-btm {
  padding-bottom: 40px;
}

.category-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: -2%;
  padding-left: 0;
  list-style: none;
}

.category-nav-list li {
  margin-left: 2%;
  margin-right: 2%;
  margin-bottom: 2%;
  width: 46%;
}

.category-nav-list li img {
  width: 119px;
}

.category-nav-list a {
  display: block;
  padding: 10px 5px;
  text-align: center;
  background: #9fa0a0;
  border-radius: 3px;
}

.category-nav-list a.is-active {
  background: #231815;
}

.wp-pagenavi {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.wp-pagenavi a, .wp-pagenavi .extend, .wp-pagenavi .current {
  display: block;
  margin-left: 3px;
  margin-right: 3px;
  font-size: 1.0rem;
  font-weight: 500;
  text-align: center;
  line-height: 32px;
  width: 32px;
  border-radius: 3px;
}

.wp-pagenavi a {
  color: #fff;
  text-decoration: none;
  background: #9fa0a0;
}

.wp-pagenavi .extend {
  width: auto;
}

.wp-pagenavi .current {
  color: #fff;
  background: #231815;
}

.paging-nav {
  margin-top: 60px;
  padding-left: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  font-size: 1.4rem;
  list-style: none;
  border-top: 1px solid #9fa0a0;
  border-bottom: 1px solid #9fa0a0;
}

.paging-nav .page-prev, .paging-nav .page-next {
  position: relative;
  margin-left: 0;
  padding-left: 40px;
  padding-right: 40px;
}

.paging-nav .page-prev a:before, .paging-nav .page-next a:before {
  position: absolute;
  top: 5px;
  content: '';
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.paging-nav .page-prev a:before {
  left: 20px;
  border-bottom: 2px solid #9fa0a0;
  border-left: 2px solid #9fa0a0;
}

.paging-nav .page-next {
  margin-top: 30px;
  text-align: right;
}

.paging-nav .page-next a:before {
  right: 20px;
  border-top: 2px solid #9fa0a0;
  border-right: 2px solid #9fa0a0;
}

.paging-nav a {
  color: #231815;
  text-decoration: none;
}

@media print, screen and (min-width: 768px) {
  .category-nav {
    margin-top: 50px;
  }
  .category-nav.bdr-top {
    padding-top: 40px;
  }
  .category-nav.bdr-btm {
    padding-bottom: 50px;
  }
  .category-nav-list {
    margin-bottom: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .category-nav-list li {
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 0;
    width: 160px;
  }
  .category-nav-list a {
    padding-top: 13px;
    padding-bottom: 13px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .category-nav-list a:hover {
    opacity: 0.7;
  }
  .wp-pagenavi {
    margin-top: 50px;
  }
  .wp-pagenavi a, .wp-pagenavi .extend, .wp-pagenavi .current {
    margin-left: 5px;
    margin-right: 5px;
    font-size: 1.2rem;
    line-height: 36px;
    width: 36px;
  }
  .wp-pagenavi a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .wp-pagenavi a:hover {
    opacity: 0.7;
  }
  .paging-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 80px;
    padding-top: 60px;
    padding-bottom: 60px;
    font-size: 1.6rem;
  }
  .paging-nav .page-prev, .paging-nav .page-next {
    width: 50%;
  }
  .paging-nav .page-prev a:before, .paging-nav .page-next a:before {
    top: -20px;
    width: 56px;
    height: 56px;
    border: none;
    background-size: contain;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .paging-nav .page-prev {
    padding-left: 150px;
    padding-right: 30px;
  }
  .paging-nav .page-prev a:before {
    left: 70px;
    background-image: var(--wpr-bg-eba9e972-64e7-4e0f-bfeb-b18e81750c10);
  }
  .paging-nav .page-next {
    margin-top: 0;
    padding-left: 30px;
    padding-right: 150px;
  }
  .paging-nav .page-next a:before {
    right: 70px;
    background-image: var(--wpr-bg-8b652863-2d0b-4fb8-a00f-17326dff4d30);
  }
  .paging-nav a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .paging-nav a:hover {
    opacity: 0.7;
  }
}

/* list
--------------------------------------*/
.card-list {
  margin-top: 80px;
  padding-left: 0;
  list-style: none;
}

.card-list li {
  margin-bottom: 3vw;
}

.card-list a {
  display: block;
  color: #231815;
  text-decoration: none;
}

.card-img {
  margin: 0;
}

.card-img img {
  width: 100%;
}

.card-body {
  margin-top: 10px;
}

.media-box {
  margin-top: 40px;
}

.media-img {
  margin-left: 0;
  margin-right: 0;
}

.media-img img {
  width: 100%;
}

.media-body {
  margin-top: 10px;
}

.disc-list {
  padding-left: 1em;
  list-style: none;
}

.disc-list li {
  text-indent: -4px;
}

.disc-list li:before {
  display: inline-block;
  position: relative;
  content: '';
  top: -2px;
  left: -8px;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background: #231815;
}

@media print, screen and (min-width: 768px) {
  .card-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    width: 78vw;
  }
  .card-list a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .card-list a:hover {
    opacity: 0.7;
  }
  .card-list.col1 {
    margin-left: auto;
    margin-right: auto;
    width: 48%;
  }
  .card-list.col2 {
    margin-bottom: -4%;
  }
  .card-list.col2 li {
    margin-right: 4%;
    margin-bottom: 4%;
    width: 48%;
  }
  .card-list.col2 li:nth-child(even) {
    margin-right: 0;
  }
  .card-list.col3 {
    margin-bottom: -3%;
  }
  .card-list.col3 li {
    margin-left: 0;
    margin-right: 3.05%;
    margin-bottom: 3.05%;
    width: 31.3%;
  }
  .card-list.col3 li:nth-child(3n) {
    margin-right: 0;
  }
  .media-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 60px;
  }
  .media-img {
    width: 33%;
  }
  .media-body {
    width: 63%;
  }
}

/* btn
--------------------------------------*/
.btn-accomlink {
  display: inline-block;
  margin-top: 30px;
  width: 70%;
  max-width: 140px;
  font-size: 1.2rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 32px;
  background: #fff;
  border-radius: 15px;
}

.btn-accomlink a {
  display: block;
  color: #231815;
  text-decoration: none;
}

.icon-link:before {
  content: "";
  display: inline-block;
  margin-right: 7px;
  width: 14px;
  height: 12px;
  vertical-align: -1px;
  background: var(--wpr-bg-26032a03-04a3-4beb-ad61-a11f931ae9ba) no-repeat 0 0;
  background-size: 14px auto;
}

.btn-rsv {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 90%;
  max-width: 200px;
  background: #231815;
  border-radius: 10px;
}

.btn-rsv a {
  display: block;
  padding: 10px 8%;
}

.btn-more .more-img {
  width: 65px;
}

.back-page {
  margin-top: 60px;
}

.btn-back {
  margin-left: auto;
  margin-right: auto;
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4;
  width: 90%;
  max-width: 290px;
}

.btn-back a {
  position: relative;
  display: block;
  padding: 15px 14%;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: #231815;
  border-radius: 3px;
}

.btn-back a:before {
  position: absolute;
  top: 50%;
  left: 8%;
  content: '';
  width: 16px;
  height: 15px;
  background-image: var(--wpr-bg-497dacea-3c46-4585-b5d2-89b8b6aab955);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.btn-btm {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

@media print, screen and (min-width: 768px) {
  .btn-accomlink a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .btn-accomlink a:hover {
    opacity: 0.7;
  }
  .btn-rsv a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .btn-rsv a:hover {
    opacity: 0.7;
  }
  .btn-more a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .btn-more a:hover {
    opacity: 0.7;
  }
  .back-page {
    margin-top: 80px;
  }
  .btn-back a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .btn-back a:hover {
    opacity: 0.7;
  }
}

@media print, screen and (min-width: 768px) {
  .btn-accomlink a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .btn-accomlink a:hover {
    opacity: 0.7;
  }
  .btn-rsv a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .btn-rsv a:hover {
    opacity: 0.7;
  }
  .btn-more a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .btn-more a:hover {
    opacity: 0.7;
  }
}

/* bg
--------------------------------------*/
.bg-gry {
  background: #e2e2e2;
}

.bdr-btm {
  padding-bottom: 80px;
  border-bottom: 2px solid #e2e2e2;
}

.bdr-top {
  padding-top: 80px;
  border-top: 2px solid #e2e2e2;
}

@media print, screen and (min-width: 768px) {
  .bdr-btm {
    padding-bottom: 150px;
  }
}

/* element
--------------------------------------*/
.el-vert {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

.el-hor {
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
}

.el-note {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 1em;
  text-indent: -1em;
}

.tel-link a {
  color: #231815;
}

.br-sp {
  display: block;
}

.br-pc {
  display: none;
}

@media print, screen and (min-width: 768px) {
  .br-sp {
    display: none;
  }
  .br-pc {
    display: block;
  }
  .wide-pc {
    margin-right: auto;
    margin-left: auto;
    width: 91vw;
  }
}

/*====================================================

	common block

====================================================*/
/* concept
--------------------------------------*/
.l-concept {
  margin-top: 80px;
}

.concept-txt {
  margin-top: 30px;
  font-size: 1.4rem;
  text-align: center;
}

.concept-txt p {
  margin-bottom: 3em;
  line-height: 2.5;
  letter-spacing: 0.02em;
}

@media print, screen and (min-width: 768px) {
  .l-concept {
    margin-top: 150px;
  }
  .concept-txt {
    margin-top: 40px;
  }
  .concept-txt p {
    letter-spacing: 0.1em;
  }
}

/* location
--------------------------------------*/
.l-location {
  margin-top: 80px;
}

.location-map-img {
  margin: 0;
}

.location-map-img img {
  width: 100%;
}

@media print, screen and (min-width: 768px) {
  .l-location {
    margin-top: 150px;
  }
  .location-map {
    margin: 0 auto;
  }
  .location-map img {
    margin: 0 auto;
    width: 100%;
  }
  .location-map-img {
    margin-left: auto;
    margin-right: auto;
    width: 78vw;
  }
}

/* news
--------------------------------------*/
.l-news {
  position: relative;
  margin-top: 80px;
  padding: 30px 0;
  background-image: var(--wpr-bg-f8438086-1239-4e0e-8d20-8cb157dbf91f), var(--wpr-bg-f8438086-1239-4e0e-8d20-8cb157dbf91f);
  background-repeat: repeat-x, repeat-x;
  background-size: 6px auto, 6px auto;
  background-position: 0 top, 0 bottom;
}

.l-news .btn-more {
  padding-top: 20px;
  text-align: right;
}

.news-head {
  margin-bottom: 40px;
  text-align: center;
}

.news-head .el-jp {
  display: block;
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.7em;
}

.news-head .en-img {
  width: 90px;
}

.news-list {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -35px;
  padding-left: 0;
  list-style: none;
  font-size: 1.4rem;
}

.news-list li {
  margin-bottom: 35px;
}

.news-list .news-info .label {
  display: inline-block;
  margin-left: 5px;
  padding: 4px 10px 5px;
  color: #fff;
  font-size: 1rem;
  text-align: center;
  min-width: 90px;
  background: #9fa0a0;
  border-radius: 3px;
}

.news-list .news-ttl {
  margin-top: 5px;
  line-height: 1.3;
}

.news-list .news-ttl p {
  margin-top: 0;
}

.news-list .news-ttl a {
  color: #231815;
  text-decoration: none;
}

@media print, screen and (min-width: 768px) {
  .l-news {
    margin-top: 150px;
    width: 78vw;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .l-news .l-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .l-news .btn-more {
    padding-top: 40px;
    margin-bottom: -20px;
  }
  .news-head {
    margin-bottom: 0;
    width: 220px;
  }
  .news-head .el-jp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 220px;
    margin-bottom: 20px;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .news-body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-right: 30px;
  }
  .news-list {
    margin-bottom: -15px;
  }
  .news-list li {
    margin-bottom: 15px;
  }
  .news-list .news-info {
    margin-right: 30px;
  }
  .news-list .news-info .label {
    padding: 5px 10px 7px;
    font-size: 1.2rem;
    min-width: 110px;
  }
  .news-list .news-ttl p {
    line-height: 1.5;
  }
  .news-list .news-ttl a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .news-list .news-ttl a:hover {
    opacity: 0.7;
    text-decoration: underline;
  }
}

@media print, screen and (min-width: 1000px) {
  .news-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 5px;
  }
  .news-list .news-ttl {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0;
  }
}

/* gallery
--------------------------------------*/
.l-gallery {
  margin-top: 80px;
}

.glly-exp, .glly-inst {
  padding-left: 0;
  list-style: none;
}

.glly-exp li, .glly-inst li {
  margin: 0 10px;
}

.glly-exp a, .glly-inst a {
  position: relative;
  display: block;
}

.glly-exp .glly-tmb, .glly-inst .glly-tmb {
  margin: 0;
  padding: 0;
}

/* 体験 */
.glly-exp a {
  color: #fff;
}

.glly-exp a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.glly-exp .ex-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.glly-exp .glly-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glly-exp .glly-ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
  width: 85%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.glly-exp .accom-name {
  position: relative;
  margin: 20px 0;
  padding: 0;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
}

.glly-exp .accom-name:after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  content: "";
  width: 10vw;
  height: 1px;
  background: #fff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.glly-exp .btn-more {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 65px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* インスタ */
.glly-inst .inst-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media print, screen and (min-width: 768px) {
  .l-gallery {
    margin-top: 150px;
  }
  .glly-exp, .glly-inst {
    margin-top: 40px;
  }
  .glly-exp a, .glly-inst a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .glly-exp a:hover, .glly-inst a:hover {
    opacity: 0.7;
  }
  /* 体験 */
  .glly-exp .accom-name:after {
    width: 4vw;
  }
}


/* gallery--banner
--------------------------------------*/
.glly-exp-ba, .glly-inst {
  padding-left: 0;
  list-style: none;
}

.glly-exp-ba li, .glly-inst li {
  margin: auto;
}

.glly-exp-ba a, .glly-inst a {
  position: relative;
  display: block;
}

.glly-exp-ba .glly-tmb, .glly-inst .glly-tmb {
  margin: 0;
  padding: 0;
}

/* 体験 */
.glly-exp-ba a {
  color: #fff;
}

.glly-exp-ba a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 350px;
  height: 160px;
}

.glly-exp-ba .ex-img {
  width: 350px;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
}

.glly-exp-ba .glly-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glly-exp-ba .glly-ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
  width: 85%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.glly-exp-ba .accom-name {
  position: relative;
  margin: 20px 0;
  padding: 0;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
}

.glly-exp-ba .accom-name:after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  content: "";
  width: 10vw;
  height: 1px;
  background: #fff;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}


/* l-tag
--------------------------------------*/
.l-tag {
  margin-top: 50px;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-top: 20px;
  padding-bottom: 10px;
  background: #e2e2e2;
}

.l-tag .tag-head {
  text-align: center;
}

.l-tag .tag-head img {
  width: 29px;
}

.tag-body {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 82vw;
}

.tag-list {
  padding: 0;
  list-style: none;
}

.tag-list li {
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.tag-list a {
  display: block;
  padding: 7px 20px 8px;
  color: #9fa0a0;
  text-decoration: none;
  background: #fff;
  border-radius: 3px;
}

@media print, screen and (min-width: 768px) {
  .l-tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 70px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 20px;
    width: 78vw;
  }
  .l-tag .tag-head {
    width: 140px;
  }
  .l-tag .tag-head img {
    width: 36px;
  }
  .tag-body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-right: 20px;
    width: auto;
  }
  .tag-list {
    text-align: left;
  }
  .tag-list a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .tag-list a:hover {
    opacity: 0.7;
  }
}

/* l-nipponia
--------------------------------------*/
.l-nipponia {
  margin-top: 80px;
  padding-top: 35px;
  padding-bottom: 35px;
}

/* accom-list */
.accom-list {
  padding-left: 0;
  list-style: none;
}

.accom-list li {
  position: relative;
  margin-bottom: 3.5vw;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 0;
}

.accom-list li:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.accom-list li.hirata {
  background-image: var(--wpr-bg-ed19b392-7b8c-4071-af44-69ff3660f6b6);
}

.accom-list li.taisha {
  background-image: var(--wpr-bg-24bcd9fe-0a89-41ff-b96e-cc9a790f6f21);
}

.accom-list li.sagiura {
  background-image: var(--wpr-bg-1aae40a6-011f-418f-a02d-f252b1386d0a);
}

.accom-list .accom-info {
  position: relative;
  padding: 55px 15px 30px;
  height: 100%;
  z-index: 2;
}

.accom-list .logo {
  margin: 0 auto;
  width: 160px;
}

.accom-list .catch {
  position: absolute;
  top: 25px;
  right: 6vw;
  margin: 0;
  color: #fff;
  font-size: 1.8rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

@media print, screen and (min-width: 768px) {
  .l-nipponia {
    margin-top: 150px;
    padding-top: 50px;
    padding-bottom: 60px;
  }
  /* accom-list */
  .accom-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
  }
  .accom-list li {
    margin-bottom: 0;
    margin-right: 3%;
  }
  .accom-list.col1 li {
    margin-left: auto;
    margin-right: auto;
    width: 66%;
    max-width: 600px;
  }
  .accom-list.col2 li {
    width: 48.5%;
  }
  .accom-list.col2 li:nth-child(even) {
    margin-right: 0;
  }
  .accom-list.col3 li {
    width: 31.3%;
  }
  .accom-list.col3 li:nth-child(3n) {
    margin-right: 0;
  }
  .accom-list .accom-info {
    padding-top: 65px;
  }
  .accom-list .logo {
    width: 65%;
    max-width: 180px;
  }
  .accom-list .catch {
    right: 1.8vw;
    font-size: 1.4rem;
  }
}

@media print, screen and (min-width: 1000px) {
  .accom-list .catch {
    font-size: 1.8rem;
  }
}

/*====================================================

	form

====================================================*/
/*====================================================

	animation

====================================================*/
.fadein {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  opacity: 0;
  visibility: visible !important;
}

.headdown {
  -webkit-animation-name: headDown;
          animation-name: headDown;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  opacity: 0;
  visibility: visible !important;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(25px);
            transform: translateY(25px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(25px);
            transform: translateY(25px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes headDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-80px);
            transform: translateY(-80px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes headDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-80px);
            transform: translateY(-80px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/*# sourceMappingURL=maps/common.css.map */
