@charset "UTF-8";

/* ============================================================
   01. ページ基本
   ============================================================ */
.cas-mtg-page {
  color: #263e57;
  font-family:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.8;
  background: #ffffff;
}

.cas-mtg-page * {
  box-sizing: border-box;
}

.cas-mtg-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

.cas-mtg-page a {
  color: inherit;
  text-decoration: none;
}

.cas-mtg-page a:focus-visible {
  outline: 3px solid #0b2d55;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .cas-mtg-page * {
    transition: none !important;
  }
}

/* ============================================================
   02. HERO（ヒーロー）
   ============================================================ */

.cas-mtg-hero {
  /* 実ファイル 1860 × 1180 */
  --cas-mtg-hero-ratio: 1860 / 1180;
  /* 切り抜きの基準点。左端固定なので左側は常に全表示される */
  --cas-mtg-hero-focus: 0% 50%;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(135deg, #bfe8ff 0%, #edf8ff 20%);
}

/* 2カラムは 1201px 以上。1200px 以下は縦2段（後述） */
.cas-mtg-hero__inner {
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: stretch;
  width: 100%;
}

.cas-mtg-hero__body {
  /* 文字サイズの基準を「ビューポート」から「この箱の幅」に切り替えるため */
  container-type: inline-size;

  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 660px;
  min-width: 0;

  /* 左カラムの中央に配置 */
  margin-inline: auto;
  /* 左右パディングを同値にしないと中央に見えないため分離指定 */
  padding-block: clamp(96px, 7.5vw, 114px) clamp(32px, 4vw, 56px);
  padding-inline: clamp(24px, 2.6vw, 40px);
}

.cas-mtg-hero__hand {
  display: inline-block;
  width: max-content;
  max-width: 100%;
  margin: 0 0 22px;
  padding-bottom: 0.45em;
  color: #005bac;
  font-family: "Klee One", cursive;

  /* 2段落ち防止 */
  white-space: nowrap;
  font-size: clamp(13px, 2vw, 26px); /* 非対応ブラウザ用フォールバック */
  font-size: clamp(13px, 5cqi, 30px); /* 箱の内寸 ÷ 約18文字 が上限 */

  font-weight: 600;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 28' preserveAspectRatio='none'%3E%3Cpath d='M2,22 C90,4 210,2 298,6' fill='none' stroke='%23005bac' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 0.7em;
  transform: rotate(-3deg);
}

.cas-mtg-hero__title {
  margin: 0 0 20px;
  color: #0b2d55;
  font-size: clamp(22px, 2.9vw, 42px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.015em;
  word-break: auto-phrase;
}

.cas-mtg-hero__mark {
  color: inherit;
}

.cas-mtg-hero__accent {
  color: #005bac;
}

.cas-mtg-hero__lead {
  margin: 0 0 20px;
  color: #1e3f63;
  font-size: clamp(14px, 1.35vw, 20px);
  font-weight: 700;
  line-height: 1.9;
  word-break: auto-phrase;
}

.cas-mtg-hero__note {
  display: block;
  width: 100%;
  margin: 0 0 24px;
  padding: 14px 22px;
  border-left: 4px solid #ffd600;
  color: #0b2d55;
  font-size: clamp(13px, 1.4vw, 20px);
  font-weight: 700;
  line-height: 1.7;
  word-break: auto-phrase;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(0, 70, 130, 0.1);
}

.cas-mtg-hero__actions {
  margin-top: 4px;
}

.cas-mtg-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 12px clamp(24px, 3vw, 44px);
  border-radius: 999px;
  color: #0b2d55;
  font-size: clamp(15px, 1.45vw, 20px);
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  background: #ffd600;
  box-shadow: 0 12px 28px rgba(0, 91, 172, 0.2);
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.cas-mtg-hero__button:hover {
  filter: brightness(1.02);
  transform: translateY(-2px);
}

.cas-mtg-hero__button-arrow {
  font-size: 18px;
}

/* --- 写真枠（2カラム時） --- */
.cas-mtg-hero__visual {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-width: 0;
  overflow: hidden;
  line-height: 0;
}

.cas-mtg-hero__visual::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: var(--cas-mtg-hero-ratio);
}

.cas-mtg-hero__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  object-fit: cover;
  object-position: var(--cas-mtg-hero-focus);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000000 1.5%);
  mask-image: linear-gradient(90deg, transparent 0%, #000000 1.5%);
}

