@charset "UTF-8";

/* =====================
   Base / Reset
===================== */
:root{
  --ink:#222;
  --muted:#666;
  --panel: rgba(255,255,255,.82);

  --deep:#1B0B35;
  --navy:#00003D;

  --accent:#e38b3a;
  --kairos:#1B0B35;

  --line: rgba(0,0,0,.10);
}

.btn_aplly--general{
  color:#fff !important;
}

.btn_aplly--general:hover{
  background:#c8651e !important;
  border-color:#c8651e !important;
  color:#fff !important;
}

*{ box-sizing:border-box; }
html, body{ height:100%; }
body{
  margin:0;
  background-color:#f6f5df;
  background-image: url(../images/ast02_2x_02.jpg);
  background-repeat: repeat;
  background-position: center top;
  background-size: 765px auto;
  color: var(--ink);
}

main{
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
}

img{ max-width:100%; height:auto; vertical-align:middle; }
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:none; }

h1,h2,h3,h4{
  margin:0;
  padding:0;
  text-align:center;
}
h3{ font-size:2rem; margin-bottom:30px; }
h4{ font-size:1.6rem; margin-bottom:20px; }

.container{ padding-top:30px; padding-bottom:30px; }
.row{ margin: 30px 0; }

.fw_b{ font-weight:bold!important; }
.fs_md{ font-size:1.25rem!important; }
.fs_lg{ font-weight:bold!important; font-size:1.3rem!important; }

.a-date{
  font-family: "游ゴシック Medium","Yu Gothic Medium","游ゴシック体","YuGothic","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ","Meiryo","verdana",sans-serif;
  font-size: 1.05rem;
}

/* =====================
   Layout wrapper
===================== */
.mainWrap{
  width: min(762px, 100%);
  margin: 0 auto;
  background-color: var(--panel);
  overflow-x: hidden;
}

/* =====================
   Mini header (HOMEへ戻るのみ)
===================== */
.miniHeader{
  position: sticky;
  top: 0;
  z-index: 30;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  padding: 12px 14px;
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.backLink{
  display:inline-block;
  font-size: 14px;
  background: var(--navy);
  color:#fff;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--navy);
  white-space:nowrap;
}
.backLink:hover{
  background: rgba(255,255,255,.70);
  color: var(--navy);
}

/* =====================
   Main visual
===================== */
section.mainVisual{
  text-align:center;
  padding-bottom: 10px;
}
.title-wrap{
  width: 667px;
  max-width: 100%;
  margin: 0 auto;
}
.title-wrap p{
  color: var(--deep);
  line-height: 1.25;
}
.title-wrap-safe{
  padding-left: clamp(12px, 4vw, 24px);
  padding-right: clamp(12px, 4vw, 24px);
}
.p-image_wrap{ overflow-x:hidden; }
.p-image_wrap img{
  display:block;
  margin: 0 auto;
  border-radius: 10px;
}

/* =====================
   CTA Button (base)
===================== */
.btn_aplly{
  width: min(670px, 100%);
  border: solid 3px var(--accent);
  border-radius: 12px;
  padding: 14px 14px;
  margin: 0 auto;
  background-color: var(--accent);
  color: #fff;
  display: block;
  text-align:center;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif;
  line-height: 1.2;
  box-shadow: 0 10px 26px rgba(0,0,0,.12);
}
.btn_aplly:hover{
  color:#fff;
  background:#000;
  border-color:#000;
}
.btn_aplly span{
  font-size: clamp(18px, 4.8vw, 34px);
  font-weight: 800;
  letter-spacing: .02em;
}
.btn_aplly--small{
  width: min(420px, 100%);
  padding: 12px 12px;
}
.btn_aplly--small span{
  font-size: clamp(16px, 4.6vw, 26px);
}

/* 一般（赤） */
.btn_aplly--general{
  background: var(--accent);
  border-color: var(--accent);
  color:#fff;
}
.btn_aplly--general:hover{
  background:#000;
  border-color:#000;
}

/* カイロス（紫） */
.btn_aplly--kairos{
  background: var(--kairos);
  border-color: var(--kairos);
  color:#fff;
}
.btn_aplly--kairos:hover{
  background:#2b1550;
  border-color:#2b1550;
}

/* =====================
   Quick info card
===================== */
.quickInfo{ padding: 18px 0 0; }

.quickCard{
  width: min(700px, 100%);
  margin: 0 auto;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
}

.quickGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.quickItem{
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.70);
  padding: 12px 12px;
  text-align:left;
}
.quickItem--full{
  grid-column: 1 / -1;
}
.quickLabel{
  margin:0;
  font-weight: 800;
  color: var(--deep);
  font-size: 13px;
  letter-spacing:.05em;
}
.quickValue{
  margin: 6px 0 0;
  font-weight: 700;
  color: #111;
  line-height: 1.35;
}
.quickSub{
  font-weight: 500;
  color: var(--muted);
  font-size: 13px;
}
.ctaRow{ margin-top: 14px; }
.ctaNote{
  margin: 10px 0 0;
  font-size: 12.5px;
  color: var(--muted);
}

