@charset "utf-8";
/* CSS Document */

@import url(ress.css);

/* --global----------------------------------------------- */

.inner {
  max-width: 100%;
}

.column {
  flex-direction: column;
  align-items: center;
}

.pc {
  display: none;
}

.sp {
  display: block;
}

/* =========================
   MV
========================= */

/* SPは完成画像、PC側は非表示 */
.mv__pc {
  display: none !important;
}

.mv__sp {
  display: block;
}

.mv {
  position: relative;
  overflow: hidden;
}

.mv__inner {
  aspect-ratio: auto;
  /* ← 解除 */
  min-height: 0;
  /* ← これが重要 */
  max-height: none;
  /* ← 念のため解除 */
}

/* ▼ 高さを固定しない（＝中の画像の高さに一致） */
.mv__sp {
  position: relative;
  width: 100%;
}

/* ▼ 画像サイズに合わせてヘッダーの高さが決まる */
.mv__spBg {
  width: 100%;
  height: auto;
  display: block;
}

/* 透明リンク：画像内のエントリー位置に重ねる（%で安定） */
.mv__entryLink {
  position: absolute;
  right: 1%;
  bottom: 8%;
  width: 35%;
  height: 18%;
  z-index: 5;
  /* background: rgba(255,0,0,.2); */
  /* 調整時だけ */
}

.mv__waves {
  bottom: 0;
}

.mv {
  margin-bottom: 0;
  padding-bottom: 0;
}



/* =========================
   Copy Section
========================= */
.copy3 {
  position: relative;
  z-index: 5;
  margin-top: -2px;
  overflow: hidden;
}

:root {
  --overlap-top-mid: 300px;
  /* ←重なり量 */
  --overlap-mid-bottom: 350px;
}

/* 共通 */
.copy3__band {
  position: relative;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}

/* 1段目（青：波打ち） */
.copy3__band--top {
  z-index: 1;
  min-height: 1030px;
  padding-top: 0;

  /* ★上の波形エリア高さ（この範囲には塗りを敷かない） */
  --top-wave-area: 260px;
  /* 220〜340pxで調整 */

  /* 波PNG + 下だけ塗り（※塗りは下に寄せて上には出さない） */
  background-image:
    url("../img/copy_bg_01_sp.webp"),
    linear-gradient(#2a79a8, #2a79a8);

  background-repeat: no-repeat, no-repeat;

  background-position:
    center top,
    center bottom;

  background-size:
    100% auto,
    100% calc(100% - var(--top-wave-area));

  /* ★上に塗りが出ないように、背景色は消す */
  background-color: transparent;
}

/* ★前に入れていた上波用の疑似要素は不要なので削除 */
.copy3__band--top::before {
  content: none;
}

/* 2段目（薄グレー：斜め） */
.copy3__band--mid {
  z-index: 2;
  min-height: 700px;

  /* 2段目を上に重ねる */
  margin-top: calc(var(--overlap-top-mid) * -1.5);
  padding-top: 0;

}

.copy3__band--mid::before {
  /* 斜めカット（上下） */
  clip-path: polygon(0 7%, 100% 0,
      100% 100%, 0 100%);
}


.copy3__band--mid .copy3__inner {
  position: relative;
  z-index: 1;
}


/* =========================
   3段目（青）※2段目の下に重ねる
========================= */
.copy3__band--bottom {
  z-index: 3;
  min-height: 650px;

  /* ★3段目を上に引っ張って2段目と重ねる */
  margin-top: -170px;

  /* 3段目の中身が上に食い込まないように余白を確保 */
  padding-top: var(--overlap-mid-bottom);

  /* ★これが必須：::before の基準になる */
  position: relative;

  /* ★斜めで切った外側を隠す（必須級） */
  overflow: hidden;

  /* ★本体側の背景は消す（四角が残る原因になる） */
  background: none;
}

.copy3__band--bottom::before {

  /* 斜めカット（上下） */
  -webkit-clip-path: polygon(0 25%, 100% 0, 100% 75%, 0 100%); /* Safari保険 */
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);

  pointer-events: none;
}


/* コンテンツは上に重ねる */
.copy3__inner {
  width: 80vw;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 50px 0;
}

.copy3__inner.copy3__inner--top {
   padding: 30px 0 50px;
}