@media (max-width: 1440px) {
  .cas-mtg-hero__inner {
    grid-template-columns: 40% 60%;
  }
  .cas-mtg-hero__body {
    max-width: 600px;
  }
}

/* --- 1200px 以下は縦2段 --- */
@media (max-width: 1200px) {
  .cas-mtg-hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .cas-mtg-hero__body {
    max-width: 720px;
    /* 縦積みでは下の写真と頭を揃えるため左寄せに戻す */
    margin-inline: 0 auto;
    padding-block: clamp(96px, 9vw, 112px) 40px;
    padding-inline: clamp(24px, 4vw, 48px);
  }

  .cas-mtg-hero__visual {
    padding: 0 24px 56px;
    line-height: 1.6;
  }
  .cas-mtg-hero__visual::before {
    content: none;
  }
  .cas-mtg-hero__image {
    position: static;
    inset: auto;
    height: auto !important;
    aspect-ratio: var(--cas-mtg-hero-ratio);
    border-radius: 12px;
    object-position: 50% 50%;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

@media (max-width: 640px) {
  .cas-mtg-hero__body {
    padding-block: 96px 32px;
    padding-inline: 20px;
  }
  .cas-mtg-hero__note {
    padding: 12px 16px;
  }
  .cas-mtg-hero__button {
    width: 100%;
    max-width: 420px;
    min-height: 60px;
    padding: 12px 24px;
  }
  .cas-mtg-hero__visual {
    padding: 0 20px 48px;
  }
}

/* ============================================================
   03. RECOMMENDED（こんな方におすすめ）
   ============================================================ */
.cas-mtg-recommend {
  padding: 80px 0;
  scroll-margin-top: 80px;
  background: #ffffff;
}

.cas-mtg-recommend__inner {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.cas-mtg-recommend__head {
  text-align: center;
}

.cas-mtg-recommend__eyebrow {
  margin: 0 0 8px;
  color: #005bac;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.cas-mtg-recommend__title {
  margin: 0;
  color: #0b2d55;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 900;
  line-height: 1.42;
  letter-spacing: 0.02em;
  word-break: auto-phrase;
}

.cas-mtg-recommend__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 20px auto 0;
  background: #ffd600;
}

.cas-mtg-recommend__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
}

.cas-mtg-recommend__item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 20px;
  border: 1px solid #e3ecf5;
  border-left: 3px solid #005bac;
  background: #ffffff;
}

.cas-mtg-recommend__icon {
  flex: none;
  display: grid;
  place-items: center;
  width: clamp(48px, 6vw, 64px);
  height: clamp(48px, 6vw, 64px);
}

.cas-mtg-recommend__image {
  width: 72%;
  height: 60%;
  object-fit: contain;
}

.cas-mtg-recommend__text {
  min-width: 0;
  margin: 0;
  color: #0b2d55;
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 700;
  line-height: 1.65;
  text-align: left;
  word-break: auto-phrase;
}

@media (max-width: 1024px) {
  .cas-mtg-recommend__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 40px;
  }
  /* タブレット・スマートフォンでは本文を左揃えにする */
  .cas-mtg-recommend__text {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .cas-mtg-recommend {
    padding: 56px 0;
  }
  .cas-mtg-recommend__inner {
    width: min(1180px, calc(100% - 32px));
  }
  .cas-mtg-recommend__title::after {
    margin-top: 16px;
  }
  .cas-mtg-recommend__list {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    margin-top: 32px;
  }
  .cas-mtg-recommend__item {
    gap: 14px;
    padding: 16px;
  }
  .cas-mtg-recommend__text {
    text-align: left;
  }
}

