@charset "utf-8";

:root {
  --heading-font: 'Zen Old Mincho';
  --default-font: 'Zen Kaku Gothic New';
  --font-color: #2F2F2F;
  --white-color: #fff;
  --base-color: #F4F1EA;
  --blue-color: #81A1B4;
  --navy-color: #25475B;
  --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);
}

.wrapper {
  background-color: var(--base-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  letter-spacing: 0.1em;
}

/* .p {
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.8;
  text-align: justify;
  color: var(--font-color);
  letter-spacing: 0.1em;
} */
img {
  display: block;
  filter: contrast(0.9) brightness(1.1);
}

.sp-br {
  display: none;
}

.js-fade {
  opacity: 0;
  visibility: hidden;
  transition: all 1.5s;
  transform: translateY(150px);
}

.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#concept, #service, #facility {
  scroll-margin-top: 10rem;
}

/* ===================================
ヘッダー
====================================== */
header {
  position: fixed;
  top: 0;
  z-index: calc(infinity);
  width: 100%;
  background-color: rgba(244, 241, 234, 0.4);
  backdrop-filter: blur(3px);
  padding: 16px 0;
}

@media (min-width: 769px) {
  .sp-title {
    display: none;
  }
}

header nav {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 4rem;
  margin-right: 20px;
}

.nav-links li {
  font-family: var(--default-font);
  font-size: 1.6rem;
  font-weight: 500;
}

.nav-links li a span {
  display: inline-block;
  color: var(--font-color);
  transition: transform .5s;
}


.reservation a {
  padding: 8px 30px;
  color: var(--font-color);
  border: 1px solid var(--font-color);
  background-color: var(--white-color);
  transition: ease-out 0.5s;
}

@media (hover: hover) and (pointer: fine) {
  .nav-links li a span:hover {
    transform: scale(1.1);
  }

  .reservation a:hover {
    color: var(--white-color);
    border: 1px solid var(--navy-color);
    background-color: var(--navy-color);
  }
}

/* ==============================
ハンバーガーメニュー
================================= */
.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: 3px;
  background: var(--font-color);
  border-radius: 10px;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    height: 56px;
  }

  .sp-title {
    font-size: 2.4rem;
    color: #4D4A47;
  }

  header nav {
    width: fit-content;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.9);
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    /* background-color: rgba(255, 255, 255, 0.7); */
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-color);
  }

  .nav-links li a span {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--lightblack-color);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .reservation a {
    display: block;
    width: 70%;
    margin: 0 auto;
    color: var(--lightblack-color);
    border: 1px solid var(--lightblack-color);
  }

  .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);
  }
}

/* =================================
MV メインビジュアル
==================================== */
.mv {
  width: 100%;
  height: auto;
  padding-top: 56px;
}

.mv p {
  font-size: 128px;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  line-height: 1;
  margin-left: 32px;
}

.mv p span {
  font-size: 115px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
}

@media screen and (min-width:769px) {
  .mv-cont {
    position: relative;
    width: 100%;
    height: fit-content;
    margin-top: 40px;
  }

  .mv-txt {
    position: absolute;
    left: 32px;
    top: -40px;
    z-index: 999;
  }
}


.mv-txt h1 {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
  background-color: var(--base-color);
  padding: 24px 40px 24px 0;
}

.mv-txt div {
  width: fit-content;
  background-color: var(--base-color);
}

.mv-txt div img {
  display: block;
  width: 144px;
  height: auto;
  padding-right: 32px;
  padding-bottom: 24px
}

/* --------SWIPER-------- */
.mv-swiper {
  width: 90%;
  margin: 0 auto;
}

/* オプション: フェード効果のためのカスタムスタイルを追加 */
.mv-swiper .swiper-slide {
  opacity: 0;
  /* 初期状態で透明にする */
}

.mv-swiper .swiper-slide-active {
  opacity: 1;
  /* アクティブなスライドを表示する */
  transition: opacity 1s ease-in-out;
  /* フェード効果を適用 */
}

.mv-swiper .mv-media {
  width: 100%;
  height: auto;
}

.mv-swiper .mv-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media screen and (min-width:769px) {
  .mv-swiper .mv-media img {
    aspect-ratio: 16 / 9;
  }
}

.mv-media-active {
  opacity: 1;
}

/* ------ご予約はこちらから------ */
.book-btn {
  width: fit-content;
  height: auto;
  display: block;
  margin: 8rem auto 0;
}

.book-btn span {
  padding: 16px 84px;
  background-color: var(--white-color);
  border: 1px solid var(--font-color);
  font-size: 1.8rem;
  font-weight: 500;
  font-family: var(--default-font);
  color: var(--font-color);
  transition: ease-in-out .5s;
}

@media (hover: hover) and (pointer: fine) {
  .book-btn span:hover {
    background-color: var(--navy-color);
    border: 1px solid var(--navy-color);
    color: var(--white-color);
  }
}