/* 装飾（雲・花）は1つずつ absolute で配置 */
.copy3__deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: .75;
  width: auto;
  height: auto;
}

/* TOP（位置は添付デザイン寄せの仮） */
.copy3__deco--t1 {
  left: -20%;
  top: 18px;
  width: 150px;
}

.copy3__deco--t2 {
  left: -15%;
  top: 33%;
  width: 200px;
  opacity: .3;
}

.copy3__deco--t3 {
  left: 5%;
  top: 56%;
  width: 100px;
  opacity: .3;
}

.copy3__deco--t4 {
  right: -3%;
  top: 32px;
  width: 100px;
  opacity: .3;
}

.copy3__deco--t5 {
  right: -27%;
  top: 50%;
  width: 180px;
  opacity: .3;
}

/* MID */
.copy3__deco--m1 {
  left: 2%;
  top: 320px;
  width: 80px;
  opacity: .45;
}

.copy3__deco--m2 {
  left: 37%;
  top: 467px;
  width: 174px;
  opacity: .55;
}

.copy3__deco--m3 {
  right: -7%;
  top: 80px;
  width: 200px;
  opacity: .60;
}

.copy3__deco--m4 {
  right: -1%;
  top: 300px;
  width: 80px;
  opacity: .80;
}

/* BOTTOM */
.copy3__deco--b1 {
  left: 28%;
  top: 180px;
  width: 120px;
  opacity: .35;
}

.copy3__deco--b2 {
  left: 40%;
  bottom: 135px;
  width: 90px;
  opacity: .30;
}

.copy3__deco--b3 {
  right: -4%;
  top: 250px;
  width: 90px;
  opacity: .55;
}

.copy3__deco--b4 {
  right: 35%;
  top: 150px;
  width: 108px;
  opacity: .30;
}

/* =========================
   Layout
========================= */
.copy3__topGrid {
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: center;
}

.copy3__midGrid {
  display: block;
  flex-wrap: wrap;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: center;
  padding: 0;
}

.copy3__bottomGrid {
  display: block;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 44px;
  align-items: start;
}

/* 橋（不定形PNG前提） */
.copy3__bridge {
  margin: 0;
  width: 100%;
  order: 0;
}

.copy3__bridge img {
  width: 100%;
  height: auto;
  display: block;
}

/* 縦コピー */
.copy3__vertical {
  color: rgba(255, 255, 255, 0.92);
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  letter-spacing: .08em;
  line-height: 1.9;
  order: -1;
}

/* 見出し */
.copy3__verticalTitle {
  font-size: clamp(21px, 2.2vw, 30px);
  font-weight: 600;
  margin: 0;
  position: relative;
}

/* 見出しと本文の間の縦線 */
.copy3__verticalTitle::after {
  content: "";
  display: block;
  width: 100%;
  /* 線の太さ */
  height: 1px;
  /* 線の長さ（文字基準で調整しやすい） */
  background-color: rgba(255, 255, 255, 0.7);
  margin-block: 12px 14px;
  /* 上下の余白 */
}

/* 本文 */
.copy3__verticalBody {
  margin: 0 7px;
  font-size: clamp(12px, 1.45vw, 16px);
  line-height: 2;
}


/* 中段 */
.copy3__leadTitle {
  margin: 50px 0 0;
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1.5;
  color: #1f5f8f;
  letter-spacing: .03em;
  position: relative;
  display: inline-block;
  /* 下線幅をコントロールしやすくする */
}

/* 見出し下の横線（画像のように） */
.copy3__leadTitle::after {
  content: "";
  display: block;
  height: 1px;
  /* 線の太さ */
  width: 100%;
  /* 線の長さ（お好みで調整） */
  background-color: rgba(31, 95, 143, 0.6);
  margin-top: 18px;
  /* 見出しと線の間 */
}

.copy3__leadText {
  margin: 18px 7px 20px;
  /* 線の下に余白を作る */
  font-size: 12px;
  line-height: 1.9;
  color: #2a5b7a;
}


.copy3__midPhotos {
  position: relative;
  height: 330px;
}

.copy3__circle {
  position: absolute;
  margin: 0;
  width: 220px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .08);
}

