@charset "UTF-8";

/* ========================= BASE ========================= */
.front-page {
  background: #f0f8ff;
  color: #213C51;
  font-family: "Noto Serif JP", "Times New Roman", serif;
}

.front-page section {
  padding: 96px 0;
}

.front-page h2 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: #6594B1; /* メインブルー */
}

/* コンテナ */
.front-page .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================= FV ========================= */

.fv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* 背景画像 */
.fv-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* オーバーレイ */
.fv-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

/* テキスト全体 */
.fv-content {
  text-align: center;
  color: #fff;
  max-width: 800px;
}

/* タイトル */
.fv-title {
  font-size: 50px;
  letter-spacing: 0.16em;
  margin-bottom: 28px;
  font-weight: 500;
  font-family: "Noto Serif JP", "Times New Roman", serif;
}

/* サブテキスト */
.fv-text {
  font-size: 30px;
  opacity: 0.95;
  font-family: "Noto Serif JP", "Times New Roman", serif;
}

/* 影 */
.fv-title,
.fv-text {
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* ボタン */
.fv-btn {
  display: inline-block;
  margin-top: 30px;
  font-family: "Noto Serif JP", "Times New Roman", serif;
  color: #DDAED3;
  text-decoration: none;
  font-size: large;
  font-weight: 700;
}

.fv-btn:hover {
  color: #EEEEEE;
}

/* ========================= NEWS / BLOG ========================= */
/* セクションタイトル */
.section-news .section-title,
.section-blog .section-title {
  color: #6594B1;
  max-width: 760px;
  margin: 10px auto 20px;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: left;
  margin-bottom: -15px;
}

.section-news p,
.section-blog p {
  text-align: center;
}

/* 記事リスト */
.news-item,
.blog-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  column-gap: 32px;

  background: #FFFFFF;
  padding: 20px 28px;
  border: 1px solid #E2D6DE;

  max-width: 650px;
  margin: 0 0 24px auto;
  align-items: center;
}

/* 日付 */
.news-item time.news-date,
.blog-item time.blog-date {
  font-size: 13px;
  color: #6594B1;
  letter-spacing: 0.1em;
  text-align: center;
}

/* タイトル */
.news-item .news-link,
.blog-item .blog-link {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: #213C51;
  text-decoration: none;
}

.news-item .news-link:hover,
.blog-item .blog-link:hover {
  opacity: 0.7;
}

/* 一覧ボタン */
.news-list-btn-wrapper,
.blog-list-btn-wrapper {
  margin-top: 30px;
  text-align: right;
  padding-right: 220px; 
}

.news-list-btn,
.blog-list-btn {
  display: inline-block;
  padding: 14px 44px;
  border: 2px solid #E2D6DE;
  color: #6594B1;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.12em;
  transition: all 0.3s ease;
  background: transparent;
}

.news-list-btn:hover,
.blog-list-btn:hover {
  background: #DDAED3;
  color: #EEEEEE;
}
/* ========================= ABOUT ========================= */
.section-about .container {
  max-width: 1000px;
}

.section-about h2 {
  font-size: 1.8rem;
  color: #6594B1;
  margin-bottom: 20px;
}

.section-about .about-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #213C51;
  margin-bottom: 16px;
}

/* 本文に入れた画像のスタイル */
/* 右側：画像2枚の親カラム */
.section-about .wp-block-columns .wp-block-columns {
  position: relative;
  gap: 0; /* 余白は自分で制御 */
}

/* 共通：画像 */
.section-about .wp-block-columns .wp-block-columns img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  box-shadow: 0 10px 30px #c0c0c0;
  margin-top: -180px;
}

/* 1枚目（左上） */
.section-about .wp-block-columns .wp-block-columns .wp-block-column:first-child img {
  position: relative;
  z-index: 2;
  transform: translate(0, 0)scale(1.08);
  box-shadow: 0 14px 36px #c0c0c0;
}

/* 2枚目（右下にずらす） */
.section-about .wp-block-columns .wp-block-columns .wp-block-column:last-child img {
  position: relative;
  z-index: 1;
  transform: translate(40px, 230px)scale(1.08);  /* ← ここが斜め */
  box-shadow: 0 14px 36px #c0c0c0;
}


/* ========================= ROOMS ========================= */

.section-rooms .container {
  max-width: 1000px;
  /* margin: 0 auto;
  padding: 0 24px; */
}

/* セクションタイトル */
.section-rooms h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 500;
}

/* h3 見出し */
.section-rooms h3 {
  font-size: 24px;
  margin-bottom: 24px;
  color: #7fbfff;
  text-align: center;
}

/* 画像共通 */
.section-rooms .wp-block-image img {
  border-radius: 6px;
  box-shadow: 0 14px 36px #c0c0c0;
}

.wp-block-columns {
  align-items: center !important;
}

/* ========================= MONTHLY ========================= */

.section-monthly .container {
  max-width: 1100px;
}

.section-monthly h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 500;
}

/* カラム全体 */
.section-monthly .wp-block-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* 画像 */
.section-monthly .wp-block-columns img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 14px 36px #c0c0c0;
  height: 100%;
  object-fit: cover;
  margin-top: 25px;
}

