@charset "utf-8";

:root {
  --sans-font: 'Zen Kaku Gothic New';
  --default-font: 'Zen Old Mincho';
  --font-color: #2F2F2F;
  --white-color: #fff;
  --bg-color: #eaf1e4;
  --base-color: #F2F2F2;
  --main-color: #91BA8F;
  --accent-color: #6A8768;
  --gray-color: #C4C4C4;
  --lightblack-color: #6A6969;
  --logo-color: #4D4A47;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 62.5%;
  width: 100%;
  font-family: var(--default-font);
  font-weight: 500;
  color: var(--font-color);
  letter-spacing: 0.1em;
}

.wrapper {
  background-color: var(--base-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--default-font);
  letter-spacing: 0.1em;
  color: var(--logo-color);
}

img {
  display: block;
  filter: contrast(0.9) brightness(1.1);
  user-select: none;
}

.p {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: justify;
}

@media (max-width: 572px) {
  .p {
    letter-spacing: 0.05em;
  }
}

a {
  transition: ease-in-out 0.3s;
}

/* スマホ改行 */
.sp-br {
  display: none;
}
/* リキャプチャマーク非表示 */
.grecaptcha-badge { visibility: hidden; }

/* フェードイン */
.js-fade {
  opacity: 0;
  visibility: hidden;
  transition: all 1.5s;
  transform: translateY(150px);
  transition-delay: 0.5s;
}

.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --------------ボタン------------ */
.btn {
  transition: ease-in-out 0.3s;
}

.btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-size: 1.8rem;
  color: var(--font-color);
}

/* ボタン矢印 */
.dli-arrow-right {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  position: relative;
  width: 50px;
  height: 0.1em;
  background: currentColor;
}

.dli-arrow-right::before {
  content: '';
  width: 10px;
  height: 10px;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.05em;
  box-sizing: border-box;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    opacity: 0.7;
  }

  .btn:hover a {
    gap: 20px;
  }
}

/* ===================================
ヘッダー
====================================== */
header {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  backdrop-filter: blur(3px);
  /* background-color: rgba(71, 71, 71, 0.6); */
  /* background-color: rgba(106, 135, 104, 0.5); */
  padding: 16px 25px;
}

header nav {
  position: relative;
}