.copy3__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.copy3__circle--1 {
  right: 0;
  top: 0;
  width: 170px;
}

.copy3__circle--2 {
  left: 0;
  bottom: 37%;
  width: 190px;
}

/* 下段の縦コピー */
.copy3__bottomVertical {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, 0.92);
}

.copy3__bottomVerticalText {
  margin: 0 0 10px;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.9;
}

/* メインコピーの右側に縦線 */
.copy3__bottomVerticalText::after {
  content: "";
  display: block;
  width: 100%;
  /* 線の太さ */
  height: 1px;
  /* 線の長さ（文字基準） */
  background-color: rgba(255, 255, 255, 1);
  margin-inline: 0;
  /* 線の左右余白（縦書きなのでinline） */
  margin-right: 0;
  margin-top: 12px;
}

.copy3__bottomSideNote {
  margin: 0;
  font-size: 12px;
  opacity: .85;
}

/* 桜型PNGの配置（そのままabsolute） */
.copy3__blossoms {
  position: relative;
  min-height: 440px;
}

.copy3__sakura {
  position: absolute;
  width: 170px;
  height: auto;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, .12));
}

.copy3__sakura--1 {
  left: 2%;
  top: 20px;
  width: 190px;
}

.copy3__sakura--2 {
  left: 22%;
  top: 160px;
}

.copy3__sakura--3 {
  left: 46%;
  top: 70px;
  width: 200px;
}

.copy3__sakura--4 {
  right: 6%;
  top: 0;
  width: 220px;
}

.copy3__sakura--5 {
  right: 10%;
  bottom: 0;
  width: 200px;
}


/* 3段目の中身：縦横中央に固定 */
.copy3__band--bottom .copy3__inner {
  width:80vw;
  margin: 0 auto;
  padding: 0;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -70px;
  z-index: 2;
}

/* ここはGridを使わず「写真の配置台」にするだけ */
.copy3__band--bottom .copy3__bottomGrid {
  position: relative;
  width: 100%;
  height: 100px;
  /* 写真エリア高さ（調整OK） */
}

/* 中央テキスト：絶対中央に固定（下段落ちしない） */
.copy3__band--bottom .copy3__bottomVertical {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;

  writing-mode: horizontal-tb;
  text-orientation: mixed;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  white-space: nowrap;
  /* 縦組みが崩れる場合の保険 */
}

.copy3__band--bottom .copy3__bottomVerticalText {
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.5;
  text-align: start;
}

.copy3__band--bottom .copy3__bottomSideNote {
  margin: 5px 7px;
  font-size: 14px;
  opacity: .85;
  text-align: start;
}

/* 写真コンテナ：全面レイヤー */
.copy3__band--bottom .copy3__blossoms {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* 写真（桜）：absoluteで自由配置 */
.copy3__band--bottom .copy3__sakura {
  position: absolute;
  height: auto;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, .12));
}

/* 左上 */
.copy3__band--bottom .copy3__sakura--1 {
  left: -20%;
  top: -53%;
  width: 200px;
}

/* 左下 */
.copy3__band--bottom .copy3__sakura--2 {
  left: -5%;
  top: 140px;
  width: 150px;
}

/* 右上 */
.copy3__band--bottom .copy3__sakura--3 {
  left: 52%;
  top: -267px;
  width: 220px;
}

/* 右 */
.copy3__band--bottom .copy3__sakura--4 {
  right: -7%;
  top: 120px;
  width: 200px;
}

/* =========================
   copy3：花が咲くようにポンポン登場
   ========================= */

/* 対象（JSで bloom-item を付けます） */
.copy3__band--bottom .bloom-item {
  opacity: 0;
  transform: translateY(10px) scale(.72);
  filter: blur(0.2px);
  will-change: opacity, transform;
}

/* 表示アニメ（ポンッ） */
.copy3__band--bottom .bloom-item.is-bloom {
  opacity: var(--final-opacity, 1);
  animation: bloomPop 520ms cubic-bezier(.2, 1.15, .3, 1) forwards;
  filter: none;
}