/* テキスト */
.section-monthly .wp-block-column p {
  font-size: 16px;
  line-height: 1.9;
  color: #213C51;
}

/* ========================= access ========================= */
.section-access .access-map {
  margin: 40px auto;
  max-width: 500px; 
  overflow: hidden;
  align-items: center;
  box-shadow: 0 10px 30px #c0c0c0;
  border-radius: 16px;
}

.section-access iframe {
  display: block;
  margin: 0 auto;
}

/* ========================= reservation ========================= */
#calendar{
  max-width:900px;
  margin:40px auto;
}

.reservation-p{
  font-size: 20px;
  line-height: 50px;
  margin-left: 500px; 
}

.button-area {
  display: flex;
  flex-direction: column;
  gap: 20px; 
  text-align: center;
}

.reserve-button a{
  display: block;
  padding: 14px 44px;
  border: 2px solid #E2D6DE;
  color: #6594B1;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.12em;
  transition: all 0.3s ease;
  background: transparent;
}

.reserve-button a:hover {
    background: #DDAED3;
  color: #EEEEEE;
}

/* ========================= spot ========================= */
/* =========================
  MAP + INFO LAYOUT
========================= */
.section-spot .map-layout{
  display:flex;
  align-items:flex-start;
  /* gap:40px; */
  max-width:1200px;
  margin:0 auto;
  margin-left:-10px; 
}

/* =========================
  MAP (LEFT)
========================= */
.section-spot .map-wrap{
  flex:0 0 450px;
  max-width:450px;
}

.section-spot .map-wrap svg{
  transform: translateY(-100px);
}

/* =========================
  SVG AREA
========================= */
.section-spot .ward{
  fill:#dcdcdc;
  stroke:#ffffff;
  stroke-width:1;
  cursor:pointer;
  transition:.25s;
}

/* =========================
  INFO (RIGHT)
========================= */
.section-spot .spot-info{
  flex:1;
  /* background:#fff; */
  border-radius:20px;
  padding:28px;
  box-shadow:0 10px 28px rgba(0,0,0,.06);
  min-height:280px;
}

/* タイトル */
.section-spot #area-title{
  font-size:22px;
  margin-bottom:20px;
}

/* スポット横並び */
.section-spot #spot-list{
  display:flex;
  gap:20px;
  
}

/* カード */
.section-spot .spot-item {
  flex: 0 0 200px;
  height: auto;        /* ← fixed → auto に変更 */
  min-height: 260px;   /* ← 最低限の高さだけ保証 */
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: .25s;
  border: 3px solid transparent;
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

/* 画像 */
.section-spot .spot-item img{
  width:100%;
  height:140px; 
  object-fit:cover;
}

/* タイトル */
.section-spot .spot-item h3{
  font-size:15px;
  margin:10px;
}

/* サブタイトル */
.section-spot #spot-list{
  display:flex;
  justify-content:center;   /* 横中央 */
  align-items:center;       /* 縦中央（高さがある場合） */
}


/* テキスト */
.section-spot .spot-item div {
  font-size: 13px;
  padding: 10px 10px 14px;  /* ← 上にも余白 */
  color: #555;
  flex: 1;
  display: flex;
  align-items: center;
  text-align: center;
}

.section-spot #spot-list {
  display: flex;
  justify-content: center;
  align-items: stretch;  /* ← center → stretch に変更（カード高さを揃える） */
}

/* ========================= RESPONSIVE ========================= */

/* ============================================================
   レスポンシブ対応
   ブレークポイント：
     1024px 以下 → タブレット
      768px 以下 → スマートフォン（主軸）
      480px 以下 → 小型スマートフォン
============================================================ */

/* ========================= TABLET (〜1024px) ========================= */
@media (max-width: 1024px) {

  /* --- FV --- */
  .fv-title { font-size: 38px; }
  .fv-text  { font-size: 22px; }

  /* --- NEWS / BLOG --- */
  .news-list-btn-wrapper,
  .blog-list-btn-wrapper {
    padding-right: 80px;
  }

  /* --- ABOUT：重なり画像レイアウトを解除 --- */
  .section-about .wp-block-columns .wp-block-columns img {
    margin-top: 0;
  }
  .section-about .wp-block-columns .wp-block-columns .wp-block-column:first-child img {
    transform: none;
  }
  .section-about .wp-block-columns .wp-block-columns .wp-block-column:last-child img {
    transform: none;
  }

  /* --- RESERVATION --- */
  .reservation-p {
    margin-left: 0;
    text-align: center;
  }

  /* --- SPOT：マップ縮小 --- */
  .section-spot .map-wrap {
    flex: 0 0 360px;
    max-width: 360px;
  }
}


