/* ----- 共通 ----- */
body {
  padding-top: 114px;
  background-color: #f2f1ec;
  color: #222;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.75;

  font-optical-sizing: auto;
}

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

/* ----- 基本BOOKNOWボタン ----- */
.btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 233px;
  height: 64px;
  border-radius: 50px;
  background: #003570;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
}

.header .btn-book {
  margin-right: 20px;
}

.btn-book__icon {
  width: 27px;
  height: 27px;
}

/* ----- 矢印付きボタン ----- */
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 233px;
  height: 64px;
  border-radius: 50px;
  background: #003570;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
}

.btn-arrow {
  position: relative;
  width: 20px;
  height: 2px;
  background: #fff;
}

.btn-arrow::before {
  content: '';
  position: absolute;
  top: -2px;
  right: 0;
  width: 6px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transform: rotate(45deg);
}

.btn-arrow::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 0;
  width: 6px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transform: rotate(-45deg);
}


/* ----- コンテンツ幅 ----- */
.inner {
  margin-right: auto;
  margin-left: auto;
  max-width: 1280px;
  width: 90%;
}

.inner--medium {
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
  width: 90%;
}

.inner--small {
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
  width: 90%;
}

/* ----- Header ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 25px 0;
  width: 100%;
  background-color: #fff;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: auto;
  margin-left: auto;
  width: 94%;
}

.header__nav-item {
  color: #003570;
  font-weight: 700;
  font-size: 18px;
}


.sns-link__icon {
  display: block;
  width: 35px;
  height: 35px;
}

.header__right {
  display: flex;
  align-items: center;
}

.header__logo {
  width: 240px;
}

.header__nav-list {
  display: flex;
  margin-right: 50px;
  padding: 0;
  list-style: none;
  column-gap: 60px;
}


/* 共通タイトル */
.section-title {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-bottom: 30px;
  color: #003570;
  font-weight: 700;
  font-family: 'Lora', serif;
  opacity: 0;
  transition: opacity .6s ease, transform .6s ease;
  transform: translateY(20px);
}

.section-title.is-visible {
  opacity: 1;
  transform: translateY(0);
}


.section-title__text {
  font-size: 32px;
}

.section-title__icon {
  width: auto;
}




/* レビューとインスタの外部リンクボタン */
.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  min-width: 233px;
  border: 2px solid #003570;
  border-radius: 50px;
  background-color: #fff;
  color: #003570;
  text-decoration: none;
  font-weight: 700;
}

.link-button__icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}


