@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
/* ------------------------------------------
  Utility Class
------------------------------------------ */

/* clearfix */

.clearfix:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: ".";
}

/* ------------------------------------------
  Common
------------------------------------------ */

* {
  box-sizing: border-box;
  word-break: break-all;
}

html {
  font-size: 10px;
  height: 100%;
}

main {
  /* padding-top: 160px; */
}

body {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
  position: relative;
  min-width: 1080px;
  color: #333333;
  -webkit-text-size-adjust: none;
}

body.layer {
  overflow: hidden;
  height: 100%;
}

a,
a img {
  transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease;
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
  opacity: 0.75;
}

a:hover * {
  opacity: 0.75;
}

a:focus {
  outline: none;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: inherit;
  margin: 0;
  letter-spacing: 0.03em;
  font-weight: normal;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
  letter-spacing: 0.03em;
}

.clear {
  clear: both;
}

.only_pc {
  display: block !important;
}

.only_sp {
  display: none !important;
}

input,
button,
select,
textarea {
  font-family: "Noto Sans JP", sans-serif;
  border: none;
  border-radius: 0;
  background: none;
  -webkit-appearance: none;
}

input[type="checkbox"],
input[type="radio"] {
  position: absolute;
  z-index: -1;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }
  .container {
    width: auto;
    margin: 0 20px;
  }
  .only_pc {
    display: none !important;
  }
  .only_sp {
    display: block !important;
  }

  main {
  }
}

.section {
  padding-right: 20px;
  padding-left: 20px;
  font-weight: normal;
}


:root { --header-offset: 160px; }           /* PC時のヘッダー分の余白 */
@media (max-width: 767px){
  :root { --header-offset: 64px; }         /* SP時の余白 */
}

/* ------------------------------------------
  header
------------------------------------------ */
.header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  background: transparent;
  transition: background 0.3s ease;
}

.header-inner {
  width: 100%;
  display: flex;
  padding: 20px 30px;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  width: 100px;
}

.header-menu-inner {
  color: #fff;
}

.header-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s;
  z-index: 9999;
  display: grid;
  place-content: center;
}

.header-menu.open {
  visibility: visible;
  opacity: 1;
}

.header-menu ul {
  text-align: center;
}

.header-menu-item {
  font-size: 2rem;
}

.header-menu-item:hover {
  color: #d8b049;
  opacity: 1;
}

.header-menu-item:hover * {
  opacity: 1;
}

.header-menu-item:not(:last-child) {
  margin-bottom: 40px;
}

.header-menu-item a {
  display: block;
}

.header-menu-item-reserve {
  color: #222;
  background: #d8b049;
}

.header-menu-item-reserve a {
  padding: 20px 40px;
}

.header-menu-item-reserve:hover {
  color: #fff !important;
}

.header-menu-hum {
  position: relative;
  width: 50px;
  height: 30px;
  aspect-ratio: 1/1;
  cursor: pointer;
  z-index: 9999;
}

.header-menu-hum:hover {
  opacity: 1;
}
.header-menu-hum:hover span {
  background: #d8b049;
  opacity: 1;
}

.header-menu-hum:hover * {
  opacity: 1;
}

.header-menu-hum span {
  display: block;
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  transition: 0.3s;
  z-index: 9999;
}

.header-menu-hum span:nth-child(1) {
  top: 0;
}

.header-menu-hum span:nth-child(2) {
  top: 15px;
}

.header-menu-hum span:nth-child(3) {
  top: 30px;
}

.header-menu-hum.active span:nth-of-type(1) {
  transform: translateY(15px) rotate(45deg);
}
.header-menu-hum.active span:nth-of-type(2) {
  opacity: 0;
}
.header-menu-hum.active span:nth-of-type(3) {
  transform: translateY(-15px) rotate(-45deg);
}

@media screen and (max-width: 767px){
  .header-logo{
    width: 70px;
  }
}

/* ------------------------------------------
  footer
------------------------------------------ */
.footer{
  padding: 50px 30px;
  background: #000;
  color: #fff;
}