/* ============================================================
   04. TOPICS（面談で話せること）／濃紺背景＋白パネル
   ============================================================ */

.cas-mtg-topics {
  padding: 80px 0;
  scroll-margin-top: 80px;
  background: #0d4da1;
}

.cas-mtg-topics__inner {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.cas-mtg-topics__panel {
  padding: 44px 40px;
  border-radius: 20px;
  background: #ffffff;
}

.cas-mtg-topics__band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: stretch;
}

.cas-mtg-topics__photo {
  align-self: start;
  min-width: 0;
}

.cas-mtg-topics__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  object-fit: cover;
  object-position: 50% 50%;
}

.cas-mtg-topics__copy {
  display: flex;
  flex-direction: column;
  margin-top: -4px;
  min-width: 0;
}

.cas-mtg-topics__head {
  text-align: center;
}

.cas-mtg-topics__eyebrow {
  margin: 0 0 10px;
  color: #005bac;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.18em;
}

.cas-mtg-topics__title {
  margin: 0;
  color: #0b2d55;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 900;
  line-height: 1.42;
  letter-spacing: 0.04em;
  word-break: auto-phrase;
}

.cas-mtg-topics__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 22px auto 0;
  background: #ffd600;
}

.cas-mtg-topics__list {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  column-gap: 0;
  row-gap: 0;
  list-style: none;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
  margin: 36px auto 0;
  padding: 0;
}

.cas-mtg-topics__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding-block: 18px;
}

.cas-mtg-topics__item:nth-child(odd) {
  padding-right: 30px;
}

.cas-mtg-topics__item:nth-child(even) {
  padding-left: 30px;
}

.cas-mtg-topics__item:nth-child(-n + 4) {
  border-bottom: 1px solid #eaf2f9;
}

.cas-mtg-topics__check {
  flex: none;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #0b2d55;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  background: #ffd600;
}

.cas-mtg-topics__label {
  min-width: 0;
  color: #0b2d55;
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-align: left;
  word-break: auto-phrase;
}

