@charset "UTF-8";
:root {
  /* font */
  --font-en: "Barlow", sans-serif;
  /* color */
  --color-blue: #0A318F;
  --color-darkblue: #000033;
  --color-lightblue:#82B5FF;
  --color-yellow: #FFD900;
  --color-orange: #F8B500;
  --color-green:#89C9A1;
  --color-lightblue:#82B5FF;
  --color-black: #000000;
  --color-white: #fff;
  /* Fluid Typography: 16px */
  --fz-base: 1rem;
  --inner-width: 1200px;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-blue);
  color: #fff;
  font-family: "Barlow", "Noto Sans JP", sans-serif;
  line-height: 1.6;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* リンクの基本 */
a {
  text-decoration: none;
  color: var(--text-main);
}

/* 1. ボックスモデルの定義：paddingやborderを幅に含める */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. デフォルトの余白をリセット */
* {
  margin: 0;
  padding: 0;
}

/* 3. 本文のセットアップ：スクロールを滑らかにし、ベースの行間を整える */
html {
  color-scheme: light dark; /* ダークモード対応 */
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased; /* フォントを綺麗に見せる（mac/iOS用） */
  text-rendering: optimizeSpeed;
}

/* 4. 画像やメディア要素の扱い：親要素からはみ出さないようにする */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* 5. フォーム要素のフォント継承：inputやbuttonが独自のフォントにならないように */
input, button, textarea, select {
  font: inherit;
}

/* 6. テキストエリアのサイズ調整を縦方向のみに制限 */
textarea {
  resize: vertical;
}

/* 7. リストの記号を消す（必要に応じて） */
ul, ol {
  list-style: none;
}

/* 8. アニメーションを好まないユーザーへの配慮（アクセシビリティ） */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.is-block {
  display: block !important;
}

.is-inline {
  display: inline !important;
}

.is-inline-block {
  display: inline-block !important;
}

.is-none {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .is-mobile-block {
    display: block !important;
  }
  .is-mobile-inline {
    display: inline !important;
  }
  .is-mobile-inline-block {
    display: inline-block !important;
  }
  .is-mobile-none {
    display: none !important;
  }
}
@media screen and (min-width: 576px) {
  .is-fablet-block {
    display: block !important;
  }
  .is-fablet-inline {
    display: inline !important;
  }
  .is-fablet-inline-block {
    display: inline-block !important;
  }
  .is-fablet-none {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .is-tablet-block {
    display: block !important;
  }
  .is-tablet-inline {
    display: inline !important;
  }
  .is-tablet-inline-block {
    display: inline-block !important;
  }
  .is-tablet-none {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .is-desktop-block {
    display: block !important;
  }
  .is-desktop-inline {
    display: inline !important;
  }
  .is-desktop-inline-block {
    display: inline-block !important;
  }
  .is-desktop-none {
    display: none !important;
  }
}
@media screen and (min-width: 1400px) {
  .is-wide-block {
    display: block !important;
  }
  .is-wide-inline {
    display: inline !important;
  }
  .is-wide-inline-block {
    display: inline-block !important;
  }
  .is-wide-none {
    display: none !important;
  }
}
/* ========================================================
  ヘッダー
========================================================== */
/* ナビゲーション全体のコンテナ */
.gnav-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 0; /* メインビジュアルに被せるためのネガティブマージン */
  z-index: 10;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}

/* 白いカード部分 */
.gnav-wrapper {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 0 40px 0; /* 下のpaddingは0にしてラインを底に密着させる */
  overflow: hidden; /* 黄色いラインの角丸を維持するため */
}

/* リストの並び */
.gnav-list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  list-style: none;
  padding: 0;
  margin: 0;
}

.gnav-item {
  flex: 1;
  text-align: center;
  position: relative;
  display: flex;
}

/* テキストスタイル */
.gnav-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 30px 10px 15px;
  transition: 0.3s;
}