/* =======================================
main 共通設定
========================================== */
section {
  margin-top: 15rem;
}

.title {
  width: fit-content;
  margin: 0 auto 5rem;
  text-align: center;
}

.title p {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}

.title h2 {
  font-size: 3.2rem;
}

/* =======================================
main イントロ
========================================== */
.intro {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.intro-pic {
  width: calc((100% - 55%) / 2);
}

.intro-pic img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.intro-txt {
  width: 55%;
}

.intro-txt h2 {
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 5rem;
}

.intro-txt p {
  width: 60%;
  text-align: center;
  font-size: 1.8rem;
  font-family: var(--heading-font);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
  margin: 0 auto;
}

.intro-txt p:last-child {
  margin-top: 3rem;
}

/* =======================================
main　サービス
========================================== */
.sv-wrap {
  display: flex;
  gap: 24px;
  width: 90%;
  max-width: 1536px;
  margin: 0 auto;
}

.sv-wrap figure {
  width: calc(100% / 3);
}

.sv-wrap figure img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.sv-wrap figure figcaption {
  padding-top: 16px;
}

.sv-txt {
  display: flex;
  /* align-items: center; */
  align-items: flex-end;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-color);
}

/* .sv-txt div, .sv-txt ul {
  width: 50%;
} */
.sv-txt div:nth-child(1) {
  width: 60%;
}

.sv-txt div:nth-child(2) {
  width: 40%;
}

.sv-txt div p {
  font-size: 1.6rem;
  font-family: var(--heading-font);
  font-weight: 500;
}

.sv-txt div h3 {
  font-size: 2.4rem;
  font-family: var(--heading-font);
  font-weight: 500;
  line-height: 1;
}

.sv-txt ul {
  border-left: 1px solid var(--gray-color);
  padding-left: 20px;
}

.sv-txt ul li {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
}

.sv-txt ul li:first-child {
  font-size: 1.6rem;
}

.sv-p {
  font-family: var(--heading-font);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.8;
  padding-top: 15px;
  text-align: justify;
}

.sv-p span {
  display: block;
  width: fit-content;
  font-family: var(--default-font);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--lightblack-color);
  margin-top: 10px;
  margin-right: 0;
  margin-left: auto;
}

.sv-p small {
  display: block;
  width: fit-content;
  font-size: 1.4rem;
  font-family: var(--default-font);
  color: var(--lightblack-color);
  margin-top: 5px;
  margin-right: 0;
  margin-left: auto;
}

/* --------------------------------------------
パララックス
---------------------------------------------- */
.p-index__eyecatch {
  position: relative;
  overflow: hidden;
  background-color: rgb(0 0 0 / 0.3);
  width: 100%;
  border-radius: 30rem 30rem 0 0;
  aspect-ratio: 16 / 9;
}

@media (min-width: 769px) {
  .p-index__eyecatch {
    max-height: 700px;
  }
}

.p-index__eyecatch__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 130%;
  backface-visibility: hidden;
}

.p-index__eyecatch__image img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* =======================================
main　ルーム
========================================== */

.room {
  background-color: var(--blue-color);
}

.room .title {
  color: var(--white-color);
  padding-top: 10rem;
}

.room-cont {
  width: 90%;
  margin: 0 auto;
}

/* ルームカード スタイル */
.card-wrapper {
  width: 100%;
  max-width: 1536px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8rem 5rem;
  margin: 0 auto;
}

.card {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  gap: 15px;
  width: calc((100% - 5rem) / 2);
  color: var(--white-color);
  padding: 40px 34px;
  border: 2px solid var(--white-color);
  box-shadow: 3px 3px 10px rgba(37, 71, 91, 0.25);
}

.card h3 {
  position: relative;
  font-size: 2.4rem;
  font-family: var(--default-font);
  font-weight: 500;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.2;
}

.card h3 span {
  font-size: 2rem;
}

.card h3::before {
  display: block;
  content: '';
  margin: 0 auto 2rem;
  width: 8px;
  height: 8px;
  background-color: var(--white-color);
  border-radius: 50%;
}

.room-slider img {
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 3px 3px 10px rgba(37, 71, 91, 0.25);
}

.comming-soon {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 3 / 2;
  width: 100%;
  height: auto;
  background-color: var(--gray-color);
  font-size: 1.8rem;
  color: var(--font-color);
}

.room-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 15px;
}

.room-icon div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-family: var(--default-font);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.card p {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin: 15px 0;
  text-align: justify;
}

.card ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.card ul li {
  width: calc(100% / 4);
  font-size: 1.6rem;
  /* background-color: var(--white-color); */
  background-color: var(--navy-color);
  /* color: var(--navy-color); */
  color: var(--white-color);
  text-align: center;
  padding: 4px 0;
  box-shadow: 3px 3px 10px rgba(37, 71, 91, 0.25);
  border: 1px solid var(--blue-color);
}

