/* ====== ベース====== */
:root{
  --orange:#d85b00;
  --orange2:#ef7b00;
  --beige:#f3d8a6;
  --paper:#ffffff;
  --ink:#111;
  --muted:#444;
  --line:#d8d8d8;
  --sky:#2ea3da;      /* 青ボタン系 */
  --soft:#f7edd8;     /* 背景の薄いクリーム */
  --yellow:#f2c43b;   /* タブ（トークセッション） */
  --radius:18px;
  --wrap:980px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@keyframes headerFade{
  from{ opacity:0; }
  to{ opacity:1; }
}
.backToTop{
  position:fixed;
  right:20px;
  bottom:20px;
  width:56px;
  height:56px;
  border-radius:999px;
  background:#fff;
  border:2px solid var(--orange);
  color:var(--orange);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  text-decoration:none;
  box-shadow:0 8px 18px rgba(0,0,0,.15);
  transition:background .2s, color .2s;
}
.backToTop:hover{
  background:var(--orange);
  color:#fff;
}
html,body{ height:100%; }
body{
  margin:0;
  font-family: "Neo Sans Std", sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.75;
}
a{ color:inherit; }
.wrap{
  width:100%;
  max-width:calc(var(--wrap) + 32px);
  margin-inline:auto;
  padding-inline:16px;
}

/* ====== トップナビ（オレンジ帯＋右端の青いCTA） ====== */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:var(--orange);
  opacity:0;
  animation: headerFade 0.8s ease forwards;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
}
.topnav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  padding:14px 0;
  flex:1;
}
.topnav a{
  color:#fff;
  text-decoration:none;
  font-weight:800;
  font-size:18px;
  letter-spacing:.01em;
  white-space:nowrap;
}
.topnav__cta{
  background:var(--sky);
  color:#fff !important;
  padding:14px 22px;
  border-radius:24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:140px;
  box-shadow:0 8px 0 rgba(0,0,0,.08) inset;
}
.topnav__cta--mobile{
  display:none;
}
.navToggle{
  display:none;
  width:46px;
  height:46px;
  border-radius:999px;
  border:none;
  background:#fff;
  color:var(--orange);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}
.navToggle__line{
  width:24px;
  height:3px;
  background:var(--orange);
  display:block;
  border-radius:2px;
  transition:transform .2s;
}

/* ====== HERO ====== */
.hero{
  margin:0;
  padding:0;
}
.hero__inner{
  width:100vw;
  max-width:none;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  padding:0;
}
.heroImage{
  margin:0;
  width:100%;
  border-radius:0;
  overflow:hidden;
  background:#fff;
}
.heroImage__img{
  width:100%;
  height:auto;
  display:block;
}
.hero__note{
  width:min(var(--wrap), calc(100% - 32px));
  margin:0 auto;
  font-weight:900;
  color:#333;
  text-align:right;
  font-size:14px;
  padding:10px 0;
}

/* ====== 日時・会場（ベージュ帯） ====== */
.dateband{
  background:var(--beige);
  padding:24px 0 30px;
}
.dateband__inner{ text-align:center; }
.dateband__date{
  margin:0;
  font-size:0;
  --dateband-size:80px;
  font-weight:1000;
  letter-spacing:-.02em;
}
.dateband__date span{
  display:inline-block;
  line-height:1;
  font-weight:700;
}
.dateband__num{
  font-size:var(--dateband-size);
  font-weight:1000;
}
.dateband__text{
  font-size:calc(var(--dateband-size) * .5);
  font-weight:900;
}
.dateband__meta{
  margin:4px 0 0;
  font-weight:700;
  font-size:27px;
}

@media (max-width: 600px){
  .dateband__date{
    --dateband-size:60px;
  }
}

.btnImage{
  margin:18px auto 20px;
  display:block;
  text-decoration:none;
  width:min(580px, 100%);
}
.btnImage img{
  width:100%;
  display:block;
}

/* ====== セクション共通 ====== */
.section{ padding:52px 0; }
.section#join{
  padding-top:30px;
}
.section#access .wrap{
  width:min(620px, 100%);
}
.section--soft{ background:#fff; }
#stage.section{
  padding-top:20px;
}

.h2{
  margin:0 0 18px;
  font-size:36px;
  font-weight:1000;
}
.h2--center{ text-align:center; }
.h2--orange{ color:var(--orange); }

.aboutLead{
  text-align:center;
  font-weight:500;
  font-size:30px;
  margin:8px 0 0px;
}
.paper{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:22px;
}