@media (max-width: 1024px) {
  .cas-mtg-topics__panel {
    padding: 36px 32px;
  }
  .cas-mtg-topics__band {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  .cas-mtg-topics__photo {
    width: 100%;
    max-width: 620px;
    margin-inline: auto;
  }
  .cas-mtg-topics__image {
    aspect-ratio: 16 / 9;
  }
  .cas-mtg-topics__copy {
    display: block;
    margin-top: 0;
  }
  .cas-mtg-topics__list {
    flex: none;
    grid-template-rows: auto;
    margin-top: 30px;
  }
  .cas-mtg-topics__item {
    padding-block: 16px;
  }
  .cas-mtg-topics__item:nth-child(odd) {
    padding-right: 24px;
  }
  .cas-mtg-topics__item:nth-child(even) {
    padding-left: 24px;
  }
}

@media (max-width: 640px) {
  .cas-mtg-topics {
    padding: 56px 0;
  }
  .cas-mtg-topics__inner {
    width: min(1180px, calc(100% - 32px));
  }
  .cas-mtg-topics__panel {
    padding: 28px 20px;
    border-radius: 16px;
  }
  .cas-mtg-topics__band {
    gap: 26px;
  }
  .cas-mtg-topics__photo {
    max-width: none;
  }
  .cas-mtg-topics__title::after {
    margin-top: 18px;
  }
  .cas-mtg-topics__list {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    margin-top: 26px;
  }
  .cas-mtg-topics__item {
    padding-block: 15px;
    border-bottom: 1px solid #eaf2f9;
  }
  .cas-mtg-topics__item:nth-child(odd) {
    padding-right: 0;
  }
  .cas-mtg-topics__item:nth-child(even) {
    padding-left: 0;
  }
  .cas-mtg-topics__item:last-child {
    border-bottom: none;
  }
  .cas-mtg-topics__check {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }
}

/* ============================================================
   05. OVERVIEW（面談概要）
   ============================================================ */
.cas-mtg-overview {
  padding: 80px 0;
  scroll-margin-top: 80px;
  background: #edf8ff;
}

.cas-mtg-overview__inner {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.cas-mtg-overview__head {
  text-align: center;
}

.cas-mtg-overview__eyebrow {
  margin: 0 0 8px;
  color: #005bac;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.cas-mtg-overview__title {
  margin: 0;
  color: #0b2d55;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 900;
  line-height: 1.42;
  letter-spacing: 0.04em;
  word-break: auto-phrase;
}

.cas-mtg-overview__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 20px auto 0;
  background: #ffd600;
}

.cas-mtg-overview__groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.cas-mtg-overview__group {
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
}

.cas-mtg-overview__grouptitle {
  margin: 0;
  padding: 16px 28px;
  color: #ffffff;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  background: #0d4da1;
}

.cas-mtg-overview__body {
  padding: 24px 28px 28px;
}

.cas-mtg-overview__table {
  margin: 0;
}

.cas-mtg-overview__row {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eef5fa;
}

.cas-mtg-overview__row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.cas-mtg-overview__label {
  margin: 0 0 5px;
  color: #6b8199;
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 700;
  line-height: 1.5;
}

.cas-mtg-overview__value {
  margin: 0;
  color: #0b2d55;
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 700;
  line-height: 1.7;
  word-break: auto-phrase;
}

.cas-mtg-overview__notes {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.cas-mtg-overview__note {
  padding-left: 1.2em;
  color: #5b7086;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 500;
  line-height: 1.9;
  text-indent: -1.2em;
}

.cas-mtg-overview__note::before {
  content: "※";
}

@media (max-width: 1024px) {
  .cas-mtg-overview__groups {
    gap: 16px;
  }
  .cas-mtg-overview__grouptitle {
    padding: 14px 20px;
  }
  .cas-mtg-overview__body {
    padding: 20px 20px 22px;
  }
}

@media (max-width: 767px) {
  .cas-mtg-overview__groups {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .cas-mtg-overview {
    padding: 56px 0;
  }
  .cas-mtg-overview__inner {
    width: min(1180px, calc(100% - 32px));
  }
  .cas-mtg-overview__title::after {
    margin-top: 16px;
  }
  .cas-mtg-overview__groups {
    margin-top: 32px;
  }
  .cas-mtg-overview__group {
    border-radius: 14px;
  }
  .cas-mtg-overview__grouptitle {
    padding: 14px 18px;
  }
  .cas-mtg-overview__body {
    padding: 20px 18px 22px;
  }
  .cas-mtg-overview__row {
    margin-bottom: 14px;
    padding-bottom: 14px;
  }
}

/* ============================================================
   06. DOCUMENT（会社説明資料）
   ============================================================ */
.cas-mtg-document {
  padding: 80px 0;
  scroll-margin-top: 80px;
  background: #ffffff;
}

.cas-mtg-document__inner {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.cas-mtg-document__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e2ecf6;
}

.cas-mtg-document__headline {
  min-width: 0;
}

.cas-mtg-document__eyebrow {
  margin: 0 0 8px;
  color: #005bac;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.cas-mtg-document__title {
  margin: 0;
  color: #0b2d55;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 900;
  line-height: 1.42;
  letter-spacing: 0.02em;
  word-break: auto-phrase;
}

.cas-mtg-document__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 20px 0 0;
  background: #ffd600;
}

.cas-mtg-document__aside {
  flex: 0 1 auto;
  min-width: 0;
}

.cas-mtg-document__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cas-mtg-document__meta-item {
  color: #5b7590;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.cas-mtg-document__meta-item + .cas-mtg-document__meta-item {
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid #dde8f4;
}

.cas-mtg-document__text {
  margin: 24px 0 0;
  color: #0b2d55;
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 700;
  line-height: 1.9;
  word-break: auto-phrase;
}

/* --- ビューア本体（768px以上で表示） --- */
.cas-mtg-document__viewer {
  position: relative;
  height: clamp(460px, 80vh, 900px);
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid #dde8f4;
  border-radius: 12px;
  background: #f4f8fd;
}

.cas-mtg-document__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.cas-mtg-document__hint {
  margin: 14px 0 0;
  color: #5b7590;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  text-align: right;
  word-break: auto-phrase;
}

/* --- スマートフォン向け代替（767px以下で表示） --- */
.cas-mtg-document__sp {
  display: none;
}

.cas-mtg-document__sp-thumb {
  display: block;
}

.cas-mtg-document__sp-image {
  width: 100%;
  border: 1px solid #dde8f4;
  border-radius: 10px;
}

.cas-mtg-document__sp-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  margin-top: 12px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  background: #005bac;
}

@media (max-width: 1024px) {
  .cas-mtg-document__viewer {
    height: clamp(420px, 76vh, 720px);
  }
}

@media (max-width: 900px) {
  .cas-mtg-document__head {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding-bottom: 24px;
  }
  /* 見出しを中央寄せにする */
  .cas-mtg-document__headline {
    text-align: center;
  }
  .cas-mtg-document__title::after {
    margin-inline: auto;
  }
  .cas-mtg-document__meta {
    justify-content: flex-start;
  }
  .cas-mtg-document__hint {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .cas-mtg-document__viewer,
  .cas-mtg-document__hint {
    display: none;
  }
  .cas-mtg-document__sp {
    display: block;
    margin-top: 20px;
  }
}

@media (max-width: 640px) {
  .cas-mtg-document {
    padding: 56px 0;
  }
  .cas-mtg-document__inner {
    width: min(1180px, calc(100% - 32px));
  }
  .cas-mtg-document__head {
    gap: 16px;
    padding-bottom: 20px;
  }
  .cas-mtg-document__title::after {
    margin-top: 16px;
  }
  .cas-mtg-document__meta-item + .cas-mtg-document__meta-item {
    margin-left: 12px;
    padding-left: 12px;
  }
  .cas-mtg-document__text {
    margin-top: 20px;
    line-height: 1.85;
  }
}

/* ============================================================
   07. FLOW（申込から面談までの流れ）
   ============================================================ */
.cas-mtg-flow {
  padding: 80px 0;
  scroll-margin-top: 80px;
  background: #0d4da1;
}

.cas-mtg-flow__inner {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.cas-mtg-flow__head {
  text-align: center;
}

.cas-mtg-flow__eyebrow {
  margin: 0 0 8px;
  color: #ffd600;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.cas-mtg-flow__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 900;
  line-height: 1.42;
  letter-spacing: 0.02em;
  word-break: auto-phrase;
}

.cas-mtg-flow__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 20px auto 0;
  background: #ffd600;
}

.cas-mtg-flow__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 56px;
  list-style: none;
  margin: 64px 0 0;
  padding: 0;
}

.cas-mtg-flow__item {
  position: relative;
  min-width: 0;
  text-align: center;
}

.cas-mtg-flow__item::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 32px;
  right: calc(-50% + 16px);
  left: calc(50% + 40px);
  border-top: 3px dotted #8db8dd;
}

