/*
  Theme Name:   househiro
  Theme URI:    https://thewppress.com/theme/how-to-create-the-basic-wordpress-theme/
  Description:  househiro theme
  Author:       Rena Hirayabu
  Author URI:   thewppress.com
  Version:      1.0
*/
/* ================================
   Reset & Base
================================ */
* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0 !important;
}

html {
  font-size: 100%;
}

body {
  color: #314142;
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

a {
  text-decoration: none;
  color: #000;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  object-fit: cover;
}

li {
  list-style: none;
}

p {
  line-height: 30px;
}

small {
  font-size: 9px;
}

/* ================================
   Layout Helper
================================ */
.wrapper {
  max-width: 1020px;
  margin: 0 auto;
}

/* ================================
   Section Titles
================================ */
.sec-title {
  font-size: clamp(40px, 8vw, 100px);
  padding-bottom: 30px;
  color: #b9dee4;
  position: relative;
  display: inline-block;
}

.ja-title {
  display: inline-block;
  font-size: clamp(16px, 3vw, 35px);
  color: #1690A6;
  margin-top: 8px;
  padding-bottom: 40px;
  position: absolute;
  right: 0;
  bottom: -45px;
}

/* ================================
   Buttons
================================ */
.btn {
  display: block;
  padding: 10px 20px;
  width: 200px;
  color: #fff;
  font-size: 15px;
  text-align: center;
  background-color: #1690A6;
  border-radius: 1000px;
  white-space: nowrap;
  position: relative;
  transition: opacity 0.3s ease;
}

.btn:hover {
  opacity: 0.8;
}

/* --- Responsive Buttons --- */
@media (max-width: 480px) {
  .btn {
    font-size: 16px;
    padding: 18px 24px;
    max-width: 100%;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .btn {
    font-size: 17px;
    padding: 18px 28px;
    max-width: 320px;
  }
}

/* ================================
   Arrow Circle
================================ */
.arrow-circle {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #fff;
  color: #1690A6;
  text-align: center;
  line-height: 32px;
  border-radius: 50%;
  margin-left: 12px;
  vertical-align: middle;
}
/* =========================================
   PC / SP 切り替え
========================================= */
/* PCデフォルト */
.pc-only { display: block; }
.sp-only { display: none; }

/* SP（860px以下） */
@media screen and (max-width: 860px) {
  .pc-only { display: none !important; }
  .sp-only { display: block; }
}

/* =========================================
   ヘッダー（PC）
========================================= */
/* 初期：透明で上に重ねる（トップページ用） */
#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* スクロール後：白背景＋影 */
#header.fixed {
  position: fixed;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* スクロール後はナビ文字を青へ */
#header.fixed .nav-ul li a {
  color: #22568a;
}

/* 固定後、ズレ防止スペーサー（任意） */
.header-space {
  height: 100px; /* ヘッダー実高さに合わせる */
}

/* -----------------------------------------
   ロゴ
----------------------------------------- */
.logo img {
  max-height: 85px;
  max-width: 170px;
  width: auto;
  display: block;
}

/* -----------------------------------------
   ヘッダー内レイアウト
----------------------------------------- */
.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
  box-sizing: border-box;
}

.headerWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  position: relative;
  z-index: 2;
}

.img-frame {
  position: relative;
}

/* -----------------------------------------
   PCナビ
----------------------------------------- */
nav {
  display: flex;
  gap: 20px;
  justify-content: end;
}

.nav-ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-ul li a {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.nav-ul li a:hover {
  border-bottom-color: #22568a;
  color: #22568a;
}

/* -----------------------------------------
   画像のない個別ページ（ヘッダーは最初から白）
----------------------------------------- */
body.page-id-3 #header,
body.page-id-22 #header {
  background: #fff;
  position: relative; /* absolute → relative に変更 */
}

body.page-id-3 #header .nav-ul li a,
body.page-id-22 #header .nav-ul li a {
  color: #22568a;
}

/* =========================================
   ハンバーガーメニュー（SP）
========================================= */
.hamburger-menu {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  margin-top: 12px;
  background: transparent;
  border: none;
  position: relative;
  appearance: none;
  cursor: pointer;
}

/* 3本線バー */
.hamburger-menu__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #22568a;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: center center;
  transition: 0.5s;
  z-index: 100;
}

.hamburger-menu__bar:first-child { top: 8px; }
.hamburger-menu__bar:nth-child(2) { top: 16px; }
.hamburger-menu__bar:last-child { top: 24px; }