/* ========================= SP (〜768px) ========================= */
@media (max-width: 768px) {

  /* --- BASE --- */
  .front-page section {
    padding: 60px 0;
  }
  .front-page h2 {
    font-size: 22px;
    margin-bottom: 36px;
  }
  .front-page .container {
    padding: 0 16px;
  }

  /* --- FV --- */
  .fv { height: 100svh; }
  .fv-title {
    font-size: 26px;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
  }
  .fv-text  { font-size: 16px; }
  .fv-btn   { font-size: 14px; margin-top: 20px; }

  /* --- NEWS / BLOG --- */
  .section-news .section-title,
  .section-blog .section-title {
    font-size: 1.2rem;
    margin-left: 0;
  }

  .news-item,
  .blog-item {
    grid-template-columns: 90px 1fr;
    column-gap: 16px;
    padding: 14px 16px;
    max-width: 100%;
    margin: 0 0 16px 0;
  }

  .news-item time.news-date,
  .blog-item time.blog-date { font-size: 12px; }

  .news-item .news-link,
  .blog-item .blog-link     { font-size: 14px; }

  .news-list-btn-wrapper,
  .blog-list-btn-wrapper {
    padding-right: 0;
    text-align: center;
  }

  /* --- ABOUT --- */
  .section-about .container { max-width: 100%; }

  /* Gutenberg カラムを縦積みに */
  .section-about .wp-block-columns {
    flex-direction: column !important;
  }
  .section-about .wp-block-columns .wp-block-column {
    width: 100% !important;
    flex-basis: 100% !important;
  }
  /* 重なり画像の変形を完全解除 */
  .section-about .wp-block-columns .wp-block-columns img {
    margin-top: 0;
    box-shadow: 0 8px 20px #c0c0c0;
  }
  .section-about .wp-block-columns .wp-block-columns .wp-block-column:first-child img,
  .section-about .wp-block-columns .wp-block-columns .wp-block-column:last-child img {
    transform: none;
    position: static;
  }

  /* --- ROOMS --- */
  .section-rooms .container { max-width: 100%; }
  .section-rooms h2 {
    font-size: 22px;
    margin-bottom: 36px;
  }
  .section-rooms h3 { font-size: 18px; }

  /* カラム縦積み */
  .section-rooms .wp-block-columns {
    flex-direction: column !important;
  }
  .section-rooms .wp-block-columns .wp-block-column {
    width: 100% !important;
    flex-basis: 100% !important;
  }

  /* --- MONTHLY --- */
  .section-monthly .container { max-width: 100%; }
  .section-monthly h2 {
    font-size: 22px;
    margin-bottom: 36px;
  }
  .section-monthly .wp-block-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .section-monthly .wp-block-columns img {
    margin-top: 0;
    height: 240px;
  }

  /* --- RESERVATION --- */
  #calendar {
    margin: 20px auto;
    padding: 0 16px;
  }
  .reservation-p {
    font-size: 15px;
    line-height: 1.8;
    margin-left: 0;
    text-align: left;
  }
  .button-area { gap: 14px; }
  .reserve-button {
    padding: 14px 24px;
    font-size: 13px;
  }

 /* --- SPOT：縦積みレイアウト --- */
  .section-spot .map-layout {
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
    gap: 0;
  }
  .section-spot .map-wrap {
    flex: none;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }
  .section-spot .map-wrap svg {
    transform: none;
    width: 100%;
    height: auto;
    display: block;
  }
  .section-spot .spot-info {
    padding: 20px 16px;
    box-shadow: none;
    border-top: 1px solid #e2d6de;
  }
  .section-spot #area-title { font-size: 18px; }

  /* カードを縦並びに変更 ↓ここを修正 */
  .section-spot #spot-list {
    flex-direction: column;  /* ← 縦並び */
    flex-wrap: wrap;         /* ← 横スクロール解除 */
    overflow-x: visible;     /* ← スクロール解除 */
    gap: 16px;
    padding-bottom: 0;
    justify-content: flex-start;
    align-items: stretch;    /* ← カードを横幅いっぱいに */
  }

  /* スクロールバー非表示（不要になったので削除） */

  .section-spot .spot-item {
    flex: none;              /* ← 固定幅を解除 */
    width: 100%;             /* ← 横幅いっぱい */
  }
  .section-spot .spot-item img {
    height: 180px;           /* ← 横長になったので高さを調整 */
    width: 100%;
    object-fit: cover;
  }
  .section-spot .spot-item h3 { font-size: 14px; }
  .section-spot .spot-item div { font-size: 13px; }


  /* --- ACCESS --- */
  .section-access .access-map {
    max-width: 100%;
    border-radius: 10px;
    margin: 24px auto;
  }
  .section-access iframe {
    width: 100% !important;
    height: 300px !important;
  }
}


/* ========================= SMALL SP (〜480px) ========================= */
@media (max-width: 480px) {

  .fv-title { font-size: 20px; }
  .fv-text  { font-size: 13px; }

  .front-page h2 { font-size: 19px; }

  .news-item,
  .blog-item {
    grid-template-columns: 1fr;
    row-gap: 4px;
  }
  .news-item time.news-date,
  .blog-item time.blog-date {
    text-align: left;
    font-size: 11px;
  }

  .section-spot .spot-item {
    width: 100%;             /* ← 480pxでも横幅いっぱいを維持 */
  }
  .section-spot .spot-item img { height: 150px; }

  .section-monthly .wp-block-columns img { height: 180px; }
}