.cas-mtg-flow__item:last-child::after {
  display: none;
}

.cas-mtg-flow__num {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  color: #0d4da1;
  font-size: 26px;
  font-weight: 900;
  background: #ffffff;
  box-shadow: 0 0 0 8px #0d4da1;
}

.cas-mtg-flow__step-title {
  margin: 0 0 10px;
  color: #ffd600;
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 800;
  line-height: 1.7;
  word-break: auto-phrase;
}

.cas-mtg-flow__step-text {
  max-width: 230px;
  margin: 0 auto;
  color: #eaf3fd;
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 500;
  line-height: 1.9;
  word-break: auto-phrase;
}

@media (max-width: 900px) {
  .cas-mtg-flow__list {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 40px;
    margin-top: 48px;
  }
  .cas-mtg-flow__item {
    min-height: 64px;
    padding-left: 84px;
    text-align: left;
  }
  .cas-mtg-flow__item::after {
    display: none;
  }
  .cas-mtg-flow__item:not(:last-child)::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 32px;
    bottom: -72px;
    left: 32px;
    border-left: 3px dotted #8db8dd;
    transform: translateX(-1.5px);
  }
  .cas-mtg-flow__num {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }
  .cas-mtg-flow__step-title {
    margin: 0 0 6px;
  }
  .cas-mtg-flow__step-text {
    max-width: none;
    margin: 0;
  }
}