@media (min-width: 901px) {

  header nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.nav-logo {
  width: 150px;
  height: auto;
}

.nav-logo a {
  width: 100%;
  height: 100%;
}

.nav-logo img {
  width: 100%;
  height: auto;
}

header .nav-links .nav-ul {
  display: flex;
  align-items: center;
  gap: 4rem;
}

header .nav-links .nav-ul li {
  font-family: var(--default-font);
  font-size: 1.6rem;
  font-weight: 600;
}

header .nav-links .nav-ul li a span {
  display: inline-block;
  color: var(--white-color);
}

.hover_under {
  position: relative;
  padding-bottom: 5px;
}

.hover_under::before {
  background: #fff;
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}

@media (hover: hover) and (pointer: fine) {
  .hover_under:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  box-sizing: border-box;
  z-index: 1001
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: var(--white-color);
  border-radius: 10px;
  transition: all 0.3s;
}

@media (max-width: 572px) {
  .nav-logo {
    width: 120px;
    height: auto;
  }
}

/* ======================================
ヘッダー レスポンシブ
======================================== */
@media (max-width: 1080px) {
  header .nav-links .nav-ul {
    gap: 2.4rem;
  }

  header .nav-links li {
    font-size: 1.2rem;
  }
}

@media (min-width: 901px) {
  .sp-switcher {
    display: none;
  }

  .sp-only {
    display: none;
  }
}

/* ==============================
ハンバーガーメニュー
================================= */
@media (max-width: 900px) {
  .sp-wrap {
    display: flex;
    gap: 2rem;
  }

  .pc-switcher {
    display: none;
  }

  header {
    width: 100%;
    padding: 5px 10px;
  }

  header nav {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  header .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    /* background-color: rgba(116, 116, 116, 0.9); */
    background-color: rgba(106, 135, 104, 0.9);
    z-index: 1000;
  }

  header .nav-links.active {
    width: 100%;
    display: block;
    padding-top: 8rem;
  }

  header .nav-links .nav-ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 95%;
    margin-right: auto;
    margin-left: auto;
    /* padding-top: 8rem; */
  }

  header .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--white-color);
    padding: 0 20px;
  }

  header .nav-links li a {
    display: block;
    width: 100%;
    height: 100%;
  }

  header .nav-links li a span {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white-color);
  }

  header .nav-links li:last-child {
    border-bottom: none;
  }

  .arrow_r {
    position: relative;
    display: inline-block;
  }

  .arrow_r::after {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px var(--white-color);
    border-right: solid 2px var(--white-color);
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    bottom: 0;
    margin: auto;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .sp-only {
    display: flex;
    flex-flow: column;
    gap: 12px;
    width: 95%;
    margin-top: 30px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 20px;
    color: var(--white-color);
  }

  .sp-contact a {
    display: flex;
    align-items: center;
    color: var(--white-color);
    font-size: 1.6rem;
  }

  .sp-only .sp-item img {
    width: 20px;
    height: auto;
    margin-right: 10px;
  }

  .sp-only .sp-btn {
    background-color: var(--white-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .sp-only .sp-btn a {
    display: block;
    width: 100%;
    height: 100%;
    color: var(--accent-color);
    font-family: var(--sans-font);
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    padding: 10px 0;
  }
  .sp-only .sp-sns {
    display: flex;
    justify-content: center;
    gap: 30px;
  }
}

/* ======================================
            言語切り替えスイッチャー
======================================== */
.lang-switcher {
  position: relative;

}

.pc-switcher {
  border-left: 1px solid var(--white-color);
  padding-left: 15px;
}

.sp-switcher {
  border-right: 1px solid var(--white-color);
  padding-right: 15px;
}

.lang-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  color: var(--white-color);
  font-family: var(--sans-font);
  text-shadow: none;
  font-size: 1.2rem;
  font-weight: 400;

}

.lang-btn a img {
  width: 20px;
}

.lang-toggle {
  background: none;
  border: none;
  color: var(--white-color);
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.lang-dropdown {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  position: absolute;
  top: 100%;
  background: rgba(255, 255, 255, 0.8);
  padding: 0 10px;
  border-radius: 5px;
  z-index: 1001;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  margin-top: 10px;
  width: 100%;
}

.lang-dropdown-ul {
  display: flex;
  flex-flow: column;
  justify-content: start;
  gap: 16px;
}

.lang-dropdown li a {
  display: block;
  padding: 5px 0;
  font-family: var(--sans-font);
  color: var(--font-color);
  font-size: 1.4rem;
  text-align: center;
}

.lang-switcher.active .lang-dropdown {
  max-height: 500px;
  /* 十分な高さに設定 */
  opacity: 1;
  padding: 10px;
}

/* ======================================
        固定予約ボタンモーダル
======================================== */
/* モーダルを開くボタン */
.fixed-btn {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 998;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  width: fit-content;
  background-color: rgba(255, 255, 255, 0.8);
  transition: ease-in-out 0.3s;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-left: 1px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-family: var(--sans-font);
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--accent-color);
  padding: 10px 50px;
  border: 1px solid var(--accent-color);
}

.fixed-btn img {
  width: 24px;
  height: auto;
}


@media (hover: hover) and (pointer: fine) {
  .fixed-btn:hover {
    background-color: rgba(255, 255, 255, 1);
  }
}

@media (max-width: 572px) {
  .fixed-btn {
    gap: 10px;
    font-size: 1.4rem;
    padding: 10px 30px;
  }
}


/* -----------------------------------
共通 リザーブ
-------------------------------------- */
.reservation {
  margin-bottom: 10rem;
}

.reservation .kotozna {
  background-color: var(--bg-color);
  padding: 10rem 0;
}

.reservation .kotozna .item {
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.reservation .kotozna p {
  text-align: center;
}

.reservation .kotozna .tl-box p {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.kotozna-btn {
  background-color: var(--accent-color);
  padding: 10px 0;
  transition: ease-in-out .3s;
}

.kotozna-btn a {
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  font-family: var(--sans-font);
  color: var(--white-color);
}

@media (hover: hover) and (pointer: fine) {
  .kotozna-btn:hover {
    opacity: 0.7;
  }
}

/* ---------------予約ボックス---------------- */
.inc-bookingBox .tripla-container {
  background-color: var(--main-color);
  padding: 50px 0;
}

.inc-bookingBox .tripla-container h4 {
  width: fit-content;
  font-size: 3.6rem;
  color: var(--bg-color);
  margin-bottom: 3rem;
  margin-right: auto;
  margin-left: auto;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid var(--bg-color);
}

.inc-bookingBox .tripla {
  width: 100%;
}

.inc-bookingBox #booking form {
  background-color: var(--main-color);
  box-shadow: none;
  text-align: center;
  padding: 0;
}

@media (max-width: 992px) {

  /* 検索ボタンの設定 */
  #booking .search-widget-search-container-bf1818 .search-widget-button-wrapper-d2b715 {
    display: block;
    margin-top: 3rem;
  }

  #booking .button-btn-f51c1a {
    width: 100%;
  }
}


