@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-origin: border-box;
}
html {
  scroll-behavior: smooth;
}
:root {
  --wht: #fff;
  --yel: #C0B189;
  --blu_bg: #044364;
  font-size: 10px;
}

body {
  font-family: "Noto Serif JP";
  color: var(--wht);
  display: block;
  overflow-x: hidden;
  width: 100%;
  word-break: break-all;
  font-weight: 700;
  font-style: normal;
}

/*====================================*/
/* base contents */
/*====================================*/
a {
  text-decoration: none;
}
ul {
  list-style-type: none;
}
img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

h1 {
  font-size: 2.8rem;
  margin: 0;
}

h2 {
  font-size: 3.2rem;
  margin: 0;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.2rem;
  }
  h2 {
    font-size: 3.2rem;
  }  
}
/* ------------------------
    edit contents
------------------------- */
/* 指定フォント ここから */

/* ----pc,sp/on_off---- */
.pc {
  display: none;
}

.tb {
  display: none;
}

.sp {
  display: block;
}
@media (min-width: 1080px) {
  .pc {
    display: block;
  }
  
  .tb {
    display: block;
  } 
  .sp {
    display: none;
  }
}
/* view animation */
.view.view-fix,
.view.view-slideup,
.view.view-slidedown,
.view.view-slidein-L,
.view.view-slidein-R {
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.view.view-fix.on {
  opacity: 1;
  animation: view-fix 1s ease both;
}

.view.view-slideup.on {
  opacity: 1;
  animation: view-slideup 1s ease both;
}

.view.view-slidedown.on {
  opacity: 1;
  animation: view-slidedown 1s ease both;
}

.view.view-slidein-L.on {
  opacity: 1;
  animation: view-slidein-L 1s ease both;
}

.view.view-slidein-R.on {
  opacity: 1;
  animation: view-slidein-R 1s ease both;
}

/* ========== Header ========== */

header {
  position: relative;
}
header .logo {
  position: relative;
  background: var(--wht);
  z-index: 2;
}
header .logo img {
  display: block;
  max-width: fit-content;
  padding: 1.227% 0;
  margin: 0 auto;
}
/* header .sec_kv {
  position: relative;
  z-index: 1;
}
header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #044364 0%, rgba(4, 67, 100, 0.05) 22%);
  z-index: 2;
  pointer-events: none;
} */
header .sec_kv {
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  height: 100vh;
  max-height: 675px;
}

header .sec_kv .slider {
  position: relative;
  width: 100%;
  height: 100%;
}

header .sec_kv picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: fade 8s infinite ease-in-out;
}

header .sec_kv picture:nth-child(1) {
  animation-delay: 0s;
}

header .sec_kv picture:nth-child(2) {
  animation-delay: 4s;
}

header .sec_kv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes fade {
  0% {
    opacity: 0;
    z-index: 0;
  }
  10%, 45% {
    opacity: 1;
    z-index: 1;
  }
  55%, 100% {
    opacity: 0;
    z-index: 0;
  }
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #044364 0%, rgba(4, 67, 100, 0.05) 22%);
  z-index: 2;
  pointer-events: none;
}

@media (min-width: 1080px) {
  header .sec_kv {
    max-height: 712px;
  }
}
/* ========== Main ========== */

/* Recommend */
.recommend {
  background: var(--blu_bg);
  padding: 83px 0;
}
.common__title {
  position: relative;
  font-weight: 500;
  font-size: 2.4rem;
  font-family: Cinzel;
  color: #C0B189;
  text-align: center;
  line-height: 1.2;
  backdrop-filter: blur(2px);
}
.common__title::before {
  content: '';
  display: block;
  position: absolute;
  background: url(../img/title_top.svg) no-repeat;
  width: 100%;
  max-width: 78px;
  height: 48.62px;
  left: 50%;
  transform: translateX(-50%);
  top: -70.38px;
}
.recommend__detail {
  padding-top: 50px;
}
.recommend__detail ul {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 500px;
  margin: 0 auto;
  gap: 58px;
  padding: 0 20px;
}
.recommend__detail ul .plan {
  gap: 26px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
}
.plan figure img {
  min-height: 265.806px;
  object-fit: cover;
}
.plan.plan5 figure img {
  object-position: right;
}
.plan h4 {
  line-height: 1.7;
}
.plan p {
  font-size: 1.4rem;
  line-height: 1.8;
}