@media (max-width: 640px) {
  .cas-mtg-flow {
    padding: 56px 0;
  }
  .cas-mtg-flow__inner {
    width: min(1180px, calc(100% - 32px));
  }
  .cas-mtg-flow__title::after {
    margin-top: 16px;
  }
  .cas-mtg-flow__item {
    padding-left: 74px;
  }
  .cas-mtg-flow__item:not(:last-child)::before {
    top: 28px;
    bottom: -68px;
    left: 28px;
  }
  .cas-mtg-flow__num {
    width: 56px;
    height: 56px;
    font-size: 22px;
    box-shadow: 0 0 0 6px #0d4da1;
  }
}

/* ============================================================
   08. NOTES（留意事項）
   ============================================================ */

.cas-mtg-notes {
  padding: 80px 0;
  scroll-margin-top: 80px;
  background: #edf8ff;
}

.cas-mtg-notes__inner {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.cas-mtg-notes__panel {
  padding: 44px 28px;
  border-radius: 20px;
  background: #ffffff;
}

.cas-mtg-notes__band {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

.cas-mtg-notes__copy {
  min-width: 0;
}

.cas-mtg-notes__eyebrow {
  margin: 0 0 8px;
  color: #005bac;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-align: center;
}

.cas-mtg-notes__title {
  margin: 0;
  color: #0b2d55;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 900;
  line-height: 1.42;
  letter-spacing: 0.02em;
  text-align: center;
  word-break: auto-phrase;
}

.cas-mtg-notes__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 20px auto 0;
  background: #ffd600;
}

.cas-mtg-notes__list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.cas-mtg-notes__item {
  display: flex;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid #eaf2f9;
  color: #0b2d55;
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 500;
  line-height: 1.9;
  word-break: auto-phrase;
}

.cas-mtg-notes__item::before {
  content: "";
  flex: none;
  width: 9px;
  height: 9px;
  margin-top: 0.62em;
  border-radius: 50%;
  background: #ffd600;
}

.cas-mtg-notes__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.cas-mtg-notes__photo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: minmax(0, 1.88fr) minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
  min-height: 430px;
}

.cas-mtg-notes__photo-main {
  grid-column: 1 / -1;
  min-width: 0;
  min-height: 0;
}

.cas-mtg-notes__photo-sub {
  min-width: 0;
  min-height: 0;
}

.cas-mtg-notes__image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  object-position: 50% 45%;
}

.cas-mtg-notes__image--exterior {
  object-position: 50% 60%;
}

