:root{
  --bg: #f5efea;
  --paper: #ffffff;
  --text: #4a4a4a;
  --muted: #8a8a8a;
  --line: #d7d4cc;
  --mint: #77bfb7;
  --radius: 18px;
  --container: 980px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; overflow-x:hidden; }
body{
  margin:0;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

img{ max-width:100%; height:auto; display:block; }
a{ color: inherit; text-decoration:none; }

.container{ 
    width: min(1180px, 100% - 40px); /* 1180は好みで 1100〜1300 くらいで調整 */
     margin:0 auto; }
.narrow{ width:min(780px, 100% - 40px); }

.header{
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(244,243,238,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.header__inner{
  height: 56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

.logo{
  font-family: "Allura", cursive;
  font-size: 24px;
  color: #6a6a6a;
  letter-spacing:.02em;
}

.nav{
  display:flex;
  gap: 14px;
  font-size: 13px;
  color: #6a6a6a;
}
.nav a{ padding: 6px 8px; border-radius: 999px; }
.nav a:hover{ background: rgba(0,0,0,.05); }

.logo{
  display:flex;
  align-items:center;
  gap: 10px;
  white-space: nowrap;
}

.logo__mark{
  height: 22px; /* 好みで調整 */
  width: auto;
  display:block;
}

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

/* ヘッダー用にボタンを少し小さくする */
.header__cta{
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
}

/* 既に nav を消してるSPでもCTAは残す（文字が長ければ少しだけ縮める） */
@media (max-width: 999px){
  .header__cta{
    padding: 8px 12px;
    font-size: 12px;
  }
}


.hero{ padding: 18px 0 10px; }
.hero__frame{
  position: relative;
  border-radius: var(--radius);
  overflow:hidden;
  background: #e9e7df;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.hero__img{ width:100%; height: 620px; object-fit: cover; }
.hero__overlay{
  place-content: start center;  /* ← center → start にする（上寄せ） */
  inset:0;
  display:grid;
  place-content:center;
  text-align:center;
  color:#fff;
  background: linear-gradient(180deg, rgba(124,190,184,.35), rgba(124,190,184,.12));
  padding: 18px;
}
.hero__lead{ margin:0 0 6px; font-weight: 500; letter-spacing:.08em; }
.hero__title{
  margin:0;
  font-size: clamp(18px, 2.8vw, 28px);
  font-weight: 700;
  text-shadow: 0 6px 18px rgba(0,0,0,.28);
}

.section{ padding: 34px 0; }

.section__titleArea{
  text-align:center;
  margin-bottom: 12px;
}
/* 見出し（News / About us / Access など） */
.script{
  font-family: "Allura", cursive;
  font-size: 52px;      /* 好みで 46〜60 */
  line-height: 1;
  margin: 0;
  color: #6f6f6f;
}

/* 見出し下の飾り線（斜めストライプ） */
.divider{
  width: min(520px, 78vw);  /* 長さ：スクショ寄せ */
  height: 10px;
  margin: 10px auto 0;
  border: 0;                /* dottedを消す */
  background: repeating-linear-gradient(
    135deg,
    rgba(120,120,120,.55) 0 2px,
    transparent 2px 6px
  );
  opacity: .55;             /* うっすら感 */
  border-radius: 999px;
}
.divider--wide{ width: 220px; }

.newsTopNote{
  display:flex;
  justify-content:center;
  align-items:center;
  margin: 4px 0 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(124,190,184,.18);   /* mintの薄い色 */
  color: #666;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
}

.newsBox{
  background: var(--paper);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 10px 20px rgba(0,0,0,.05);
}
.newsItem{
  display:grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 10px 6px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  align-items:center;
}
.newsItem:last-of-type{ border-bottom:0; }
.newsItem time{ color: var(--muted); font-size: 12px; }
.newsItem span{ font-size: 13px; }
.newsItem:hover{ background: rgba(0,0,0,.03); border-radius: 8px; }

.newsMore{ display:flex; justify-content:center; padding-top: 12px; }

.centerHead{
  text-align:center;
  margin-bottom: 18px;
}
.scriptBrand{
  font-family: "Allura", cursive;
  font-size: 42px;
  margin: 0;
  color: var(--mint);
}
.jpHead{
  margin: 6px 0 0;
  font-size: 22px;   /* ← ここを大きく */
  line-height: 1.35; /* ← 読みやすく */
  font-weight: 600;  /* ← 少し強めにしたいなら */
  color: #6a6a6a;
}
.mint{ color: var(--mint); font-weight: 700; }

.point{
  margin: 18px auto 0;
  padding-top: 10px;
}
.point__head{
  display:flex;
  align-items:baseline;
  gap: 10px;
  margin: 0 auto 8px;
  width: min(780px, 100%);
}
.point__kicker{
  margin:0;
  color: var(--mint);
}
.point__kicker .script{ font-size: 26px; color: var(--mint); }
.point__kicker strong{ font-size: 18px; }
.point__head h3{ margin:0; font-size: 14px; font-weight: 700; color:#666; }

.point__grid{
  width: min(780px, 100%);
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start; /* ← center を start に */
}
.point--reverse .point__grid figure{ order: 2; }

.point--reverse .point__grid{
  align-items: start;
}

.photo{
  margin:0;
  border-radius: 10px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.06);
  background:#eee;
}
.photo img{ height: 170px; width: 100%; object-fit: cover; }

.bullets{
  margin: 0;
  padding-left: 18px;
  color:#666;
  font-size: 13px;
  line-height: 1.9;
}

.aboutGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.aboutCard{
  background: var(--paper);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 10px;
  padding: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,.04);
  background-image: linear-gradient(rgba(0,0,0,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,0,0,.03) 1px, transparent 1px);
  background-size: 18px 18px;
}
.aboutCard__cap{
  margin:0 0 6px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing:.14em;
}
.aboutCard h3{ margin:0 0 6px; font-size: 13px; }
.aboutCard p{ margin:0; font-size: 12px; color:#666; line-height:1.8; }

.aboutCard__img{
  width: 100%;
  height: 120px;      /* 好みで 110〜150px くらい */
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin: 0 0 10px;
}


.accessGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items:center;
}
.tagRow{
  display:grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  align-items:center;
  margin-bottom: 10px;
}
.tag{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  height: 26px;
  border-radius: 6px;
  background: var(--mint);
  color:#fff;
  font-size: 12px;
}
.accessInfo p{ margin:0; font-size: 13px; color:#666; }

.map iframe{
  width: 100%;
  height: 170px;   /* 画像のときと同じ高さ。もっと大きくしたいなら 220px などに */
  border: 0;
  display: block;
}
.map img{ height: 170px; width:100%; object-fit: cover; }

.contactCard{
  text-align:center;
  background: var(--paper);
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 12px;
  padding: 18px 12px;
  width: min(520px, 100%);
  margin: 0 auto;
}
.contactCard p{ margin: 6px 0; color:#666; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding: 14px 28px;      /* ← 大きく */
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.14);
  background: #fff;

  font-size: 16px;         /* ← 文字を大きく */
  font-weight: 700;        /* ← ついでに見やすく */
  letter-spacing: .04em;   /* ← 少し品よく */
}

.btn:hover{ background: rgba(0,0,0,.03); }

.btn--mint{
  background: var(--mint);
  color:#fff;
  border-color: transparent;
}
.btn--mint:hover{ filter: brightness(.98); }

.small{ font-size: 12px; color: var(--muted); }

.footer{
  margin-top: 24px;
  padding: 16px 0 22px;
  text-align:center;
  background: #7b7b7b;
  color: rgba(255,255,255,.86);
  font-size: 12px;
}

/* Responsive */
@media (max-width: 999px){
  .nav{ display:none; } /* まずは簡略。必要ならハンバーガー化します */
  .hero__img{ height: 240px; }
  .point__grid, .accessGrid{ grid-template-columns: 1fr; }
  .point--reverse .point__grid figure{ order: 0; }
  .aboutGrid{ grid-template-columns: 1fr; }
  .logo{ white-space: normal; }
  .logo__text{ font-size: 14px; }
  .scriptBrand{ font-size: 28px; }
  .newsTopNote{ font-size: 11px; word-break: break-all; }
}

/* フッター内の文字を白に */
.footer,
.footer a{
  color: #fff;
}

.footer .nav a{
  color: #fff;
}

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

.footer__inner{
  display: flex;
  flex-direction: column;   /* ← 縦並びにして中央揃え確定 */
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* ロゴ（旗＋テキスト）を中央で横並び */
.footer .logo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer__nav{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;          /* リンク多いので折り返し */
  gap: 10px 14px;
}



/* Point02：画像を Point02(kicker) と同じ高さ(同じ行の上端)にそろえる */
.point.point--reverse{
  width: min(780px, 100%);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 14px;
  align-items: start;
}

/* もともと head/grid に付いてた幅指定を無効化 */
.point.point--reverse .point__head{
  width: auto;
  margin: 0;
  grid-column: 1;
  grid-row: 1;
}

/* grid内の子(figure と body)を親グリッドに参加させる */
.point.point--reverse .point__grid{
  display: contents;
}

/* 画像：右カラム、1行目から開始（＝kickerと同じ高さ） */
.point.point--reverse .photo{
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
}

/* 箇条書き：左カラム、2行目 */
.point.point--reverse .point__body{
  grid-column: 1;
  grid-row: 2;
}

/* SPは縦積みに戻す */
@media (max-width: 999px){
  .point.point--reverse{
    grid-template-columns: 1fr;
  }
  .point.point--reverse .photo{
    grid-column: 1;
    grid-row: 2;
  }
  .point.point--reverse .point__body{
    grid-column: 1;
    grid-row: 3;
  }
}



.bullets2{
  margin: -70px auto 0;
  padding-left: 18px;
  color:#666;
  font-size: 13px;
  line-height: 1.9;
}

@media (max-width: 999px){
  .bullets2{
    margin: 10px auto 0;   /* -70px を無効化 */
  }
}



/* ===== Message ===== */
.messageCard{
  background: var(--paper);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 20px rgba(0,0,0,.05);

  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  align-items: center;
}

.messageCard__label{
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #666;
}
.messageCard__title{
  margin: 0 0 8px;
  font-size: 16px;
  color: #555;
}
.messageCard__text p{
  margin: 0 0 8px;
  font-size: 13px;
  color: #666;
  line-height: 1.9;
}
.messageCard__sign{
  margin-top: 6px;
  font-size: 12px;
  color: #777;
}

.messageCard__photo{
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  background: #eee;
}
.messageCard__photo img{
  width: 100%;
  height: 200px;
  object-fit: cover;
  display:block;
}

/* ===== FAQ（Open/Close） ===== */
.faqBox{
  background: var(--paper);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,.05);
  overflow: hidden;
}

.faqItem{ border-top: 1px solid rgba(0,0,0,.06); }
.faqItem:first-child{ border-top: 0; }

.faqQ{
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  font-size: 13px;
  font-weight: 700;
  color: #555;
}
.faqQ::-webkit-details-marker{ display:none; }

.faqQ::after{
  content: "＋";
  font-weight: 900;
  color: var(--mint);
}
.faqItem[open] .faqQ::after{ content:"－"; }

.faqA{
  padding: 0 14px 12px;
  font-size: 13px;
  color: #666;
  line-height: 1.9;
}

.faqNote{
  margin: 10px 0 0;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 999px){
  .messageCard{ grid-template-columns: 1fr; }
  .messageCard__photo img{ height: 220px; }
}



/* ===== 中間サイズ（1000〜1180px）ナビ縮小 ===== */
@media (max-width: 1180px) and (min-width: 1000px){
  .nav{ gap: 4px; font-size: 11px; }
  .nav a{ padding: 6px 4px; }
  .header__cta{ padding: 6px 10px; font-size: 11px; }
  .logo__text{ font-size: 18px; }
}

/* CTA：基本（PC） */
.header__cta{
  white-space: nowrap;
}

.cta--sp{ display: none; }
.cta--pc{ display: inline-flex; }

/* ===== ハンバーガーボタン ===== */
.hamburger{
  display: none;            /* PCでは非表示 */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger__line{
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
/* ×に変形 */
.hamburger.is-open .hamburger__line:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-open .hamburger__line:nth-child(2){
  opacity: 0;
}
.hamburger.is-open .hamburger__line:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== ドロワーメニュー ===== */
.drawer{
  display: none;            /* PCでは非表示 */
}

/* SP */
@media (max-width: 999px){
  .cta--pc{ display: none; }
  .cta--sp{ display: flex; }

  .hamburger{ display: flex; }

  .drawer{
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
    padding: 0 20px;
    background: rgba(244,243,238,.96);
    border-top: 1px solid rgba(0,0,0,.06);
  }
  .drawer.is-open{
    max-height: 500px;
    padding: 12px 20px 16px;
  }

  .drawer a{
    padding: 10px 4px;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid rgba(0,0,0,.06);
  }
  .drawer a:last-child{ border-bottom: none; }

  .drawer__cta{
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    border-bottom: none !important;
  }
}