/* 2ボタン */
.ctaRow--double{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:18px;
}

/* =====================
   Purple Frame (border-image)
===================== */
.framed-block{
  width: 100%;
  margin: 0 auto;
  color: #fff;

  border-style: solid;
  border-width: clamp(18px, 4vw, 34px);
  border-image-source: url(../images/080a_03.png);
  border-image-slice: 60 fill;
  border-image-repeat: stretch;
  background: rgba(0,0,0,0);
}
.frame-inner{
  width: min(600px, 92%);
  margin: 0 auto;
  padding: 40px 0 106px;
  line-height: 1.9;
}
.is-readable p{ margin: 0 0 1rem; }

.softHr{
  border:0;
  height:1px;
  background: rgba(255,255,255,.18);
  margin: 22px 0;
}

.kagami-greeting{
  line-height: 1.95;
  letter-spacing: .02em;
}
.kagami-greeting p{ margin: 0 0 1rem; }
.kagami-greeting p.text-right{ margin-top: .25rem; }

.miniCtaInFrame{
  margin-top: 18px;
  text-align:center;
}

/* =====================
   Profile cards
===================== */
section.profileArea{
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif;
  padding-bottom: 20px;
}
section.profileArea .row{
  width: min(700px, 100%);
  margin: 0 auto;
}
section.profileArea .contact_btn{
  margin: 36px 0 10px;
}

.profile-card{
  background:#fff;
  border-radius:22px;
  padding:28px;
  margin:24px 0;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.08);
}
.profile-grid{
  display:grid;
  grid-template-columns:170px 1fr;
  gap:24px;
  align-items:center;
}
.profile-photo img{
  width:clamp(120px,16vw,170px);
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:18px;
  box-shadow:0 10px 26px rgba(0,0,0,.08);
}
.profile-body,
.profile-name,
.profile-text{ text-align:left; }

.profile-name strong{
  position:relative;
  display:inline-block;
}
.profile-name strong::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:100%;
  height:10px;
  background: #F3F315;
  opacity:.9;
  z-index:-1;
}
.profile-text{
  margin: 12px 0 0;
  line-height: 1.75;
  color:#222;
}

/* =====================
   Contents area
===================== */
section.contentsArea{
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif;
  line-height: 1.95;
}
.footer-text{
  text-align: center;
  padding: 24px 12px 40px;
  font-size: 0.9rem;
  color: #fff;
}
.summaryList{
  width: 100%;
  margin: 18px auto 0;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  overflow:hidden;
}
.summaryRow{
  display:grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.summaryRow:last-child{ border-bottom:0; }
.summaryKey{
  font-weight: 800;
  letter-spacing:.06em;
  color: rgba(255,255,255,.92);
}
.summaryVal{
  color: rgba(255,255,255,.92);
}

section.contentsArea ul{
  font-size: 0.92rem;
  margin: 16px 0 0 18px;
  padding:0;
}
section.contentsArea ul li{
  line-height: 1.75rem;
  margin: 8px 0;
}

/* =====================
   Footer / Pagetop
===================== */
footer{
  border-top: solid 1px #7D6D00;
  background: rgba(255,255,255,.75);
}
footer .footer-inner{
  text-align:center;
  width:100%;
  margin:auto;
  padding: 18px 0;
}

#pagetop{
  position:fixed;
  right:20px;
  bottom:10px;
  cursor:pointer;
  z-index: 25;
}

/* =====================
   Sticky CTA (SP) - 2 buttons
===================== */
.cta-sticky{ display:none; }