/* タブ見出し（オレンジ／黄色／ベージュ） */
.tabTitle{
  display:flex;
  justify-content:center;
  align-items:center;
  font-weight:1000;
  padding:14px 20px 0;
  border-radius:0;
  width:100vw;
  margin:26px calc(50% - 50vw) 18px;
}
.section#access .tabTitle{
  margin-top:0;
}
.tabTitle--orange{
  background:#fde1b0;
  color:#fff;
  padding:40px 0 0;
  align-items:flex-end;
}
.tabTitle--yellow{
  background:#fff;
  color:#111;
  padding:36px 0 0;
  border-bottom:8px solid #f2c43b;
}
.tabTitle--exercise{
  border-bottom-color:#fde1b0;
}
.tabTitle--beige{ background:#fde1b0; color:#111; }
.tabTitle--orange .tabTitle__label{
  display:inline-block;
  background:var(--orange);
  padding:16px 72px;
  border-radius:20px 20px 0 0;
  font-size:24px;
  font-weight:900;
  letter-spacing:.05em;
}
.tabTitle--purpose{
  width:100%;
  margin:0;
  background:#fff;
}
.tabTitle--purpose .tabTitle__label{
  width:min(620px, 100%);
  margin-inline:auto;
  display:block;
  text-align:center;
}
.tabTitle--yellow .tabTitle__label{
  display:inline-block;
  padding:18px 90px 14px;
  border-radius:24px 24px 0 0;
  background:#f2c43b;
  font-size:24px;
  font-weight:900;
  color:#111;
}
.tabTitle--exercise .tabTitle__label{
  background:#fde1b0;
}
.tabTitle--talk{
  width:min(900px, 100%);
  margin:26px auto 18px;
  border-radius:20px 20px 0 0;
  align-items:flex-end;
}
.tabTitle--talk .tabTitle__label{
  white-space:nowrap;
}

/* ====== タイムスケジュール ====== */
.scheduleCard{
  background:#fff;
  border-radius:16px;
  padding:18px 24px;
}
.scheduleImage{
  margin:0;
  border-radius:14px;
  overflow:hidden;
  padding:60px 0;
}
.scheduleImage img{
  display:block;
  width:100%;
  height:auto;
}
.scheduleImage__note{
  margin:14px 0 0;
  text-align:center;
  font-size:14px;
  font-weight:900;
  color:#555;
}

/* ====== 詳細カード群（トーク／運動） ====== */
.featureTalk{
  background:#fff7e4;
  padding:18px;
  width:100%;
  max-width:900px;
  margin-inline:auto;
  box-sizing:border-box;
}
.featureTalk__time{
  margin:0;
  color:var(--orange);
  font-weight:600;
  font-size:16px;
}
.featureTalk__ttl{ margin:6px 0 8px; font-weight:1000; font-size:22px; }
.featureTalk__divider{
  height:2px;
  width:100%;
  margin:12px 0 16px;
  background:rgba(0,0,0,.15);
  border-radius:999px;
}
.featureTalk__lead{ margin:0; font-weight:1000; color:var(--orange); font-size:27px; }
.featureTalk__desc{ margin:6px 0 10px; font-weight:900; }
.featureTalk__hosts{ margin:0 0 14px; color:#333; font-weight:800; font-size:13px; }

.featureTalk__body{
  display:grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap:12px;
  align-items:start;
}
.featureTalk__photo{
  border-radius:12px;
  background:rgba(0,0,0,.12);
  width:100%;
  max-width:380px;
  display:block;
  overflow:hidden;
  margin:0 auto;
}
.featureTalk__photo img{
  width:100%;
  height:auto;
  object-fit:cover;
  display:block;
}
.featureTalk__profile h4{
  margin:0 0 8px;
  font-weight:1000;
  font-size:16px;
}
.featureTalk__profile p{
  margin:0;
  color:#333;
  font-weight:800;
  font-size:16px;
  line-height:1.9;
}

.talkGrid{
  margin-top:16px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  width:min(900px, 100%);
  margin-inline:auto;
}
.talkCard{
  background:#fff7e4;
  border-radius:0;
  border:none;
  padding:16px;
}
.talkCard__time{
  margin:0;
  color:var(--orange);
  font-weight:600;
  font-size:16px;
}
.talkCard__ttl{ margin:6px 0 8px; font-weight:1000; font-size:20px; }
.talkCard__divider{
  height:1px;
  background:rgba(0,0,0,.2);
  margin:10px 0 14px;
}
.talkCard__meta{ font-size:13px; color:#333; font-weight:700; }
.talkCard__meta br{ display:block; margin-top:4px; }
.talkCard__photos{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(140px, 1fr));
  gap:10px;
  justify-items:center;
}
.ph{
  width:100%;
  max-width:170px;
  background:transparent;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding:8px;
  margin:0 auto;
  gap:8px;
}
.ph img{
  width:100%;
  height:auto;
  max-height:170px;
  object-fit:cover;
  display:block;
}
.ph__caption{
  margin-top:8px;
  font-size:12px;
  font-weight:700;
  color:#333;
  text-align:center;
  display:block;
}

.moveCard{
  background:#fff7e4;
  padding:18px;
  width:min(900px, 100%);
  margin-inline:auto;
  margin-bottom:60px;
}
.moveCard__time{
  margin:0;
  color:var(--orange);
  font-weight:600;
  font-size:16px;
}
.moveCard__ttl{ margin:8px 0 10px; font-weight:1000; font-size:20px; }
.moveCard__divider{
  height:1px;
  width:100%;
  background:rgba(0,0,0,.2);
  margin:10px 0 18px;
}
.moveCard__body{
  display:grid;
  grid-template-columns: 160px 1fr;
  gap:20px;
}
.moveCard__photo{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  width:150px;
}
.moveCard__photo img{
  width:150px;
  height:150px;
  display:block;
  object-fit:cover;
}
.moveCard__meta{
  margin:0 0 8px;
  font-weight:700;
  color:#333;
  font-size:13px;
}
.moveCard__desc{
  margin:0;
  font-weight:700;
  color:#333;
  font-size:16px;
  line-height:1.8;
}

.noticeLine{
  text-align:center;
  color:var(--orange);
  font-weight:1000;
  font-size:24px;
  margin:18px 0 6px;
}
.fineprint{
  margin:0;
  text-align:center;
  font-size:12px;
  color:#333;
  font-weight:800;
}
.joinCard .fineprint--orange{
  color:#E74F00;
  font-size:13px;
}

.fineprint--spaced{
  margin-bottom:30px;
}

/* ====== 参加型プログラム ====== */
.joinStack{ display:grid; gap:16px; }
.section#join .joinStack{
  margin-top:60px;
  width:min(900px, 100%);
  margin-inline:auto;
  gap:40px;
}
.section#join .joinStack{
  margin-top:60px;
}
.joinCard{
  border:2px solid var(--orange);
  border-radius:14px;
  padding:18px;
  background:#fff;
}
.joinCard__ttl{
  margin:0 0 10px;
  font-weight:600;
  color:var(--orange);
  display:flex;
  align-items:center;
  gap:10px;
}
.joinNo{
  width:26px;
  height:26px;
  border-radius:999px;
  background:var(--orange);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:1000;
  font-size:14px;
}
.joinCard p{
  margin:0;
  font-weight:600;
  color:#333;
}
.joinCard__textPalt{
  font-feature-settings:"palt";
}
.consultExample{
  color:#E74F00;
}