.footer-inner{
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo{
  width: 100px;
}

.footer-menu-list{
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  gap: 20px;
  line-height: 100%;
}

.copyright{
  margin-top: 50px;
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
}

@media screen and (max-width: 767px){
  .footer{
    padding: 40px 0;
  }

  .footer-logo{
    width: 70px;
  }

  .footer-inner{
    display: block;
  }

  .footer-menu-list{
    justify-content: center;
    flex-wrap: wrap;
    /* display: block; */
  }

  /* .footer-menu-item:not(:last-child){
    margin-bottom: 20px;
  } */

  .copyright{
    margin-top: 30px;
    font-size: 1.2rem;
  }
}

/* ------------------------------------------
  footer
------------------------------------------ */

/* ------------------------------------------
  page_mv
------------------------------------------ */
.page-mv {
  position: relative;
  display: grid;
  place-content: center;
}

.page-ttl {
  color: #fff;
  font-size: 4.8rem;
  position: relative;
  z-index: 999;
  line-height: 100%;
}

.page-ttl span{
  font-size: 2rem;
  display: block;
  text-align: center;
  margin-top: 10px;
}

.page-mv-txt{
  position: relative;
  text-align: center;
  font-size: 2rem;
  padding: 200px 0;
  background: #000;
  color: #fff;
}

.page-mv-txt::after{
  content: "";
  position: absolute;
  height: 100px;
  width: 1px;
  background: #fff;
  left: 50%;
  top: 0;
  transform: translateY(-50%);
  z-index: 999;
}

.page-content{
  padding: 150px 0;
  background: #252525;
}

.page-container{
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}

.page-content-item:not(:last-child){
  margin-bottom: 150px;
}

.page-content-item-ttl-inner{
  display: flex;
  align-items: end;
  color: #fff;
  margin-bottom: 40px;
}

.page-content-item-ttl{
  font-size: 4rem;
  margin-right: 50px;
  line-height: 100%;
}

.page-content-item-txt{
  font-size: 1.6rem;
  line-height: 1.8;
  color: #fff;
}

.page-content-item-img ul{ 
  display: flex;
  gap: 20px;
}

.room-slider-item{
  border: 2px solid #d8b049;
}

.room-slider .slick-slide {
  margin: 0 30px;
}




@media screen and (max-width: 767px){
  .page-mv {
    height: 70vh;
  }

  .page-mv-txt{
    font-size: 1.4rem;
  }

  .page-mv-txt::after{
    height: 70px;
  }

  .page-ttl{
    font-size: 3rem;
    margin-top: 30px;
  }


  .page-ttl span{
    font-size: 1.4rem;
  }

  .page-mv-txt{
    padding: 100px 20px;
  }

  .page-content{
    padding: 80px 0px;
  }


  .page-content-item-ttl{
    font-size: 2.4rem;
    margin-bottom: 30px;
  }

    .room-slider .slick-slide{
    margin: 0 10px;
  }

  .page-content-item-ttl-inner{
    display: block;
  }

  .page-content-item:not(:last-child){
    margin-bottom: 80px;
  }
}


/* ------------------------------------------
  予約
------------------------------------------ */
.top-reserve{
  padding: 100px 0;
}

.top-reserve-ttl{
  font-size: 4rem;
  text-align: center;
}

.top-reserve-sub-txt{
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.top-reserve-sub-txt2{
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.top-reserve-txt .tel{
  font-size: 3.6rem;
  text-align: center;
  display: block;
  text-decoration: underline;
  margin-bottom: 40px;
}

.top-reserve-list{
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.reserve-logo{
  display: block;
  width: 200px;
  margin: 0 auto 20px;
}

@media screen and (max-width: 767px){
  .top-reserve{
    padding: 80px 0;
  }

  .reserve-logo{
    width: 150px;
  }

  .top-reserve-ttl{
    font-size: 3rem;
  }

  .top-reserve-txt .tel{
    font-size: 3.2rem;
  }
}


/* 要素ふわりと表示 */
.fade-slide-up {
  opacity: 0;
  transform: translateY(40px);  /* 下から40px移動している状態 */
  transition: all 0.8s ease;    /* なめらかに */
}

.fade-slide-up.show {
  opacity: 1;
  transform: translateY(0);     /* 元の位置に */
}