/* =====================
   Responsive
===================== */
@media (max-width: 600px){

  h3{ font-size: 1.65rem; }
  h4{ font-size: 1.25rem; }
  .container{ padding-left:16px; padding-right:16px; }

  .quickGrid{ grid-template-columns: 1fr; }
  .quickItem--full{ grid-column:auto; }

  .frame-inner{ padding: 34px 0 70px; }

  .profile-grid{ grid-template-columns: 1fr; }
  .profile-photo img{
    width:100%;
    max-width:320px;
    margin: 0 auto;
    display:block;
  }
  .profile-card{
    padding: 18px;
    border-radius: 18px;
  }

  .summaryRow{ grid-template-columns: 86px 1fr; }

  /* 申込ボタンはスマホで必ず1行 */
  .btn_aplly,
  .btn_aplly span{
    white-space: nowrap;
    letter-spacing: 0;
  }
  .btn_aplly span{ font-size: 16px; } /* 15〜17pxで調整可 */

  /* pagetopがCTAと被りやすいので上げる */
  #pagetop{ bottom: 82px; right: 12px; }
  #pagetop img{ width: 52px; }

  /* SP固定CTA */
  .cta-sticky{
    display:block;
    position:fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    padding: 10px 12px;
    background: rgba(255,255,255,.88);
    border-top: 1px solid rgba(0,0,0,.10);
    backdrop-filter: blur(8px);
  }
  .cta-sticky__grid{
    width: min(520px, 100%);
    margin: 0 auto;
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .cta-sticky__btn{
    display:block;
    text-align:center;
    padding: 12px 10px;
    border-radius: 14px;
    color:#fff;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 12px 24px rgba(0,0,0,.16);
  }
  .cta-sticky__btn--general{ background: var(--accent); }
  .cta-sticky__btn--kairos{ background: var(--kairos); }

  .cta-sticky__btn--general:hover,
  .cta-sticky__btn--kairos:hover{
    background:#000;
    color:#fff;
  }
}

/* Accessibility helper */
.sr-only{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}

/* =========================
   Final tweaks:
   - navbar を枠画像と同系の紫に
   - SP固定CTAの「後ろ」は紺にしない & 透明化を防止
   ========================= */

/* navbar（miniHeader）を枠画像と同系の紫へ */
.miniHeader{
  background: var(--deep) !important; /* 枠の紫と合わせる */
  border-bottom: 1px solid rgba(255,255,255,.18) !important;
}

/* HOMEへ戻る：紫ヘッダー上で読めるように（上品な白抜き） */
.backLink{
  background: rgba(255,255,255,.14) !important;
  border-color: rgba(255,255,255,.30) !important;
  color: #fff !important;
}
.backLink:hover{
  background: rgba(255,255,255,.22) !important;
  color: #fff !important;
}

/* SP固定CTA：後ろは紺にしない（白系）＋ ボタンが透明にならないように背景を強制 */
@media (max-width: 600px){
  .cta-sticky{
    background: rgba(255,255,255,.88) !important; /* ← 紺にしない */
    border-top: 1px solid rgba(0,0,0,.10) !important;
  }
  .cta-sticky__btn{
    background: var(--accent) !important; /* ← 透明化対策（1ボタンでも効く） */
    color:#fff !important;
  }
}

/* 新会長コピーを格上げ */
.a-date{
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: #1B0B35;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

/* 下ライン（上品な強調） */
.a-date::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:0;
  width: 60%;
  height: 2px;
  background: linear-gradient(to right, transparent, #e38b3a, transparent);
}

.a-date strong{
  color:#e38b3a;
  font-weight:800;
}

.no-wrap{
  white-space: nowrap;
}

@media (max-width:600px){
  .a-date{
    white-space: nowrap;
    font-size: clamp(14px, 4vw, 16px);
    letter-spacing: .04em;
  }
}

/* グランドセクスタイル図 */

.aspect-image{
  text-align:center;
  margin: 26px auto 34px;
}

.aspect-image img{
  width: min(320px, 85%);
  border-radius: 14px;
  background:#fff;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

/* 図の上の説明1行 */
.aspect-title{
  text-align:center;
  font-weight:700;
  font-size:14px;
  letter-spacing:.08em;
  margin: 6px 0 12px;
  color: rgba(255,255,255,.82); /* 紫フレーム内用 */
}

.ctaRow--double form{
  margin: 0;
}

.ctaRow--double form .btn_aplly{
  width: 100%;
}

/* =========================
  上部ポイント表示
========================= */
.top-point-box{
  width: 100%;
  margin: 28px 0 34px;
}

.top-point-box__inner{
  max-width: 920px;
  margin: 0 auto;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.top-point-box__inner p{
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #222;
  font-weight: 500;
}

.top-point-box__inner p + p{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,.08);
}

@media (max-width: 767px){
  .top-point-box{
    margin: 22px 0 28px;
  }

  .top-point-box__inner{
    padding: 14px 14px;
    border-radius: 12px;
  }

  .top-point-box__inner p{
    font-size: 14px;
    line-height: 1.8;
  }
}