.cityline{
  margin-top:0;
  border-radius:0;
  overflow:hidden;
  border:none;
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-bottom:0;
}
.cityline__image{
  display:block;
  width:100%;
  height:auto;
}

/* ====== アクセス ====== */
.accessAddr{
  margin:14px 0 18px;
  font-weight:600;
  font-size:14px;
  text-align:center;
}
.accessAddr__link{ color:#2EA7E0; }
.mapBox{
  display:flex;
  flex-direction:column;
  gap:14px;
  width:min(620px, 100%);
  margin-inline:auto;
}
.mapImg{
  background:rgba(0,0,0,.10);
  display:block;
  border-radius:0;
  border:none;
}
.mapImg img{
  width:100%;
  height:auto;
  display:block;
}
.mapImg--wide{ height:auto; }

.accessGrid{
  margin-top:16px;
  display:grid;
  gap:12px;
}
.accessItem{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap:12px;
  align-items:stretch;
}
.accessLabel{
  background:var(--sky);
  color:#fff;
  font-weight:1000;
  display:grid;
  place-items:center;
  text-align:center;
  padding:14px 10px;
  line-height:1.2;
  font-size:14px;
}
.accessText{
  background:#fff;
  padding:14px 14px;
  font-weight:700;
  font-size:16px;
  color:#333;
}

.purpose{
  margin-top:22px;
  background:#fff;
  width:min(620px, 100%);
  margin-inline:auto;
}
.purpose__heading{
  width:100vw;
  margin-left:calc(50% - 50vw);
  padding:18px;
  font-size:22px;
  font-weight:900;
  text-align:center;
  background:#FDE1B0;
  border-bottom:none;
}
.purpose__body{
  padding:16px;
  margin-top:40px;
}
.purpose__body p{
  width:min(620px, 100%);
  margin:0 auto;
}
/* ====== フッター ====== */
.footer{
  background:var(--beige);
  padding:22px 0 26px;
  width:100vw;
  margin-left:calc(50% - 50vw);
}
.footer__inner{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:40px;
  align-items:start;
}
.footer__logos{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-height:120px;
}
.footer__logo{
  width:100%;
  height:auto;
  display:block;
  max-width:300px;
}
.footer__search,
.footer__copy{
  font-size:13px;
  font-weight:500;
  text-align:center;
}
.footer__contactTtl,
.footer__contactBody{
  font-size:13px;
  font-weight:500;
  text-align:left;
}
.footer__contactTtl{ margin:0 0 6px; }
.footer__contactBody{ margin:0; }
.footer__sns{
  margin-top:16px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footer__snsLinks{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.footer__snsLink{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:4px 10px;
  border-radius:5px;
  font-weight:600;
  font-size:12px;
  color:#fff;
  text-decoration:none;
  background:#E74F00;
  transition:background .2s, color .2s;
}
.footer__snsLink--image{
  padding:0;
  border-radius:0;
  background:transparent;
  border:none;
}
.footer__snsLink--image img{
  display:block;
}
.footer__snsLink--x img{
  width:auto;
  height:22px;
}
.footer__snsLink--fb img{
  width:auto;
  height:22px;
}
@media (min-width: 901px){
  .footer__snsLink--x img,
  .footer__snsLink--fb img{
    width:auto;
    height:22px;
  }
}
.footer__snsLink:hover,
.footer__snsLink:focus-visible{
  background:#fff;
  color:#E74F00;
}
.footer__snsLink--image:hover,
.footer__snsLink--image:focus-visible{
  background:transparent;
  color:inherit;
}
.footer__copy{
  grid-column:1 / -1;
  margin-top:0;
  text-align:center;
}
.footer__policyLink{
  display:inline-block;
  margin-bottom:2px;
  font-size:13px;
  font-weight:500;
  color:#111;
  text-decoration:none;
}

@media (max-width: 900px){
  .footer__inner{
    grid-template-columns:1fr;
  }
  .footer__contactTtl,
  .footer__contactBody{
    text-align:center;
  }
  .footer__sns{
    align-items:center;
  }
  .footer__snsLinks{
    justify-content:center;
  }
}

/* ====== レスポンシブ ====== */
@media (max-width: 1024px){
  .featureTalk__body{
    grid-template-columns:1fr;
  }
  .featureTalk__photo{
    max-width:100%;
  }
}
@media (max-width: 700px){
  .tabTitle--talk{
    width:min(900px, 100%);
    margin:26px auto 18px;
  }
  .tabTitle--talk .tabTitle__label{
    font-size:20px;
    padding:14px 60px 12px;
  }
  .moveCard__body{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
  .moveCard__photo{
    align-items:center;
    text-align:center;
  }
  .moveCard__text{
    text-align:left;
  }
}
@media (max-width: 860px){
  .topbar__inner{
    justify-content:space-between;
    padding:10px 0;
    gap:10px;
  }
  .navToggle{
    display:flex;
    width:52px;
    height:52px;
  }
  .topnav{
    display:none;
    flex-direction:column;
    gap:12px;
    width:100%;
    padding:12px 0 0;
  }
  .topnav.is-open{
    display:flex;
  }
  .topnav .topnav__cta{
    display:none;
  }
  .topnav__cta--mobile{
    display:inline-flex;
    width:auto;
    margin-left:auto;
  }
  .scheduleCard{ padding:18px; }
  .scheduleImage{ min-height:260px; }
  .talkGrid{ grid-template-columns: 1fr; }
  .moveCard__body{ grid-template-columns: 1fr; }
  .accessItem{ grid-template-columns: 1fr; }
  .accessLabel{ justify-self:stretch; }
}
.stageIntro{
  margin-top:40px;
  width:min(900px, 100%);
  margin-inline:auto;
  font-size:18px;
  font-weight:500;
  line-height:1.8;
}

@media (max-width: 600px){
  .talkCard__photos{
    grid-template-columns:1fr;
  }
}