/* 開いた時のXアニメーション */
.hamburger-menu--open .hamburger-menu__bar:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
  display: none;
}

.hamburger-menu--open .hamburger-menu__bar:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}


/* ================================
   メインビジュアル
================================ */
#mainvisual {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* タイトル配置（中央） */
.mainvisual-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
}

.mainvisual-text {
  color: #fff;
  font-size: 2rem;
  white-space: nowrap;
  padding-bottom: 45px;
}

/* メインビジュアル画像 */
.lp-visual img {
  width: 100%;
  height: auto;
  display: block;
  max-width: none;
}

/* ================================
   メインビジュアル内ボタン（CHECK）
================================ */
.btn-check {
  position: absolute;
  left: 50%;
  top: calc(50% + 45px);
  transform: translateX(-50%);
  display: inline-flex;
  justify-content: center;
  align-items: center;

  width: 180px;
  height: 50px;

  color: #fff;
  font-size: 1rem;
  font-weight: bold;

  background: transparent;
  border: 2px solid #fff;
  text-decoration: none;

  cursor: pointer;
  transition: 0.3s;

  overflow: visible; /* → 矢印をはみ出させる */
}

.btn-check:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ボタン文字 */
.btn-check .btn-text {
  margin-right: 10px;
  white-space: nowrap;
}

/* → 右側にはみ出す矢印 */
.btn-check .btn-arrow {
  position: absolute;
  right: -20px;

  width: 40px;
  height: 10px;

  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;

  transform: skew(45deg);
  transition: right 0.3s ease, transform 0.3s ease;
}

/* ホバーで矢印がスライド */
.btn-check:hover .btn-arrow {
  right: -25px;
  transform: skew(45deg) translateX(5px);
}

/* ================================
   固定右下の予約ボタン
================================ */
.btn-reserve {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 220px;

  cursor: pointer;
  transition: opacity 0.3s;
  z-index: 9999;
}

.btn-reserve:hover {
  opacity: 0.8;
}

body.page-id-81 .btn-reserve {
  display: none !important;
}


/* ============================================
   860px 以下：レスポンシブ調整
============================================ */
@media screen and (max-width: 860px) {

  /* 全体の文字サイズ・余白調整 */
  body {
    font-size: 14px;
  }

  p {
    line-height: 25px;
  }

  main {
    margin: 0;
    width: 100%;
  }

  .wrapper {
    padding: 0 4%;
  }

  /* --------------------------------------------
     セクションタイトル
  -------------------------------------------- */
  .sec-title {
    font-size: 50px;
    padding-bottom: 10px;
  }

  .ja-title {
    display: inline-block;
    font-size: 18px;
    color: #1690A6;
    margin-top: 0;
    padding-bottom: 40px;
    position: absolute;
    right: 0;
    bottom: -45px;
  }

  /* --------------------------------------------
     ヘッダー（スマホは重ねず、白背景）
  -------------------------------------------- */
  #header {
    position: relative !important; /* ← 最重要 */
    background-color: #FFFFFF !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 70px;
    padding: 0;
  }

  #header.fixed {
    position: fixed !important;
    background-color: #FFFFFF;
  }

  .headerWrap {
    height: 70px;
    padding: 0 10px;
    align-items: center;
    justify-content: space-between;
  }

  .container {
    padding: 0;
  }

  .headerWrap img {
    flex-shrink: 0;
    width: 85px;
  }

  /* --------------------------------------------
     スマホメニュー
  -------------------------------------------- */
  .hamburger-menu {
    display: block;
    width: 27px;
    flex-shrink: 0;
    cursor: pointer;
  }

  .menu--open .hamburger-menu__bar:first-child {
    top: 24px;
  }

  .sp_menu {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #FFFFFF;
    font-size: 14px;
    z-index: 100;
  }

  .menu--open .sp_menu {
    right: 0;
  }

  .sp_menu ul {
    flex-direction: column;
    padding-top: 200px;
  }

  /* --------------------------------------------
     ナビゲーション
  -------------------------------------------- */
  .nav-ul {
    display: block;
    text-align: center;
    margin-top: 20px;
  }

  .nav-ul li {
    padding-top: 15px;
  }

  .nav-ul li a {
    color: #22568a;
    font-size: 14px;
  }

  /* 最後のメニュー（予約などのボタンスタイル） */
  .nav-ul li:last-child a {
    color: #fff !important;
    background-color: #3C749D;
    border-radius: 1000px;
    width: 150px;
    height: 40px;
    padding: 0;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
  }

  /* --------------------------------------------
     メインビジュアル内テキスト
  -------------------------------------------- */
  .mainvisual-text {
    font-size: 20px;
    padding-bottom: 10px;
  }

  /* --------------------------------------------
     固定予約ボタン（スマホ）
  -------------------------------------------- */
  .btn-reserve {
    bottom: 4px;
    right: 4px;
    width: 142px;
  }

}


