@charset "UTF-8";
/* =============================
   Reset
============================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
img,
button {
  margin: 0;
  padding: 0;
}

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

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

/* rem計算 */
/* =============================
   Variables
============================= */
/* =============================
   Fonts: MOBO
   （同じ階層に woff / woff2 を置く想定）
============================= */
@font-face {
  font-family: "MOBO";
  src: url("../fonts/MOBO-Regular.woff2") format("woff2"), url("../fonts/MOBO-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MOBO";
  src: url("../fonts/MOBO-ExtraLight.woff2") format("woff2"), url("../fonts/MOBO-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MOBO";
  src: url("../fonts/MOBO-SemiBold.woff2") format("woff2"), url("../fonts/MOBO-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MOBO";
  src: url("../fonts/MOBO-Bold.woff2") format("woff2"), url("../fonts/MOBO-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* =============================
   Global
============================= */
body {
  color: #222;
  font-family: "MOBO", "Noto Sans JP", sans-serif;
  line-height: 1.3;
  text-rendering: optimizeLegibility;
}

/* =============================
   Layout Helper
============================= */
.l-inner {
  max-width: 800px;
  margin-inline: auto;
  background-color: #fffbd0;
  padding-inline: 0.9375rem;
  padding-block-start: 0.625rem;
  padding-block-end: 1.25rem;
}

/* =============================
   Font Utilities（MOBO / Noto切替）
============================= */
/* 強制MOBO（タイトルなど） */
.f-mobo {
  font-family: "MOBO", sans-serif;
}

/* 強制Noto Sans JP（本文・細かい文字） */
.f-noto {
  font-family: "Noto Sans JP", sans-serif;
}

/* rem計算 */
/* ============================
   ページヘッダー
============================ */
.page-header {
  position: relative;
  padding-inline: 0.9375rem;
  background-color: #fff;
  z-index: 9999;
  max-width: 50rem;
  margin-inline: auto;
}
.page-header__note {
  font-size: 0.75rem;
  line-height: 1.5;
  margin-bottom: 0.625rem;
}
.page-header__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 0.625rem;
}
.page-header__title {
  font-size: clamp(1.25rem, 5vw, 1.5rem);
  line-height: 1.3;
  white-space: nowrap;
  flex: 1 1 auto;
  margin-top: 0.1875rem;
}
.page-header__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.page-header__logo {
  display: block;
  height: clamp(1.0625rem, 6vw, 2.1875rem);
  width: auto;
}
.page-header__menu {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.375rem 0.3125rem 0.125rem;
  background: #0066ff;
  border-radius: 0.3125rem;
  color: #fff;
  transition: background 0.2s ease;
}
.page-header__menu-icon {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}
.page-header__menu-bar {
  width: 1.25rem;
  height: 0.125rem;
  border-radius: 999px;
  background: #fff;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.page-header__menu-label {
  font-size: 0.625rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

/* ハンバーガー → ✕ */
.is-nav-open .page-header__menu-bar:nth-child(1) {
  transform: translateY(0.4375rem) rotate(45deg);
}
.is-nav-open .page-header__menu-bar:nth-child(2) {
  opacity: 0;
}
.is-nav-open .page-header__menu-bar:nth-child(3) {
  transform: translateY(-0.4375rem) rotate(-45deg);
}

/* ============================
   オーバーレイ
============================ */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 90;
}

.is-nav-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* ============================
   グローバルナビ（MENUの下から出る）
============================ */
.global-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.25s ease;
  z-index: 100;
}

.is-nav-open .global-nav {
  transform: scaleY(1);
}

.global-nav__list {
  max-width: 50rem;
  margin: 0 auto;
}

.global-nav__item {
  padding-inline: 0.9375rem;
}
.global-nav__item:not(:last-child) {
  border-bottom: 1px solid #999; /* ← 省略形 */
}

.global-nav__link {
  display: flex;
  align-items: center;
  padding: 0.875rem 0;
  font-size: 0.9375rem;
}

/* 右端の ▶ を擬似要素で */
.global-nav__link--arrow {
  position: relative;
}
.global-nav__link--arrow::after {
  content: "▶";
  margin-left: auto;
  font-size: 0.75rem;
}

.fv {
  background-color: #fffbd0;
  padding-top: 1.25rem;
  max-width: 50rem;
  margin-inline: auto;
}

.program-card {
  background: #fff;
  border-radius: 0.875rem;
  padding: 0.9375rem;
  margin-top: 1.25rem;
  /* ===== 横並びレイアウト共通 ===== */
  /* 2列カード・3列アスリートカードで共通の箱 */
  /* 小さいプロフィールボタン（2列・3列で共通） */
  /* ピンク見出し用（まだなければ） */
}
.program-card:first-child {
  margin-top: 0;
}
.program-card__time {
  font-size: clamp(1.5rem, 4vw, 1.75rem);
  font-weight: bold;
  margin-bottom: 0.25rem;
}
.program-card__role {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.program-card__title-main {
  color: #ff0033;
  line-height: 1;
  font-weight: bold;
  letter-spacing: -0.1em;
  margin-bottom: 0.3125rem;
}
.program-card__name {
  font-size: 2rem;
}
.program-card__san {
  font-size: 0.75rem;
}
.program-card__talk {
  font-size: 1.5rem;
}
.program-card__subtitle {
  color: #ff0033;
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: -0.1em;
  margin-bottom: 0.875rem;
  line-height: 1.3;
}
.program-card__subtitle--purple {
  color: #9333ff;
}
.program-card__subtitle--blue {
  color: #0066ff;
  margin-bottom: 0.5rem;
}
.program-card__figure {
  margin: 0 0 0.625rem;
}
.program-card__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.program-card__desc {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0.625rem;
}
.program-card__link-wrap {
  text-align: right;
}
.program-card__link {
  display: block;
  width: 30%;
  margin-left: auto;
}
.program-card__row {
  display: flex;
  gap: 0.625rem;
  margin: 0.75rem 0 0.875rem;
}
.program-card__row--three {
  /* 3列専用の調整が必要ならここに追加 */
}
.program-card__item, .program-card__athlete {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.program-card__image-sm {
  width: 100%;
  display: block;
  border-radius: 0.5rem;
}
.program-card__caption {
  font-size: 0.75rem;
  line-height: 1.4;
}
.program-card__athlete-name {
  font-size: 0.875rem;
  line-height: 1.4;
}
.program-card__athlete-sport {
  font-size: 0.75rem;
}
.program-card__athlete-suffix {
  font-size: 0.75rem;
  margin-left: 0.125rem;
}
.program-card__link-sm {
  display: block;
  width: 62%;
  margin-left: auto;
}
.program-card__link-xs {
  display: block;
  width: 96%;
  margin: auto;
}
.program-card--narrow {
  width: 80%;
  margin-left: auto;
  margin-right: 0;
}
.program-card--narrow .program-card__image {
  width: 70%;
  margin: 0.625rem auto 0;
}
.program-card--with-image {
  width: 70%;
  margin-left: 0;
  margin-right: auto;
  background-color: #fff;
  border-radius: 0.875rem;
  padding: 0.9375rem;
  margin-top: 1.25rem;
}
.program-card__subtitle--pink {
  color: #e91e63;
  margin-bottom: 0.5rem;
}
.program-card .talkshow-txt {
  margin-bottom: 0.625rem;
}
.program-card .concert-txt {
  margin-bottom: 0.625rem;
}
.program-card .workshop-txt {
  margin-bottom: 0.625rem;
}

.program-card--bottom {
  position: relative;
}
.program-card--bottom::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  width: 22%;
  height: 100%;
  background-image: url("../img/fureai-plaza.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.program-card--bottom .fureai-txt {
  margin-bottom: 0.625rem;
}
.program-card--bottom .program-card__desc {
  margin-bottom: 0;
}

.program-card--bottom-left {
  position: relative;
}
.program-card--bottom-left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.625rem;
  width: 23%;
  height: 100%;
  background-image: url("../img/panel.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.program-card--bottom-left .program-card--with-image {
  margin-left: auto;
  margin-right: 0;
  width: 75%;
}
.program-card--bottom-left .panel-txt {
  margin-bottom: 0.625rem;
}
.program-card--bottom-left .program-card__desc {
  margin-bottom: 0;
}

.footer {
  /* 左側：青背景部分（20%） */
  /* 右側：TEL部分（80%） */
}
.footer .l-inner {
  background-color: #fff;
}
.footer__inner {
  display: flex;
  gap: 0.625rem;
  align-items: center;
}
.footer__inner:last-child {
  margin-top: 0.625rem;
}
.footer__left {
  color: #fff;
  flex: 0 0 35%;
  text-align: center;
}
.footer__left-main {
  font-size: 0.75rem;
  letter-spacing: -0.05em;
  background: #0066ff;
  display: block;
  padding: 0.5rem 0.3125rem;
  border-radius: 0.3125rem;
}
.footer__right {
  flex: 1;
}
.footer__tel {
  font-size: 1.125rem;
  font-weight: bold;
}
.footer__note {
  font-size: 0.75rem;
  color: #444;
}/*# sourceMappingURL=style.css.map */