.gnav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #ffcc00;
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
}

/* カレント表示（現在地）の黄色いライン */
.gnav-item.is-active::after,
.gnav-link:hover::after {
  opacity: 1;
}

.gnav-link:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.gnav-en {
  display: block;
  font-size: 11px;
  font-weight: bold;
  color: #66cc99;
  margin-bottom: 5px;
  line-height: 1.2;
}

.gnav-jp {
  display: block;
  font-size: 13px;
  font-weight: bold;
  color: #003;
  line-height: 1.4;
}

/* ---------------
  スマホメニュー
 --------------- */
/* --- PC版の既存スタイルはそのまま活かす --- */
@media screen and (max-width: 1024px) {
  /* 1. 全体の配置を「MV下」から「画面右上固定」に変更 */
  .gnav-section {
    position: fixed;
    top: 20px;
    right: 20px;
    left: auto;
    bottom: auto;
    width: auto;
    max-width: none;
    transform: none;
    z-index: 100;
  }
  /* 2. ハンバーガーボタンのデザイン */
  .menu-trigger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 54px;
    height: 54px;
    background: var(--color-darkblue);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    z-index: 110;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  .menu-trigger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
  }
  /* 3. ボタンが押された時の「×」アニメーション */
  .menu-trigger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-trigger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .menu-trigger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  /* 4. メニュー本体（gnav-wrapper）のスマホ化 */
  .gnav-wrapper {
    position: fixed;
    top: 0;
    right: -100%; /* 初期状態は画面外 */
    width: 100%; /* 全画面にする場合 */
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 0; /* 角丸を消す */
    padding: 100px 40px;
    transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: none;
    display: block; /* Flexを解除 */
    overflow-y: auto;
  }
  /* メニューが開いた状態 */
  .gnav-wrapper.is-open {
    right: 0;
  }
  /* 5. リストの並びを縦にする */
  .gnav-list {
    flex-direction: column;
    height: auto;
    gap: 0;
  }
  .gnav-item {
    width: 100%;
    border-bottom: 1px solid #eee;
  }
  .gnav-link {
    padding: 25px 0;
    align-items: flex-start; /* テキストを左寄せに */
  }
  /* ホバーラインの代わりに下線などは必要に応じて調整 */
  .gnav-link::after {
    bottom: 0;
    height: 3px;
  }
}
/* ========================================================
  共通
========================================================== */
.section-sub-title {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--color-green);
  margin-bottom: 8px;
}

.section-main-title {
  font-size: 40px;
  font-weight: bold;
  color: #ffcc00;
}
@media screen and (max-width: 767px) {
  .section-main-title {
    font-size: 24px;
  }
}

.player-shadow::before {
  display: block;
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
  z-index: -1;
}

/* ========================================================
  メインビジュアル
========================================================== */
.mv-section {
  width: 100%;
  position: relative;
}

.mv-section-primary-wrraper {
  width: 100%;
  position: relative;
  padding: 2.5% 2.5% 0;
  max-height: 800px;
  height: 100%;
  background-image: url(../images/mv_bg_top.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .mv-section-primary-wrraper {
    padding: 90px 5% 0;
    max-height: none;
    height: auto;
  }
}

.mv-hero-wrraper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .mv-hero-wrraper {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}

.mv-hero-copy {
  width: 550px;
  height: 500px;
  position: relative;
  z-index: 2;
}
.mv-hero-copy img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .mv-hero-copy {
    width: 90%;
    height: auto;
  }
}

.mv-hero-img {
  width: 650px;
  height: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .mv-hero-img {
    width: 100%;
    max-width: 500px;
  }
}
.mv-hero-img img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
.mv-hero-img::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/mv_hero01_shadow.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  left: 60px;
  top: -20px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mv-hero-img::before {
    left: 20px;
  }
}