/* =====================================
   コンセプトセクション
===================================== */
.concept-section {
  padding: 100px 0;
}

.concept-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.concept-textarea {
  flex: 1;
  min-width: 300px;
}

.concept-title {
  font-size: 40px;
  color: #8ac7d3;
  font-weight: bold;
  margin-bottom: 20px;
}

.concept-text {
  font-size: 20px;
  line-height: 2.5;
}

.concept-wave {
  width: 200px;
  margin-bottom: 20px;
  display: block;
}

.concept-image {
  flex: 1;
  text-align: center;
}

.concept-image img {
  width: 350px;
  max-width: 100%;
  height: auto;
}

/* ---- SP ---- */
@media (max-width: 1050px) {

  .concept-section {
  padding: 0 4%;
}
  .concept-content {
    flex-direction: column;
    margin: 90px 0 40px;
  }

  .concept-textarea {
    order: 1;
    margin-bottom: 50px;
  }

  .concept-image {
    order: 2;
  }
}

@media (max-width: 768px) {


  .concept-title {
    font-size: 24px;
    margin-bottom: 0;
  }

  .concept-text {
    font-size: 15px;
  }

  .concept-wave {
    width: 120px;
  }
}

/* =====================================
   ハウスヒロの特徴セクション
===================================== */
.feature {
  padding: 50px 0;
}

.feature-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 40px;
}

.feature-item {
  position: relative;
  flex: 1;
  width: 300px;
}

.feature-img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

/* ポイントアイコンを重ねる */
.point-icon {
  position: absolute;
  top: -22px;
  left: 15px;
  height: 54px;
  z-index: 2;
}

.feature-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #3C749D;
}

.feature-text {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

.feature .btn {
  margin: 0 auto;
}

/* ---- SP ---- */

@media (max-width: 1050px) {
  .feature {
    padding: 0 4%;
  }
}


@media (max-width: 768px) {
  .feature {
    margin-top: 0;
  }

  .feature .sec-title{
    padding-left: 20px;
  }

  .feature-content {
    flex-direction: column;
    align-items: center;
  }

  .feature-item {
    max-width: 90%;
  }

  .feature-title {
    margin-bottom: 10px;
  }
}
/* =====================================
   部屋紹介セクション
===================================== */
.ourroom-section {
  padding: 50px 0;
  margin-bottom: 50px;
  text-align: center;
}

.ourroom-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;

  max-width: 1020px;
  margin: 0 auto;
  gap: 50px;

  padding-top: 70px;
}

.ourroom-image {
  flex: 1;
  max-width: 380px;
}

.ourroom-image img {
  width: 100%;
  height: auto;
}

.ourroom-text {
  flex: 1;
  text-align: left;
}

.ourroom-title {
  font-size: 25px;
  font-weight: bold;
  color: #BF9647;
  margin-bottom: 5px;
}

.ourroom-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-top: 15px;
}

.ourroom-section .btn {
  margin-top: 20px;
}

/* ---- SP ---- */

@media (max-width: 1050px) {
  .ourroom-content {
    padding-right: 4%;
    padding-left: 4%;
  }
}
@media (max-width: 768px) {
  .ourroom-section {
    padding: 0 4%;
    margin-top: 80px;
  }

  .ourroom-content {
    flex-direction: column;
    text-align: center;
    padding-top: 30px;
  }

  .ourroom-image {
    order: 1;
  }

  .ourroom-text {
    order: 2;
  }
}


/* =====================================
   観光案内セクション
===================================== */

/* 波線 */
.wave-bg img {
  width: 100%;
  display: block;
  margin-bottom: -1px;
}

/* セクション全体 */
.sightseeing-section {
  background-color: #ECF8FD;
  position: relative;
  padding-top: 0;
}

.sightseeing-section .sec-title {
  padding-left: 40px;
}

/* 本体ラッパー */
.sightseeing {
  margin-top: 0;
  background-color: #ECF8FD;
}

.sightseeing-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* 1つの観光カード */
.sightseeing-item {
  flex: 1 1 calc(25% - 30px);
  text-align: center;
}

/* 画像 + 装飾 */
.sightseeing-img {
  position: relative;
  display: inline-block;
  max-width: 270px;
  border-radius: 10px;
  overflow: visible;
}