.inc-bookingBox #booking label {
  color: var(--white-color);
}

.reservation .member {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 32px;
  margin: 20px auto 0;
}

.reservation .member li {
  width: fit-content;
}

.reservation .member li a {
  display: block;
  color: var(--accent-color);
  font-family: var(--sans-font);
  font-size: 1.6rem;
  font-weight: 500;
  width: 100%;
  height: 100%;
  padding: 5px 20px;
  border: 1px solid var(--accent-color);
  background-color: rgba(255, 255, 255, 0.8);
}

@media (hover: hover) and (pointer: fine) {
  .reservation .member li a:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
  }
}

@media screen and (max-width:572px) {
  .reservation {
    margin-bottom: 5rem;
  }

  .reservation .kotozna {
    padding: 8rem 0;
  }

  .inc-bookingBox .tripla-container h4 {
    font-size: 2.8rem;
  }
}

/* ===================================
フッター footer
====================================== */
.ft-upper {
  width: 100%;
  background-color: var(--bg-color);
}

.ft_inner {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 5rem 0;
}

/* ------左ブロック----- */
.ft_left {
  width: 40%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.ft_info {
  width: 50%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.ft_logo {
  width: 180px;
}

.ft_logo a img {
  width: 100%;
  height: auto;
}

.ft_info address {
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 2;
}
.ft_info address a {
  color: var(--font-color);
}

/* お問い合わせ */
.ft_infoList {
  width: 100%;
}

.ft_infoList li {
  width: 100%;
  background-color: var(--accent-color);
  padding: 10px 0;
  transition: ease-in-out 0.3s;
  margin-bottom: 10px;
}

.ft_infoList li .contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--white-color);
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.ft_infoList li .contact-btn img {
  display: block;
  width: 24px;
  height: auto;
}

/* フッター下部 */
.ft-lower {
  background-color: var(--accent-color);
  color: var(--white-color);
}

.ft-lower a {
  color: var(--white-color);
}



@media (hover: hover) and (pointer: fine) {
  .ft_infoList li:hover {
    opacity: 0.8;
  }
}

.ft-recaptcha {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 1.5;
}

.ft-recaptcha a {
  color: var(--accent-color);
}

/* SNS */
.ft_sns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.ft_sns a {
  display: block;
  width: 32px;
}

.ft_sns a img {
  display: block;
  width: 100%;
  height: auto;
}

/* ------グロナビ------ */
.ft_nav {
  width: 50%;
}

.ft_navlist {
  width: fit-content;
  margin: 0 auto;
}

.ft_nav_item {
  padding: 15px 10px;
  width: fit-content;
}

.ft_nav_item a {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  width: 100%;
  height: 100%;
  transition: ease-in-out 0.3s;
  color: var(--font-color);
}

@media (hover: hover) and (pointer: fine) {
  .ft_nav_item a:hover {
    color: var(--main-color);
  }
}

/* ------右ブロック----- */
.ft_right {
  width: 60%;
  border-left: 1px solid var(--accent-color);
  padding-left: 5rem;
}

.ft_right h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.ft_grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 20px 10px;
  padding-left: 2rem;
}

.ft_brand {
  font-size: 1.6rem;
  letter-spacing: 1.2px;
  line-height: 2;
  font-weight: 700;
}

