@charset "utf-8";

:root {
  --heading-font: 'Zen Kaku Gothic New';
  --default-font: 'Zen Kaku Gothic New';
  --font-color: #633536;
  --bkfont-color: #2F2F2F;
  --white-color: #fff;
  --base-color: #E8EFE4;
  --blue-color: #81A1B4;
  --navy-color: #25475B;
  --gray-color: #C4C4C4;
  --lightblack-color: #6A6969;
  --lightfont-color: #8a6667;
  --logo-color: #4D4A47;
  --accent-color: #F1CB19;
}

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: 500;
  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);
}

#room, #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 20px;
}

@media (min-width: 769px) {

  /* .sp-title {
    display: none;
  } */
  header nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.nav-logo {
  font-family: var(--default-font);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  color: #633536;
  text-shadow: 1px 1px 2px #ffffff70, -1px -1px 2px #ffffff70,
    -1px 1px 2px #ffffff70, 1px -1px 2px #ffffff70,
    0px 1px 2px #ffffff70, 0 -1px 2px #ffffff70,
    -1px 0 2px #ffffff70, 1px 0 2px #ffffff70;
}

.nav-links {
  display: flex;
  gap: 4rem;
}

.nav-links li {
  font-family: var(--default-font);
  font-size: 1.8rem;
  font-weight: 600;
  text-shadow: 1px 1px 2px #ffffff70, -1px -1px 2px #ffffff70,
    -1px 1px 2px #ffffff70, 1px -1px 2px #ffffff70,
    0px 1px 2px #ffffff70, 0 -1px 2px #ffffff70,
    -1px 0 2px #ffffff70, 1px 0 2px #ffffff70;
}

.nav-links li a span {
  display: inline-block;
  color: var(--font-color);
  transition: transform .5s;
}


.reservation a {
  font-size: 1.8rem;
  font-weight: 500;
  padding: 8px 30px;
  font-family: var(--default-font);
  color: var(--white-color);
  border-radius: 10px;
  background-color: var(--font-color);
  border: 2px solid var(--font-color);
  transition: ease-out 0.5s;
  text-shadow: none;
}

@media (hover: hover) and (pointer: fine) {
  .nav-links li a span:hover {
    transform: scale(1.1);
  }

  .reservation a:hover {
    color: var(--font-color);
    background-color: var(--white-color);
    border: 2px solid var(--font-color);
    transform: none;
  }
}


/* ==============================
ハンバーガーメニュー
================================= */
.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 {
    width: 100%;
    padding: 0 10px;
    height: 56px;
  }

  .sp-title {
    font-size: 2.4rem;
    color: #4D4A47;
  }

  header nav {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(232, 239, 228, 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(--lightfont-color);
  }

  .nav-links li a span {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--font-color);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .reservation a {
    display: block;
    width: 70%;
    margin: 0 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);
  }
}

/* =================================
MV メインビジュアル
==================================== */
.mv {
  /* position: relative; */
  width: 100%;
  height: auto;
  padding-top: 64px;
  /* ヘッダー高さ分 */
}

.mv-heading {
  position: relative;
  z-index: 2;
  padding-left: 20px;
}

.mv-heading-inner {
  display: flex;
  align-items: start;
  gap: 32px;
}

/* ホテルロゴ */
.mv-logo {
  width: 130px;
}

.mv-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.mv-type {
  font-size: 128px;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  color: #633536;
}

.mv-type 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;
    z-index: 1;
  }
}

/* --------SWIPER-------- */
.mv-cont .mv-swiper {
  width: 95%;
  margin-right: 0;
  margin-left: auto;
  border-radius: 300px 0 0 20px;
}

/* オプション: フェード効果のためのカスタムスタイルを追加 */
.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;
  box-shadow: inset 15px 25px 25px rgba(0, 0, 0, .5);
}

/* =======================================
main イントロ
========================================== */
.intro {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 10rem;
  padding: 10rem 0;
}