/* ストライプ装飾 */
.sightseeing-img::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 100%;
  height: 100%;

  background: repeating-linear-gradient(
    -45deg,
    rgba(22,144,166,0.4),
    rgba(22,144,166,0.4) 6px,
    transparent 6px,
    transparent 12px
  );

  border-radius: 10px;
  transform: rotate(1deg);
  opacity: 0.9;
  z-index: 1;
}

/* 実画像 */
.sightseeing-img img {
  width: 100%;
  display: block;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}

/* テキスト */
.sightseeing-title {
  font-size: 20px;
  font-weight: 600;
  color: #3C749D;
  margin: 10px 0;
  text-align: left;
  padding-left: 5px;
}

.sightseeing-text {
  font-size: 13px;
  line-height: 1.7;
  color: #555;
  text-align: left;
  padding-left: 5px;
}

.sightseeing .btn {
  margin: 0 auto;
}

/* ---- タブレット ---- */
@media (max-width: 1024px) {

  .sightseeing-content {
    padding: 40px 4%;
  }

  .sightseeing-section .sec-title {
    font-size: 45px;
    padding-left: 10px;
    padding-bottom: 10px;
  }

  .sightseeing-item {
    flex: 1 1 calc(50% - 20px); /* 2列 */
  }
}

/* ---- スマホ ---- */
@media (max-width: 600px) {
  .sightseeing {
    padding-bottom: 30px;
  }
  
  .sightseeing-item {
    flex: 1 1 100%; /* 1列 */
    max-width: 270px;
    margin: 0 auto;
  }
}

/* =====================================
   区切り画像（波＋区切り）
===================================== */

/* 上に重ねる波画像 */
.wave-top {
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
  margin-bottom: -200px; /* 波を下のセクションに重ねる */
}

.section-divider {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.section-divider img {
  width: 100%;
  display: block;
}

@media (max-width: 1070px) {
.wave-top {
  margin-bottom: -100px; /* 波を下のセクションに重ねる */
}
}

@media (max-width: 768px) {

  .wave-top {
    margin-bottom: -60px;
  }
}

/* =====================================
   アクセスセクション（全体）
===================================== */

#access-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: -30px;
  margin-bottom: 0 !important;
  padding-bottom: 100px;
}


/* 半円背景（∩） */
.arc-bg {
  position: absolute;
  bottom: -20px; /* 波線に重ならせる */
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  height: 300px;
  background: #3C749D;

  border-top-left-radius: 1000px 300px;
  border-top-right-radius: 1000px 300px;
  z-index: 0;
}


/* =====================================
   access-container（白いカード部）
===================================== */

.access-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 40px;
  gap: 60px;
  background: #FFFFFF;
  border-radius: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* 左側テキスト */
.access-text {
  flex: 1 1 45%;
  min-width: 300px;
  max-width: 400px;
  padding: 20px;
}

.access-text p {
  margin-bottom: 30px;
}

.access-title {
  font-size: 25px;
  color: #BF9647;
  margin-bottom: 10px;
}

.access-btn {
  margin-top: 30px;
}


/* 右側マップ */
.map-container {
  flex: 1 1 45%;
  max-width: 800px;
  margin: 0 auto;
}

.map-inner {
  padding: 20px;
  background: #fff;
  box-sizing: border-box;
  border-radius: 20px;
}

.map-inner iframe {
  width: 100%;
  height: 440px;
  border: 0;
  border-radius: 20px;
  display: block;
}


/* =====================================
   SP（スマホ）
===================================== */
@media (max-width: 1050px) {
.access-container {
  max-width: 80%;
}
}
@media (max-width: 768px) {

  #access-section {
    padding-bottom: 40px;
  }

  .access-container {
    display: block;
    padding: 0;
    max-width: 90%;
  }

  .map-inner {
    padding: 15px;
    border-radius: 20px;
  }

  .map-inner iframe {
    height: 300px;
  }

  .access-title {
    margin-top: 10px;
  }

  .access-text {
    margin-top: 10px;
  }

  .access-text p {
    margin-bottom: 20px;
  }
}



/* =====================================
   フッター（全体）
===================================== */

#footer {
  background-color: #3C749D;
  color: #FFFFFF;
  padding: 30px 0;
  position: relative;
  z-index: 1;
}

/* セクションとの境界をきれいに繋ぐライン */
#footer::before {
  content: "";
  position: absolute;
  top: -2px; /* 上に出る隙間を完全に覆う */
  left: 0;
  width: 100%;
  height: 4px;
  background: #3C749D;
}


