@charset "utf-8";

@import url('https://unpkg.com/@phosphor-icons/web@2.1.1/src/regular/style.css');
@import url('https://unpkg.com/@phosphor-icons/web@2.1.1/src/bold/style.css');


/* ==========================================================================
   components.css — サイト全体で再利用するパーツ
   色・寸法は variables.css の変数のみを参照する。
   ========================================================================== */

/* --------------------------------------------------------------------------
   c-heading — セクション見出し（和文＋欧文サブ）
   -------------------------------------------------------------------------- */
.c-heading {
  --accent: var(--c-yellow);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.c-heading__ja {
  font-family: var(--ff-maru);
  font-size: var(--fz-3xl);
  font-weight: 500;
  line-height: var(--lh-tight);
  letter-spacing: .06em;
}

@media screen and (max-width: 767px) {
  .c-heading__ja {
    font-size: var(--fz-variable-3xl);
  }
}

.c-heading__accent {
  color: var(--accent);
  font-style: normal;
}

.c-heading__en {
  color: var(--accent);
  font-family: var(--ff-en);
  font-size: var(--fz-sm);
  font-weight: 500;
  letter-spacing: .18em;
  line-height: 1;
}

.c-heading--teal   { --accent: var(--c-teal); }
.c-heading--yellow { --accent: var(--c-yellow); }
.c-heading--blue   { --accent: var(--c-blue); }
.c-heading--pink   { --accent: var(--c-pink); }

/* --------------------------------------------------------------------------
   c-card — 記事カード
   白地・角丸なし・1px枠。内側に余白を取って画像を落とし込む。
   -------------------------------------------------------------------------- */
.c-card {
  display: flex;
  flex-direction: column;
  padding: 10px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  background: var(--c-white);
  transition: box-shadow var(--dur) var(--ease);
}

.c-card:hover {
  background: var(--c-pale-yellow);
}

.c-card:hover .c-card__thumb img {
  transform: scale(1.05);
}

.c-card__thumb {
  position: relative;
  aspect-ratio: 1280 / 670;
  overflow: hidden;
  border-radius: var(--r-sm);
}

.c-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.c-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px 8px 8px;
}

.c-card__title {
  font-size: var(--fz-variable-md);
  font-weight: 500;
  line-height: 1.6;
}

.c-card:hover .c-card__title {
  color: var(--c-teal);
}

.c-card__text {
  margin-top: 10px;
  color: var(--c-text-sub);
  font-size: var(--fz-sm);
  line-height: 1.8;
}

.c-card:hover .c-card__text {
  color: var(--c-teal);
}

.c-card__foot {
  margin-top: auto;
  padding-top: 18px;
  text-align: right;
}

/* サムネイル左上に載るカテゴリラベル（NEW CLIPS カード） */
.c-card__cat {
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z-base);
}

.c-card:hover {
  box-shadow: var(--shadow-card);
}

.c-card:hover .c-card__thumb img {
  transform: scale(1.05);
}

@media screen and (max-width: 767px) {
  .c-card__title {
    font-size: var(--fz-md);
  }
}

/* --------------------------------------------------------------------------
   c-readmore — 「Read more ❯」
   矢印は Phosphor の caret-circle-right。
   -------------------------------------------------------------------------- */
.c-readmore {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: var(--c-ink);
  font-family: var(--ff-en);
  font-size: var(--fz-variable-sm);
  letter-spacing: .06em;
  line-height: 1.2;
  transition: color .6s var(--ease);
}
.c-readmore::after {
  position: relative;
  top: .14em;
  font-family: "Phosphor" !important;
  font-size: 1.15em;
  line-height: 1;
  content: "\e122"; /* ph-caret-circle-right */
  transition: transform var(--dur) var(--ease);
}

/* 自身、または親の a にホバーしたとき */
a:hover .c-readmore,
.c-readmore:hover {
  color: var(--c-teal);
}

a:hover .c-readmore::after,
.c-readmore:hover::after {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   c-btn — 角丸ボタン（枠線・右端に矢印）
   -------------------------------------------------------------------------- */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-width: 280px;
  padding: 16px 24px 18px 32px;
  border: 1px solid var(--c-ink);
  border-radius: var(--r-pill);
  background: var(--c-white);
  color: var(--c-ink);
  font-size: var(--fz-variable-md);
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.4;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}

