﻿@charset "UTF-8";

/*
Theme Name: memoria-collina-izu80
Description: This is memoria-collina-izu80 site original theme.
Author: bookingresort
*/

:root {
  --main-color: #f39800;
  --sub-color: #ffd700;
  --text-color: #000000;
  --link-color: #aa8f55;
  --accent-color: #79c06e;
  --background-color: #FFFFFF;
  --temporary-color: #FFFFFF;
  --hover-color: #7e7e7e;
  --blue: rgba(0, 0, 170, 1);
  --blue-light: #aabbdd;
  --blue-dark: rgba(0, 0, 125, 1);
  --glay: #dddddd;
  --glay-light: #dfdfdf;
  --glay-dark: #999999;
  --color-brown: #330000;
  --header-height: 80px;
}

@media screen and (max-width: 896px) {
  :root {
    --header-height: 60px;
  }
}

html {
  font-size: 62.5%;
  scroll-behavior: auto !important;
  overflow-anchor: none;
}

body {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  position: relative;
}

html,
body {
  width: 100%;
  color: #333
}

h1 {
  font-size: 3.2rem;
}

h2 {
  text-align: center;
  line-height: 1.5;
  font-size: 3rem;
  font-weight: bold;
}

h4 {
  font-size: 2rem;
  color: #222;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 896px) {
  h2 {
    font-size: 1.8rem;
  }
}

h3 {
  font-size: 1.8rem;
  color: #222;
}

p {
  line-height: 1.7;
  font-size: 1.6rem;
}

@media screen and (max-width: 896px) {
  p {
    font-size: 1.5rem;
  }
}

p.image-text {
  color: #888;
  padding: 10px 0;
  text-align: center;
}

p.image-text_white {
  color: #fff;
  padding: 10px 0;
  text-align: center;
}

h2 span.subttl {
  font-size: 18px;
}

ul li {
  font-size: 1.4rem;
}

a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s;
}

a:hover {
  opacity: 0.8;
}

a:hover>img {
  opacity: 0.8;
}

img {
  display: block;
}

@media screen and (max-width: 896px) {
  img {
    display: block;
    max-width: 100%;
  }
}

i.fa {
  display: inline;
}

header {
  display: block;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3333;

  @media screen and (max-width: 896px) {
    display: flex;
  }

  .header {
    position: fixed;
    top: 0;
    width: 100%;
    transition: all 0.5s ease;
    height: 80px;
    background-color: #fff;

    @media screen and (max-width: 896px) {
      height: 60px;
    }
  }

  .logo_image {
    max-width: 1600px;
    margin: 0 auto;
    height: 80px;

    @media screen and (max-width: 896px) {
      height: 60px;
    }

    img {
      width: auto;
      height: 70px;
      display: inline;
      padding-top: 5px;
      margin-left: 15px;

      @media screen and (max-width: 896px) {
        height: 100%;
        margin-top: 0px;
      }
    }

    .top {
      position: relative;

      @media screen and (max-width: 896px) {
        position: static;
        height: 100%;
      }

      a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9999;

        @media screen and (max-width: 896px) {
          position: static;
        }
      }
    }
  }
}


/* メニューボタン */
nav {
  position: absolute;
  right: 0;
  top: 0;
}

/* .menu_btn { ... } */

.navbar_toggle {
  z-index: 20;

  &.open .navbar_toggle_icon {
    &:nth-child(1) {
      top: 15px;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }

    &:nth-child(2) {
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      opacity: 0;
    }

    &:nth-child(3) {
      top: -15px;
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg);
    }
  }
}

.navbar_toggle_icon {
  position: relative;
  display: block;
  height: 2px;
  width: 52px;
  background: #fff;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;

  @media screen and (max-width: 896px) {
    width: 30px;
  }

  &:nth-child(1) {
    top: 0;
  }

  &:nth-child(2) {
    margin: 14px 0;
  }

  &:nth-child(3) {
    top: 0;
  }
}

.menu_list {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  z-index: 250;
  width: 100%;
  background: #fff;
  position: absolute;
  top: 0;

  li {
    border-bottom: 1px solid #ccc;
    font-size: 1.6rem;

    a {
      display: block;
      padding: 30px;

      @media screen and (max-width: 896px) {
        padding: 24px;
      }
    }
  }

  &.open {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    top: 100px;

    @media screen and (max-width: 896px) {
      top: 60px;
    }
  }
}

/* 共通項目 */
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.sp {
  display: none;
}

.pc {
  display: initial;
}

@media screen and (max-width: 896px) {
  .container {
    width: 94%;
  }

  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}

a.a_link {
  text-decoration: underline;
}

a.scroll_point {
  height: 1px;
  margin-top: -80px;
  padding-top: 80px;
  display: block;

  @media screen and (max-width: 896px) {
    display: block;
    margin-top: 0;
    padding-top: 0;
  }
}

h2 {
  &.btm_border {
    position: relative;

    &:before,
    &:after {
      content: "";
      position: absolute;
      bottom: 0;
      width: 51px;
      height: 4px;
    }

    &:before {
      left: 50%;
      margin-left: -51px;
      background: #b8bccc;
    }

    &:after {
      right: 50%;
      margin-right: -51px;
      background: #0a184d;
    }
  }

  &.btm_stripe {
    position: relative;

    &:after {
      position: absolute;
      content: "";
      bottom: 0;
      right: 0;
      left: 0;
      margin: auto;
      width: auto;
      height: 8px;
      background: url(img/stripe.png) no-repeat;
    }
  }

  &.top {
    font-size: 3rem;
    margin: 45px 0 30px;
    line-height: 1.4;

    @media screen and (max-width: 896px) {
      font-size: 2rem;
      margin: 35px 0 15px;
    }
  }
}

.mincho {
  font-family: "遊明朝", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E", "MS P明朝", "MS 明朝", serif;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.h2_line_after {
  display: inline-flex;
  align-items: center;
  text-align: center;

  &::after {
    content: "";
    display: inline-block;
    width: 60px;
    height: 3px;
    background-color: var(--main-color);
    margin-left: 10px;
    border-radius: 2px;
  }
}

.room {
  text-align: center;
}

span {
  &.en {
    letter-spacing: 0.1em;
    font-weight: normal;
    font-size: 1.5rem;
  }

  &.tax_in {
    font-size: 1.4rem;
    color: #555;
  }
}

.btn_orange {
  text-align: center;

  p {
    text-align: center;
    display: inline-block;
    margin: 25px auto 0;
    line-height: 1.5 !important;

    a {
      color: #fff;
      background: #0a184d;
      border-radius: 24px;
      padding: 12px 30px;
      display: block;
      transition: all 0.2s;
      /* border: 1px solid #b8bccc;*/
    }
  }
}

.btn_link p a {
  width: 200px;
  color: #0a184d;
  background: #fff;
  border-radius: 24px;
  padding: 12px 30px;
  display: block;
  transition: all 0.2s;
  text-align: center;
  margin: 0 auto;
}

.btn_link_color p a {
  width: 200px;
  padding: 10px 30px;
  display: block;
  transition: all 0.2s;
  text-align: center;
  margin: 0 auto;
  border-radius: 27px;
  border: #747b9b 1px solid;

  &:hover {
    background: #747b9b;
    color: #fff;
  }
}

.pad_80 {
  padding: 80px 0;
}

.pl_25 {
  padding-left: 25px;
}

.mt_20 {
  margin-top: 20px;
}

.mt_30 {
  margin-top: 30px;
}

.mt_40 {
  margin-top: 40px;
}

.mt_50 {
  margin-top: 50px;
}

.mt_60 {
  margin-top: 60px;
}

.mt_80 {
  margin-top: 80px;
}

.mt_120 {
  margin-top: 120px;
}

.mb_20 {
  margin-bottom: 20px;
}