/* btn */
.btn {
  border: 2px solid var(--yel);
}
.btn a {
  display: flex;
  justify-content: center;
  color: var(--yel);
  font-size: 1.4rem;
  line-height: 1.7;
  padding: 19px 0;
  transition: background 0.3s ease, color 0.3s ease;
}
/* btn */

.btn a:hover {
  background: var(--yel);
  color: var(--blu_bg);
}
@media (min-width: 1080px) {
  .recommend {
    padding: 161px 0;
  }
  .recommend__detail {
    padding-top: 68px;
  }
  .recommend__detail ul {
    max-width: 1440px;
    gap: 36px;
    grid-template-columns: repeat(4, 1fr);
  }
  .plan p {
    min-height: 120px;
  }
  .btn a {
    transition: background 0.5s ease, color 0.5s ease;
  }
}
@media (max-width: 1580px) {
  .recommend {
    padding: 161px 0;
  }
  .recommend__detail {
    padding-top: 68px;
  }
  .recommend__detail ul {
    max-width: 1300px;
    gap: 36px;
    grid-template-columns: repeat(3, 1fr);
  }
  .plan p {
    min-height: 120px;
  }
  .btn a {
    transition: background 0.5s ease, color 0.5s ease;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .recommend__detail ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .recommend__detail ul {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 500px) {
    .recommend {
      padding: 161px 0;
    }
    .recommend__detail {
      padding-top: 68px;
    }
    .recommend__detail ul .plan {
      min-width: 300px;
    }
    .plan p {
      min-height: 120px;
    }
    .btn a {
      transition: background 0.5s ease, color 0.5s ease;
    }
}

/* concept */
.concept {
  background: var(--blu_bg);
  padding-top: 72px;
}
.concept__detail {
  padding: 28px 20px 0;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.concept__detail p {
  font-size: 1.6rem;
  line-height: 1.9;
}
.concept_kv {
  padding-top: 68px;
}
.concept_kv picture source{
  transition: background 0.5s ease, color 0.5s ease;
}
.concept_meal {
  padding: 80px 20px;
}
.meal_ttl {
  min-width: 355px;
  max-width: 600px;
  margin-right: auto;
  width: -webkit-fill-available;
}
.meal_ttl h2{
  position: relative;
  color: var(--yel);
  font-weight: 500;
  line-height: 1.2;
  font-family: Cinzel;
  backdrop-filter: blur(2px);
  margin-left: 30px;
}
.meal_ttl h2::before {
  content: '';
  display: inline-block;
  position: absolute;
  background: url(../img/title_left.svg) no-repeat;
  width: 29px;
  height: 29px;
  left: -30px;
}
.meal_ttl span {
  font-size: 2.3rem;
  font-family: "Noto Serif JP";
  line-height: 1.9;
  color: var(--yel);
}
.meal_detail {
  max-width: 400px;
  margin: 0 auto;
  width: -webkit-fill-available;
}
.meal_detail .meal_intro {
  padding-top: 16px;
  font-size: 1.6rem;
  line-height: 1.9;
  padding-bottom: 28px;
}
.meal_detail .note {
  padding: 10px 0 0;
}
.menu {
  padding: 18px 15px;
  border: 2px solid var(--yel);
  background: var(--wht);
  font-size: 1.4rem;
}
.menu p {
  color: var(--blu_bg);
}
.menu__detail tr {
  padding: 8px;
}
.menu__detail tr th {
  position: relative;
  color: var(--yel);
  text-align: left;
  padding: 10px 0 10px 20px;
  vertical-align: top;
}
.menu__detail tr td {
  color: var(--blu_bg);
  padding-left: 15px;
  padding-top: 10px;
  vertical-align: top;
}
.th_left::before {
  content: '';
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 8px;
}
.day::before {
  background: url(../img/day.svg) no-repeat;
}
.night::before {
  background: url(../img/night.svg) no-repeat;
}
.meal_detail .tel {
  font-size: 1.6rem;
  line-height: 1.9;
  padding: 18px 0 32px;
}
.meal {
  display: flex;
  flex-direction: column;
}
.meal_img {
  max-width: 440px;
  margin: 0 auto;
}
.meal_img .img {
  padding-bottom: 38px;
}
.meal_img .btn {
  margin: 0 auto;
  max-width: 400px;
}
.concept_lounge {
  background: url(../img/lounge_bg.svg) repeat;
  padding: 58px 20px 43px;
  color: var(--blu_bg);
}
.concept_lounge .meal_ttl h2 {
  color: var(--blu_bg);
}
.concept_lounge .meal_ttl span {
  color: var(--blu_bg);
}
.concept_lounge .menu__detail tr th {
  padding-left: 0;
}
.concept_lounge .btn {
  border: 2px solid var(--blu_bg);
}
.concept_lounge .btn a {
  color: var(--blu_bg);
}
.concept_lounge .btn a:hover {
  background: #E3D7C3;
}
@media (min-width: 1080px) {
  .concept__detail{
    max-width: 1080px;
    margin: 0 auto;
    padding-top: 64px;
  }
  .concept_meal {
    padding: 96px 0 24px;
  }
  .meal {
    flex-direction: row-reverse;
    max-width: 1080px;
    margin: 0 auto;
    gap: 72px;
  } 
  .meal_detail{
    min-width: 488px;
    margin: 0;
  }
  .meal_img {
    max-width: 520px;
    margin: 0;
  }
  .meal_img .img {
    padding-bottom: 59px;
  }
}

/* reservation */
.reservation {
  background: var(--blu_bg);
  padding: 145px 0 70px;
}
.reservation .common__title{
  padding-bottom: 48px;
}
.reservation .btn {
  max-width: 336px;
  margin: 0 auto;
}
@media (min-width: 1080px) {
  .reservation {
    padding: 161px 0;
  }
}

/* ========== Footer ========== */
footer {
  background: url(../img/footer_bg_sp.webp) no-repeat, rgba(29, 31, 32, 0.55);
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply; 
  padding: 90px 20px;
}
footer div {
  max-width: 400px;
  margin: 0 auto;
}
.hotel_logo {
  max-width: 220px;
  /* height: 49px; */
}
.hotel_info {
  padding: 40px 0 27px;
  text-align: center;
  font-family: Inter;
}
.hotel_info h3 {
  line-height: 1.13;
  letter-spacing: 3.12px;
}
.hotel_info p {
  padding-top: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 2.08px;
}
footer .btn {
  max-width: 234px;
  margin: 0 auto;
  background: var(--wht);
  border: 2px solid var(--wht);
}
footer .btn a {
  color: var(--blu_bg);
  padding: 16px 35px;
}
.note {
  padding: 30px 0 60px;
  font-size: 1.4rem;
  font-family: Inter;
  font-weight: 500;
  line-height: 1.94;
  letter-spacing: -0.7px;
}
.note li::before {
  content: '※';
}
footer nav {
  text-align: center;
}
footer nav ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 23px;
}
footer nav ul li a {
  color: var(--wht);
  padding: 0 10px;
  border-left: 1px solid var(--wht);
  border-right: 1px solid var(--wht);
  font-family: Inter;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
}
footer nav ul li a:hover {
  opacity: 0.7;
  transition: background 0.5s ease, color 0.5s ease;
}

@media (min-width: 1080px) {
  footer {
    background: url(../img/footer_bg.webp) no-repeat, rgba(29, 31, 32, 0.55);
    padding: 180px 0 60px;
  }
  footer div {
    max-width: 640px;
    margin: 0 auto;
  }
  .hotel_info {
    padding: 65px 0 46px;
  }
  .hotel_info p {
    padding-top: 46px;
  }
  footer .btn {
    max-width: 336px;
    margin: 0 auto;
  }
  footer .btn a {
    padding: 16px 50px;
  }
  footer .note {
    padding: 78px 0 94px;
  }
  footer nav ul {
    flex-direction: row;
    gap: 0;
  }
  footer nav ul li:first-child a{
    border-right: none;
  }
}

.copyright {
  background: var(--wht);
  padding: 27px 0 26px;
}
.copyright p {
  text-align: center;
  color: #135E78;
  font-size: 1.2rem;
  line-height: 1.7;
}

@media (min-width: 1080px) {
  .copyright {
    padding: 18px 0 17px;
  }
  .copyright p {
    font-size: 1.4rem;
  }
}