.ft-panel li a {
  color: var(--font-color);
  font-size: 1.2rem;
  line-height: 2.5;
  letter-spacing: 0.05em;
  transition: ease-in-out 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .ft-panel li a:hover {
    color: var(--main-color);
  }
}

.ft-lower ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 5%;
  padding: 3rem 15px;
  font-size: 1.4rem;
}

.ft-lower .ft-small {
  text-align: center;
  letter-spacing: 0.1em;
  padding-bottom: 5rem;
}

@media (max-width: 900px) {
  .ft_inner {
    display: block;
  }

  /* ------左ブロック----- */
  .ft_left {
    width: 100%;
    display: block;
  }

  .ft_info {
    width: 100%;
  }

  .ft_logo a {
    display: block;
  }

  .ft_logo a img {
    margin: 0 auto;
  }

  /* --グロナビ-- */
  .ft_nav {
    width: 100%;
    padding: 2rem 0;
  }

  .ft_navlist {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(4, auto);
    gap: 5px 15px;
  }

  .ft_nav_item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }

  .sp_ft_allow {
    position: relative;
    display: inline-block;
    width: 7.7px;
    height: 13.3px;
  }

  .sp_ft_allow::before,
  .sp_ft_allow::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    right: 0;
    width: 10px;
    height: 1px;
    border-radius: 9999px;
    background-color: var(--font-color);
    transform-origin: calc(100% - 0.5px) 50%;
  }

  .sp_ft_allow::before {
    transform: rotate(45deg);
  }

  .sp_ft_allow::after {
    transform: rotate(-45deg);
  }

  /* ------右ブロック----- */
  .ft_right {
    width: 100%;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--accent-color);
    padding-top: 2rem;
  }

  .ft_right h2 {
    text-align: center;
  }

  /* ---------------------
 ホテル一覧 アコーディオン
 ---------------------- */

  .ft_grid {
    grid-template-columns: repeat(2, auto);
    gap: 10px 3%;
    padding-left: 0;
  }

  .ft-accordion {
    cursor: pointer;
    padding: 10px;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--lightblack-color);
  }

  .ft-panel {
    margin: 0;
    padding: 0 18px;
    background-color: #f2f9ff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }

  .ft-panel li {
    margin: 10px 0;
  }

  .symbol {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .symbol span {
    display: block;
    background-color: var(--lightblack-color);
    width: 100%;
    height: 1px;
    transition: all 0.4s ease;
  }

  .symbol span:nth-of-type(1) {
    transform: translateX(15px);
  }

  .symbol span:nth-of-type(2) {
    transform: rotate(-90deg);
  }

  .ft-accordion.active .symbol span:nth-of-type(2) {
    transform: rotate(0deg);
  }
}

@media (max-width: 600px) {

  /* ------左ブロック----- */
  .ft_logo a img {
    width: 150px;
    height: auto;
  }

  .ft_info address {
    font-size: 1.4rem;
    line-height: 1.6;
  }

  /* グロナビ */
  .ft_nav {
    padding: 30px 0;
  }

  .ft_nav_item {
    padding: 5px 10px;
  }

  .ft_nav_item a {
    font-size: 1.6rem;
  }

  /* -------ホテル一覧 アコーディオン--------- */

  .ft_right h2 {
    font-size: 1.6rem;
  }

  .ft_brand {
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .ft_grid {
    grid-template-columns: repeat(1, auto);
    gap: 0;
  }

  .accordion {
    padding: 5px 15px;
  }

  .ft-panel li {
    margin: 5px 0;
  }

  /* -------footer その他ナビ------ */
  .ft-lower ul {
    gap: 15px 5%;
    font-size: 1.2rem;
  }

  .ft_small {
    text-align: center;
    margin-top: 10px;
  }

  .ft_small small {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {

  /* アコーディオン内ホテルリスト */
  .ft-panel li {
    margin: 0;
    height: fit-content;
  }

  .ft-panel li:first-child {
    margin-top: 10px;
  }

  .ft-panel li:last-child {
    margin-bottom: 10px;
  }

  .ft_other_nav ul {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 5px 5%;
  }
}

/* 404ページ お問い合わせのcss使用 */
.notFound .btn {
  margin-top: 5rem;
}