/* =====================================
   フッターコンテンツ
===================================== */

.footerWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;

  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ロゴ */
.footer-logo img {
  height: 60px;
  width: auto;
}

/* メニュー */
.footerNav {
  flex: 1;
  text-align: right;
}

.footer-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu li a {
  font-size: 0.95rem;
  text-decoration: none;
  color: #FFFFFF;
  transition: opacity 0.3s;
}

.footer-menu li a:hover {
  opacity: 0.7;
}

/* コピーライト */
.copyright {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  color: #FFFFFF;
  margin-top: 20px;
}


/* =====================================
   スマホ（768px 以下）
===================================== */

@media (max-width: 768px) {

  /* 全体中央寄せ */
  #footer {
    text-align: center;
  }

  .footerWrap {
    flex-direction: column;
    align-items: center;
  }

  .footer-logo img {
    height: 50px;
    margin-bottom: 15px;
  }

  .footer-menu {
    display: block;
    margin-top: 10px;
  }

  .footer-menu li {
    display: inline-block;
    margin: 0 10px;
  }

  .footer-menu li a {
    font-size: 13px;
  }
}


/* 個別ページメインビジュアル設定 */
.page-toptext {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column; 
  align-items: center;    
  color: #fff;
  white-space: nowrap;
}

.page-toptext .page-entitle {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.page-toptext .page-jatitle {
  font-size: 1.5rem;
  margin-top: 0.3em;
  letter-spacing: 0.05em;
  color: #fff;
}

@media (max-width: 768px) {


 .page-toptext .page-entitle {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 0.5;
}

.page-toptext .page-jatitle {
  font-size: 10px;
  margin-top: 5px;
  letter-spacing: 0.05em;
  color: #fff;
}
}

/*アクセスページ */

.accesspage-info {
  max-width: 960px;
  margin: 100px auto;
  padding: 0 20px;
}

.accesspage-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.map-area img {
  width: 100%;
  height: auto;
}

.address-area {
  font-size: 1rem;
  line-height: 1.8;
}

.accesspage-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.address-area .btn{
  margin-top: 30px;
}

/* ===== 有川港からの行き方セクション ===== */
.access-route {
  padding: 80px 20px;
}
.access-route .inner {
  max-width: 1000px;
  margin: 0 auto;
}
.access-route-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1690A6;
  margin-bottom: 10px;
  text-align: center;
}
.route-intro {
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

/* 各ステップ */
.route-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.route-text {
  flex: 1 1 45%;
  min-width: 300px;
}
.route-text h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(22, 144, 166, 0.15);
  color: #1690A6;
  font-weight: 700;
  font-size: 1rem;
}
.route-text p {
  line-height: 1.8;
  color: #333;
}
.note {
  color: #666;
  font-size: 0.9rem;
}

/* 画像 */
.route-img {
  flex: 1 1 45%;
  min-width: 300px;
}
.route-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.route-img figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: #666;
  margin-top: 8px;
}



@media (min-width: 768px) {


  .accesspage-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
  }

  .map-area, .address-area {
    flex: 1;
  }

  .address-area {
    text-align: left;
  }

}

@media (max-width: 768px) {

  .accesspage-info {
  margin: 50px auto;
}

.accesspage-title{
  font-size: 24px;
}

 .route-block {
    flex-direction: column;
    gap: 20px;
  }
  .route-text, .route-img {
    flex: 1 1 100%;
  }
  .access-route {
    padding: 60px 16px;
  }

.access-route-title {
  font-size: 24px;

}
}


/* 店舗情報ページ */
.about-section {
  max-width: 960px;
  margin: 100px auto;
  padding: 0 20px;
}

.about-inner {
  display: flex;
  flex-direction: row; /* ← PCは横並び */
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;            /* ← ちょうど半分 */
  max-width: 50%;
  text-align: left;
}

.about-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.4;
  color: #8ac7d3;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
}

.about-image {
  flex: 1;            /* ← ちょうど半分 */
  max-width: 50%;
}


.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* ▼ SP：768px以下で縦並びに変更 */
@media (max-width: 768px) {

  .about-section{
    margin-top: 50px;
  }

  .about-inner {
    flex-direction: column; /* ← スマホは縦並び */
    text-align: center;
  }

   .about-text,
  .about-image {
    max-width: 100%;  /* ← 1カラム幅に戻す */
  }


  .about-text {
    padding-right: 0;
  }

.about-image img{
    max-width: 290px;
  }


.about-title {
  font-size: 24px;
}

.about-text p {
  font-size: 14px;
  line-height: 1.5;
}

}