/* フッターエリア背景 */
.footer-area {
  padding: 75px 0 50px;
  background-image: url('/image/image_bg-access.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* ----- access ----- */
.access__container {
  display: flex;
  justify-content: space-between;
  gap: 49px;
  padding-bottom: 70px;
}

.access__content {
  width: 36%;
}

.access__map {
  overflow: hidden;
  width: 750px;
  height: auto;
  border-radius: 20px;
}

.access__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.access__links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.access__body {
  margin-top: 38px;
}

.access__list {
  margin-top: 30px;
}

.access__item {
  position: relative;
  margin-top: 30px;
  padding-left: 25px;
}

.access__item::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #003570;
}

.access__logo {
  width: 240px;
}

/* ----- footer ----- */
.footer {
  text-align: center;
}

.footer__inner {
  margin: 0 auto;
  max-width: 1200px;
  width: 90%;
}

.footer__nav {
  border-bottom: 2px dotted #003570;
}

.footer__nav-list {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 30px;
}

.footer__copyright {
  margin-top: 40px;
  color: #003570;
}

.footer__copyright small {
  font-size: 14px;
}




/* ----- 下層ページ ----- */


/* ----- page MV（下層共通） ----- */
.page__mv__inner {
  position: relative;
  display: inline-block;
}

.page__mv {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  height: 200px;
  background-image: url('/image/image_bg-page-mv.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page__mv__title {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 12px 105px;
  background-color: #fff;
  color: #003570;
  font-weight: 600;
  font-size: 36px;
  font-family: 'Lora', serif;
}

.page__mv__deco {
  position: absolute;
  z-index: 2;
}


/* ================================================
1201px
================================================ */
@media (min-width: 1201px) {

  /* PCではハンバーガー関連を非表示 */
  .hamburger,
  .hamburger-menu {
    display: none;
  }

  /* PCでは追従BOOKNOWボタンを非表示 */
  .btn-float-book {
    display: none;
  }

  /* ホバー */
  a {
    transition: opacity .3s;
  }

  a:hover {
    opacity: .5;
  }

  .btn-book,
  .flow__button,
  .link-button,
  .hamburger-menu__book,
  .sns-link {
    transition: transform .4s ease;
  }


  .btn-book:hover,
  .flow__button:hover,
  .link-button:hover,
  .hamburger-menu__book:hover,
  .sns-link:hover {
    opacity: 1;
    transition: transform .4s ease;
    transform: scale(1.05);
  }

  .sns-link:hover {
    opacity: 1;
    transform: scale(1.15);
  }
}


/* ================================================
タブレット（〜1200px）
================================================ */
@media (max-width: 1200px) {

  /* ----- Body ----- */
  body {
    padding-top: 75px;
  }

  .section-title__text {
    font-size: 28px;
  }

  /* ----- Header ----- */
  .header {
    z-index: 200;
    padding: 0;
    height: 75px;
  }

  .header__inner {
    width: calc(100% - 50px);
    height: 100%;
  }

  .header__right {
    gap: 10px;
  }

  .header__logo .site-logo {
    width: 200px;
  }

  /* PC用ナビ・Book Nowを非表示 */
  .header__nav,
  .header .btn-book {
    display: none;
  }

  /* ----- ハンバーガーボタン ----- */

  body.is-menu-open {
    position: fixed;
    overflow: hidden;
    width: 100%;
    /* 後ろ画面のスクロールを止めるため */
  }

  .hamburger {
    position: relative;
    z-index: 201;
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-shrink: 0;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    background: none;
    cursor: pointer;
  }

  .hamburger {
    padding: 15px;
    /* タッチできる範囲を広く */
  }

  .hamburger__lines {
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .hamburger__lines span {
    display: block;
    width: 35px;
    height: 3.6px;
    border-radius: 2px;
    background: #003570;
    transition: transform .3s ease, opacity .3s ease;
  }

  /* ×マークに変化 */
  .hamburger.is-open .hamburger__lines span:nth-child(1) {
    transform: translateY(10.6px) rotate(-45deg);
  }

  .hamburger.is-open .hamburger__lines span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .hamburger.is-open .hamburger__lines span:nth-child(3) {
    transform: translateY(-10.6px) rotate(45deg);
  }

  /* ----- ハンバーガーメニュー ----- */
  .hamburger-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 150;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #f2f1ec;
    background-image: url('/image/image_bg-hamburgermenu.webp');
    background-position: center;
    background-size: cover;
    transition: transform .4s ease;
    transform: translateX(100%);
    /* 画像が無いときのベージュ背景色 */
  }

  .hamburger-menu.is-open {
    transform: translateX(0);
  }

  .hamburger-menu__inner {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
  }

  /* ナビリスト */
  .hamburger-menu__list {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0;
    width: 100%;
    list-style: none;
  }

  .hamburger-menu__list li {
    display: flex;
    justify-content: center;
    padding: 25px 0;
    width: 100%;
  }

  .hamburger-menu__list li:nth-child(1),
  .hamburger-menu__list li:nth-child(2) {
    border-bottom: 2px dotted #003570;
  }

  .hamburger-menu__link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #003570;
    text-decoration: none;
    font-weight: 700;
    font-size: 22px;
    font-family: 'Lora', serif;
  }


  .hamburger-menu__link::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #003570;
  }

  /* Book Nowまわり */
  .hamburger-menu__book-wrap {
    position: relative;
    margin-top: 10px;
  }

  .hamburger-menu__book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 233px;
    height: 64px;
    border-radius: 50px;
    background: #003570;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
  }

  .hamburger-menu__book img {
    width: 24px;
    height: 24px;
  }

  /* 装飾 */
  .hamburger-menu__deco--cloud1 {
    position: absolute;
    top: -23px;
    right: -44px;
    z-index: -1;
    width: 90px;
  }

  .hamburger-menu__deco--cloud2 {
    position: absolute;
    bottom: -50px;
    left: -40px;
    width: 100px;
  }


  /* 追従BOOKNOWボタン */

  .btn-float-book {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 99;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding-bottom: 3px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #003570;
    box-shadow: 0 4px 14px rgba(0, 53, 112, .4);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
  }

  .btn-float-book img {
    width: 30px;
    height: 30px;
  }


  /* ----- Access ----- */

  .access__container {
    align-items: stretch;
    gap: 30px;
    padding-bottom: 50px;
  }

  .access__content {
    flex-shrink: 0;
  }

  .access__map {
    flex: 1;
    min-width: 0;
  }

  /* ----- Footer ----- */

  .footer__inner {
    margin: 0 auto;
    width: 90%;
  }

  .footer__nav-list {
    flex-wrap: wrap;
    gap: 60px;
  }
}