.cas-mtg-notes__dummy {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 12px;
  border: 1px dashed #8db8dd;
  border-radius: 12px;
  background-color: #f2f9ff;
  background-image: repeating-linear-gradient(
    -45deg,
    #ffffff 0 8px,
    #e6f3fd 8px 16px
  );
  color: #4a7ba7;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

@media (max-width: 1024px) {
  .cas-mtg-notes__panel {
    padding: 32px 28px;
  }
  .cas-mtg-notes__band {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }
  /* テキスト4項目 → 写真3枚 の順に縦積みする */
  .cas-mtg-notes__copy {
    order: 1;
  }
  .cas-mtg-notes__photo {
    order: 2;
    grid-template-rows: auto auto;
    width: 100%;
    max-width: 620px; /* 追加：広がりすぎを抑える */
    margin-inline: auto; /* 追加：中央寄せ */
    min-height: 0;
  }
  .cas-mtg-notes__photo-main .cas-mtg-notes__image,
  .cas-mtg-notes__photo-main .cas-mtg-notes__dummy {
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .cas-mtg-notes__photo-sub .cas-mtg-notes__image,
  .cas-mtg-notes__photo-sub .cas-mtg-notes__dummy {
    height: auto;
    aspect-ratio: 5 / 3;
  }
}

@media (max-width: 640px) {
  .cas-mtg-notes {
    padding: 56px 0;
  }
  .cas-mtg-notes__inner {
    width: min(1180px, calc(100% - 32px));
  }
  .cas-mtg-notes__panel {
    padding: 24px 18px;
    border-radius: 16px;
  }
  .cas-mtg-notes__title::after {
    margin-top: 16px;
  }
  .cas-mtg-notes__list {
    margin-top: 20px;
  }
  .cas-mtg-notes__item {
    padding: 13px 0;
    line-height: 1.85;
  }
  .cas-mtg-notes__photo {
    gap: 10px;
  }
  .cas-mtg-notes__image,
  .cas-mtg-notes__dummy {
    border-radius: 10px;
  }
  .cas-mtg-notes__dummy {
    padding: 8px;
    font-size: 11px;
  }
}

/* ============================================================
   09. FAQ（よくある質問）
   ============================================================ */
.cas-mtg-faq {
  padding: 80px 0;
  scroll-margin-top: 80px;
  background: #ffffff;
}

.cas-mtg-faq__inner {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.cas-mtg-faq__head {
  text-align: center;
}

.cas-mtg-faq__eyebrow {
  margin: 0 0 8px;
  color: #005bac;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.cas-mtg-faq__title {
  margin: 0;
  color: #0b2d55;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 900;
  line-height: 1.42;
  letter-spacing: 0.02em;
  word-break: auto-phrase;
}

.cas-mtg-faq__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 20px auto 0;
  background: #ffd600;
}

.cas-mtg-faq__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 48px auto 0;
}

.cas-mtg-faq__item {
  position: relative;
  min-width: 0;
  padding: 34px 28px 30px;
  border: 1px solid #d9ebf6;
  border-radius: 12px;
  background: #ffffff;
  box-shadow:
    0 1px 2px rgba(11, 45, 85, 0.04),
    0 6px 16px rgba(11, 45, 85, 0.05);
}

.cas-mtg-faq__item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  border-radius: 12px 12px 0 0;
  background: #ffd600;
}

.cas-mtg-faq__head-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.cas-mtg-faq__q {
  flex: none;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  background: #005bac;
}

.cas-mtg-faq__question {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding-top: 2px;
  color: #0b2d55;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.6;
  word-break: auto-phrase;
}