/* ポップする動き */
@keyframes bloomPop {
  0% {
    transform: translateY(12px) scale(.72);
  }

  60% {
    transform: translateY(0) scale(1.08);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

/* アニメを好まない設定の人には配慮 */
@media (prefers-reduced-motion: reduce) {
  .copy3__band--bottom .bloom-item {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ===== info ===== */
.info {
  position: relative;
  padding: clamp(36px, 6vw, 100px) 40px;
  overflow: hidden;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

.info__inner {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* テキストグループ幅：580px */
.info__list {
  width: 580px;
  max-width: 100%;
  margin: 0 auto;
}

.info__row {
  display: grid;
  grid-template-columns: 64px 1fr;
  column-gap: 18px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 2px solid rgba(120, 170, 210, 0.7);
}

.info__label {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  color: #222;
}

.info__value {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: #111;
}

.info__note {
  width: 580px;
  max-width: 100%;
  margin: 40px auto 0;
  font-size: 12px;
  line-height: 1.5;
  color: #222;
}

.info__sponsor {
  width: 580px;
  max-width: 100%;
  margin: 10px auto 0;
  text-align: center;
}

.info__sponsor a {
  display: inline-block;
}

.info__sponsor img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ===== 飾り（png）position配置 ===== */
.info__deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  height: auto;
}

/* 左：花（中段） */
.info__deco--flowerL {
  left: 1%;
  top: 40%;
  width: 60px;
  transform: translateY(-70%);
  opacity: 0.3;
}

/* 右上：花 */
.info__deco--flowerR {
  right: 5%;
  top: clamp(6px, 2.5vw, 18px);
  width: 100px;
  opacity: 0.3;
}

/* 左下：雲（大） */
.info__deco--cloudL {
  left: -13%;
  bottom: 8px;
  width: 150px;
  opacity: 0.3;
}

/* 右：雲（横長） */
.info__deco--cloudR {
  right: 0%;
  top: 65%;
  width: 140px;
  transform: translateY(-30%);
  opacity: 0.5;
}

/* SP微調整（必要なら） */
@media (max-width: 520px) {
  .info__row {
    grid-template-columns: 56px 1fr;
    column-gap: 12px;
    padding: 9px 0;
  }

  .info__value {
    font-size: 13px;
  }
}

/* =========================
   Topics
========================= */

.topics {
  padding: 90px 0;
}

.topics__inner {
  width: min(680px, 100vw);
}

.topics__stage {
  display: block;
  padding: 20px 0;
}

.topics__row {
  position: relative;
  min-height: auto;
  margin: 0 0;
}

/* 縦中横（必要な場合） */
.tcy{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  inline-size: 1em;
  writing-mode: inherit;
  text-combine-upright: all;
  text-orientation: mixed;
  line-height: 1;
  transform: translateX(0em);
}

/* 2段目・3段目は縦積みをflexで制御して上下入れ替え */
.topics__row--map,
.topics__row--bottom {
  display: flex;
  flex-direction: column;
}

/* テキスト（白枠）を上に */
.topics__row--map .topics__vbox,
.topics__row--bottom .topics__vbox {
  order: 1;
}

/* 画像を下に */
.topics__row--map .topics__photo,
.topics__row--bottom .topics__photo {
  order: 2;
  margin-top: 16px;
  /* テキストと画像の間隔 */
}

/* =====================
     画像：通常配置
  ===================== */
.topics__photo {
  position: static;
  width: 100%;
}

.topics__photo--top,
.topics__photo--map,
.topics__photo--bottom {
  width: 100%;
  transform: none;
}

/* =====================
     ★ 青グラデ見出しを重ねる
  ===================== */

.topics__row--top {
  position: relative;
  /* ← これを基準に重ねる */
}

.topics__headline {
  position: absolute;
  /* ← 重ねる */
  top: -70px;
  /* 上からの位置調整 */
  right: 20px;
  /* 右からの位置 */
  margin: 0;
  z-index: 5;
  writing-mode: vertical-rl;
  font-size: 20px;
  padding: 24px 12px;
  letter-spacing: .08em;

  box-shadow: 0 8px 18px rgba(0, 0, 0, .15);
}

/* =====================
     白枠テキストは通常フロー
  ===================== */

/* SP */
.topics__vbox {
  position: static;
  margin: 16px auto 0;
  padding: 18px 0;
  max-width: 92%;
  background: none;
  box-shadow: none;
  border-radius: 0;

  /* ▼PC側で付けた max-content を打ち消す */
  inline-size: auto;
  block-size: auto;
  width: auto;
  height: auto;
  display: block;
}

.topics__vtext {
  writing-mode: horizontal-tb;
  -webkit-writing-mode: horizontal-tb;

  font-size: 14px;
  line-height: 1.9;
  padding: 0 20px;

  /* ▼PC側で付けたものをSPで確実に解除 */
  white-space: normal;
  inline-size: auto;
  block-size: auto;
  width: 100%;
  max-width: 100%;
  display: block;

  /* ▼長い英数字や記号でのはみ出し保険 */
  overflow-wrap: anywhere;
  word-break: break-word;
}


.topics__vbox--left,
.topics__vbox--right {
  top: auto;
  left: auto;
  right: auto;
}

/* 飾り少し調整 */
.topics__deco--01 {
  display: none;
}

.topics__deco--02 {
  display: none;
}

.topics__deco--03 {
  display: none;
}

/* =========================
   pickup
========================= */
/* セクション全体 */
.pickup {
  position: relative;
  margin: 0;
}

/* 斜め帯（フルブリード） */
.pickup::before {
  content: "";
  position: absolute;
  inset: 0;
  /* top/right/bottom/left:0 */
  z-index: 0;

  /* 背景画像は「斜め無しの長方形PNG」を使う */
  background: url("../img/pickup_bg_rect_sp.webp") center / cover no-repeat;

  /* 斜めカット（上下） */
  clip-path: polygon(0 10%, 100% 0,
      100% 90%, 0 100%);
}

/* 中身は固定サイズで中央 */
.pickup__inner {
  position: relative;
  z-index: 1;

  width: 100%;
  /* 固定 */
  height: auto;
  /* 固定 */
  margin: 0 auto;
}


/* テキストブロック */
.pickup__text {
  position: static;
  color: #fff;
  max-width: 100%;
  margin: 0 auto;
  padding: 150px 30px 0;
}

.pickup__title {
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  position: relative;
  /* ← これ必須 */
}

.pickup__title::after {
  content: "";
  display: block;
  width: 100%;
  /* 線の長さ（お好みで） */
  height: 1px;
  /* 線の太さ */
  background-color: #fff;
  /* 白線 */
  margin-top: 20px;
  /* 文字との間隔 */
}


.pickup__desc {
  font-size: 12px;
  line-height: 2;
  opacity: 0.9;
}

/* 写真共通 */
.pickup__photo {
  position: static;
  width: 100%;
  height: auto;
  padding: 0 30px;
  box-shadow: none;
}


/* =========================
   MC
========================= */

  .mc {
    padding: 0;
  }

  .mc__inner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .mc__content {
    max-width: 680px;
    width: 100%;
    padding: 0 20px;
  }

  .mc__photo {
    width: min(520px, 100%);
    /* SPでははみ出さないように縮小 */
    max-width: 90%;
  }

  /* 飾り：必要なら位置を少し内側へ */
  .mc__deco--flower {
    right: -20px;
    top: 30px;
    opacity: .4;
  }

  .mc__deco--cloudR {
    right: -32px;
    top: 60%;
    opacity: .4;
  }

  .mc__deco--cloudL {
    top: 55%;
    left: -60px;
    opacity: .4;
  }

  .mc__deco--cloudLB {
    left: 12px;
    bottom: 80px;
    opacity: .4;
  }

@media (max-width: 520px) {
  .mc__titleName {
    font-size: 26px;
  }

  .mc__titleLabel {
    font-size: 14px;
  }

  .mc__text {
    font-size: 13px;
    line-height: 2.0;
  }
}

/* =========================
   about
========================= */
.about {
  position: relative;
  background: url("../img/about_bg_sp.webp") center / cover no-repeat;
  width: 100vw;
  margin-left: calc(50% - 50vw);

  padding: 180px 0 100px;
  overflow: hidden;
}

.about__inner {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

/* 上：縦書きエリア */
.about__top {
  position: relative;
  margin-bottom: clamp(26px, 3vw, 36px);
}

.about__verticalWrap {
  display: flex;
  flex-direction: column;
    align-items: center;
    gap: 14px;
}

@media (max-width: 860px) {
  .about__verticalWrap {
    justify-content: center;
  }
}

.about__verticalText {
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  letter-spacing: .04em;
    line-height: 1.9;
    font-size: 13px;
    max-width: 100%;
  color: rgba(0, 0, 0, .78);
  padding: 20px;
}

.about__verticalText p {
  margin: 0;
  line-height: 32px;
}

.about__verticalText p+p {
    margin-left: 0;
    margin-top: 10px;
  }

.about__verticalTitle {
  width: 90%;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
  border: 2px solid rgba(0, 0, 0, .55);
  padding: 4px 25px;
  background: rgba(255, 255, 255, .25);
  backdrop-filter: blur(1px);
  margin: 0 auto;
  order: -1;
  text-align: center;
}

.about__verticalTitleText {
  font-weight: 700;
  letter-spacing: .12em;
  font-size: 26px;
  color: rgba(0, 0, 0, .85);
  order: 0;
}

/* 中：アイコン3つ（縦並び） */
.about__points{
  display: flex;
  flex-direction: column;
  align-items: center;     /* 3段全体を中央に寄せる */
  gap: 34px;
  margin: 40px auto;
  padding: 0 12px;
  box-sizing: border-box;
}

/* 各段：2カラムで固定（左=アイコン / 右=テキスト） */
.about__point{
  display: grid;
  grid-template-columns: 120px 1fr; /* ← 左カラム幅を固定すると丸が揃う */
  column-gap: 22px;
  align-items: center;

  width: 100%;
  max-width: 560px;        /* ← 3段の横幅を同一に */
}

/* アイコン：固定枠の中でセンターに配置 */
.about__pointIcon{
  width: 120px;            /* ← 左カラムと同じ */
  height: 120px;           /* ← 丸の見え方を揃える */
  object-fit: contain;     /* ← 画像がはみ出さず中央に収まる */
  display: block;
  margin: 0 auto;          /* ← 左カラム内で中央 */
}

/* 右側テキスト：左揃えで基準線を統一 */
.about_point_text-wrap{
  text-align: left;
  width: 100%;
}

/* タイトルSVG：左揃え（auto marginを消す） */
.about__pointTitleImg{
  display: block;
  height: 22px;
  width: auto;
  margin: 0 0 8px;         /* ← 左寄せ */
}

/* 説明文 */
.about__pointDesc{
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
  color: rgba(0,0,0,.72);
}

.about__iframe {
  display: block;
  width: 100%;
  height: 100%;
  margin: 50px auto 30px;
}


/* **************************************************************
	map
*************************************************************** */

#map {
  margin-bottom: 160px;
}

.maps {
  width: 100%;
  height: 100%;
}

/* **************************************************************
	partner
*************************************************************** */

#partner .partner-box {
  width: 100%;
  background-color: #fff;
  padding: 30px 30px 80px;
  margin: 100px auto 100px;
  text-align: center;
}

#partner .partner-title {
  margin-bottom: 20px;
}

#partner .partner-title p {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0;
}

#partner .partner-title span {
  font-size: 14px;
  font-weight: bold;
  color: #204c9f;
}

#partner .partner-wrap {
  display: flex;
  flex-wrap: wrap;          /* 折り返し */
  justify-content: center;  /* 中央揃え */
  align-items: center;
  gap: 30px 40px;           /* 縦 横 */
  padding: 0;
  list-style: none;
}

/* ロゴサイズ調整 */
#partner .partner-wrap li {
  flex: 0 0 auto;
}

/* 画像を50%縮小 */
#partner .partner-wrap img {
  width: 80%;
  height: auto;
  max-width: 120px; /* お好みで調整 */
  transition: 0.3s;
}

/* **************************************************************
	footer
*************************************************************** */

footer {
  background: #0a2d65;
  text-align: center;
}

footer.box>.inner {
  padding: 40px 0 30px;
}

footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px; /* 少しだけ詰める */
  padding: 0;
}

footer ul li {
  margin: 0 7px; /* ← 20px → 10px に縮小 */
}

footer ul li img {
  width: 40px;  /* ← サイズ調整（お好みで24〜28px） */
  height: auto;
  display: block;
}


footer p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  color: #fff;
}

footer .jfba {
  width: 80px;
  height: auto;
  margin: 0 auto 20px;
}