.mb_25 {
  margin-bottom: 25px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mb_60 {
  margin-bottom: 60px;
}

.mb_80 {
  margin-bottom: 80px;
}

.mb_120 {
  margin-bottom: 120px;
}

.mb_200 {
  margin-bottom: 200px;
}

.ta_c {
  text-align: center;
}

.p_bld {
  font-weight: bold;
  line-height: 2;
}

@media screen and (max-width: 896px) {
  .sp_mb_40 {
    margin-bottom: 40px;
  }

  /*.ta_c {
    text-align: left;
  }*/
  .inr {
    padding: 0 2%;
  }
}

/* フッター  */
/*リゾグラ*/
/* #resort-rg {
  background: #fff7df;
  padding: 10px 0 40px;
}

.rg_group {
  h2 {
    color: #4f4f4f;
  }

  h3 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 30px;
    color: #fff;

    span.en {
      color: #fff;
    }
  }

  h4.rg_group {
    color: #4f4f4f;
    font-size: 1.6rem;
    text-align: left;
    margin-bottom: 0;
  }

  .box {
    display: flex;
    flex-direction: column;

    ul {
      display: flex;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin: 50px auto;

      @media screen and (max-width: 896px) {
        flex-direction: column;
      }
    }

    p.type {
      text-align: center;
      padding: 8px 0;
      font-size: 1.8rem;
      margin-bottom: 15px;
      color: #fff;
    }

    li {
      display: flex;
      margin-bottom: 32px;
      margin-left: 8px;
      width: 32%;

      @media screen and (max-width: 896px) {
        width: 100%;
        margin-left: 0;
      }

      img {
        width: 65px;
        height: auto;
      }

      .txt {
        padding: 5px 0 0 10px;
        width: 100%;

        p {
          font-size: 1.3rem;
          line-height: 1.4;
          margin-bottom: 5px;
          color: #fff;
        }

        h3 {
          font-size: 1.6rem;
          font-weight: 500;
          line-height: 1.5;
          color: #fff;
        }
      }
    }
  }

  .rg_details {
    display: flex;

    @media screen and (max-width: 896px) {
      flex-direction: column;
    }

    dl {
      float: left;
      padding-right: 3%;
      width: 32%;
      font-size: 14px;
      line-height: 1.5;

      @media screen and (max-width: 896px) {
        width: 100%;
        margin-bottom: 10px;
      }

      &:last-child {
        padding-right: 0;
      }
    }

    dt {
      height: 1.6em;
      font-weight: bold;
      text-align: center;
      font-size: 16px;
      text-decoration-line: underline;
      color: #4f4f4f;

      @media screen and (max-width: 896px) {
        text-align: left;
      }
    }

    dd {
      color: #4f4f4f;
      margin-left: 0px;
    }
  }
} */

footer {
  text-align: right;
  padding: 25px 0 10px;
  /* background: var(--main-color); */
  background: var(--main-color);
  /* background-image: url(img/sec1-back.png); */
  background-position: left;
  background-repeat: no-repeat;
  background-size: 500px;

  @media screen and (max-width: 896px) {
    text-align: center;
    padding: 130px 0 68px;
  }

  a {
    color: #fff;
  }

  .ftr_box {
    justify-content: space-between;

    @media screen and (max-width: 896px) {
      justify-content: center;
    }
  }

  .f_menu {
    display: flex;
    justify-content: center;
    padding-bottom: 120px;

    @media screen and (max-width: 896px) {
      flex-direction: column;
    }
  }

  .f-logo {
    @media screen and (max-width: 896px) {
      margin-bottom: 24px;
    }

    .tel {
      font-size: 20px;
    }

    img {
      max-width: 350px;

      @media screen and (max-width: 896px) {
        margin: 0 auto 40px;
      }
    }
  }

  p.company {
    font-size: 13px;
    text-align: center;
  }

  h2 {
    font-size: 32px;
    color: #fff;

    @media screen and (max-width: 896px) {
      text-align: center;
    }
  }

  p {
    color: #fff;
    text-align: left;

    @media screen and (max-width: 896px) {
      text-align: center;
    }

    &.linkbar {
      border: 1px solid;
      width: 300px;

      @media screen and (max-width: 896px) {
        margin: 0 auto;
      }

      a {
        color: #fff;
        padding: 10px;
        display: block;
        text-align: center;
      }
    }
  }

  .info {
    margin-bottom: 50px;

    .logo_image {
      width: 304px;

      @media screen and (max-width: 896px) {
        margin: 20px auto;
      }

      img {
        width: 304px;
      }
    }

    p {
      &.tel {
        font-size: 2.8rem;
      }

      a {
        color: #fff;
      }

      &.time {
        font-size: 1.8rem;
      }
    }

    .btn_orange a {
      border-radius: 0;
      padding: 12px 50px;
    }
  }

  .number_box {
    font-style: normal;

    p {
      font-size: 2.0rem;
    }
  }
}

#footer-menu {
  a {
    color: #fff;
    display: block;
  }

  ul {
    max-width: 500px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    @media screen and (max-width: 896px) {
      li {
        padding: 10px 20px;
        margin-bottom: 10px;
      }
    }
  }
}

#menu-item-891 {
  display: block;
}

.reserve_pc {
  position: fixed;
  bottom: 75px;
  right: 0;
  width: 200px;
  height: 143px;
  z-index: 100;
  background: #fff;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 896px) {
  .reserve_pc {
    display: none;
  }
}

.reserve_pc p {
  background: #0a184d;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 7px;
  padding-top: 5px;
}

.reserve_pc a {
  font-size: 2rem;
  color: #0a184d;
}

.reserve_pc a.to489 {
  font-size: 1.6rem;
  color: #fff;
  margin-top: 7px;
}

.reserve_pc a.to489:hover {
  text-decoration: underline;
}

.reserve_pc .reserve_to489 {
  background: #0a184d;
  padding: 10px 0;
  margin-top: 7px;
}

.reserve_pc p span {
  display: block;
  font-size: 60%;
}

#footer_sp {
  display: none;
}

@media screen and (max-width: 896px) {
  #footer_sp {
    display: block;
  }

  .reserve_sp {
    width: 100%;
    height: 60px;
    display: flex;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 100;
    background: #0a184d;
    color: #fff;
    text-align: center;

    p {
      padding-top: 10px;
      text-align: center;

      a {
        color: #fff;
        display: block;
      }
    }
  }

  .reserve_web,
  .reserve_tel,
  .reserve_btn {
    width: 25%;
    border-right: #fff solid 1px;
  }

  .reserve_btn {
    background: #e6ebec;

    &:last-of-type {
      border-right: none;
    }

    p a {
      color: #1d1d1e;
    }
  }

  .drawer-menu {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30%;
    min-width: 300px;
    height: 100%;
    padding: 50px 0;
    background: #222;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: perspective(500px) rotateY(-90deg);
    transform: perspective(500px) rotateY(-90deg);
    opacity: 0;
    z-index: 999 !important;

    .menu {
      overflow-y: auto;
      height: 100%;
    }

    li {
      text-align: center;

      a {
        display: block;
        height: 50px;
        line-height: 50px;
        font-size: 14px;
        -webkit-transition: all 0.8s;
        transition: all 0.8s;
        color: #fff;

        &:hover {
          color: #1a1e24;
          background: #fff;
        }
      }

      &.menu-item-288 a {
        background: #fff;
        color: #333;
        width: 90%;
        margin: 0 auto;
      }
    }
  }

  .menu-item {
    display: block;
  }

  /* ------------------------------------------------ checkbox */
  .check {
    display: none;
  }

  /* ------------------------------------------------ menu button スマホ版メニューの位置*/
  .menu-btn {
    position: fixed;
    display: block;
    top: 12px;
    right: 6%;
    width: 50px;
    height: 40px;
    font-size: 10px;
    text-align: center;
    cursor: pointer;
    z-index: 9999;

    &:hover .bar {
      background: #999;
    }
  }

  .bar {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 50px;
    height: 3px;
    background: #888;
    /*box-shadow: 1px 1px 1px #666;*/
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;

    &.middle {
      top: 15px;
      opacity: 1;
    }

    &.bottom {
      top: 30px;
      -webkit-transform-origin: left bottom;
      -ms-transform-origin: left bottom;
      transform-origin: left bottom;
    }
  }

  .close-menu {
    position: fixed;
    top: 0;
    right: 30%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0);
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    visibility: hidden;
    opacity: 0;
  }

  /* ------------------------------------------------ checked */
  .check:checked {
    ~.drawer-menu {
      -webkit-transition-delay: 0.3s;
      transition-delay: 0.3s;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none;
      opacity: 1;
      z-index: 2;
    }

    ~.contents {
      -webkit-transition-delay: 0s;
      transition-delay: 0s;
      -webkit-transform: translateX(-300px);
      -ms-transform: translateX(-300px);
      transform: translateX(-300px);
    }

    ~.menu-btn .bar {
      &.top {
        width: 56px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
      }

      &.middle {
        opacity: 0;
      }

      &.bottom {
        width: 56px;
        top: 39px;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
      }
    }

    ~.close-menu {
      -webkit-transition-duration: 1s;
      transition-duration: 1s;
      -webkit-transition-delay: 0.3s;
      transition-delay: 0.3s;
      background: rgba(0, 0, 0, 0.5);
      visibility: visible;
      opacity: 1;
      z-index: 3;
    }
  }
}

.p-mb-contact {
  background: var(--main-color);
  display: flex;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 4;
}

.p-mb-contact a {
  width: 100%;
  height: 60px;
}

.p-mb-contact a.rsv {
  background: #fff;
}

.p-mb-contact p {
  color: #fff;
  text-align: center;
  padding-top: 18px;
}

.p-mb-contact a.rsv p {
  color: #222;
}

/* 注意！以下PC用ヘッダーメニュー */
@media screen and (min-width: 897px) {
  .p-mb-contact {
    display: none;
  }

  .drawer-menu {
    width: 100%;
    height: 80px;
    /* background: #000; */
  }

  .menu {
    max-width: 1200px;
    float: right;
    margin-right: 20px;
  }

  .menu-top-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  #menu-item-891 {
    display: none;
  }

  #menu-item-288 {
    border: 1px solid #fff;
    padding: 24px 60px 13px;
  }

  #menu-item-288:hover {
    background: #fff;
  }

  #menu-item-288 a {
    color: #fff;
  }

  #menu-item-288 a:hover {
    color: #0a184d;
  }

  .menu-item {
    display: inline-block;
    padding: 20px 70px 10px;
    text-align: center;
    margin: 24px auto 0;
    position: relative;
  }

  .menu-item a {
    color: #fff;
    display: block;
    position: absolute;
    top: 2px;
    left: 0;
    width: 100%;
    height: 100%;
  }

  #menu-item-288 a {
    top: 9px;
  }

  .check,
  .menu-btn {
    display: none;
  }
}

