@charset "utf-8";
/* *************************************************************
	Global
*************************************************************** */

html {
  font-size: 16px;
}


body {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7;
  font-optical-sizing: auto;
  max-width: 100%;
  overflow-x: hidden;
  background-image: url("../img/washi_bg.webp");
  background-repeat: repeat;
  background-size: autp;
  /* 好みで調整（小さくすると密度UP） */
  background-color: #f4f2ed;
  /* 画像が読めない時の保険 */
}

/* 画像のにじみ防止 */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

.column {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding: 20px;
}

.h2 {
  max-height: 60px;
  margin-bottom: 50px;
  text-align: center;
}

.h2 {
  max-height: 81px;
  text-align: center;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.section-title {
  display: block;
  margin: 0 auto;
  text-align: center;
}

/* フェードインアニメーション */
.fade-in-up,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

/* 下から */
.fade-in-up {
  transform: translateY(40px);
}

/* 左から */
.fade-in-left {
  transform: translateX(-40px);
}

/* 右から */
.fade-in-right {
  transform: translateX(40px);
}

/* 表示状態 */
.fade-in-show {
  opacity: 1;
  transform: translate(0, 0);
}



/* =========================
   MV
========================= */
.mv {
  position: relative;
  overflow: hidden;
}

.mv__sp {
  display: none;
}

.mv__inner {
  position: relative;
  width: 100%;
  aspect-ratio: 850 / 550;

  /* ここが肝 */
  min-height: 700px;
  /* ← これ以上小さくならない */
  max-height: 100vh;
  /* ← デカくなりすぎ防止（任意） */
}



/* 左：タイトル */
.mv__title {
  position: absolute;
  left: 5%;
  top: 48px;
  width: clamp(260px, 44%, 580px);
  z-index: 5;
  opacity: 0;
  animation: mv-fade-up 1.4s ease-out forwards;
  animation-delay: 0.8s;
}

.mv__title img {
  width: 100%;
  height: auto;
}

.mv__movieWrap {
  position: absolute;
  right: -30px;
  top: 0;
  width: 80%;
  height: 80%;
  z-index: 2;
  overflow: hidden;
}

.mv__movie {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* 下の和紙が少し透けて“同化”する */
  opacity: 0.7;

  /* ちょい柔らかく（不要なら外してOK） */
  filter: contrast(0.95) saturate(0.95);

  opacity: 0;
  animation: mv-fade 2.0s ease-out forwards;
  animation-delay: 1.6s;
}


/* 右：縦コピー */
.mv__vertical {
  position: absolute;
  top: 28px;
  right: 60px;
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 24px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.88);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
  z-index: 6;
  opacity: 0;
  animation: mv-fade-up 1.2s ease-out forwards;
  animation-delay: 0.2s;
}

/* 橋（任意） */
.mv__bridge {
  position: absolute;
  left: 62%;
  bottom: 82px;
  transform: translateX(-50%);
  width: min(860px, 92%);
  opacity: 0.55;
  z-index: 3;
  pointer-events: none;
}

/* 波（任意） */
.mv__waves {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  width: 100%;
  height: auto;
  z-index: 4;
  pointer-events: none;
  animation: mv-float 8s ease-in-out infinite;
}

/* 右下：エントリー（画像ボタン） */
.mv__entry {
  position: absolute;
  right: 28px;
  bottom: 90px;
  width: 160px;
  /* ここでサイズ調整 */
  z-index: 7;
  text-decoration: none;
  animation: mv-float 4s ease-in-out infinite;
  animation-delay: 1.5s;
}

.mv__entry img {
  width: 100%;
  height: auto;
  transition: transform .15s ease, filter .15s ease;
}

.mv__entry:hover img {
  transform: translateY(-1px);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}

.mv__entry:active img {
  transform: translateY(0);
}

/* 雲 */
.mv__clouds {
  position: absolute;
  inset: 0;
  z-index: 3;
  /* 動画(2)と橋(3)の間〜橋と同階層 */
  pointer-events: none;
  overflow: hidden;
}