.lighthouse {
  width: 100px;
}

.lighthouse img {
  display: block;
  width: 100%;
  height: auto;
}

.intro-txt {
  width: 60%;
  margin: 0 auto;
}

.intro-txt h2 {
  font-size: 4.8rem;
  text-align: center;
  margin-bottom: 8rem;
}

.intro-txt p {
  width: 100%;
  text-align: center;
  font-size: 1.8rem;
  font-family: var(--heading-font);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}

.intro-txt p:last-child {
  margin-top: 3rem;
}

/* ------ご予約はこちらから------ */
.book-btn {
  width: fit-content;
  height: auto;
  display: block;
  margin: 0 auto;
}

.book-btn span {
  padding: 16px 84px;
  /* background-color: var(--white-color); */
  background-color: var(--font-color);
  border: 2px solid var(--font-color);
  border-radius: 10px;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: var(--default-font);
  /* color: var(--font-color); */
  color: var(--white-color);
  transition: ease-in-out .5s;
}

@media (hover: hover) and (pointer: fine) {
  .book-btn span:hover {
    background-color: var(--white-color);
    border: 2px solid var(--font-color);
    color: var(--font-color);
  }
}

/* --------------------------------------------
パララックス
---------------------------------------------- */
.p-index__eyecatch {
  position: relative;
  overflow: hidden;
  background-color: rgb(0 0 0 / 0.3);
  width: 99%;
  border-radius: 300px 0 0 20px;
  aspect-ratio: 16 / 9;
  margin-right: 0;
  margin-left: auto;
}

@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%;
  object-position: left center;
}

/* =======================================
main 共通設定
========================================== */
@media screen and (min-width:769px) {

  #room,
  #service,
  #facility {
    position: relative;
    width: 90%;
    max-width: 1536px;
    margin-right: auto;
    margin-left: auto;
  }
}

#service,
#facility {
  margin-right: auto;
  margin-left: auto;
  padding-top: 12rem;
  padding-bottom: 12rem;
}

@media screen and (min-width:769px) {
  .title {
    position: sticky;
    top: 30%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: fit-content;
    color: #633536;
  }
}

.title {
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: fit-content;
  color: #633536;
}


.title:before {
  content: '';
  background-color: var(--accent-color);
  display: block;
  position: absolute;
  left: 0;
  height: 90px;
  width: 90px;
  border-radius: 50%;
  top: 0;
  z-index: -1;
}

.title p {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.title h2 {
  font-size: 4.8rem;
  line-height: 1;
}

@media (min-width: 769px) {
  .cont-body {
    width: 60%;
    margin-top: -100px;
  }
}

.cont-body {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 80px;
  margin-right: 0;
  margin-left: auto;
}

.line {
  max-width: 467px;
  min-width: 250px;
}

.line img {
  display: block;
  width: 100%;
  height: auto;
}



/* =======================================
main　サービス
========================================== */
.sv-item div img {
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 200px 20px 20px 20px;
  box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.3);
}

.sv-item .txt-item {
  padding: 20px 0 0 0;
}

.sv-item .txt-item h3 {
  font-size: 2.8rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
  background-color: var(--font-color);
  border-radius: 5px;
  color: #fff;
}
.sv-info {
  border-top: 1px solid var(--font-color);
  border-bottom: 1px solid var(--font-color);
  padding: 10px 0 10px 20px;
  margin-top: 10px;
}
.sv-info dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  margin: 0 auto;
  font-size: 1.8rem;
  color: var(--lightfont-color);
}
.sv-info dt {
  flex: 1;
}
.sv-info dd {
  flex: 3;
}
/* =======================================
main　ルーム
========================================== */
.room-bg {
  background-color: #E2D4C8;
  padding: 12rem 0;
}

.room-item {
  width: 100%;
  overflow: hidden;
  border-radius: 200px 20px 20px 20px;
  background-color: #fdf9f9;
  padding-bottom: 50px;
  box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.3);
}