.cas-mtg-faq__body {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cas-mtg-faq__a {
  flex: none;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #0b2d55;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  background: #ffd600;
}

.cas-mtg-faq__answer {
  min-width: 0;
  margin: 0;
  padding-top: 3px;
  color: #3a4a63;
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 500;
  line-height: 1.9;
  word-break: auto-phrase;
}

@media (max-width: 900px) {
  .cas-mtg-faq__list {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .cas-mtg-faq {
    padding: 56px 0;
  }
  .cas-mtg-faq__inner {
    width: min(1180px, calc(100% - 32px));
  }
  .cas-mtg-faq__title::after {
    margin-top: 16px;
  }
  .cas-mtg-faq__list {
    margin-top: 32px;
    gap: 16px;
  }
  .cas-mtg-faq__item {
    padding: 26px 20px 24px;
    border-radius: 10px;
  }
  .cas-mtg-faq__item::before {
    border-radius: 10px 10px 0 0;
  }
  .cas-mtg-faq__head-row {
    gap: 12px;
    margin-bottom: 12px;
  }
  .cas-mtg-faq__q {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
  .cas-mtg-faq__body {
    gap: 12px;
  }
  .cas-mtg-faq__a {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
}

/* ============================================================
   10. ENTRY（申込導線）
   ============================================================ */
.cas-mtg-entry {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: clamp(340px, 26vw, 440px);
  padding-block: clamp(56px, 5vw, 84px) clamp(52px, 4.6vw, 76px);
  padding-inline: clamp(32px, 7vw, 140px);
  scroll-margin-top: 80px;
  background: #0d4da1;
}

.cas-mtg-entry__photo {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  width: clamp(400px, 59%, 1120px);
  height: 100%;
  align-self: stretch;
  overflow: hidden;
  line-height: 0;
}

.cas-mtg-entry__photo::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 77, 161, 1) 0%,
    rgba(13, 77, 161, 0.88) 0%,
    rgba(13, 77, 161, 0.4) 8%,
    rgba(13, 77, 161, 0.12) 10%,
    rgba(13, 77, 161, 0.06) 20%
  );
}

.cas-mtg-entry__image {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  object-fit: cover;
  object-position: 60% 45%;
}

.cas-mtg-entry__dummy {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
  background: #1b3a86;
  border: 1px dashed #6f8ed0;
}

.cas-mtg-entry__inner {
  position: relative;
  z-index: 3;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: stretch;
  gap: clamp(28px, 2.8vw, 40px);
  width: max-content;
  max-width: min(100%, 560px);
  margin: 0;
  padding: 0;
}

.cas-mtg-entry__lead {
  margin: 0;
  color: #ffffff;
  font-size: clamp(18px, 1.7vw, 30px);
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-align: left;
}

.cas-mtg-entry__button {
  box-sizing: border-box;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: 100%;
  min-height: 72px;
  padding: 14px 32px;
  border-radius: 999px;
  color: #10276b;
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  background: linear-gradient(180deg, #ffd93d 0%, #f5c11a 100%);
  box-shadow: 0 12px 28px rgba(4, 15, 45, 0.35);
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
}

.cas-mtg-entry__button:hover {
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.cas-mtg-entry__button-arrow {
  font-size: 20px;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .cas-mtg-entry {
    min-height: clamp(320px, 30vw, 400px);
    padding-block: 56px 52px;
    padding-inline: 40px;
  }
  .cas-mtg-entry__photo {
    width: 54%;
  }
  .cas-mtg-entry__inner {
    max-width: min(100%, 460px);
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .cas-mtg-entry {
    display: block;
    min-height: 0;
    padding: 0;
  }
  .cas-mtg-entry__photo {
    position: relative;
    z-index: 1;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    align-self: auto;
  }
  .cas-mtg-entry__photo::after {
    display: none;
  }
  /* 写真は元の縦横比のまま全体を表示（左右を切らない） */
  .cas-mtg-entry__image {
    position: static;
    inset: auto;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: 50% 50%;
  }

  .cas-mtg-entry__dummy {
    position: static;
    inset: auto;
    aspect-ratio: 16 / 9;
  }
  .cas-mtg-entry__inner {
    justify-items: center;
    gap: 28px;
    width: auto;
    max-width: 100%;
    padding: 48px 24px 56px;
  }
  .cas-mtg-entry__lead {
    text-align: center;
  }
  .cas-mtg-entry__button {
    max-width: 460px;
  }
}

@media (max-width: 640px) {
  .cas-mtg-entry__dummy {
    aspect-ratio: 4 / 3;
  }
  .cas-mtg-entry__inner {
    gap: 24px;
    padding: 40px 20px 48px;
  }
  .cas-mtg-entry__lead {
    font-size: 17px;
    line-height: 1.9;
  }
  .cas-mtg-entry__button {
    max-width: 420px;
    min-height: 64px;
    padding: 14px 24px;
  }
}

.breadcrumb {
  position: absolute;
  top: 100px;
  left: 8rem;
  transform: translate(0%, -50%);
  z-index: 11;
  padding: 0px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
}