.shop-info {
  max-width: 960px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: left;
}

.shop-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.shop-inner p {
  line-height: 1.8;
  margin-bottom: 40px;
}


.shop-inner {
  text-align: left;
}

.shop-info .btn{
  margin: 0 auto;
}

/*メニューページ */
.course{
  text-align: center;
  margin: 100px 0;
}
.course img{
  margin:0 auto;
  max-width: 850px;
  margin-bottom: 30px;
}

.course .btn{
  margin: 0 auto;
  margin-bottom: 40px;
}
.course  .arrow-circle {
  background: #000000; 
}

.course-title{
  font-size: 26.25px;
  margin-bottom: 20px;
}

.course-text{
  font-size: 15.75px;
  margin-bottom: 20px;
}


@media (max-width: 768px) {

.course{
  margin-top:50px;
  margin-bottom: 20px;
   padding:0 3%;
}

.course img{
  max-width: 100%;
  margin-bottom: 30px;
}

.course .btn{
  margin-bottom: 30px;
}

.course-title{
  font-size: 20px;
}

.course-text{
  font-size: 13px;
  margin-bottom: 20px;
  text-align: left;
}

}

/*利用ガイドページ */
.guide-wrap{
  color:#222;
  max-width:850px;
  margin:auto;
  line-height:1.8;
  font-feature-settings:"palt";
  padding: 60px 0;
}

.guide-section{
  margin-bottom:28px;
}

.guide-heading{
  font-size:clamp(18px,2.5vw,22px);
  margin-bottom:16px;
  border-left:5px solid var(--accent);
  padding-left:10px;
  color:#1690A6;
  display: inline-flex;
  align-items: center;
  gap: 5px; /* ← マークと文字の間の隙間 */
}

.colored-symbols.diamond {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #1690A6;
  transform: rotate(45deg);
  border-radius: 2px;
  margin-right: 3px;
}

.guide-list{
  margin:0;
  padding-left:1.2em;
}
.guide-list li{
  margin-bottom:6px;
}

.guide-block{
  margin-bottom:20px;
}
.guide-block h3{
  font-size:clamp(16px,2.2vw,18px);
  color:var(--accent);
  margin-bottom:6px;
  padding-left: 10px;
}
.guide-block ul{
  padding-left:10px;
  margin:0;
}
.guide-block p{
  margin:0;
  padding-left: 10px;
}

.guide-small{
  font-size:0.9em;
  color:#666;
  margin-top:4px;
}

@media (max-width: 768px) {

.guide-wrap{
 margin: 60px 0;
 padding: 0 4%;
}

.guide-heading{
  padding-left:0px;
}

.guide-list{
  padding-left:0;
}

.guide-block ul{
  padding-left:0;
}

.guide-block h3{
  padding-left: 0px;
}

.guide-block p{
  padding-left: 0px;
}

}
/* 予約ページ */

#reservation-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #fff;
}

.reserve-block {
  margin-bottom: 80px;
}

.reserve-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  color: #1690A6; 
}

.reserve-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: #1690A6; 
}

.reserve-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 20px;
  color: #333;
}

.reserve-form {
  margin-top: 30px;
}

.reserve-caution{
  font-size: 12px;
}


/* booking packagepプラグイン */
/* ――― 予約フォーム全体 ――― */
#booking-package, .booking-package, #booking_package, .booking_package {
  background-color: #f5faff !important;
  border-radius: 12px !important;
  padding: 10px !important;
  box-shadow: 0 3px 10px rgba(0, 80, 160, 0.08) !important;
  color: #333333 !important;
}

/* ――― カレンダー全体 ――― */
#booking-package .booking-package-calendar,
.booking-package .booking-package-calendar,
#booking-package_calendarPage,
.booking_package_calendarPage {
  background-color: #ffffff !important;
  border-radius: 10px !important;
  border: 1px solid #d3e3f5 !important;
}

/* ――― カレンダーの日付セル ――― */
#booking-package .booking-package-calendar td,
.booking-package .booking-package-calendar td,
#booking-package_calendarPage .dateField,
.booking_package_calendarPage .dateField {
  background-color: #f8fbff !important;
  border: 1px solid #e0ebf8 !important;
  color: #333333 !important;
}

/* ――― 選択中の日付 ――― */
#booking-package .booking-package-calendar td.selected,
.booking-package .booking-package-calendar td.selected {
  background-color: #a4c8f0 !important;
  color: #ffffff !important;
  font-weight: bold !important;
}