.mv__cloud {
  position: absolute;
  top: 0;
  width: auto;
  height: auto;
  opacity: 0.7;
  animation-name: cloud-flow;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* 雲① */
.mv__cloud--01 {
  top: 5%;
  left: -10%;
  width: 220px;
  animation-duration: 60s;
}

/* 雲② */
.mv__cloud--02 {
  top: 65%;
  left: 20%;
  width: 310px;
  opacity: 0.7;
  animation-duration: 80s;
}

/* 雲③ */
.mv__cloud--03 {
  top: 60%;
  left: -20%;
  width: 240px;
  opacity: 0.6;
  animation-duration: 150s;
}


@keyframes cloud-flow {
  0% {
    transform: translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 0.5; /* 元の雲の透明度に合わせる */
  }

  70% {
    opacity: 0;
  }

  100% {
    transform: translateX(70vw);
    opacity: 0;
  }
}



/* =========================
   MV フェードイン演出
========================= */
@keyframes mv-fade-up {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }

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

@keyframes mv-fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* =========================
   ふわっと上下アニメーション
========================= */
@keyframes mv-float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

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


/* =========================
   Copy Section
========================= */
.copy3 {
  position: relative;
  z-index: 5;
  margin-top: -72px;
  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: 1000px;
  padding-top: 70px;

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

  /* 波PNG + 下だけ塗り（※塗りは下に寄せて上には出さない） */
  background-image:
    url("../img/copy_bg_01.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.1);
  padding-top: 60px;

  position: relative; /* ← ::before を効かせるために必須 */
}

.copy3__band--mid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  /* ▼ここを「タイル背景」に変更 */
  background-image: url("../img/copy_bg_02.webp"); /* タイル用画像 */
  background-repeat: repeat;
  background-position: center;
  background-size: 320px 320px; /* ← タイル1枚のサイズに合わせて調整 */

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

  pointer-events: none; /* 念のため */
}


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


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

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

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

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

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

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

.copy3__band--bottom::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  /* ▼ここがポイント：1枚絵（cover）→ タイル（repeat）へ */
  background-image: url("../img/copy_bg_03.webp"); /* タイル用（シームレス） */
  background-repeat: repeat;
  background-position: center;
  background-size: 320px 320px; /* ← タイル1枚の実寸に合わせて調整 */

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

  pointer-events: none;
}


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

.copy3__inner.copy3__inner--top {
   padding: 110px 50px 50px;
 
}

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

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

.copy3__deco--t2 {
  left: -5%;
  top: 400px;
  width: 270px;
  opacity: .45;
}

.copy3__deco--t3 {
  left: 10%;
  top: 640px;
  width: 150px;
  opacity: .55;
}

.copy3__deco--t4 {
  right: 3%;
  top: 80px;
  width: 120px;
  opacity: .55;
}

.copy3__deco--t5 {
  right: -3%;
  top: 380px;
  width: 240px;
  opacity: .55;
}

/* MID */
.copy3__deco--m1 {
  left: 7%;
  top: 267px;
  width: 130px;
  opacity: .45;
}

.copy3__deco--m2 {
  left: -2%;
  top: 550px;
  width: 250px;
  opacity: .55;
}

.copy3__deco--m3 {
  right: 3%;
  top: 110px;
  width: 270px;
  opacity: .60;
}

.copy3__deco--m4 {
  right: 8%;
  top: 380px;
  width: 100px;
  opacity: .80;
}

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

.copy3__deco--b2 {
  left: 17%;
  bottom: 230px;
  width: 120px;
  opacity: .30;
}

.copy3__deco--b3 {
  right: 32%;
  top: 170px;
  width: 100px;
  opacity: .55;
}

.copy3__deco--b4 {
  right: 14%;
  top: 390px;
  width: 170px;
  opacity: .30;
}

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

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

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