/* 下層ページ */
.pankuzu {
  padding: 8px 0;
  font-size: 1.3rem;
  color: #333;

  @media screen and (max-width: 896px) {
    margin-top: 60px;
  }
}

.wrapper {
  padding-top: var(--header-height);
}

.page_top_view {
  padding: 45px 0 60px;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;

  @media screen and (max-width: 896px) {
    padding: 0 0 8%;
    width: 100%;
  }

  img {
    width: 100%;
    height: 400px;
    object-fit: cover;

    @media screen and (max-width: 896px) {
      width: 100%;
      height: 240px;
    }

    &.page_top {
      margin: 0 auto 40px;
    }
  }

  .ttl_area {
    text-align: center;

    h2 {
      padding: 0 0 24px;
    }

    .en {
      color: #444;
    }

    p.msg {
      margin-top: 50px;
      font-size: 1.6rem;
    }
  }
}

ul.room_slide li img {
  margin-bottom: 15px;
}

ul.cate_btn {
  margin: 45px 0 0;
  display: flex;
  justify-content: space-around;

  li {
    text-align: center;

    a {
      background: #fff;
      border: 1px solid #ccc;
      padding: 18px 0 16px;
      display: block;
    }

    &.btn_2 {
      width: 346px;
    }

    &.btn_3 {
      width: 310px;
    }

    &.btn_4 {
      width: 240px;
    }
  }
}

h3 {
  &.stripe {
    position: relative;
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 50px;

    @media screen and (max-width: 896px) {
      font-size: 2rem;
    }

    span {
      padding: 0 25px;
      position: relative;
      z-index: 20;

      @media screen and (max-width: 896px) {
        padding: 0 0;
      }
    }
  }

  &.border {
    color: #0a184d;
    position: relative;
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 20px;

    @media screen and (max-width: 896px) {
      font-size: 2rem;
    }

    span {
      background: #f1f4f4;
      padding: 0 25px;
      position: relative;
      z-index: 20;
    }

    &:before {
      content: "";
      display: block;
      position: absolute;
      height: 8px;
      width: 100%;
      border-top: 1px solid #ccc;
      top: 0;
      bottom: 0;
      margin: auto;
      z-index: 10;
    }
  }
}

#group_plan {
  padding: 80px 0;
}

ul.plan_list {
  display: flex;
  justify-content: space-between;

  li {
    width: 100%;
  }
}

.plan_item {
  width: 478px;
  margin-bottom: 50px;

  .photo {
    position: relative;

    img {
      object-fit: cover;
      width: 100%;
      height: 240px;
    }

    p.plan_num {
      background: #648bb8;
      color: #fff;
      font-size: 1.4rem;
      padding: 4px 25px;
      position: absolute;
      bottom: 0;
      left: 0;
    }
  }

  .txt {
    background: #fff;
    padding: 2% 4% 3%;

    .ttl {
      border-bottom: 1px solid #b8bccc;
      padding: 10px 0 20px;
      text-align: center;

      h4 {
        font-size: 2.4rem;
        margin: 15px 0 0;
      }
    }

    .sub {
      p {
        font-size: 1.4rem;
        margin-top: 15px;

        &.gray {
          background: #ededed;
          padding: 2%;
        }
      }

      .btn_orange {
        margin-top: 5px;
      }
    }
  }
}

.plan_large {
  width: 100%;
  margin-bottom: 65px;
}

#check_place {
  padding: 40px 0;

  p {
    &.msg {
      margin-bottom: 40px;
      font-size: 1.6rem;
      color: #222;
      text-align: center;
    }

    &.caution {
      color: #444;
      text-align: center;
      margin-bottom: 60px;
    }
  }
}

#without_meals {
  padding: 80px 0;
}

.detail {
  width: 776px;
  margin: 0 auto;
}

.name {
  display: flex;
  margin-bottom: 30px;

  p {
    font-size: 1.6rem;

    &.green {
      background: #19a495;
      border: 1px solid #19a495;
      color: #fff;
      width: 25%;
      text-align: center;
      padding: 25px 0;
    }

    &.white {
      background: #fff;
      border: 1px solid #999;
      width: 75%;
      padding: 25px;
      box-sizing: border-box;
    }
  }
}

#with_meals,
#day_plan,
#option {
  padding: 80px 0;
}

.plan_content p.msg {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.6rem;
  color: #222;
}

#menu .menu_detail {
  width: 800px;
  margin: 0 auto;

  .txt {
    background: #fff;
    padding: 5px;
  }

  .inner {
    border: 1px solid #a5c9c2;
    padding: 30px 0;
  }

  li {
    text-align: center;
    margin-bottom: 25px;
    color: #222;
    font-size: 1.6rem;
  }

  p {
    text-align: center;
  }
}

.glamping_content {
  p.msg {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.6rem;
    color: #222;
  }

  .sche_head {
    display: flex;
    justify-content: space-around;
    margin-bottom: 70px;

    &.reverse {
      flex-direction: row-reverse;
    }

    .txt {
      background: #fff;
      width: 554px;
      padding: 5px;

      .inner {
        border: 1px solid #eec9af;
        padding: 40px 50px 35px;
        box-sizing: border-box;
        height: 100%;

        &.night {
          border: 1px solid #adc2d5;
        }

        &.morning {
          border: 1px solid #a0c7b5;
        }
      }

      h3 {
        font-size: 4rem;
        text-align: center;

        &.day {
          color: #bd806c;
        }

        &.night {
          color: #6c808e;
        }

        &.morning {
          color: #648bb8;
        }
      }

      .time {
        text-align: center;
        margin: 10px auto 20px;
        width: 200px;

        p {
          padding: 5px 0;

          &.en {
            border-bottom: 2px solid #eec9af;

            &.night {
              border-bottom: 2px solid #adc2d5;
            }

            &.morning {
              border-bottom: 2px solid #a0c7b5;
            }
          }
        }
      }

      p.under {
        line-height: 2;
      }
    }
  }

  .slides {
    width: 900px;
    margin: 0 auto;

    .slide {
      margin-bottom: 20px;
    }

    ul.slide_pager {
      display: flex;
    }
  }
}

.container {
  &.news_single {
    background: #fff;
    padding: 80px 100px 100px;
    min-height: 500px;

    @media screen and (max-width: 896px) {
      background: #fff;
      padding: 10% 5%;
      min-height: 300px;
      box-sizing: border-box;
    }

    p.date {
      text-align: center;
    }

    h2 {
      padding: 15px 0 25px;
      margin-bottom: 55px;
      font-size: 2.4rem;
    }

    .article_content {
      img {
        margin: 0 auto 45px;
        max-width: 100%;
        height: auto;

        @media screen and (max-width: 896px) {
          height: auto;
          object-fit: cover;
        }
      }

      p {
        line-height: 2;
        word-break: break-word;
      }
    }
  }

  &.news_list {
    p.news_list {
      text-align: center;
      font-size: 2rem;
      font-weight: bold;
    }
  }
}

ul.news_list li {
  padding: 20px;
  border-bottom: 1px solid #ccc;
  line-height: 1.5;

  .cate {
    color: #fff;
    background: #9bbdcb;
    padding: 4px 10px;
    margin-right: 30px;
    font-size: 1.4rem;
  }
}

.qa_dl {
  font-size: 1.6rem;
  line-height: 1.7em;
  margin-bottom: 50px;

  dd {
    text-indent: 1em;

    @media screen and (max-width: 896px) {
      text-indent: 0;
    }
  }
}

.qa_green_text {
  color: #b8bccc;
  font-size: 2rem;
  font-weight: bold;
}

.qa_orange_text {
  color: #0a184d;
  font-size: 2rem;
  font-weight: bold;
}

.qa_mb {
  margin-bottom: 20px;
}

/* ------------------------------
   20190428追記
------------------------------ */
/* フッター
--------------------------- */
footer .info {
  margin-bottom: 2em;
}

.checkin_box {
  margin-bottom: 1em;
}

/* 矢印アイコン
--------------------------- */
.arrow {
  position: relative;
  display: inline-block;
  padding: 0 0 0 16px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px;

  &::before,
  &::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
  }
}

.external::before {
  width: 12px;
  height: 2px;
  background: #b8bccc;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.external::after {
  right: 1px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #b8bccc;
  border-right: 2px solid #b8bccc;
}

.wrapper_video {
  margin: 0 auto;
  width: 800px;
  text-align: left;
  position: relative;
  visibility: hidden;
}

#video {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: #000;
}