.room-item .room-slider img {
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  height: auto;
}
.room-item .pic-cs {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  background-color: #adadad;
  aspect-ratio: 16 / 9;
  font-size: 3rem;
  color: #fff;
}
.room-cont {
  display: flex;
  flex-flow: column;
  gap: 20px;
  padding: 50px 50px 0 50px;
}

.room-cont h3 {
  font-size: 2.8rem;
  font-family: var(--default-font);
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  border-bottom: 2px solid var(--font-color);
}
.room-cont span {
  font-size: 1.8rem;
}

.room-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 24px;
}

.room-icon div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-family: var(--default-font);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.room-item ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /* padding: 0 50px; */
}

.room-item ul li {
  width: calc(100% / 4);
  font-size: 1.6rem;
  font-weight: 600;
  background-color: var(--font-color);
  color: var(--white-color);
  text-align: center;
  padding: 4px 0;
  border: 1px solid var(--white-color);
}

.room .point {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  border: 2px solid var(--font-color);
  background-color: rgba(255, 255, 255, 0.7);
  padding: 80px 50px;
  box-shadow: none;
}

.room .point .point-icon {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.room .point h3 {
  font-size: 2.8rem;
  font-family: var(--default-font);
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 30px;
}

.room .point .line {
  max-width: 467px;
  width: 100%;
  margin: 0 auto;
}



/* =======================================
main　施設案内
========================================== */
.facility-bg {
  background-color: #F4F1EA;
}

.facility-box {
  width: 100%;
  display: flex;
}

.facilty-item {
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  gap: 30px;
}

.facilty-item div {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* .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.8rem;
  color: var(--lightfont-color);
  padding-left: 48px;
  margin-top: 5px;
}

/* -------アクセス-------- */
.access {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  gap: 30px;
}

.access h3 {
  font-size: 3.2rem;
  text-align: center;
}

.access-img {
  width: 100%;
}

.access-img img {
  width: 100%;
  height: auto;
}

/* .access-txt {
  margin-top: 30px;
} */

.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;
}
/* アクセスルート */
.access-route {
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: start;
  gap: 30px;
}

.access-route dt {
  width: fit-content;
  font-size: 1.8rem;
  font-weight: 500;
  background-color: var(--font-color);
  border-radius: 5px;
  color: var(--white-color);
  padding: 5px 30px;
  /* border: 1px solid var(--font-color); */
  margin-bottom: 10px;
}
.access-route dd {
  font-size: 1.8rem;
  line-height: 1.8;
  padding-left: 20px;
  margin-bottom: 20px;
}
.access-route dd:last-child {
  margin-bottom: 0;
}
.access-route dd p {
  font-size: 1.8rem;
}
.access-route dd div {
  padding-left: 20px;
}
.access-route {
  width: 100%;
}

/* ======================================
フッター
========================================= */
footer {
  width: 100%;
  height: auto;
  background-color: var(--font-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: 2.4rem;
  font-family: var(--default-font);
  font-weight: 500;
  margin-bottom: 5px;
}

.ft-item address {
  font-size: 1.6rem;
  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: 2rem;
  font-weight: 500;
  color: var(--white-color);
  transition: transform .5s;
}
.ft-book-btn {
  display: block;
  width: fit-content;
  padding: 5px 30px;
  font-size: 1.6rem;
  color: var(--white-color);
  border: 1px solid var(--white-color);
  border-radius: 10px;
  transition: ease-in-out 0.3s;
  margin-top: 15px;
}

@media (hover: hover) and (pointer: fine) {
  .ft-item ul li a span:hover {
    transform: scale(1.1);
  }
  .ft-book-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
  }
}

/* --------コピーライト------- */
.copy {
  background-color: #3b1818;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

.copy small {
  font-size: 1.6rem;
  font-weight: 400;
}