/* 橋（不定形PNG前提） */
.copy3__bridge {
  margin: 0;
  width: min(540px, 92vw);
}

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

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

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

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

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


/* 中段 */
.copy3__leadTitle {
  margin: 100px 0 0;
  font-size: clamp(20px, 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: 320px;
  /* 線の長さ（お好みで調整） */
  background-color: rgba(31, 95, 143, 0.6);
  margin-top: 18px;
  /* 見出しと線の間 */
}

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


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

.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: 240px;
}

.copy3__circle--2 {
  left: 0;
  bottom: 0;
  width: 280px;
}

/* 下段の縦コピー */
.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: 1px;
  /* 線の太さ */
  height: 15em;
  /* 線の長さ（文字基準） */
  background-color: rgba(255, 255, 255, 1);
  margin-inline: 16px;
  /* 線の左右余白（縦書きなのでinline） */
  margin-right: 25px;
}

.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: min(1080px, 92vw);
  margin: 0 auto;
  padding: 0 50px;
  min-height: 510px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -120px;
  z-index: 2;
}

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

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

  writing-mode: vertical-rl;
  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: 30px;
  font-weight: 600;
  line-height: 1.5;
  text-align: start;
}

.copy3__band--bottom .copy3__bottomSideNote {
  margin: 50px;
  font-size: 18px;
  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: 0;
  top: -50px;
  width: 300px;
}

/* 左下 */
.copy3__band--bottom .copy3__sakura--2 {
  left: 17%;
  top: 250px;
  width: 200px;
}

/* 右上 */
.copy3__band--bottom .copy3__sakura--3 {
  left: 75%;
  top: -140px;
  width: 280px;
}

/* 右 */
.copy3__band--bottom .copy3__sakura--4 {
  right: 10%;
  top: 150px;
  width: 220px;
}

/* =========================
   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) 16px;
  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: 1000px;
  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: 16px;
  font-weight: 600;
  letter-spacing: .04em;
  color: #222;
}

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

.info__note {
  width: 580px;
  max-width: 100%;
  margin: 40px auto 0;
  font-size: 14px;
  line-height: 1.7;
  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: 10%;
  top: 20%;
  width: 120px;
  transform: translateY(-70%);
  opacity: 0.95;
}

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

/* 左下：雲（大） */
.info__deco--cloudL {
  left: 5%;
  bottom: 50px;
  width: 300px;
  opacity: 0.9;
}

/* 右：雲（横長） */
.info__deco--cloudR {
  right: 10%;
  top: 58%;
  width: 220px;
  transform: translateY(-30%);
  opacity: 0.9;
}

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

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

.topics {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
}

/* 中央カラム */
.topics__inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
  position: relative;
}