.video_box {
  width: 800px;
  height: auto;
  margin: 0 auto;
  text-align: center;

  video {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
}

/* TOPへ戻るボタン */
#fixedTop {
  right: 10px;
  bottom: 230px;
  color: #fff;
  text-align: center;
  line-height: 60px;
  text-decoration: none;
  vertical-align: middle;
  display: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(184, 188, 204, 0.5);
  position: fixed;
  z-index: 99;
  font-size: 20px;

  &:hover {
    background: rgba(135, 137, 140, 1);
  }

  @media screen and (max-width: 896px) {
    display: none !important;
  }
}

/* 404
=============*/
#content {
  h2 {
    font-size: 4rem;
    text-align: center;
    padding: 10rem 0 6rem;
    margin: 0 auto;
  }

  p {
    text-align: center;
    padding: 3rem 0;
  }
}

/* 特定商取引法
--------------------------- */
.transactions {
  width: 90%;
  margin: auto;

  p {
    margin-bottom: 20px;
  }
}

.info .operating {
  text-decoration: underline;
}

/* TOP_sec1
--------------------------- */
html {
  margin-top: 0px;
}

.top_sec1 {
  padding-top: 80px;
  background: #000;
  padding-bottom: 160px;
  /* background-image: url("img/sec1-back.png"); */
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 500px;

  .sec1-img0 {
    max-width: 100%;
    width: 600px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: -80px;
    margin-top: 60px;
  }

  .sec1-img1 {
    max-width: 1300px;
    margin-right: auto;
    margin-left: auto;
  }

  h2 {
    color: #fff;
  }

  >h2 {
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
    font-size: 45px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 3px;
  }

  >h3 {
    text-align: center;
    margin-bottom: 40px;
    color: #d7d7d7;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 3px;
  }

  p {
    color: #fff;
  }
}

.sec1-img-parent {
  /* background-image: url("img/sec1-back.png"); */
  background-position: left;
  background-repeat: no-repeat;
  background-size: 400px;
}

.top-sec1-flex-parent {
  /* background-image: url("img/sec1-back.png"); */
  background-position: left;
  background-repeat: no-repeat;
  background-size: 400px;
}

.top-sec1-flex {
  display: flex;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;

  img {
    max-width: 100%;
  }
}

.sec1-flex-left {
  width: 50%;
  padding: 0px 20px;

  h2 {
    text-align: left;
    margin-top: 30px;
    margin-bottom: 50px;
    color: #fff;
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 2px;
  }

  img {
    margin-left: 40px;
  }
}

.sec1-left-txt {
  color: #fff;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.sec1-left-txt2 {
  margin-bottom: 60px;
}

.sec1-flex-right {
  width: 50%;
  padding: 0px 20px;
}