.mv_bg_line {
  display: block;
  width: 100%;
  margin: 0 auto;
  height: 1090px;
  background-image: url(../images/mv_bg_line.png);
  background-size: auto 1090px;
  background-repeat: no-repeat;
  background-position: 60% center;
  position: absolute;
  left: 0;
  top: 200px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mv_bg_line {
    display: none;
  }
}

.mv-section-secondary-wrapper {
  background-image: url(../images/mv_bg_bottom.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: relative;
  z-index: 2;
  padding-top: 260px;
}
@media screen and (max-width: 767px) {
  .mv-section-secondary-wrapper {
    padding-top: 55px;
  }
}
.mv-section-secondary-wrapper h2 {
  text-align: center;
  font-size: 4.714vw;
  line-height: 1.25;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .mv-section-secondary-wrapper h2 {
    font-size: 24px;
  }
}
.mv-section-secondary-wrapper h2 span {
  color: var(--color-yellow);
}

.message-content {
  padding: 80px 20px;
  text-align: center;
  line-height: 2.2;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .message-content {
    padding: 40px 20px;
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
  }
}

.message-highlight {
  font-size: 24px;
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .message-highlight {
    font-size: 18px;
    margin: 20px 0;
  }
}

.mv-player2,
.mv-player3 {
  position: absolute;
  background-repeat: no-repeat;
}
.mv-player2 img,
.mv-player3 img {
  position: relative;
  z-index: 2;
}

.mv-player2 {
  display: block;
  width: 26.571vw;
  height: 33.929vw;
  left: 5%;
  bottom: -2.857vw;
}
@media screen and (max-width: 767px) {
  .mv-player2 {
    bottom: -80px;
  }
}

.mv-player2.player-shadow::before {
  width: 26.571vw;
  height: 33.929vw;
  background-image: url(../images/mv_hero02_shadow.png);
  left: -2.857vw;
  top: -1.429vw;
  z-index: 1;
}

.mv-player3 {
  display: block;
  width: 20.714vw;
  height: 31.429vw;
  right: 2.857vw;
  top: 12.857vw;
}
@media screen and (max-width: 767px) {
  .mv-player3 {
    top: 20px;
  }
}

.mv-player3.player-shadow::before {
  width: 20.714vw;
  height: 31.429vw;
  background-image: url(../images/mv_hero03_shadow.png);
  right: -1.429vw;
  top: 0px;
  z-index: 1;
}

.kazari_line_white {
  display: block;
  width: 720px;
  height: 320px;
  position: absolute;
  right: -340px;
  bottom: -20px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .kazari_line_white {
    display: block;
    width: 51.429vw;
    height: 22.857vw;
    position: absolute;
    right: -24.286vw;
    bottom: -1.429vw;
    z-index: 2;
  }
}

/* ========================================================
  CONCEPT 
========================================================== */
/* --- レイアウト共通 --- */
.concept-section,
.sustainability-section {
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 767px) {
  .concept-section {
    padding: 0 0 170px;
  }
}
.sustainability-section {
  padding-bottom: 430px;
  overflow: hidden;
  position: relative;
  background-image: url(../images/bg_sankaku_darkblue.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center bottom;
}
@media screen and (max-width: 767px) {
  .sustainability-section {
    padding: 0;
  }
}

.concept-wrapper,
.sustainability-wrapper {
  width: var(--inner-width);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .concept-wrapper,
  .sustainability-wrapper {
    width: 100%;
    padding: 0 20px;
  }
}

.concept-content, .sustainability-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .concept-content, .sustainability-content {
    flex-direction: column !important;
    gap: 40px;
  }
}

/* --- テキスト装飾 --- */
.concept-lead, .sustainability-lead {
  font-size: 28px;
  font-weight: bold;
  color: #ffcc00; /* 黄色のアクセント色 */
  margin-bottom: 30px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .concept-lead, .sustainability-lead {
    font-size: 18px;
    text-align: left;
  }
}

.concept-description p, .sustainability-description p {
  font-size: 15px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .concept-description p, .sustainability-description p {
    text-align: left;
  }
}

/* --- ビジュアル装飾 --- */
.concept-visual {
  flex: 0 0 350px;
  flex: 0 0 25vw;
  position: relative;
  z-index: 1;
}
.concept-visual::before {
  width: 24.5vw;
  height: 48.643vw;
  background-image: url(../images/concept_hero01_shadow.png);
  display: block;
  left: 2.857vw;
  top: -0.714vw;
}
@media screen and (max-width: 767px) {
  .concept-visual {
    flex: 0 0 auto;
    width: 70%;
    max-width: 100px;
    position: absolute;
    right: 0;
    bottom: -170px;
  }
  .concept-visual::before {
    width: 100%;
    height: auto;
    left: 15px;
  }
}

.sustainability-visual {
  flex: 0 0 50%;
}

.netzero-image {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.sustainability-content {
  flex-direction: row-reverse;
}

@media screen and (max-width: 1024px) {
  .concept-content, .sustainability-content {
    flex-direction: column;
    text-align: center;
  }
  .concept-visual, .sustainability-visual {
    width: 80%;
    margin-top: 40px;
  }
  .player-image {
    width: 100%;
  }
}
.sustainability-visual {
  margin-top: 0;
  width: 80%;
}

.concept-sustainability-wrapper {
  position: relative;
}

.kazari_line_set {
  display: block;
  width: 2295px;
  height: 883px;
  position: absolute;
  left: -690px;
  top: 550px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .kazari_line_set {
    width: 163.929vw;
    height: 63.071vw;
    position: absolute;
    left: -49.286vw;
    top: 640px;
  }
}

/* ========================================================
  ACTION トリニータが取り組むACTION
========================================================== */
.report-section {
  width: 100%;
  padding: 0 0 300px;
  overflow: hidden;
  background-color: #000032;
  background-image: url(../images/bg_sankaku_blue.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: relative;
}
@media screen and (max-width: 767px) {
  .report-section {
    padding: 50px 20px 100px;
  }
}

.kazari_line_lightgreen {
  display: block;
  width: 983px;
  height: 370px;
  position: absolute;
  right: -300px;
  bottom: 120px;
}
@media screen and (max-width: 767px) {
  .kazari_line_lightgreen {
    display: none;
  }
}

.kazari_line_darkblue {
  display: block;
  width: 844px;
  height: 254px;
  position: absolute;
  right: 0;
  bottom: 200px;
}
@media screen and (max-width: 767px) {
  .kazari_line_darkblue {
    width: 60.286vw;
    height: 18.143vw;
    position: absolute;
    right: 0;
    bottom: 14.286vw;
  }
}

.netone-section .kazari_line_darkblue {
  bottom: 200px;
  right: -200px;
}
@media screen and (max-width: 767px) {
  .netone-section .kazari_line_darkblue {
    right: 0;
  }
}

.kazari_line_darkblue_yy {
  display: block;
  width: 95px;
  height: 980px;
  position: absolute;
  left: 50px;
  bottom: -670px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .kazari_line_darkblue_yy {
    display: block;
    width: 6.786vw;
    height: 70vw;
    position: absolute;
    left: 3.571vw;
    bottom: -47.857vw;
    z-index: -1;
  }
}

.report-wrapper {
  width: var(--inner-width);
  margin: 0 auto;
  overflow: visible;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .report-wrapper {
    width: 100%;
    overflow: hidden;
  }
}

.section-header {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .section-header {
    margin-bottom: 30px;
  }
}

/* スライダー外枠：右側だけ画面の端まで広げる */
.report-slider-custom {
  padding-bottom: 60px;
  /* 左端は現在の位置を維持し、右側だけ100vw（画面端）まで無理やり伸ばす */
  width: calc(100% + (100vw - 100%) / 2);
  margin-right: calc((100vw - 100%) / -2);
  overflow: hidden; /* リストのアニメーションをこの枠の中に収める */
}
@media screen and (max-width: 767px) {
  .report-slider-custom {
    overflow: visible;
  }
}

/* スライダーの中身（横に並べる） */
.report-slider-list {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  will-change: transform;
  cursor: grab; /* 掴めるカーソル */
  user-select: none; /* テキスト選択を防止 */
  will-change: transform;
}

.report-slider-list.grabbing {
  cursor: grabbing; /* 掴んでいる間のカーソル */
}

.report-slider-item {
  flex: 0 0 300px; /* カード幅固定 */
}
@media screen and (max-width: 767px) {
  .report-slider-item {
    flex: 0 0 260px;
  }
}

.report-slider-item img {
  pointer-events: none; /* 画像のドラッグ開始を防止（JSの挙動を優先） */
}

/* --- ジグザグの設定 --- */
.report-slider-item:nth-child(even) {
  transform: translateY(60px);
}
@media screen and (max-width: 767px) {
  .report-slider-item:nth-child(even) {
    transform: translateY(30px);
  }
}

/* カードのデザイン（以前のものを流用） */
.report-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  background-color: #fff;
  color: #0d2a83;
  overflow: hidden;
  transition: all 0.4s ease;
}
@media screen and (max-width: 767px) {
  .report-card {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.report-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.report-card-body {
  padding: 30px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.report-card-title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 30px;
}

.report-card-btn-area {
  margin-top: auto;
}

.report-card-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 30px;
  border: 1px solid #0d2a83;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.4s ease;
}

/* ホバー反転 */
.report-card:hover {
  background-color: #0d2a83;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(13, 42, 131, 0.3);
}

.report-card:hover .report-card-btn {
  background-color: #fff;
  color: #0d2a83;
  border-color: #fff;
}

/* ========================================================
  ABOUT CO2 CO2について考える
========================================================== */
.abutco2-section {
  padding: 0px 0 240px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .abutco2-section {
    padding: 0px 0 60px;
  }
}

.about_hero01 {
  display: block;
  width: 162px;
  height: 440px;
  position: absolute;
  top: -260px;
  right: 340px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .about_hero01 {
    width: 50px;
    height: 29.429vw;
    top: -18.571vw;
    right: 24.286vw;
    top: -40px;
    right: 60px;
  }
}

.about_hero01.player-shadow::before {
  width: 100%;
  height: 100%;
  background-image: url(../images/about_hero01_shadow.png);
  display: block;
  left: 20px;
  top: -10px;
  z-index: -1;
}

.kazari_line_lightblue {
  display: block;
  width: 70.214vw;
  height: 26.429vw;
  position: absolute;
  right: -14.286vw;
  bottom: -3.571vw;
  z-index: 2;
}

.abutco2-wrapper {
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.abutco2-player-list {
  width: 100%;
  display: flex;
}
@media screen and (max-width: 767px) {
  .abutco2-player-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.abutco2-player-list li {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .abutco2-player-list li {
    width: calc(50% - 5px); /* 2カラム */
  }
}

/* ========================================================
  netoneの取り組み
========================================================== */
.netone-section {
  padding: 100px 0 260px;
  color: #fff;
  position: relative;
  background-color: #000032;
  background-image: url(../images/bg_sankaku_blue.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center bottom;
}
@media screen and (max-width: 767px) {
  .netone-section {
    padding: 50px 0 0;
  }
}

.netone-section-kazari-line {
  display: block;
  width: 845px;
  height: 255px;
  position: absolute;
  right: -250px;
  bottom: 0px;
}

.netone-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .netone-wrapper {
    padding: 0 20px;
  }
}

/* レイアウト */
.netone-content {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .netone-content {
    flex-direction: column;
    align-items: center;
  }
}

.netone-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* 円形フレーム */
.netone-circle {
  width: 280px;
  height: 280px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.netone-keyword {
  font-size: 48px;
  font-weight: 700;
  color: #ffcc00;
  letter-spacing: 0.05em;
}

/* テキスト装飾 */
.netone-text-unit {
  min-height: 120px;
}

.netone-lead {
  font-size: 28px;
  font-weight: bold;
  display: inline-block;
}

.netone-sub-lead {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .netone-sub-lead {
    margin-left: -15px;
  }
}

.netone-description {
  font-size: 16px;
  line-height: 2;
  font-weight: bold;
}

/* ボタン（デザイン通りのイエロー） */
.netone-btn-wrapper {
  text-align: center;
}

.netone-btn {
  display: inline-block;
  background-color: #ffcc00;
  color: #000;
  text-decoration: none;
  padding: 15px 60px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
}

.netone-btn:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

/* ========================================================
  Jリーグの取り組み
========================================================== */
/* セクション全体 */
.initiatives-section {
  background-color: #0A318F;
  padding: 100px 0 100px;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .initiatives-section {
    padding: 50px 0 50px;
  }
}

.initiatives-section:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/initiatives_bg.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: 0;
}

.initiatives-wrapper {
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .initiatives-wrapper {
    padding: 0 20px;
  }
}

.initiatives-player {
  display: block;
  width: 26.429vw;
  height: auto;
  position: absolute;
  right: 0;
  top: -14.286vw;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .initiatives-player {
    right: 40px;
    top: -30px;
  }
}
.initiatives-player::before {
  width: 100%;
  height: 100%;
  background-image: url(../images/initiatives_hero01_shadow.png);
  display: block;
  left: 2.857vw;
  top: -0.714vw;
}

/* タイトルエリア */
.initiatives-header {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .initiatives-header {
    margin-bottom: 30px;
  }
}

/* カード構造 */
.initiatives-card {
  position: relative;
  z-index: 2;
  margin-bottom: 85px;
}

/* 年表の点線 */
.initiatives-card::after {
  content: "";
  position: absolute;
  bottom: -65px;
  left: 85px;
  width: 4px;
  height: 50px;
  border-left: 4px dotted #4d89ff; /* 明るい青の点線 */
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .initiatives-card::after {
    left: 50%;
  }
}

@media screen and (max-width: 767px) {
  .initiatives-card:last-child {
    margin-bottom: 45px;
  }
}
.initiatives-card:last-child::after {
  display: none;
}

.initiatives-card-lead {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .initiatives-card-lead {
    margin-bottom: 40px;
    font-size: 15px;
  }
}

.initiatives-card-content {
  color: #000;
  display: flex;
  padding: 0 5% 0 0;
  min-height: 260px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .initiatives-card-content {
    display: block;
    min-height: auto;
    padding: 0 7.5% 7.5% 5%;
  }
}
.initiatives-card-content::before {
  display: block;
  content: "";
  width: 97.5%;
  height: 100%;
  background-color: #fff;
  border-radius: 80px 0 0 0;
  position: absolute;
  right: 0;
  top: 0;
}

/* 左側ビジュアル（縦書き部分） */
.initiatives-card-visual {
  flex-shrink: 0;
  width: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  left: -10px;
}
@media screen and (max-width: 767px) {
  .initiatives-card-visual {
    width: 100%;
    flex-direction: column;
    justify-content: start;
    top: -30px;
  }
}

.keyword-unit {
  display: flex;
  align-items: flex-end;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .keyword-unit {
    margin: 0;
  }
}

.initiatives-keyword {
  writing-mode: vertical-rl;
  font-size: 80px; /* デザインに合わせた特大サイズ */
  font-weight: 900;
  color: var(--color-orange);
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .initiatives-keyword {
    font-size: 60px;
    margin-left: -10px;
  }
}

.keyword-suffix {
  font-size: 18px;
  font-weight: bold;
  margin-left: 10px;
  margin-bottom: 15px; /* 「が変わる」の位置調整 */
  white-space: nowrap;
}

.initiatives-year {
  font-size: 42px;
  font-weight: 900;
  color: var(--color-lightblue);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .initiatives-year {
    margin-left: -25px;
    font-size: 26px;
    position: absolute;
    right: 0;
    bottom: 15px;
  }
}

/* 右側テキストエリア */
.initiatives-card-info {
  flex-grow: 1;
  padding-left: 40px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .initiatives-card-info {
    display: block;
    padding-left: 10%;
  }
}

.initiatives-card-detail {
  width: 100%;
}

.detail-row {
  display: flex;
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .detail-row {
    display: block;
    margin-bottom: 15px;
  }
}

.detail-row:last-child {
  margin-bottom: 0;
}

.detail-row dt {
  width: 200px;
  font-weight: bold;
  flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .detail-row dt {
    width: 100%;
    color: var(--color-blue);
    margin-bottom: 10px;
  }
}

.detail-row dd {
  flex-grow: 1;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .detail-row dd {
    color: var(--color-black);
    font-size: 14px;
    margin-bottom: 20px;
  }
}

/* ボタンデザイン */
.initiatives-btn-wrapper {
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .initiatives-btn-wrapper {
    margin-top: 0;
  }
}

.initiatives-btn {
  display: inline-block;
  background: #2288ff;
  color: #fff;
  text-decoration: none;
  padding: 18px 70px;
  border-radius: 40px;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
}
@media screen and (max-width: 767px) {
  .initiatives-btn {
    display: block;
    width: 95%;
    padding: 18px 35px;
    font-size: 16px;
    margin: 0 auto;
  }
}

.initiatives-btn::after {
  content: "→"; /* もしくはSVGアイコン */
  margin-left: 15px;
  font-size: 12px;
  border: 1px solid #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 17px;
}

.initiatives-btn:hover {
  background: #0066ff;
  transform: translateY(-3px);
}

/* ========================================================
  フッター
========================================================== */
.footer-section {
  background-color: var(--color-darkblue);
  padding: 60px 0 20px;
  color: #ffffff;
}

/* ラッパー：コンテンツの最大幅と中央揃え */
.footer-wrapper {
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* ロゴのレイアウト */
.footer-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px; /* ロゴ同士の間隔 */
  margin-bottom: 40px;
}

.footer-logo-img {
  height: auto;
  max-height: 60px; /* ロゴのサイズ感に応じて調整 */
  display: block;
}

/* コピーライトの装飾 */
.footer-copyright-wrapper .copyright {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6); /* 少し透過させて上品に */
  text-transform: uppercase;
}

.kazari-text {
  writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  text-transform: uppercase;
  display: inline-block;
  font-size: 200px;
  color: #fff;
  opacity: 0.3;
  position: absolute;
  left: -170px;
  bottom: 400px;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .kazari-text {
    display: none;
  }
}

/* ========================================================
  スマホ調整用 は見出しカット
========================================================== */
@media screen and (max-width: 767px) {
  .mv-section,
  .report-section,
  .netone-section,
  .initiatives-section {
    overflow-x: hidden; /* 横方向のみカット */
    width: 100%;
  }
}
/* ========================================================
  アニメーション用
========================================================== */
/* --- アニメーションの基本 --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* --- 遅延設定 (パラパラ表示用) --- */
.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}

.delay-4 {
  transition-delay: 0.8s;
}

/* --- 影 (player-shadow) の時間差演出 --- */
.player-shadow::before {
  opacity: 0;
  transform: scale(0.9) translate(-20px, 20px); /* 初期は少し小さくズレた状態 */
  transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1), transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.5s; /* 本体より0.5秒遅らせる */
  will-change: opacity, transform;
}

/* 本体がアクティブになったら影も定位置へ */
.player-shadow.is-active::before {
  opacity: 1;
  transform: scale(1) translate(0, 0);
}/*# sourceMappingURL=style.css.map */