/* 見出しは非表示 */
.topics__title {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* =========================
   PC: ステージ
========================= */
.topics__stage {
  display: grid;
  grid-template-rows: auto auto auto;
  row-gap: 0;
  padding: 40px 0;
}

/* 各段 */
.topics__row {
  position: relative;
  min-height: 400px;
}

/* =========================
   画像共通
========================= */
.topics__photo {
  position: absolute;
  margin: 0;
  z-index: 1;
}

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

/* 上：中央固定幅 */
.topics__photo--top {
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 1900px;
  max-width: none;
}

/* 中：右端に接地 */
.topics__photo--map {
  top: -50px;
  right: calc(50% - 60vw);
  width: 1160px;
  max-width: none;
}

/* 下：左端に接地 */
.topics__photo--bottom {
  left: calc(50% - 37vw);
  bottom: 130px;
  width: 1160px;
  max-width: none;
  transform: translateX(-200px);
}

/* =========================
   PC: テキスト（縦書き）
========================= */
.topics__headline {
  position: absolute;
  top: -170px;
  right: 0;
  z-index: 5;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: .12em;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.4;
  color: #fff;
  padding: 32px 20px;
  border-radius: 2px;
  background: linear-gradient(180deg, #0a4b85 0%, #2aa8d6 100%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

/* =========================
   PC: テキスト（縦書き）Safari対策
========================= */
.topics__vbox {
  position: absolute;
  z-index: 6;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
  border-radius: 2px;
  padding: 30px 30px;

  /* ▼Safariで“縦書きの自動サイズ計算”が縮むのを防ぐ */
  display: inline-block;

  /* ▼内容サイズで確定させる（論理プロパティ） */
  inline-size: max-content;
  block-size: max-content;
}

.topics__vtext {
  margin: 0;

  /* ▼縦書き（webkitプレフィックスも付与） */
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;

  text-orientation: mixed;
  -webkit-text-orientation: mixed;

  /* ▼Safariで高さ計算が縮む時の保険（内容サイズ固定） */
  display: inline-block;
  inline-size: max-content;
  block-size: max-content;

  /* ▼勝手な折り返しで列幅/高さ計算が崩れるのを防ぐ */
  white-space: nowrap;

  letter-spacing: .08em;
  font-weight: 500;
  font-size: clamp(12px, 1.4vw, 14px);
  line-height: 1.9;
  color: rgba(0, 0, 0, .78);
}


/* 左本文（2段目） */
.topics__vbox--left {
  top: -250px;
  left: clamp(40px, 6vw, 110px);
}

/* 右本文（3段目） */
.topics__vbox--right {
  top: -170px;
  right: clamp(20px, 4vw, 70px);
}

/* =========================
   欧文1文字回転
========================= */
.rotate-en{
  display: inline;
  writing-mode: inherit;
  text-orientation: upright;
  margin: 0;
  line-height: inherit;
}

/* 縦中横（必要な場合） */
.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(-0.15em);
}

/* =========================
   飾り
========================= */
.topics__deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  height: auto;
}

.topics__deco--01 {
  left: 4%;
  top: 42%;
  width: 270px;
  transform: translateY(-70%);
  opacity: 0.95;
}

.topics__deco--02 {
  right: 1%;
  bottom: 350px;
  width: 270px;
  opacity: 0.95;
}

.topics__deco--03 {
  left: 5%;
  bottom: 150px;
  width: 300px;
  opacity: 0.9;
}




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

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

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

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

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

  width: 1160px;
  /* 固定 */
  height: 1060px;
  /* 固定 */
  margin: 0 auto;
}


/* テキストブロック */
.pickup__text {
  position: absolute;
  top: 280px;
  left: 120px;
  color: #fff;
  max-width: 420px;
}

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

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


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

/* 写真共通 */
.pickup__photo {
  position: absolute;
  width: 200px;
  height: auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* 各写真の位置 */
.photo-1 {
  top: 240px;
  right: 180px;
  width: 350px;
}

.photo-2 {
  top: 500px;
  right: 440px;
  width: 140px;
}

.photo-3 {
  bottom: 130px;
  left: 420px;
  width: 400px;
}

.photo-4 {
  bottom: 130px;
  left: 200px;
}

/* 縦コピー */
.pickup__vertical {
  position: absolute;
  right: 220px;
  bottom: 20px;
  writing-mode: vertical-rl;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.1em;
  color: #fff;
  background: #fff;
  color: #0b5fa5;
  padding: 24px 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}


/* =========================
   MC
========================= */
.mc {
  position: relative;
  padding: 90px 0 0;
  overflow: hidden;
  /* 端の飾りがはみ出してもOKなら hidden のまま */
}

.mc__inner {
  width: min(940px, calc(100% - 40px));
  margin: 120px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 1;
  /* 飾りの上に本体 */
}

/* 左テキスト */
.mc__content {
  flex: 1 1 auto;
  max-width: 560px;
  /* 見た目が詰まる場合は 520〜620 で調整 */
}

.mc__title {
  margin: 0 0 24px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: #2a2a2a;
}

.mc__titleLabel {
  font-size: 18px;
  letter-spacing: .14em;
  font-weight: 600;
}

.mc__titleName {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: .10em;
  font-weight: 800;
}

.mc__text {
  color: rgba(0, 0, 0, .70);
  font-size: 14px;
  line-height: 2.1;
  letter-spacing: .06em;
}

.mc__text p {
  margin: 0;
}

/* 右画像（指定：520px） */
.mc__photo {
  flex: 0 0 auto;
  margin: 0;
  width: 460px;
  /* ← 指定どおり */
  max-width: 520px;
}

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

/* 飾り（pngをpositionで配置） */
.mc__deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  height: auto;
}