/* ――― ボタン ――― */
#booking-package .booking-package-submit-button,
.booking-package .booking-package-submit-button {
  background-color: #5ba4e5 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 10px 25px !important;
  font-weight: bold !important;
  font-size: 15px !important;
  box-shadow: 0 3px 6px rgba(91, 164, 229, 0.3) !important;
  transition: all 0.3s ease !important;
}

/* ――― ボタンホバー時 ――― */
#booking-package .booking-package-submit-button:hover,
.booking-package .booking-package-submit-button:hover {
  background-color: #4b94d4 !important;
  box-shadow: 0 5px 10px rgba(91, 164, 229, 0.4) !important;
}

/* ――― 入力フォーム ――― */
#booking-package input,
#booking-package select,
.booking-package input,
.booking-package select {
  border: 1px solid #c9dcf5 !important;
  border-radius: 6px !important;
  background-color: #f8fbff !important;
  padding: 8px 10px !important;
}


/* 数字の前に「残り」、後ろに「部屋」を表示する */
#booking-package_calendarPage .numberInsteadOfSymbols::before {
  content: "残り";
}

.summaryTitle{
  display: none;
}

@media (max-width: 768px) {
.reserve-title{
  font-size: 20px;
}

.reserve-text {
text-align: left;
}

}
/* 特徴ページ */

.feature-page{
 margin-top: 120px;
 padding-right: 20px;
 padding-left: 20px;
  } 

.featurepage-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 100px;
}

.featurepage-item.reverse {
  flex-direction: row-reverse;
}

.featurepage-text {
  flex: 1;
}

.featurepage-title {
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  margin-bottom: 20px;
  color: #1690A6;
  display: inline-block; /* 下線の長さを文字幅に合わせる */
}

.featurepage-title::before {
  content: attr(data-number);
  font-size: 60px;
  font-weight: 500;
  color: #b9dee4;
  margin-right: 10px;
  display: inline-block;
  position: relative;
  top: 3px; /* ← 微調整（上に浮く場合はマイナスを減らす） */
}


.featurepage-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px; /* 文字と線の間隔 */
  width: 100%;
  height: 1px; /* 細い線 */
  background-color: currentColor; /* 文字色と同じ色を自動反映 */
}


.featurepage-text p {
  line-height: 1.8;
}


.featurepage-image {
  position: relative;
  display: inline-block;
  border-radius: 10px;
  overflow: visible; /* ← はみ出しを許可 */
  flex: 1;

}

/* ストライプ装飾（右下に少しはみ出し） */
.featurepage-image::after {
  content: "";
  position: absolute;
  bottom: -13px;
  right: -13px;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    rgba(22, 144, 166, 0.4),
    rgba(22, 144, 166, 0.4) 6px,
    transparent 6px,
    transparent 12px
  );
  border-radius: 10px;
  z-index: 1;
  transform: rotate(1deg);
  opacity: 0.9;
}

/* 画像本体 */
.featurepage-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}


/* スマホ対応 */
@media (max-width: 768px) {

  .feature-page{
  padding: 0 4%;
  margin-top: 60px;
  margin-bottom: 80px;
  } 

  .featurepage-item{
    gap:20px;
    margin-bottom: 30px;
  }

  .featurepage-item,
  .featurepage-item.reverse {
    flex-direction: column;
  }
  .featurepage-image,
  .featurepage-text {
    width: 100%;
  }
  .featurepage-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.featurepage-title::before {
  content: attr(data-number);
  font-size: 40px;
  font-weight: 500;
  color: #b9dee4;
  margin-right: 10px;
  display: inline-block;
  position: relative;
  top: 3px; /* ← 微調整（上に浮く場合はマイナスを減らす） */
}

.featurepage-image::after {
  bottom: -8px;
  right: -8px;
}
}

/* 部屋の紹介ページ */