/* .card ul li:last-child {
  border-right: none;
} */

/* --------ルーム　ポイント--------- */
.room-cont .point {
  width: 100%;
  max-width: 1536px;
  display: flex;
  justify-content: center;
  padding: 10rem 0;
  margin: 0 auto;
}

.point li {
  padding: 40px 32px;
  width: calc(100% / 3);
  /* width: 50%; */
}

.point li:nth-of-type(odd) {
  background-color: var(--navy-color);
  color: var(--white-color);
  /* background-color: var(--white-color); */
  /* color: var(--navy-color); */
}

.point li:nth-of-type(even) {
  background-color: var(--white-color);
  color: var(--navy-color);
  /* background-color: var(--navy-color); */
  /* color: var(--white-color); */
}

.point h3 {
  font-family: var(--default-font);
  font-size: 2rem;
  text-align: center;
}

.point p {
  font-family: var(--default-font);
  font-size: 1.6rem;
  margin: 2rem 0;
  text-align: justify;
}

.point li div {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.point li div img {
  display: block;
  width: 64px;
  height: auto;
}

/* =======================================
main　施設案内
========================================== */
.facility {
  width: 90%;
  max-width: 1536px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 10rem;
}

.facility-box {
  width: 100%;
  display: flex;
}

.facilty-item {
  width: 50%;
}

.facilty-item div {
  display: flex;
  align-items: center;
  font-size: 2rem;
}

.facilty-item li {
  margin-bottom: 3rem;
}

.facilty-item div img {
  width: 32px;
  height: auto;
  margin-right: 16px;
}

.facilty-item div .icon-power {
  width: 20px;
  margin: 0 22px 0 6px;
}

.facilty-item p {
  font-size: 1.6rem;
  color: var(--lightblack-color);
  padding-left: 48px;
  margin-top: 5px;
}

/* -------アクセス-------- */
.access {
  margin-top: 10rem;
}

.access h3 {
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 5rem;
}

.access-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5%;
}

.access-wrap .access-img {
  width: 50%;
}

.access-wrap .access-img img {
  width: 100%;
  height: auto;
}

.hotel-info h4 {
  font-size: 2.4rem;
  font-family: var(--default-font);
  font-weight: 500;
}

.hotel-info address {
  font-size: 1.8rem;
  font-family: var(--default-font);
  font-weight: 500;
  color: var(--font-color);
  letter-spacing: 0.05em;
  margin-top: 10px;
}

.hotel-info address a {
  color: var(--font-color);
  font-size: 1.6rem;
  font-family: var(--default-font);
  font-weight: 500;
}

.hotel-info .gmap {
  display: block;
  color: var(--font-color);
  font-size: 1.8rem;
  font-weight: 500;
  text-decoration: underline;
  margin-top: 5px;
}

/* ---------アコーディオン--------- */
.accordion {
  max-width: 1536px;
  width: 100%;
  margin: 5rem auto 0;
}

.panel-header {
  width: 100%;
  padding: 15px 20px 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-color);
}

.panel-header p {
  display: flex;
  justify-content: start;
  align-items: center;
}

.panel-header img {
  width: 30px;
  height: auto;
  margin-right: 16px;
}

.icon {
  font-size: 20px;
  transition: transform 0.3s;
}

.panel-header.active .icon {
  transform: rotate(45deg);
}

.panel-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-out;
}

.panel-body {
  padding: 20px 20px 20px 48px;
  border-top: 1px solid #eee;
  background-color: var(--white-color);
}

.panel-body p {
  font-size: 1.6rem;
  color: var(--lightblack-color);
  letter-spacing: 0.05em;
  line-height: 1.8;
}

/* ======================================
フッター
========================================= */
footer {
  width: 100%;
  height: auto;
  background-color: var(--navy-color);
}

.ft-inner {
  width: 80%;
  height: auto;
  max-width: 1536px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5%;
  color: var(--white-color);
  padding: 4rem 0;
}

.ft-item {
  width: 50%;
}

.ft-item:first-child {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10%;
}

.ft-item .ft-logo {
  max-width: 80px;
}

.ft-item .ft-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.ft-item h3 {
  font-size: 2rem;
  font-family: var(--default-font);
  font-weight: 500;
  margin-bottom: 5px;
}

.ft-item address {
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.ft-item address a {
  color: var(--white-color);
}

.ft-item ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ft-item ul li a span {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--white-color);
  transition: transform .5s;
}

@media (hover: hover) and (pointer: fine) {
  .ft-item ul li a span:hover {
    transform: scale(1.1);
  }
}

/* --------コピーライト------- */
.copy {
  background-color: var(--base-color);
  text-align: center;
  padding: 2rem 0;
}

.copy small {
  font-size: 1.6rem;
  font-weight: 400;
}