/* 右上の花 */
.mc__deco--flower {
  width: 140px;
  /* 画像に合わせて調整 */
  top: 120px;
  right: 70px;
}

/* 左の雲（中央あたり） */
.mc__deco--cloudL {
  width: 210px;
  /* 画像に合わせて調整 */
  top: 40%;
  left: -50px;
  transform: translateY(-55%);
  opacity: .95;
}

/* 左下の雲（下側） */
.mc__deco--cloudLB {
  width: 230px;
  /* 画像に合わせて調整 */
  bottom: 90px;
  left: 70px;
  opacity: .95;
}

/* 右側の雲（中央右） */
.mc__deco--cloudR {
  width: 220px;
  /* 画像に合わせて調整 */
  top: 56%;
  right: -35px;
  transform: translateY(-50%);
  opacity: .95;
}



/* =========================
   about
========================= */
.about {
  position: relative;
  background: url("../img/about_bg.webp") center / cover no-repeat;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 240px 0;
  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;
  justify-content:flex-end;
  align-items:flex-start;
  gap:50px;
}

/* ▼ Safari対策：flex内の縦書きは shrinkさせない + 内容幅で確定させる */
.about__verticalText,
.about__verticalTitle{
  flex: 0 0 auto;     /* 伸びない・縮まない */
  flex-shrink: 0;
}

.about__verticalText{
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;

  /* ▼これが重要：内容サイズで確定（Safariの再計算ブレを抑える） */
  inline-size: max-content;
  width: max-content;

  letter-spacing: .08em;
  line-height: 2.8;
  font-size: 16px;
  color: rgba(0,0,0,.78);
  padding: 20px;
}

.about__verticalText p {
  margin: 0;
  line-height: 2.8;
  letter-spacing: .08em;
}

.about__verticalText p+p {
  margin-left: 16px;
}

.about__verticalTitle{
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;

  inline-size: max-content;
  width: max-content;

  border: 2px solid rgba(0, 0, 0, .55);
  padding: 40px 8px;
  background: rgba(255, 255, 255, .25);
  backdrop-filter: blur(1px);
  margin-right: 100px;
}

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

/* 中：アイコン3つ（常に3つ横並び） */
.about__points {
  display: flex;
  flex-wrap: nowrap;           /* ← 折り返さない */
  justify-content: center;
  align-items: flex-start;
  gap: 14px;                   /* ← スマホで詰める */
  margin: 40px auto;
  width: 100%;
  max-width: 980px;            /* 任意：PCで広がりすぎ防止 */
  padding: 0 12px;             /* ← 端切れ防止 */
  box-sizing: border-box;
}

.about__point {
  text-align: center;
  flex: 1 1 0;                 /* ← 3等分 */
  min-width: 0;                /* ← これが無いと縮まらず崩れることがある */
  max-width: none;
}


.about__pointIcon {
  width: auto;
  height: 200px;
  display: block;
  margin: 0 auto 10px;
}

/* ★筆字SVG（タイトル） */
.about__pointTitleImg {
  display: block;
  width: auto;
  height: 26px;
  margin: 0 auto 8px;
}

.about__pointDesc {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(0, 0, 0, .72);
}


.about__iframe {
  display: block;
  width: 560px;
  height: 315px;
  margin: 50px auto 30px;
}


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

#map {
  margin-bottom: 160px;
}

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


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

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

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

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

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

#partner .partner-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
}

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

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

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

footer ul {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

footer ul li {
  margin: 0 20px;
}

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

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