@media screen and (max-width: 1350px) {
  .top_sec1 .sec1-img1 {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (max-width: 1024px) {
  .sec1-left-txt {
    text-align: center;
  }

  .sec1-left-txt2 {
    text-align: center;
  }

  .top-sec1-flex {
    display: block;
    margin-top: 80px;
  }

  .sec1-flex-left {
    width: 100%;
    padding: 0px;
  }

  .sec1-flex-left-inner {
    padding: 20px;
  }

  .sec1-flex-left-inner h2 {
    text-align: center;
  }

  .sec1-flex-left img {
    margin-right: auto;
    margin-left: auto;
    max-width: 80%;
  }

  .sec1-flex-right {
    width: 100%;
    padding: 0px;
  }

  .sec1-flex-right img {
    margin-right: auto;
    margin-left: auto;
    margin-top: 40px;
    width: 80%;
    max-width: 450px;
  }
}

@media screen and (max-width: 650px) {


  .top_sec1 .sec1-img0 {
    display: none;
  }

  .top_sec1>h2 {
    display: none;
  }

  .top_sec1>h3 {
    display: none;
  }

  .sec1-left-txt {
    font-size: 17px;
  }

  .sec1-flex-left h2 {
    margin-top: 17px;
  }
}

/* TOP_sec2
--------------------------- */
.top_sec2>h2 {
  color: #000;
  text-align: center;
  /* 言語切り替え END */
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3px;
}

.top_sec2 .sec2-img0 {
  max-width: 100%;
  width: 330px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: -80px;
}

.top-sec2-flex {
  display: flex;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.sec2-concept-ttl {
  color: #a62b00;
  text-align: left;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.top-sec2-flex.odd {
  flex-direction: row-reverse;
  height: 600px;
}

.sec2-flex-left {
  width: 50%;
  height: 600px;
  /*padding:0px 20px;*/
}

.sec2-flex-left img {
  max-width: 100%;
  height: 600px;
  object-fit: cover;
}

.sec2-flex-right {
  width: 50%;
  padding: 5% 2.5% 0px;
}

.sec2-flex-right h2 {
  margin-top: 10px;
  margin-bottom: 30px;
  text-align: left;
  color: #000;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 2px;
}

.sec2-concept-txt {
  color: #333;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
}

@media screen and (max-width: 600px) {
  .top-sec2-flex {
    display: block;
    padding: 20px;
    max-width: 600px;
  }

  .sec2-flex-left {
    width: 100%;
    padding: 0px 0px;
  }

  .sec2-flex-right {
    width: 100%;
    padding: 0px 0px;
    margin-top: 25px;
    margin-bottom: 30px;
  }

  .sec2-flex-left img {
    margin-right: auto;
    margin-left: auto;
    max-width: 85%;
  }

  .sec2-flex-right .sec2-concept-ttl {
    text-align: center;
  }

  .sec2-flex-right h2 {
    font-size: 18px;
  }

  .top-sec2-flex.odd {
    height: auto;
    background: url("img/witewall_3.webp");
  }

  .sec2-flex-left {
    width: 100%;
    height: auto;
    /*padding:0px 20px;*/
  }

  .sec2-flex-left img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }
}

@media screen and (max-width: 650px) {
  .top_sec2 {
    padding-bottom: 0px;
  }

  .top_sec2>h2 {
    font-size: 26px;
    letter-spacing: 0px;
  }

  .sec2-flex-right h2 {
    margin-top: 5px;
  }

  .sec2-flex-right {
    margin-top: 20px;
  }
}

/* TOP_sec3
--------------------------- */
.top_sec3 {
  padding-top: 120px;
  padding-bottom: 80px;
  background: #000;
}

.top_sec3 .sec3-img0 {
  max-width: 100%;
  width: 280px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: -40px;
}

.top_sec3>h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3px;
}

.top-sec3-flex {
  display: flex;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 60px;
  margin-bottom: 90px;
}

.top-sec3-flex img {
  width: 100%;
}

.top-sec3-flex h2 {
  color: #fff;
  margin-top: 20px;
  margin-bottom: 15px;
  text-align: left;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3px;
}

.top-sec3-flex span {
  width: 65px;
  border: 1px solid #fff;
  color: #fff;
  display: inline-block;
  text-align: center;
  margin-right: 20px;
  padding-top: 1px;
  line-height: normal;
  letter-spacing: 3px;
}

.top-sec3-flex p {
  color: #fff;
  margin-top: 6px;
  line-height: normal;
  letter-spacing: 3px;
}

.sec3-flex-left {
  width: 50%;
  padding: 0px 40px;
}

.sec3-flex-right {
  width: 50%;
  padding: 0px 40px;
}

.sec3-btn {
  text-align: center;
  margin-top: 90px;
  margin-bottom: 80px;
}

.sec3-btn a {
  border: 1px solid #fff;
  background: #3e3e3e;
  padding: 20px 67px;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3px;
}

@media screen and (max-width: 1200px) {
  .top-sec3-flex {
    max-width: 100%;
  }

  .top-sec3-flex img {
    max-width: 100%;
  }
}

@media screen and (max-width: 650px) {
  .top_sec3 {
    padding-bottom: 20px;
  }

  .top-sec3-flex {
    display: block;
    padding: 0px 20px;
    max-width: 500px;
  }

  .top_sec3>h2 {
    font-size: 30px;
  }

  .top-sec3-flex h2 {
    text-align: center;
    font-size: 25px;
  }

  .top-sec3-flex img {
    margin-right: auto;
    margin-left: auto;
  }

  .sec3-flex-left {
    width: 100%;
    padding: 0px 0px;
  }

  .sec3-flex-right {
    width: 100%;
    padding: 0px 0px;
    margin-top: 60px;
  }

  .sec3-btn a {
    padding: 20px 35px;
    font-size: 15px;
  }
}

/* TOP_sec4
--------------------------- */
.top_sec4 {
  padding-top: 10px;
  background: #000;
  padding-bottom: 100px;
}

.top-sec4-flex {
  display: flex;
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 60px;
  justify-content: center;
}

.sec4-flex-child {
  width: 33%;
  padding: 0px 0px;
  position: relative;
}

.sec4-flex-child img {
  max-width: 100%;
}

.sec4-flex-child p {
  color: #fff;
  text-align: center;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 35px */
  letter-spacing: 0.729px;
  width: 100%;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

@media screen and (max-width: 1024px) {
  .top-sec4-flex {
    max-width: 100%;
  }
}

@media screen and (max-width: 650px) {
  .top-sec4-flex {
    display: block;
    padding: 0px 20px;
    max-width: 500px;
  }

  .top-sec4-flex img {
    margin-right: auto;
    margin-left: auto;
  }

  .sec4-flex-child {
    width: 100%;
    padding: 0px 0px;
    margin-top: 30px;
  }

  /* NEWSの一覧 */
  .top_main_bnr {
    width: 60%;
    margin: 40px auto 20px;
  }

  .top_main_bnr img {
    width: 100%;
  }
}

@media screen and (max-width: 896px) {
  .top_main_bnr {
    width: 100%;
    margin: 40px auto 20px;
  }
}

/* TOP_sec5
--------------------------- */
.top_sec5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #fff;
  /*background-image: url(img/sec1-back.png);*/
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 500px;
}

.top_sec5 .sec5-img0 {
  max-width: 100%;
  width: 280px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: -50px;
}

.top_sec5>h2 {
  margin-bottom: 20px;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3px;
}

.sec5-posts {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

.top_sec5 li {
  color: #fff;
  padding-left: 15px;
  margin-top: 20px;
}

.top_sec5 .date {
  display: inline-block;
  width: 100px;
  color: #898989;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 17px;
  /* 121.429% */
  letter-spacing: 0.85px;
}

.top_sec5 a {
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 30px */
}

@media screen and (max-width: 896px) {
  .sec5-posts {
    max-width: 80%;
  }

  .top_sec5 .date {
    margin-bottom: 10px;
  }

  .top_sec5 li {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 650px) {
  .sec5-posts {
    max-width: 100%;
  }
}

/* TOP_sec6
--------------------------- */
.top_sec6 {
  padding-top: 40px;
  background: #000;
  padding-bottom: 60px;
}

.top_sec6 .sec6-img0 {
  max-width: 100%;
  width: 280px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: -63px;
}

.top_sec6>h2 {
  color: #fff;
  text-align: center;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3px;
}

.sec6-flex-right>h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 3px;
}

.sec6-flex-right p {
  color: #fff;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3px;
}

.top_sec6 .sec6-map {
  padding: 0px 20px;
  text-align: center;
  margin-top: 60px;
}

.top_sec6 .sec6-map iframe {
  max-width: 100%;
}

.top-sec6-flex {
  display: flex;
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 80px;
  padding: 0px 20px;
}

.sec6-flex-left {
  width: 50%;
  padding: 0px 20px;
}

.sec6-flex-left img {
  max-width: 100%;
}

.sec6-flex-right {
  width: 50%;
  padding: 60px 30px 0px;
}

.sec6-flex-right h2 {
  color: #fff;
  text-align: left;
  margin-bottom: 30px;
}

@media screen and (max-width: 1024px) {
  .top_sec6 {
    padding-bottom: 20px;
  }

  .sec6-flex-right>h2 {
    text-align: center;
  }

  .top-sec6-flex {
    display: block;
    padding: 0px 20px;
    max-width: 700px;
  }

  .sec6-flex-left {
    width: 100%;
    padding: 0px 0px;
  }

  .sec6-flex-left img {
    margin-right: auto;
    margin-left: auto;
  }

  .sec6-flex-right {
    width: 100%;
    padding: 0px 0px;
    margin-top: 60px;
  }

  .top_sec6 .sec6-map iframe {
    max-width: 85%;
  }
}

@media screen and (max-width: 650px) {
  .top_sec6 .sec6-map iframe {
    max-width: 100%;
  }
}

/* room_sec1
--------------------------- */
.top_sec1 .sec1-img0-room {
  max-width: 100%;
  width: 400px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: -58px;
  margin-top: 60px;
}

.sec1-room {
  padding: 60px 20px 0px 20px;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

.sec1-room>h3 {
  text-align: center;
  margin-bottom: 40px;
  color: #d7d7d7;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 3px;
}

.sec1-room>p {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 160%;
  /* 28.8px */
  letter-spacing: 0.85px;
}

.room-flex {
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  padding-right: 40px;
  padding-left: 40px;
  margin-right: auto;
  margin-left: auto;
}

.room-img {
  width: 55%;
}

.room-text {
  width: 45%;
  color: #fff;
  padding-top: 60px;
  padding-left: 60px;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  /* 25.5px */
}

.room-text p {
  margin-bottom: 60px;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  /* 25.5px */
}

.room-text table {
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  width: 100%;
}

.room-text table tr {
  border-bottom: 1px solid #bebebe;
}

.room-text table tr:first-child {
  border-top: 1px solid #bebebe;
}

.room-text table th {
  min-width: 120px;
  text-align: left;
  padding: 20px 0px 20px 40px;
  vertical-align: middle;
}

.room-text table td {
  vertical-align: middle;
}

.top-sec1-flex-parent-room2 {
  /* background-image: url("img/sec1-back.png"); */
  background-position: right;
  background-repeat: no-repeat;
  background-size: 400px;
}

.room-img .n2-align-content-start {
  background: #000;
}

.room-img .n2-thumbnail-dot {
  margin: 16px 8px !important;
}

.room-ttl {
  color: #fff;
  text-align: center;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3px;
  margin-top: 150px;
  margin-bottom: 50px;
}

@media screen and (max-width: 1024px) {
  .room-flex {
    display: block;
  }

  .room-img {
    max-width: 600px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .room-text {
    width: 100%;
    max-width: 600px;
    color: #fff;
    padding-top: 30px;
    padding-left: 0px;
    margin-right: auto;
    margin-left: auto;
    color: #fff;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%;
  }
}

@media screen and (max-width: 650px) {
  .top_sec1 .sec1-img0-room {
    display: none;
  }

  .room-flex {
    padding-right: 15px;
    padding-left: 15px;
  }

  .sec1-room>h3 {
    font-size: 35px;
  }

  .sec1-room>p {
    font-size: 16px;
  }

  .room-ttl {
    font-size: 28px;
  }

  .room-text p {
    margin-bottom: 30px;
    font-size: 14px;
  }

  .room-text table th {
    min-width: 100px;
    padding: 15px 0px 15px 20px;
  }
}

/* room_sec2
--------------------------- */
.top_sec2-room {
  padding-top: 80px;
  padding-right: 20px;
  padding-left: 20px;
  background: #000;
  padding-bottom: 80px;
  background-image: url("img/room-sec2.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sec2-room-width {
  max-width: 800px;
  padding: 80px 40px;
  background: #1e1e1e;
  margin-right: auto;
  margin-left: auto;
}

.sec2-room-width img {
  margin-right: auto;
  margin-left: auto;
  margin-bottom: -80px;
}

.sec2-room-width h2 {
  color: #fff;
  text-align: center;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3px;
  margin-bottom: 40px;
}

.sec2-room-width table {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  /* 30.6px */
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.sec2-room-width table tr {
  border-bottom: 1px solid #505050;
}

.sec2-room-width table tr:first-child {
  border-top: 1px solid #505050;
}

.sec2-room-width table th {
  width: 50%;
  text-align: left;
  padding: 20px 0px 20px 40px;
  vertical-align: middle;
}

.sec2-room-width table td {
  width: 50%;
  vertical-align: middle;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .sec2-room-width table {
    width: 100%;
  }
}

@media screen and (max-width: 650px) {
  .top_sec2-room {
    padding-top: 40px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 40px;
  }

  .sec2-room-width {
    padding: 80px 20px;
  }

  .sec2-room-width table th {
    padding: 10px 0px 10px 10px;
  }

  .sec2-room-width h2 {
    font-size: 28px;
  }

  .sec2-room-width table {
    font-size: 16px;
  }
}

/* meal_sec2
--------------------------- */
.top_sec2-meal.even {
  background-image: url(img/meal-sec2-back.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.top_sec2-meal {
  padding-top: 80px;
  padding-bottom: 80px;
}

.top_sec2-meal>h2 {
  color: #000;
  text-align: center;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3px;
}

.top_sec2-meal .sec2-img0 {
  max-width: 100%;
  width: 330px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: -30px;
}

.top-sec2-meal-flex {
  display: flex;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 60px;
}

.sec2-concept-ttl {
  color: #a62b00;
  text-align: left;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.top-sec2-meal-flex.odd {
  flex-direction: row-reverse;
}

.sec2-flex-meal-left {
  width: 55%;
  padding: 0px 20px;
}

.sec2-flex-meal-left img {
  max-width: 100%;
  width: 100%;
}

.sec2-flex-meal-right {
  width: 45%;
  padding: 30px 20px 0px;
}

.sec2-flex-meal-right h2 {
  padding: 5px 15px;
  display: inline-block;
  background: #531909;
  margin-top: 10px;
  margin-bottom: 30px;
  text-align: left;
  color: #fff;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3px;
}

.sec2-flex-meal-right ul {
  padding-left: 20px;
}

.sec2-flex-meal-right li {
  list-style-type: disc;
  color: #333;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 3px;
}

.sec2-flex-meal-left .n2-thumbnail-dot {
  margin: 16px 8px !important;
}

.top_sec2-meal .sec2-img1 {
  max-width: 100%;
  width: 330px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: -60px;
}

@media screen and (max-width: 1024px) {
  .top-sec2-meal-flex {
    display: block;
    padding: 0px 20px;
    max-width: 600px;
  }

  .sec2-flex-meal-left {
    width: 100%;
    padding: 0px 0px;
  }

  .sec2-flex-meal-right {
    width: 100%;
    padding: 0px 0px;
    margin-top: 25px;
    padding-bottom: 120px;
  }

  .sec2-flex-meal-left img {
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
  }

  .sec2-flex-meal-right .sec2-concept-ttl {
    text-align: center;
  }

  .sec2-flex-meal-right h2 {
    text-align: center;
  }
}

@media screen and (max-width: 650px) {
  .top_sec2-meal {
    padding-bottom: 0px;
  }

  .top_sec2-meal>h2 {
    font-size: 30px;
    letter-spacing: 0px;
  }

  .sec2-flex-meal-right h2 {
    margin-top: 5px;
    display: block;
    font-size: 26px;
    width: 200px;
    margin-right: auto;
    margin-left: auto;
  }

  .sec2-flex-meal-right li {
    font-size: 15px;
  }

  .sec2-flex-meal-right {
    margin-top: 20px;
  }
}

/*荳句ｱ､蜈ｱ騾・MV*/
.top_under {
  position: relative;
  width: 100%;
  margin: 0 auto;
  height: 450px;
  margin-top: -28px;
  background: #000;
}

.top_under img {
  width: 100%;
  height: 450px;
  display: block;
  object-fit: cover;
  opacity: .6;
}

.top_text {
  position: absolute;
  width: 90%;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
  padding: 0 20px;
}

.top_title {
  font-size: 4.5rem;
  font-weight: bold;
  margin-bottom: 0.3em;
  letter-spacing: 0.1em;
}

.top_title p {
  color: #fff;
}

.top_text h2 {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: normal;
  /* width: max-content; */
}

.hx-type3 {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.5;
  border-bottom: #fff 1px solid;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .top_text {
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .top_under {
    height: 250px;
    margin-top: -30px;
  }

  .top_under img {
    height: 250px;
  }

  .top_title {
    font-size: 3.0rem;
  }
}

/*------------------------------------------

・団olumn繧ｨ繝ｪ繧｢

------------------------------------------*/
.column-box {
  background: url(img/witewall_3.webp);
}

.column-box .txt-box {
  width: 50%;
}

.column-box .img-box {
  width: calc(100% - 50%);
}

.column-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.column-box.column2 .txt-box,
.column-box.column2 .img-box {
  width: 50%;
}

@media screen and (max-width: 1400px) {
  .column-box .img-box {
    height: 600px;
  }
}

@media screen and (max-width: 940px) {
  .column-box .img-box {
    height: 710px;
  }
}

/* 注意！以下PC用ヘッダーメニュー */
@media screen and (min-width: 768px) {
  .column-box .txt-box {
    padding-right: 70px;
    padding-left: 70px;
  }
}

/*END*/
/*Smartphone*/
@media screen and (max-width: 767px) {
  .column-box .txt-box {
    width: 100%;
    padding-top: 0;
    padding-right: 2%;
    padding-left: 2%;
    padding-bottom: 20px;
  }

  .column-box .img-box {
    width: 100%;
    height: auto;
  }

  .column-box.column2 .txt-box,
  .column-box.column2 .img-box {
    width: 100%;
  }
}

/*END*/
.list-box {
  margin-top: 100px;
}

.list-box .inr {
  justify-content: center;
}

/* 20240315霑ｽ蜉*/
div#n2-ss-25 .n2-style-0b1501f187dd486f0b3833aafb1a1b8d-dot.n2-active,
div#n2-ss-25 .n2-style-0b1501f187dd486f0b3833aafb1a1b8d-dot:hover,
div#n2-ss-25 .n2-style-0b1501f187dd486f0b3833aafb1a1b8d-dot:focus {
  background: RGB(255, 255, 255) !important;
}

@media screen and (max-width: 896px) {

  /* .n2-ss-slider {
    height: 500px;
  } */
  .n2-ss-slider img {
    object-fit: cover;
  }
}

/*==============================================
縲global navigation bar (top)
================================================*/
ul.navi-top li ul.menubar2 li a {
  background: #f6f6f6;
  color: #777;
}

ul.navi-top a:hover {
  color: white;
  /* マウスオーバーの時の文字色 */
  background-color: var(--main-color);
  /* マウスオーバーの時の背景色 */
}

ul.navi-top a.reserve_btn {
  border: 1px solid var(--main-color);
  background: var(--main-color);
  color: white;
}

ul.navi-top a.reserve_btn:hover {
  border: 1px solid var(--main-color);
  background: #fff;
  color: var(--main-color);
}

ul.navi-top {
  position: fixed;
  top: 0;
  margin: 0;
  padding: 0;
  font-size: 14px;
  width: 86%;
  /* text-align: center; */
  text-align: end;
  z-index: 50;
  padding: 15px;
  right: 70px;
  padding-right: 40px;
}

/* 重なり順 */
/* 1階層目 */
ul.navi-top li {
  display: inline-block;
  list-style-type: none;
  position: relative;
}

ul.navi-top a {
  line-height: 36px;
  text-align: center;
  padding-left: 10px;
  text-decoration: none;
  font-weight: nomarl;
  display: block;
  padding: 5px 20px;
}

ul.navi-top a.-arr {
  pointer-events: none;
}

ul.navi-top a.-arr:after {
  content: "\f078";
  margin-left: 5px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
}


@media screen and (max-width: 1312px) {
  ul.navi-top {
    padding: 15px 3rem 100px 250px;
    width: 100%;
  }

  header .logo_image img {
    width: 250px;
    padding-top: 18px;
    margin-left: 5px;
  }
}

@media screen and (max-width: 1250px) {
  ul.navi-top {
    padding: 15px 3rem 100px 250px;
    right: 0px;
  }

  ul.navi-top a {
    padding: 5px 16px;
  }

  header .logo_image img {
    width: 250px;
    padding-top: 18px;
    margin-left: 5px;
  }
}

@media screen and (max-width: 1121px)and (min-width: 897px) {
  ul.navi-top {
    padding: 0px 3rem 100px 250px;
    right: 0px;
  }

  ul.navi-top a {
    padding: 0px 16px;
  }
}

/* 子階層以降の幅 */
ul.navi-top ul {
  display: none;
  margin: 0px;
  padding: 0px;
  position: absolute;
}

ul.navi-top ul a {
  width: 176px;

  /* 下層項目の幅 */
}

ul.navi-top li:hover ul {
  display: block;
}

/*formedia*/
.txt_2 {
  padding: 30px;
  border: 1px solid #999;
  width: 50%;
  margin: 0 auto;
}

.font-big {
  font-size: 22px;
}

@media screen and (max-width: 896px) {
  .txt_2 {
    padding: 20px;
    width: 100%;
  }

  .font-big {
    font-size: 15px;
  }
}

#slide-menu-check {
  display: none;
}

#slide-menu-check:checked+.slide-menu-btn>.bdr-box>span:nth-of-type(1) {
  transform: rotate(45deg);
}

#slide-menu-check:checked+.slide-menu-btn>.bdr-box>span:nth-of-type(2) {
  opacity: 0;
}

#slide-menu-check:checked+.slide-menu-btn>.bdr-box>span:nth-of-type(3) {
  transform: rotate(-45deg);
}

#slide-menu-check:checked+.slide-menu-btn+.slide-menu {
  left: 0;
}

.slide-menu-btn {
  position: fixed;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  z-index: 10000;
  cursor: pointer;
}

.slide-menu-btn>.bdr-box {
  width: 50%;
  height: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slide-menu-btn>.bdr-box>span {
  display: block;
  width: 100%;
  height: 2px;
  background: #5b3e49;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: 0.3s;
}

.slide-menu-btn>.bdr-box>span:nth-of-type(1) {
  transform: translateY(-10px);
}

.slide-menu-btn>.bdr-box>span:nth-of-type(3) {
  transform: translateY(10px);
}

@media screen and (min-width: 897px) {
  .slide-menu-btn {
    display: none;
  }
}

.slide-menu {
  position: fixed;
  width: 100%;
  height: 100%;
  /* background: #1a6b8bd4; */
  background: var(--main-color);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 9999;
  padding: 70px 30px;
  top: 0;
  left: 100%;
  overflow: auto;
  transition: 0.3s;
}

.slide-menu .logo-box {
  width: 100%;
  margin: 0 auto 50px;
}

.slide-menu .lang-btn {
  position: absolute;
  top: 17px;
  right: 64px;
}

.slide-menu .lang-btn>#lang-btn {
  display: none;
}

.slide-menu .lang-btn>#lang-btn:checked+label+.lang-list {
  opacity: 1;
  visibility: visible;
}

.slide-menu .lang-btn>label {
  display: block;
  background: #fff;
  padding: 2px 10px;
  border-radius: 3px;
  cursor: pointer;
}

.slide-menu .lang-btn>label>i {
  color: #555;
  margin-right: 5px;
}

.slide-menu .lang-btn>.lang-list {
  width: 200%;
  position: absolute;
  top: 42px;
  right: 0;
  background: #fff;
  border-radius: 3px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.slide-menu .lang-btn>.lang-list>ul {
  padding: 10px;
}

.slide-menu .lang-btn>.lang-list>ul>li>a {
  display: block;
  padding: 5px 10px;
  position: relative;
  padding-left: 20px;
}

.slide-menu .lang-btn>.lang-list>ul>li>a:before {
  content: "\f0da";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
}

.slide-menu .slide-container {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}

.slide-menu .slide-container .slide-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 0 4%;
  margin-bottom: 30px;
}

.slide-menu .slide-container .slide-btn>.item {
  width: 48%;
}

.slide-menu .slide-container .main-nav {
  margin-bottom: 30px;
}

.slide-menu .slide-container .main-nav>ul>*+* {
  border-top: 1px solid #fff;
}

.slide-menu .slide-container .main-nav>ul>li>a,
.slide-menu .slide-container .main-nav>ul>li>.slide-acc {
  display: block;
  font-size: 16px;
  color: #fff;
  padding: 14px 50px 14px 0;
  position: relative;
}

.slide-menu .slide-container .main-nav>ul>li>a:after,
.slide-menu .slide-container .main-nav>ul>li>.slide-acc:after {
  content: "\f105";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.slide-menu .slide-container .main-nav>ul>li>.slide-acc {
  cursor: pointer;
}

.slide-menu .slide-container .main-nav>ul>li>.slide-acc:after {
  content: "+";
}

.slide-menu .slide-container .main-nav>ul>li>.slide-acc.-check:after {
  content: "\f068";
}

.slide-menu .slide-container .main-nav>ul>li>.in-nav {
  margin-bottom: 20px;
  display: none;
}

.slide-menu .slide-container .main-nav>ul>li>.in-nav>li>a {
  color: #fff;
  display: block;
  padding: 5px 20px;
}

.slide-menu .slide-container .main-nav>ul>li>.in-nav>li>a:before {
  content: "\f0da";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  margin-right: 10px;
}

.slide-menu .slide-container>.btn-box {
  margin-bottom: 30px;
}

.slide-menu .slide-container>.sns-box {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.slide-menu .slide-container>.sns-box>.item>a {
  text-align: center;
  line-height: 40px;
  width: 40px;
  height: 40px;
  background: #fff;
  font-size: 25px;
  display: inline-block;
  color: #ff0069;
  border-radius: 50%;
}

.slide-menu .slide-container .sub-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.slide-menu .slide-container .sub-nav>li>a {
  display: inline-block;
  font-size: 12px;
  color: #ccc;
  position: relative;
  padding-left: 10px;
}

.slide-menu .slide-container .sub-nav>li>a:before {
  content: "\f0da";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
}

@media screen and (min-width: 897px) {
  .slide-menu {
    display: none;
  }
}

.button01,
.button02 {
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  width: 100%;
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 3px;
  padding: 7px 20px;
}

.button01 {
  color: #333;
  background: #fff;
}

.button02 {
  color: #fff;
}

/*繝輔ャ繧ｿ繝ｼ縺ｮ繧ｰ繝ｫ繝ｼ繝玲命險ｭ*/
.group_btn {
  font-size: 1.2rem;
  position: fixed;
  top: 2%;
  right: 20%;
  padding: 10px 15px;
  width: auto;
  background: #7498b5;
  z-index: 99;
}

.group_btn a {
  color: #fff;
}

.group_box {
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.group_img {
  width: 50%;
}

.group_img img {
  width: 100%;
  object-fit: cover;
}

.group_txt {
  width: 45%;
  padding: 20px;
}

@media screen and (max-width:896px) {
  .group_box {
    margin: 50px auto;
    display: block;
  }

  .group_img {
    width: 100%;
  }

  .group_txt {
    width: 100%;
    padding: 0;
  }
}

/* フッターのグループ設定 END */
/* 言語切り替え */
.language {
  z-index: 9999;
  position: absolute;
  right: 20px;
  top: 96px;
  width: 140px;
  height: 20px;
}

.language>li {
  /* 親階層のみ幅を100%にする */
  width: 100%;
}

/* 全てのリスト、リンク共通 */
.language li {
  list-style: none;
  position: relative;
}

.language li p.lan-en,
.language li a {
  background: #eee;
  display: block;
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 4px 0;
  border-radius: 18px;
}

/* 子階層の設定 */
.language li li {
  height: 0;
  overflow: hidden;
  transition: .5s;
  margin-top: 2px;
  margin-bottom: 10px;
}

.language li:hover>ul>li {
  height: 2rem;
  overflow: visible;
}

@media screen and (max-width:896px) {
  .language {
    right: 4%;
    top: 70px;
    width: 110px;
  }
}

/* 言語切り替え END */
.left {
  text-align: left;
}

/* Instagram インスタグラム 動画スライダー */
OK・・.insta-swiper {
  width: 100%;
  padding: 20px 0;
}

.insta-swiper .swiper-slide {
  width: 320px;
  /* ここが重要、リールサイズ固定 */
  display: flex;
  justify-content: center;
}

/* 繧､繝ｳ繧ｹ繧ｿ繧ｰ繝ｩ繝 */
.top_instagram {
  padding: 45px 0 40px;
  background-color: #f4f4f4;
}

.top_instagram h2.top {
  margin-bottom: 50px;
}

.top_instagram .fa-2x {
  font-size: 1.5em;
}

.top_instagram .logo {
  width: 40px;
  margin: 0 auto 15px;
}

@media screen and (max-width:896px) {
  .top_instagram .inr {
    padding: 15px 0;
  }

  .top_instagram h2.color {
    margin: 20px 0 10px;
  }

  .top_instagram .logo {
    margin: 6% auto 8%;
  }
}

.top_instagram iframe {
  pointer-events: none;
}

.top_instagram_img img {
  width: 100%;
  object-fit: cover;
  height: auto;
  margin: 0 auto;
}

.top_instagram .link a {
  color: #222;
  border: #222 1px solid;
}

.instagram-box h2 {
  margin-top: 6%;
}

.top_insta_ul li {
  word-break: break-all;
}

@media screen and (max-width:896px) {
  .instagram-box h2 {
    margin-top: 25%;
  }

  .instagram-box p {
    padding: 4%;
  }

  .top_insta_ul .slick-prev:before,
  .top_insta_ul .slick-next:before {
    display: block;
    color: #ffffff;
  }

  .top_insta_ul .slick-prev,
  .top_insta_ul .slick-next {
    top: 40%;
  }

  .top_insta_ul .slick-prev {
    left: 10px;
  }

  .top_insta_ul .slick-next {
    right: 10px;
  }
}

.top_instagram .slick-slide h3 {
  padding: 7% 1%;
}

.top_instagram .spot a {
  display: flex;
}

.top_instagram .spot p {
  padding: unset;
  margin-left: 0.5rem;
  font-weight: bold;
}

.instagram_slides {
  margin: 0 auto;
  padding-bottom: 20px;
  padding-top: 10px;
  width: 100%;
}

.top_instagram_li .txt {
  display: block;
  margin: 0px 10px 0 0;
}

.top_instagram_li .txt .date,
.top_instagram_li .txt .caption {
  width: auto;
}

.top_instagram li p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  padding: 0 5% 1.5%;
}

.instagram_archive p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-left: 1%;
  margin-bottom: 2%
}

.top_instagram_li {
  width: 100%;
  background: white;
  margin: 0 auto;
}

.top_instagram_cap {
  padding: 0.5rem;
}

.instagram_contents p {
  white-space: pre-wrap;
}

.instagram_contents h2 {
  text-align: left;
  padding: 0 0 1% 1% !important;
  margin-top: 2%;
}

.instagram_archive li {
  text-align: left;
  background: #f8f8f8;
}

.instagram_archive h3 {
  text-align: left;
  margin: 2% 0 6% 1%;
  width: 99%;
  font-size: 14px;
}

/* 繝昴ャ繝励い繝・・*/
.instagram_main_contents .content_width {
  background: #fff;
}

.instagram_contents {
  display: flex;
}

.instagram_contents .content {
  padding-left: 2%;
  width: 95%;
}

.top_instagram .slick-initialized .slick-slide {
  margin: 1rem;
}

.instagram_main_contents .content_width {
  margin-top: 30px;
}

@media screen and (max-width:896px) {
  .instagram_contents {
    display: block;
  }

  .top_instagram ul.sp_instagram_ul {
    display: grid !important;
    width: 100%;
    grid-template-columns: repeat(auto-fit, calc(50% - 10px));
    gap: 20px;
    padding: 10px;
  }

  .top_instagram .slick-initialized .slick-slide {
    margin: 0 0.5rem;
  }
}

/* ------------------------------
 single
------------------------------ */
/* instagram_archive ------------------ */
ul.instagram_archive_ul {
  width: 94%;
  max-width: 1400px;
  margin: 0 auto 50px auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  list-style: none;
}

ul.instagram_archive_ul li {
  width: 31%;
  margin: 30px 1%;
  background-color: #dde3eb;
}

ul.instagram_archive_ul li .list_instagram_img {
  display: inline-block;
  position: relative;
  width: 100%;
}

ul.instagram_archive_ul li .list_instagram_img::before {
  content: "";
  display: block;
  padding-top: 100%;
}

ul.instagram_archive_ul li .list_instagram_img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: 0 0;
}

ul.instagram_archive_ul li .list_instagram_note {
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
}

ul.instagram_archive_ul li .list_instagram_note h3.food_content__ttl a {
  word-break: break-all;
  line-height: 1.7;
}

/* instagram_main_contents */
.instagram_main_contents {
  width: 100%;
}

.instagram_main_contents h1.insta_title {
  margin-bottom: 30px;
  font-size: 24px;
  text-align: center;
  word-break: break-all;
  line-height: 1.7;
}

.instagram_contents {
  width: 94%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.instagram_contents .instagram_img_box {
  width: 60%;
}

.instagram_contents .instagram_img_box .instagram_img {
  width: 100%;
}

.instagram_contents .instagram_img_box .instagram_img img {
  display: initial;
  width: 100%;
  height: auto;
}

.instagram_contents .instagram_note {
  width: 37%;
  margin-left: 3%;
}

@media screen and (min-width:897px) {
  .lity-container .instagram_img_box iframe.reel {
    height: 83% !important;
  }
}

@media screen and (max-width:896px) {
  ul.instagram_archive_ul li {
    width: 48%;
    margin: 15px 1%;
  }

  .instagram_main_contents {
    margin: 0;
  }

  .instagram_contents .instagram_img_box {
    width: 100%;
  }

  .instagram_contents .instagram_note {
    width: 100%;
    margin-left: 0%;
    margin-top: 30px;
  }
}

.instagram_box {
  display: block;
  height: auto;
}

.instagram_box li {
  width: auto;
  height: auto;
  opacity: 1;
}

/* ------------------------------
 single end
------------------------------ */
/* 繧､繝ｳ繧ｹ繧ｿ繧ｰ繝ｩ繝  END */
.top_instagram_swiper {
  width: 100%;
  padding: 20px 0;
}

.top_instagram_li {
  text-align: center;
}

.top_instagram_img iframe {
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}

/* 愛犬ページの周辺観光 */
.aikenkankou {
  width: 80%;
  margin: 0 auto;
}

.aikenkankou ul {
  margin: 0 0 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.aikenkankou ul li {
  width: 300px;
  /* 各コンテンツの横幅 */
  /* border: 1px solid #000;
  padding: 10px;     
  margin: 6px;      */
  display: flex;
  /* 【重要】フレックスボックスにする */
  flex-direction: column;
  /* 【重要】縦並びにする */
}

@media screen and (max-width:896px) {
  .aikenkankou ul li {
    width: 85%;
    /* 各コンテンツの横幅 */
    /* border: 1px solid #000;
  padding: 10px;
  margin: 6px; */
    display: flex;
    /* 【重要】フレックスボックスにする */
    flex-direction: column;
    /* 【重要】縦並びにする */
  }
}

.aikenkankou ul li .text {
  background: #ccc;
  /* 閭梧勹濶ｲ縺ｫ繧ｰ繝ｬ繝ｼ繧呈欠螳・*/
  margin: 0 0 10px;
  /* 荳九↓10px縺ｮ菴咏區 */
  padding: 5px;
  /* 菴咏區5px繧呈欠螳・*/
  text-align: center;
}

.aikenkankou ul li .aikenbtn {
  border: 1px solid #000;
  /* border繧呈欠螳・*/
  border-radius: 20px;
  /* 隗剃ｸｸ縺ｫ縺吶ｋ */
  text-align: center;
  /* 譁・ｭ励ｒ荳ｭ螟ｮ蟇・○ */
  margin-top: auto;
  /* 【重要】上に取れるだけの余白 */
}

.floating-reserve-btn {
  display: none;
}

/* SP譎ゅ□縺題｡ｨ遉ｺ */
@media screen and (max-width: 896px) {
  .floating-reserve-btn {
    display: block;
    position: fixed;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: 96%;
    max-width: 450px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  }

  .floating-reserve-btn img {
    width: 100%;
    height: auto;
    display: block;
  }
}

.best_rate {
  width: 65px;
  position: absolute;
  top: 5px;
  right: 20px;
}

.best_rate img {
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width: 896px) {
  .best_rate {
    width: 55px;
    position: absolute;
    top: 3px;
    right: 64px;
  }

  .best_rate img {
    width: 100%;
    object-fit: cover;
  }
}

/*------------------------------------------

	Image Box Layout

------------------------------------------*/
.image-box-l,
.image-box-r {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;

  figure {
    width: 48%;
    margin: 0;

    img {
      width: 100%;
      height: auto;
      display: block;
    }
  }

  .text {
    width: 48%;
  }

  @media screen and (max-width: 896px) {
    display: block;
    margin-bottom: 40px;

    figure {
      width: 100%;
      margin-bottom: 20px;
    }

    .text {
      width: 100%;
      padding: 1rem;
    }
  }
}

.image-box-r {
  flex-direction: row-reverse;
}


/* Feature List */
.feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;

  li {
    position: relative;
    padding-left: 1.5em;
    line-height: 1.6;

    &::before {
      content: "■";
      position: absolute;
      left: 0;
      top: 0;
      font-size: 0.9em;
    }
  }
}

/* Custom Buttons using --main-color */
.btn_main_fill,
.btn_main_outline {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 1px solid var(--main-color);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}

/* Background: --main-color */
.btn_main_fill {
  background-color: var(--main-color);
  color: #fff;
}

.btn_main_fill:hover {
  background-color: #fff;
  color: var(--main-color);
}

/* Background: White */
.btn_main_outline {
  background-color: #fff;
  color: var(--main-color);
}

.btn_main_outline:hover {
  background-color: var(--main-color);
  color: #fff;
}

/* News List Thumbnail Support */
ul.news_list li.news_item_box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid #ccc;
}

ul.news_list li.news_item_box .news_thum {
  width: 150px;
  flex-shrink: 0;
}

ul.news_list li.news_item_box .news_thum img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}

ul.news_list li.news_item_box .news_meta {
  flex-grow: 1;
}

@media screen and (max-width: 768px) {
  ul.news_list li.news_item_box {
    flex-direction: column;
    align-items: flex-start;
  }

  ul.news_list li.news_item_box .news_thum {
    width: 60%;
    margin-bottom: 10px;
  }
}

/*フッターのいぬやどリスト*/
.rg_group .container {
  margin: 90px auto;
}

#resort-rg {
  background: #F8F8F8;
  padding: 10px 0 40px;
}

.rg_group h2 {
  color: #575757;
}

.rg_group h4.rg_group {
  font-size: 1.6rem;
  text-align: left;
  margin-bottom: 0;
  color: #333;
}

.rg_group .box {
  display: flex;
  flex-direction: column;
}

.rg_group .box ul {
  display: flex;
  -webkit-flex-wrap: wrap;
  /* Safari etc. */
  -ms-flex-wrap: wrap;
  /* IE10        */
  flex-wrap: wrap;
}

@media screen and (max-width:896px) {
  .rg_group .box ul {
    flex-direction: column;
  }

  .rg_group h2 {
    font-size: 2rem;
  }
}

.rg_group .box p.type {
  text-align: center;
  padding: 8px 0;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #fff;
}

.rg_group .box li {
  display: flex;
  margin-bottom: 32px;
  margin-left: 8px;
  width: 32%;
}

@media screen and (max-width:896px) {
  .rg_group .box li {
    width: 100%;
    margin-left: 0;
  }
}

.rg_group .box li .photo {
  width: 65px;
  height: 45px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.rg_group .box li .txt {
  padding: 5px 0 0 10px;
  width: 100%;
}

.rg_group .box li .txt p {
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 5px;
  color: #fff;
}

.rg_group .box li .txt h3 {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}

.rg_group .rg_details {
  display: flex;
  padding-left: 10px;
  margin: 0 auto 50px;
}

@media screen and (max-width:896px) {
  .rg_group .rg_details {
    flex-direction: column;
  }
}

.rg_group .rg_details dl {
  float: left;
  padding-right: 3%;
  width: 32%;
  font-size: 14px;
  line-height: 1.5;
}

@media screen and (max-width:896px) {
  .rg_group .rg_details dl {
    width: 100%;
  }
}

.rg_group .rg_details dl:last-child {
  padding-right: 0;
}

.rg_group .rg_details dt {
  height: 3.8em;
  font-weight: bold;
  text-align: center;
  padding: 20px 0 10px;
  font-size: 16px;
  /* text-decoration-line: underline; */
}

@media screen and (max-width:896px) {
  .rg_group .rg_details dt {
    text-align: left;
  }
}

.rg_group .rg_details dd {
  margin-left: 0px;
  color: #575757;
  text-align: left;
}

/*フッターのいぬやどリスト　END*/
.qahd a {
  font-family: sans-serif;
  font-weight: 300;
}