@charset "utf-8";
body, h1, h2, h3, h4, h5, h6, p, span {
  font-weight: normal;
  font-family: "zen-kaku-gothic-antique", sans-serif;
}
/*色名に異論があるかと思いますが、(; ･`д･´)スピード重視ですのでこれで進みます。*/ :root {
  /*color*/
  --c-bg: #f9f5f2; /* Ivory Soft（淡いアイボリー・背景色） */
  --c-navy: #404181; /* Deep Navy（深いネイビー　紺色） */
  --c-red: #934546; /* Wine Red（ワイン系の深赤） */
  --c-red2: #c1272d; /* 注意書きのとこの赤 */
  --c-orange: #c76846; /* Terracotta（テラコッタ　またはorange） */
  --c-yellow: #f2c169; /* Honey Gold（蜂蜜のような黄金色） */
  --c-green: #a3a85a; /* Olive Green（オリーブグリーン） */
  --c-sky: #61a3bd; /* Sky Teal（空と湖の中間の青） */
  --c-gray: #999999; /* Stone Gray（石のような落ち着いたグレー） */
  --c-brown: #998675; /*後からbrown*/
  --c-white: #fff; /* Stone Gray（石のような落ち着いたグレー） */
  --c-black: #000; /* Stone Gray（石のような落ち着いたグレー） */
  /*font*/
  --zen-g: "zen-kaku-gothic-new", sans-serif; /*Zen Kaku Gothic New Regular*/
  --cor-b: cormorant, sans-serif; /*cormorant 明朝系 ※ボールドは各自追加の事*/
  --tx-14: clamp(10px, 3.0dvw, 14px);
  --tx-15: clamp(11px, 3.2dvw, 15px);
  --tx-16: clamp(12px, 3.5dvw, 16px);
  --tx-20: clamp(15px, 4dvw, 20px);
  --tx-21: clamp(15px, 4.5dvw, 21px);
  --tx-25: clamp(18px, 5dvw, 25px);
  --tx-30: clamp(20px, 6dvw, 30px);
  --tx-35: clamp(22px, 7dvw, 35px);
  --tx-50: clamp(28px, 8.5dvw, 50px);
  --tx-60: clamp(33px, 10.2dvw, 60px);
  --tx-65: clamp(36px, 11dvw, 65px);
  --tx-70: clamp(36px, 12dvw, 70px);
  --tx-90: clamp(42px, 15dvw, 90px);
}
html, body {
  background-color: var(--c-bg);
  margin: 0;
  padding: 0;
}
/*追加されたフォント:*/
/*Zen Kaku Gothic Antique Regular*/
/*.zenkaku-g-r{
font-family: "zen-kaku-gothic-antique", sans-serif;
font-weight: 400;
font-style: normal;
}*/
/*Zen Kaku Gothic Antique Bold*/
/*.zenkaku-g-b{
font-family: "zen-kaku-gothic-antique", sans-serif;
font-weight: 700;
font-style: normal;
}*/
/*Zen Kaku Gothic New Regular*/
.zenkaku-g-r-new {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 400;
  font-style: normal;
}
/*Zen Kaku Gothic New Bold
font-family: "zen-kaku-gothic-new", sans-serif;
font-weight: 700;
font-style: normal;*/
/*font-family: cormorant, sans-serif;
font-weight: 700;
font-style: normal;*/
.corm-b {
  font-family: "cormorant", sans-serif;
  font-weight: 700;
  font-style: normal;
}
/*背景色指定（変数による指定）*/
.bg-navy {
  background-color: var(--c-navy);
}
.bg-red {
  background-color: var(--c-red);
}
.bg-orange {
  background-color: var(--c-orange);
}
.bg-yellow {
  background-color: var(--c-yellow);
}
.bg-green {
  background-color: var(--c-green);
}
.bg-sky {
  background-color: var(--c-sky);
}
.bg-gray {
  background-color: var(--c-gray);
}
.txt-navy {
  color: var(--c-navy);
}
.txt-red {
  color: var(--c-red);
}
.txt-orange {
  color: var(--c-orange);
}
.txt-yellow {
  color: var(--c-yellow);
}
.txt-green {
  color: var(--c-green);
}
.txt-sky {
  color: var(--c-sky);
}
.txt-gray {
  color: var(--c-gray);
}
.txt-brown {
  color: var(--c-brown);
}
/*さらに読み込むbutton*/
.btn-a {
  font-size: 18px;
  display: flex;
  /*color: var(--c-navy);*/
  /*border: 1px solid var(--c-navy);*/
  background-color: var(--c-white);
  border-radius: 100px;
  /*padding: 2em;*/
  text-align: center;
  width: 240px;
  height: 37px;
  justify-content: center; /* 横中央 */
  align-items: center; /* 縦中央 */
  text-decoration: none;
  transition: all .3s ease; /* ← ふんわり変化 */
}
.btn-a-2 {
  font-size: 18px;
  display: flex;
  /*color: var(--c-navy);*/
  /*border: 1px solid var(--c-navy);*/
  background-color: var(--c-white);
  border-radius: 100px;
  /*padding: 2em;*/
  text-align: center;
  width: 240px;
  height: 37px;
  justify-content: center; /* 横中央 */
  align-items: center; /* 縦中央 */
  text-decoration: none;
  transition: all .3s ease; /* ← ふんわり変化 */
}
.btn-a:hover {
  /* font-size: 20px; */
  /* display: flex;
    color: var(--c-white); */
  cursor: pointer;
  /*border: 1px solid var(--c-navy);*/
  /*background-color:var(--c-navy); */
  /*    border-radius: 100px;
    text-align: center;
    width: 240px; 
    height: 37px;
    justify-content: center;
    align-items: center;
    text-decoration: none;*/
  /*transition: all .3s ease;*/ /* ← ふんわり変化 */
}
/* ------------------------------------- */
/* BBQエリアの黄色ボタンの調整のため追加▼ 羽生 */
/* ------------------------------------- */
.btn-a2 {
  font-size: 18px;
  display: flex;
  /*color: var(--c-navy);*/
  /*border: 1px solid var(--c-navy);*/
  background-color: var(--c-white);
  border-radius: 100px;
  /*padding: 2em;*/
  text-align: center;
  width: 240px;
  height: 37px;
  justify-content: center; /* 横中央 */
  align-items: center; /* 縦中央 */
  text-decoration: none;
  transition: all .3s ease; /* ← ふんわり変化 */
  margin: .8em 0 2em;
  cursor: pointer;
}
/*詳しくはこちら、instagramでフォロー*/
.btn-b {
  font-size: 20px;
  display: flex;
  color: var(--c-navy);
  border: 1px solid var(--c-navy);
  background-color: var(--c-white);
  border-radius: 100px;
  /*padding: 2em;*/
  text-align: center;
  width: 210px;
  height: 37px;
  justify-content: center; /* 横中央 */
  align-items: center; /* 縦中央 */
  text-decoration: none;
  transition: all .3s ease; /* ← ふんわり変化 */
}
.btn-b:hover {
  font-size: 20px;
  display: flex;
  color: var(--c-white);
  border: 1px solid var(--c-navy);
  background-color: var(--c-navy);
  /*    border-radius: 100px;
    text-align: center;
    width: 210px; 
    height: 37px;
    justify-content: center;
    align-items: center;
    text-decoration: none;*/
  /*transition: all .3s ease;*/ /* ← ふんわり変化 */
}
/*ご予約はこちら*/
.btn-c {
  display: flex;
  font-size: 15px;
  width: 264px;
  height: 37px;
  line-height: 37px; /* ← これ入れると完全中央 */
  text-decoration: none;
  background: rgba(255, 255, 255, 0.3);
  transition: all .3s ease;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  transition: all .3s ease; /* ← ふんわり変化 */
  .btn-c1 {
    font-family: "cormorant", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1;
    position: relative;
    top: 2px; /* ← 数字を調整してちょうどにする */
  }
  .btn-c2 {
    font-family: var(--zen-g);
    font-weight: 400;
    font-style: normal;
    line-height: 1;
  }
  .btn-c3 {
    font-family: var(--zen-g);
    font-weight: 400;
    font-style: normal;
    line-height: 1;
  }
}
.btn-c:hover {
  background: rgba(255, 255, 255, 0.5);
}
/*more*/
.more-link {
  display: block;
  background-image: url(../img/common/right-arrow.svg);
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: right bottom;
  height: 24px;
  width: 123px;
  font-family: "cormorant", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  transition: all .3s ease; /* ← ふんわり変化 */
}
.more-link:hover {
  opacity: 0.56;
}
/*btnカラバリ*/
.btn-navy,.btn-navy:focus {
  border: 1px solid var(--c-navy);
  color: var(--c-navy);
}
.btn-navy2 {
  background-color: var(--c-navy);
  color: var(--c-white);
  font-size: var(--tx-18);
}
.btn-red,.btn-red:focus {
  border: 1px solid var(--c-red);
  color: var(--c-red);
}
.btn-orange,.btn-orange:focus {
  border: 1px solid var(--c-orange);
  color: var(--c-orange);
}
.btn-yellow,.btn-yellow:focus {
  border: 1px solid var(--c-yellow);
  color: var(--c-yellow);
}
.btn-yellow2 {
  background: var(--c-yellow);
  color: var(--c-white);
  font-size: var(--tx-18);
}
.btn-green,.btn-green:focus {
  border: 1px solid var(--c-green);
  color: var(--c-green);
}
.btn-sky,.btn-sky:focus {
  border: 1px solid var(--c-sky);
  color: var(--c-sky);
}
.btn-gray,.btn-gray:focus {
  border: 1px solid var(--c-gray);
  color: var(--c-gray);
}
.btn-navy:hover {
  background-color: var(--c-navy);
  color: var(--c-white);
}
/*.btn-navy2:hover {
  border: 1px solid var(--c-navy);
  background: var(--c-white);
  color: var(--c-navy);
}*/
.btn-red:hover {
  background-color: var(--c-red);
  color: var(--c-white);
}
.btn-orange:hover {
  background-color: var(--c-orange);
  color: var(--c-white);
}
.btn-yellow:hover {
  background-color: var(--c-yellow);
  color: var(--c-white);
}
/*.btn-yellow2:hover {
  border: 1px solid var(--c-yellow);
  background: var(--c-white);
  color: var(--c-yellow);
}*/
.btn-green:hover {
  background-color: var(--c-green);
  color: var(--c-white);
}
.btn-sky:hover {
  background-color: var(--c-sky);
  color: var(--c-white);
}
.btn-gray:hover {
  background-color: var(--c-gray);
  color: var(--c-white);
}
/*弱いタイトルを補強するためのh1 css*/
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/*最大1300px*/
.section {
  max-width: 1480px;
  width: 96%;
  margin: auto;
  padding: 120px 0;
}
.section2 {
  max-width: 1480px;
  width: 74%;
  margin: auto;
  padding: 120px 0;
}
/*無限width*/
.max-section {
  width: 100%;
}
/*突如現れる横幅maxにちかいhr*/
.article p {
  font-size: clamp(12px, 3.5dvw, 16px);
}
.first-text {
  letter-spacing: 0.2em;
}
.first-text p {
        font-size: var(--tx-16);
        line-height: 2em;
        margin: 4rem 0 0;
}
.va120 {
  letter-spacing: 0.2em;
}
.first-title {
  text-align: center;
  font-size: var(--tx-70);
  font-family: "cormorant", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 0;
  padding: 0;
  line-height: 1;
}
.first-title2 {
  text-align: center;
  font-size: var(--tx-70);
  font-family: "cormorant", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 0;
  padding: 0;
  line-height: 1.3;
}
.first-title-sub {
  margin: 0 0 70px 0;
  padding: 0;
  text-align: center;
}
/*slider用*/
.nanuka-slider {
  max-width: 900px;
  margin: 0 auto 0;
  /*background: var(--c-cream, #f7f3ef);*/
  /*padding: 24px;*/
}
/* 画像枠 */
.nanuka-sliderbox {
  position: relative;
  overflow: hidden;
  aspect-ratio: 910 / 584;
}
/* 画像を重ねてフェード切り替え */
.nanuka-slideimg {
  position: absolute;
  inset: 0;
  width: 100%;
  /*  height: 100%;*/
  object-fit: cover;
  opacity: 0;
  transition: opacity .5s ease;
  aspect-ratio: 910 / 584;
}
.nanuka-slideimg.is-active {
  opacity: 1;
}
/* ドット（下の●●●） */
.nanuka-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.nanuka-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #ccc;
  cursor: pointer;
}
/* それぞれの部屋のアクティブドット色 */
/* ama */
#room-ama .nanuka-dot.is-active {
  background: var(--c-red);
}
/* jimbo */
#room-jimbo .nanuka-dot.is-active {
  background: var(--c-orange);
}
/* tsuchi */
#room-tsuchi .nanuka-dot.is-active {
  background: var(--c-yellow);
}
/* zen */
#room-zen .nanuka-dot.is-active {
  background: var(--c-green);
}
/* ji */
#room-ji .nanuka-dot.is-active {
  background: var(--c-sky);
}
/* tenchi（必要なら） */
#room-tenchi .nanuka-dot.is-active {
  background: var(--c-gray);
}
#specialty .nanuka-dot.is-active {
  background: #934546;
}
/*slider用はここまで*/
/*長い横線。*/
.max-hr {
  width: 92%;
  margin: auto;
  bourder-top: none;
  border-bottom: 1px solid #ccc;
}
@media(max-width:768px) {
  .section {
    padding: 33px 0 22px 0;
  }
  .first-title-sub {
    margin: 0 0 35px 0;
  }
  /*.btn-a{font-size: 16px;}*/
  .first-title {
    font-size: var(--tx-35);
    margin-bottom: 1rem;
  }
  .nanuka-sliderbox {
    /*aspect-ratio: 670 / 350;*/
      aspect-ratio: 670 / 427;
  }
  .room-text img {
    width: 86%;
    display: block;
    margin: auto;
  }
  .specialty-sub {
    margin-bottom: 1rem;
  }
    
.first-text p {
        font-size: var(--tx-14);
        line-height: 2em;
        margin: 2rem 0 0;
}
}
@media(max-width:768px) {
  .firstview img {
    aspect-ratio: 750 / 800;
    width: 100%;
    object-fit: cover;
  }
    
    
.btn-a {
  font-size: 16px;
        height: 35px;
}
.btn-a-2 {
  font-size: 16px;
        height: 32px;
}
}

.tb{display: none;}
@media(max-width:1070px){
        .none-tb{
        display: none;
    }
    .tb{
        display: block!important;
    }
    
}