/* ----- 下層ページ ----- */

.page__mv {
  background-image: url(/image/image_bg-page-mv.webp);
}

.page__mv {
  height: 160px;
}

.page__mv__title {
  padding: 10px 80px;
  font-size: 28px;
}


/* ================================================
スマホ（〜730px）
================================================ */
@media (max-width: 730px) {

  /* ----- SP用インナー ----- */
  .inner,
  .inner--medium,
  .inner--small {
    box-sizing: border-box;
    padding: 0 7.3%;
    max-width: 100%;
    width: 100%;
  }

  /* ----- 共通タイトル ----- */
  .section-title {
    padding-bottom: 15px;
  }

  .section-title__text {
    font-size: clamp(23px, 6.13vw, 25px);
  }


  /* ----- header ----- */
  .header__logo .site-logo {
    width: clamp(140px, 45.3vw, 170px);
  }

  .header__inner {
    width: calc(100% - 40px);
  }

  .header__right {
    flex-shrink: 0;
    gap: 13px;
  }

  /* 追従BOOKNOWボタン */
  .btn-float-book {
    display: flex;
    gap: 4px;
    padding-bottom: 3px;
    width: 90px;
    height: 90px;
    font-size: 16px;
    line-height: 1.07;
  }

  .btn-float-book img {
    width: 25px;
    height: 25px;
  }

  /* ----- Access ----- */


  .access__container {
    flex-direction: column;
    padding-bottom: 20px;
  }


  .access__content {
    width: 100%;
    text-align: center;
  }

  .access__head {
    display: flex;
    align-items: center;
    flex-direction: column;
    /* ロゴとボタンを中央に */
  }

  .access__links {
    justify-content: center;
    /* ボタン・SNSアイコンを中央に */
  }

  .access__body {
    display: inline-block;
    /* 住所などは左寄せ */
    margin: 38px auto 0;
    text-align: left;
  }

  .access__name {
    padding-left: 14px;
  }

  .access__item {
    margin-top: 20px;
    padding-left: 18px;
    text-align: left;
  }

  .access__item::before {
    top: 10px;
  }

  .access__map {
    flex: none;
    margin: 0 auto;
    max-width: 480px;
    width: 100%;
    height: auto;
    aspect-ratio: 339 / 254;
    border-radius: 10px;
  }

  .access__links .sns-link {
    display: none;
  }

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

  .footer-area {
    padding: 50px 0 30px;
    background-image: url('/image/image_bg-access-sp.webp');
  }

  .footer__inner {
    margin: 0 auto;
    width: 85.3%;
  }

  .footer__nav-list {
    align-items: center;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
  }

  .footer__nav-item {
    font-size: 14px;
  }

  .footer__nav {
    margin: 0 auto;
    border-bottom: 2px dotted #003570;
  }

  .footer__copyright small {
    font-size: 12px;
  }

  .footer__copyright {
    margin-top: 20px;
    color: #003570;
  }



  /* ----- 下層ページ ----- */
  .page__mv {
    margin-bottom: 30px;
    height: 110px;
    background-image: url('/image/image_bg-page-mv-sp.webp');
  }


  .page__mv__title {
    padding: 7px 40px;
    background-color: #fff;
    font-size: 24px;
  }

  /* タイトルが長いページのみ、padding を可変にする */
  .page__mv--privacy .page__mv__title,
  .page__mv--cancellation .page__mv__title,
  .page__mv--commerce .page__mv__title {
    padding: 7px clamp(10px, 5vw, 40px);
  }
}