.c-btn__arrow {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: transform var(--dur) var(--ease);
}

.c-btn__arrow::before {
  font-family: "Phosphor" !important;
  content: "\e06c"; /* ph-arrow-right */
}

.c-btn:hover {
  background: var(--c-ink);
  color: var(--c-white);
}

.c-btn:hover .c-btn__arrow {
  transform: translateX(4px);
}

@media screen and (max-width: 767px) {
  .c-btn {
    font-size: var(--fz-md);
  }
}

/* --------------------------------------------------------------------------
   c-arrow — カルーセルの前後送り（淡い水色の丸）
   -------------------------------------------------------------------------- */
.c-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-pill);
  background: var(--c-arrow-bg);
  color: var(--c-teal);
  transition: background-color var(--dur) var(--ease);
}

.c-arrow::before {
  font-family: "Phosphor-Bold" !important;
  font-size: 18px;
  line-height: 1;
  content: "\e06c"; /* ph-arrow-right */
}

.c-arrow--prev::before { content: "\e058"; } /* ph-arrow-left */

.c-arrow:hover { background: #DDF0F3; }

.c-arrow:disabled,
.c-arrow[aria-disabled="true"] { opacity: .4; cursor: default; }

/* --------------------------------------------------------------------------
   c-dots — カルーセルのページネーション
   Swiper のクラスに載せる場合は front.css 側でブリッジする。
   -------------------------------------------------------------------------- */
.c-dots {
  display: flex;
  align-items: center;
  gap: 14px;
}

.c-dots__item {
  width: 10px;
  height: 10px;
  border-radius: var(--r-pill);
  background: var(--c-dot);
  transition: background-color var(--dur) var(--ease);
}

.c-dots__item.is-active { background: var(--c-teal); }

/* --------------------------------------------------------------------------
   c-tag — カテゴリラベル（お知らせ／開催レポート ほか）
   既定は枠線。塗りは --fill。色は data-cat から自動で切り替わる。
   -------------------------------------------------------------------------- */
.c-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 30px;
  padding: 0 14px;
  border: 1px solid var(--tag-color, var(--c-ink));
  border-radius: var(--r-tag);
  color: var(--tag-color, var(--c-ink));
  font-size: var(--fz-xs);
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1;
  white-space: nowrap;
}

.c-tag--fill {
  background: var(--tag-color, var(--c-ink));
  color: var(--c-white);
}

.c-tag[data-cat] { --tag-color: var(--cat-current); }

/* --------------------------------------------------------------------------
   c-hashtag — 「#自分らしく生きること」
   -------------------------------------------------------------------------- */
.c-hashtags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
}

.c-hashtag {
  color: var(--c-link);
  font-size: var(--fz-sm);
  letter-spacing: .02em;
}

/* --------------------------------------------------------------------------
   c-list-link — ドロワー／メガメニュー／Contents で共通の点付きリンク
   3箇所で同じ見た目を使うため、ここに集約する。
   -------------------------------------------------------------------------- */
.c-list-link {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--c-border-dot);
  font-size: var(--fz-base);
  line-height: 1.6;
  transition: color var(--dur) var(--ease);
  font-weight: 500;
}

.c-list-link::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: .55em;
  border-radius: var(--r-pill);
  background: var(--cat-current, var(--c-teal));
}

.c-list-link:hover { color: var(--cat-current, var(--c-teal)); }

/* --------------------------------------------------------------------------
   c-textlink — テキスト＋線の矢印（FV下部の About Us など）
   丸い矢印の c-readmore とは別物。
   -------------------------------------------------------------------------- */
.c-textlink {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: var(--fz-sm);
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.6;
}

.c-textlink::after {
  flex-shrink: 0;
  font-family: "Phosphor" !important;
  font-size: 22px;
  line-height: 1;
  content: "\e06c"; /* ph-arrow-right */
  transition: transform var(--dur) var(--ease);
}

.c-textlink:hover::after { transform: translateX(4px); }