.ourroom-page {
  padding: 80px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.room-lead {
  text-align: center;
  line-height: 1.8;
  font-size: 24px;
  color: #BF9647;
  margin-bottom: 60px;
}

.facility {
  margin-bottom: 80px;
}
.facility-title {
  font-size: 1.5rem;
  color: #1690A6;
  border-bottom: 1px solid #1690A6;
  display: inline-block;
  margin-bottom: 20px;
}
.facility-content p {
  margin-bottom: 10px;
  line-height: 1.8;
  color: #444;
}

.gallery {
  margin-top: 80px;
}
.gallery-title {
  text-align: center;
  font-size: 1.5rem;
  color: #1690A6;
  margin-bottom: 40px;
  position: relative;
}
.gallery-subtitle {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 15px;
  border-left: 4px solid #1690A6;
  padding-left: 10px;
}

.gallery-group {
  margin-bottom: 60px;
}

.gallery-images {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-images img {
  height: 240px; /* ←縦幅を統一（必要に応じて調整） */
  width: auto;   /* 横幅は自動調整 */
  object-fit: cover; /* 縦横比を保ちながらトリミング */
}

/* キャプション */
.gallery-item figcaption {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #555;
  text-align: center;
}


/* スマホ対応 */
@media (max-width: 768px) {
  .ourroom-page {
  padding: 40px 20px;
  }

  .room-lead {
  text-align: left;
  line-height: 1.6;
  font-size: 16px;
  margin-bottom: 40px;
}

.facility {
  margin-bottom: 40px;
}

.facility-title {
  font-size: 16px;
  margin-bottom: 10px;
}

.gallery {
  margin-top: 10px;
}

.gallery-subtitle {
  font-size: 16px;
}
 .gallery-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* デフォルトは2列 */
    gap: 8px;
  }

  /* 横長は1列（幅100%） */
  .gallery-images img.horizontal {
    grid-column: 1 / -1; /* 横幅いっぱい使う */
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* 縦長は2列に収まる */
  .gallery-images img.vertical {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
 
}



/* 404ページ */
.page-content a{
  color: #ffffff;
  padding-left: 10px;
}

.error-404 {
  padding-bottom: 100px; 
}

/* プライバシーポリシー */
#main{
  margin-bottom: 100px;
}
#main h1 {
  padding-top: 50px;
  margin-bottom: 30px;
  font-size: 30px;
  text-align: center;
}

#main h2 {
  margin: 30px 0 10px 0;
}

#main h3 {
  margin: 10px 0 10px 0;
}

#main h4 {
  margin: 10px 0 10px 0;
}

#main li {
  margin: 10px 0 10px 0;
}
.entry-content{
  padding: 0 1rem;
  max-width: 1100px;
  margin: 0 auto;
}


/* コンタクトフォーム */
#cf7-area {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  font-family: "遊ゴシック", "ヒラギノ角ゴ", "メイリオ", "MS Pゴシック", sans-serif;
  padding-bottom: 20px;
  box-sizing: border-box;
}

.form-heading {
  margin-bottom: 50px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.cf7-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px; 
  flex-wrap: wrap;
}

.cf7-q {
  flex: 0 0 35%; 
  max-width: 150px;
  font-weight: bold;
  margin-left: 10px;
  box-sizing: border-box;
}

.cf7-q label {
  display: block;
}

.cf7-a {
  flex: 1 1 60%;
  box-sizing: border-box;
}

.cf7-a input[type="text"],
.cf7-a input[type="email"],
.cf7-a textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

.cf7-a input[type="text"]:focus,
.cf7-a input[type="email"]:focus,
.cf7-a textarea:focus {
  border-color: #1690A6;
  outline: none;
}

.cf7-a textarea {
  min-height: 120px;
  resize: vertical;
}

.cf7-req {
  font-size: 0.8em;
  padding: 3px 6px;
  background: #fff;
  color: #1690A6;
  border: 1px solid #1690A6;
  margin-left: 8px;
  display: inline-block;
  vertical-align: middle;
}

.cf7-submit {
  text-align: center;
  margin-top: 30px;
}

.wpcf7 input.wpcf7-submit {
  background-color: #1690A6;
  color: #fff;
  font-size: 1.1em;
  padding: 15px 40px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  max-width: 250px;
  width: 100%;
  max-width: 250px;
  font-weight: bold;
}

.wpcf7 input.wpcf7-submit:hover {
  background-color: #1690A6;
  color: #fff;
}

.wpcf7-spinner {
  display: none !important;
}

@media (max-width: 480px) {
  #main h1{
    font-size: 24px;
    margin-bottom: 0;
  }

  .form-heading{
    font-size: 14px;
  }

  #cf7-area{
   margin: 0;
   padding: 0;
   width: 100%;
  }
  .cf7-item {
    flex-direction: column;
    align-items: stretch;
  }
  .cf7-q {
    margin-left: 0;
    margin-bottom: 6px;
    flex: none;
    max-width: none;
  }
  .cf7-a {
    flex: none;
  }
}


/* 固定ヘッダーに押されないようアンカー位置調整 */
:target {
  scroll-margin-top: 100px; /* ヘッダーの高さ + 少し余裕 */
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #00a0d2!important;
}




