@charset "UTF-8";
/* ************************************************************************
   ************************************************************************

    COMMON SETTINGS

   ************************************************************************
   ************************************************************************ */
/* ------------------------------
    RESPONSIVE SETTINGS
  ------------------------------ */
/* ------------------------------
    FONT
  ------------------------------ */
@font-face {
  font-family: "Quentin";
  src: url("../fonts/Quentin.otf") format("opentype");
}
@font-face {
  font-family: "neueplak";
  src: url("../fonts/NeuePlak-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "neueplak";
  src: url("../fonts/NeuePlak-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "neueplak";
  src: url("../fonts/NeuePlak-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NeuePlakCondensed";
  src: url("../fonts/NeuePlakCondensed-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NeuePlakCondensed";
  src: url("../fonts/NeuePlakCondensed-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NeuePlakCondensed";
  src: url("../fonts/NeuePlakCondensed-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "neueplak-wide";
  src: url("../fonts/NeuePlak-WideBold.eot");
  src: local("Neue Plak Wide Bold"), local("NeuePlak-WideBold"), url("../fonts/NeuePlak-WideBold.eot?#iefix") format("embedded-opentype"), url("../fonts/NeuePlak-WideBold.woff2") format("woff2"), url("../fonts/NeuePlak-WideBold.woff") format("woff"), url("../fonts/NeuePlak-WideBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "neueplak-wide";
  src: url("../fonts/NeuePlak-WideBlack.eot");
  src: local("Neue Plak Wide Black"), local("NeuePlak-WideBlack"), url("../fonts/NeuePlak-WideBlack.eot?#iefix") format("embedded-opentype"), url("../fonts/NeuePlak-WideBlack.woff2") format("woff2"), url("../fonts/NeuePlak-WideBlack.woff") format("woff"), url("../fonts/NeuePlak-WideBlack.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
.t__min {
  font-family: cormorant-garamond, shippori-mincho, sans-serif !important;
}

/* ------------------------------
    COLOR SETTINGS
  ------------------------------ */
/* ------------------------------
    MIXIN
  ------------------------------ */
/* ------------------------------
    TRANSITION TIMING
  ------------------------------ */
/* ------------------------------
    KEYFRAME
  ------------------------------ */
@keyframes scrollDown {
  0% {
    transform: scaleY(0);
    transform-origin: center top;
  }
  45% {
    transform: scaleY(1);
    transform-origin: center top;
  }
  55% {
    transform: scaleY(1);
    transform-origin: center bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: center bottom;
  }
}
@keyframes loopCl {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loopClRv {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes floatAnim {
  0% {
    transform: scale(1) translatey(0);
  }
  20% {
    transform: scale(1.025) translatey(2rem);
  }
  40% {
    transform: scale(1) translatey(0);
  }
  60% {
    transform: scale(1.025) translatey(2rem);
  }
  80% {
    transform: scale(1) translatey(0);
  }
  100% {
    transform: scale(1.025) translatey(2rem);
  }
}
@keyframes BoudingMarker {
  0% {
    opacity: 0;
    transform: translateY(-200%);
  }
  5% {
    opacity: 1;
    transform: translateY(-200%);
  }
  85% {
    opacity: 1;
    transform: translateY(10%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes rotateLoop {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.iwakiWaySwitch {
  --red: #c8102e;
  --navy: #07142f;
  --blue: #1e4d91;
  --black: #111;
  --white: #fff;
  --line: rgba(255, 255, 255, 0.14);
  --muted: rgba(255, 255, 255, 0.48);
  position: relative;
  padding: clamp(32px, 4vw, 56px) 0 0;
  background: #111;
  color: var(--white);
}

.iwakiWaySwitch__inner {
  width: 100%;
  margin: 0 auto;
}

.iwakiWaySwitch__tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 46%), rgba(7, 20, 47, 0.58);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.iwakiWaySwitch__tab {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 88px;
  padding: 18px 20px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}
.iwakiWaySwitch__tab:last-child {
  border-right: 0;
}
.iwakiWaySwitch__tab::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(200, 16, 46, 0.28), transparent 58%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.iwakiWaySwitch__tab::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}
.iwakiWaySwitch__tab:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}
.iwakiWaySwitch__tab:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: -2px;
}
.iwakiWaySwitch__tab.is-active {
  color: var(--white);
}
.iwakiWaySwitch__tab.is-active::before {
  opacity: 1;
}
.iwakiWaySwitch__tab.is-active::after {
  transform: scaleX(1);
}
@media (max-width: 640px) {
  .iwakiWaySwitch__tab {
    min-height: 72px;
    padding: 14px 12px;
  }
  .iwakiWaySwitch__tab::after {
    left: 14px;
    right: 14px;
    height: 3px;
  }
}

.iwakiWaySwitch__en {
  position: relative;
  z-index: 1;
  font-family: "neueplak-wide", sans-serif;
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.iwakiWaySwitch__ja {
  position: relative;
  z-index: 1;
  font-family: "りょうゴシック", "Ryo Gothic PlusN", "Yu Gothic", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.iwakiWaySwitch__body {
  position: relative;
}

.iwakiWayPanel {
  animation: iwakiWayPanelFade 0.38s ease both;
}
.iwakiWayPanel[hidden] {
  display: none;
}

@keyframes iwakiWayPanelFade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 既存フィロソフィー本文のサンプル調整 */
.philosophyLead {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  padding: clamp(56px, 7vw, 112px) clamp(24px, 5vw, 80px);
  background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)), url("/assets/img/club/philosophy-bg.jpg") center/cover no-repeat;
}

.philosophyLead__inner {
  max-width: 920px;
  text-align: center;
  color: var(--white);
  font-family: "りょうゴシック", "Ryo Gothic PlusN", "Yu Gothic", sans-serif;
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 800;
  line-height: 2.35;
  letter-spacing: 0.04em;
}
.philosophyLead__inner p {
  margin: 0;
}
.philosophyLead__inner p + p {
  margin-top: 28px;
}

/* ACTIONS側の冒頭サンプル */
.iwakiWayActionsIntro {
  position: relative;
  padding: clamp(64px, 8vw, 120px) 24px;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.58)), url("/assets/img/iwakiway/actions-bg.jpg") center/cover no-repeat;
  border: 1px solid var(--line);
}

.iwakiWayActionsIntro__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.iwakiWayActionsIntro__label {
  margin: 0 0 18px;
  font-family: "neueplak-wide", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.72);
}

.iwakiWayActionsIntro__title {
  margin: 0 0 28px;
  font-family: "neueplak-wide", sans-serif;
  font-size: clamp(52px, 8vw, 132px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
}

.iwakiWayActionsIntro__text {
  margin: 0;
  font-family: "りょうゴシック", "Ryo Gothic PlusN", "Yu Gothic", sans-serif;
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 800;
  line-height: 2;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
}

.philoSections {
  position: relative;
}
.philoSections .bg {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100lvh;
}
.philoSections .bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.philoSections .content {
  z-index: 1;
  padding: 8.5rem 0;
  margin-top: -55rem;
}

.iwakiWayActionMap {
  --red: #c8102e;
  --red-dark: #72091b;
  --blue: #2f67b7;
  --blue-dark: #07142f;
  --white: #fff;
  --black: #111;
  --line-red: rgba(200, 16, 46, 0.95);
  --line-blue: rgba(77, 134, 219, 0.95);
  color: var(--white);
}
@media screen and (min-width: 320px) {
  .iwakiWayActionMap {
    padding-top: 64px;
  }
}
@media screen and (min-width: 600px) {
  .iwakiWayActionMap {
    padding-top: 64px;
  }
}

.iwakiWayActionMap__inner {
  margin: 0 auto;
}
@media screen and (min-width: 320px) {
  .iwakiWayActionMap__inner {
    padding: 0 5vw;
  }
}
@media screen and (min-width: 600px) {
  .iwakiWayActionMap__inner {
    padding: 0 5vw;
  }
}

.iwakiWayActionMap__head {
  position: relative;
  margin-bottom: clamp(44px, 5vw, 72px);
  text-align: center;
}

.iwakiWayActionMap__title {
  margin: 0;
  font-family: "neueplak-wide", sans-serif;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0.04em;
  color: var(--white);
}
@media screen and (min-width: 320px) {
  .iwakiWayActionMap__title {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 600px) {
  .iwakiWayActionMap__title {
    font-size: 4.8rem;
  }
}

.iwakiWayActionMap__lead {
  margin: 12px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
  color: var(--white);
}
@media screen and (min-width: 320px) {
  .iwakiWayActionMap__lead {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 600px) {
  .iwakiWayActionMap__lead {
    font-size: 2.4rem;
  }
}

.iwakiWayActionMap__groups {
  display: grid;
  grid-template-columns: 3fr 4fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 1180px) {
  .iwakiWayActionMap__groups {
    grid-template-columns: 1fr;
  }
}

.iwakiWayActionMap__group {
  position: relative;
}

.iwakiWayActionMap__groupHead {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 18px;
  margin-bottom: 28px;
}
.iwakiWayActionMap__groupHead::before, .iwakiWayActionMap__groupHead::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 40%;
  height: 2px;
  transform: translateY(-14px);
}
.iwakiWayActionMap__groupHead::before {
  left: 0;
}
.iwakiWayActionMap__groupHead::after {
  right: 0;
}

.iwakiWayActionMap__group--red .iwakiWayActionMap__groupTitle,
.iwakiWayActionMap__group--red .iwakiWayActionMap__groupIcon {
  color: var(--red);
}
.iwakiWayActionMap__group--red .iwakiWayActionMap__groupHead::before,
.iwakiWayActionMap__group--red .iwakiWayActionMap__groupHead::after {
  background: var(--line-red);
}

.iwakiWayActionMap__group--blue .iwakiWayActionMap__groupTitle,
.iwakiWayActionMap__group--blue .iwakiWayActionMap__groupIcon {
  color: var(--blue);
}
.iwakiWayActionMap__group--blue .iwakiWayActionMap__groupHead::before,
.iwakiWayActionMap__group--blue .iwakiWayActionMap__groupHead::after {
  background: var(--line-blue);
}

.iwakiWayActionMap__groupTitle {
  grid-column: 1/-1;
  margin: 0 0 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 320px) {
  .iwakiWayActionMap__groupTitle {
    font-size: 1.6rem;
    margin-bottom: -0.8rem;
  }
}
@media screen and (min-width: 600px) {
  .iwakiWayActionMap__groupTitle {
    font-size: 2.4rem;
    margin-bottom: -0.8rem;
  }
}

.iwakiWayActionMap__groupIcon {
  grid-column: 2;
  display: grid;
  place-items: center;
  width: 58px;
  height: 42px;
}
.iwakiWayActionMap__groupIcon svg {
  width: 42px;
  height: 42px;
  fill: currentColor;
}

.iwakiWayActionMap__cards {
  display: grid;
  grid-template-columns: repeat(var(--card-count, 3), minmax(0, 1fr));
  gap: 14px;
}
.iwakiWayActionMap__group--red .iwakiWayActionMap__cards {
  --card-count: 3;
}
.iwakiWayActionMap__group--blue .iwakiWayActionMap__cards {
  --card-count: 4;
}
@media (max-width: 1180px) {
  .iwakiWayActionMap__cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .iwakiWayActionMap__group--red .iwakiWayActionMap__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .iwakiWayActionMap__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .iwakiWayActionMap__group--red .iwakiWayActionMap__cards, .iwakiWayActionMap__group--blue .iwakiWayActionMap__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.iwakiWayActionCard {
  position: relative;
  min-height: clamp(150px, 12vw, 230px);
  border: 2px solid currentColor;
  border-radius: 22px;
  background: var(--card-img) center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
  text-decoration: none;
  transform: translateZ(0);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.iwakiWayActionCard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent 32%), linear-gradient(to top, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.12) 64%);
  z-index: 1;
}
.iwakiWayActionCard::after {
  content: "";
  position: absolute;
  inset: auto -30% 0 -10%;
  height: 48%;
  z-index: 2;
  opacity: 0.82;
  clip-path: polygon(0 42%, 100% 0, 100% 100%, 0% 100%);
  transition: opacity 0.28s ease;
}
.iwakiWayActionCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.42), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.iwakiWayActionCard:hover::after {
  opacity: 0.95;
}
.iwakiWayActionCard:hover .iwakiWayActionCard__num {
  opacity: 1;
  transform: translateY(0);
}
.iwakiWayActionCard:hover .iwakiWayActionCard__label {
  transform: translateY(-4px);
}
.iwakiWayActionCard:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 5px;
}

.iwakiWayActionCard--red {
  color: var(--red);
}
.iwakiWayActionCard--red::after {
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.94), rgba(114, 9, 27, 0.88));
}

.iwakiWayActionCard--blue {
  color: var(--blue);
}
.iwakiWayActionCard--blue::after {
  background: linear-gradient(135deg, rgba(7, 20, 47, 0.92), rgba(47, 103, 183, 0.84));
}

.iwakiWayActionCard__num {
  position: absolute;
  left: 18px;
  top: 16px;
  z-index: 3;
  font-family: "neueplak-wide", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.72;
  transform: translateY(4px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.iwakiWayActionCard__label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  z-index: 3;
  display: grid;
  place-items: center;
  min-height: 38px;
  font-family: "りょうゴシック", "Ryo Gothic PlusN", "Yu Gothic", sans-serif;
  font-size: clamp(15px, 1.15vw, 22px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: var(--white);
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  transition: transform 0.28s ease;
}

.iwakiWayActionsLayout {
  --side-width: 15vw;
  --gap: clamp(40px, 4vw, 72px);
  --green: #c8102e;
  --green-soft: rgba(152, 200, 74, 0.2);
  --white: #fff;
  --dark: #07111b;
  --panel: rgba(8, 17, 27, 0.78);
  --line: rgba(255, 255, 255, 0.14);
  grid-template-columns: var(--side-width) minmax(0, 1fr);
  gap: var(--gap);
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 320px) {
  .iwakiWayActionsLayout {
    display: block;
    margin-top: 36px;
    padding: 0 5vw;
  }
}
@media screen and (min-width: 1025px) {
  .iwakiWayActionsLayout {
    display: grid;
    margin-top: 72px;
    padding: 0 5vw 0 0;
  }
}

.iwakiWayActionsLayout__navSlot {
  position: relative;
  min-width: 0;
}
@media (max-width: 1180px) {
  .iwakiWayActionsLayout__navSlot {
    display: none;
  }
}

.iwakiWayActionsLayout__main {
  min-width: 0;
}

.iwakiActionSection {
  --accent: var(--blue);
  --ink: #06132d;
  position: relative;
  scroll-margin-top: 140px;
  padding: clamp(48px, 5vw, 80px);
  background: var(--white);
  color: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
@media (max-width: 768px) {
  .iwakiActionSection {
    padding: 32px 24px;
  }
}
@media (max-width: 480px) {
  .iwakiActionSection {
    padding: 28px 18px;
  }
}
@media screen and (min-width: 320px) {
  .iwakiActionSection {
    margin-bottom: clamp(16px, 2vw, 28px);
    border-radius: 24px;
  }
}
@media screen and (min-width: 320px) {
  .iwakiActionSection {
    margin-bottom: clamp(16px, 2vw, 28px);
    border-radius: 24px;
  }
}

.iwakiActionSection__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.52;
}
.iwakiActionSection__bg::before {
  content: "";
  position: absolute;
  inset: 0;
}
.iwakiActionSection__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 34%, rgba(0, 0, 0, 0.24));
  background-size: 3px 3px, 100% 100%;
  mix-blend-mode: overlay;
  opacity: 0.45;
}

.iwakiActionSection__content {
  position: relative;
  z-index: 1;
}

.iwakiActionSection__head {
  display: flex;
  align-items: baseline;
  gap: 22px;
  margin-bottom: clamp(24px, 3vw, 36px);
}
@media (max-width: 640px) {
  .iwakiActionSection__head {
    gap: 14px;
  }
}

.iwakiActionSection__num {
  margin: 0;
  font-family: "neueplak-wide", sans-serif;
  font-size: clamp(32px, 3.6vw, 58px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--accent);
}

.iwakiActionSection__title {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
}

.iwakiActionSection__en {
  font-family: "neueplak-wide", sans-serif;
  font-size: clamp(28px, 3vw, 54px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
}

.iwakiActionSection__slash {
  font-family: "neueplak-wide", sans-serif;
  font-size: clamp(24px, 2.4vw, 40px);
  font-weight: 700;
  line-height: 1;
}

.iwakiActionSection__ja {
  font-size: clamp(24px, 2.6vw, 46px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;
}

.iwakiActionSection__lead {
  max-width: 1080px;
  margin-bottom: clamp(32px, 4vw, 56px);
  font-family: "りょうゴシック", "Ryo Gothic PlusN", "Yu Gothic", sans-serif;
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 800;
  line-height: 2.05;
  letter-spacing: 0.04em;
}
.iwakiActionSection__lead p {
  margin: 0;
}
.iwakiActionSection__lead p + p {
  margin-top: 24px;
}

.iwakiActionSection__subTitle {
  margin: 0 0 14px;
  font-size: clamp(20px, 1.8vw, 32px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0.05em;
  color: var(--accent);
}

/* GHG table */
.iwakiActionRoadmap {
  margin-bottom: clamp(44px, 5vw, 72px);
}

.iwakiActionRoadmap__tableWrap {
  width: 100%;
  overflow-x: auto;
  border: 2px solid var(--accent);
  background: rgba(6, 18, 22, 0.52);
  -webkit-overflow-scrolling: touch;
}

.iwakiActionRoadmap__table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  table-layout: fixed;
}
.iwakiActionRoadmap__table th,
.iwakiActionRoadmap__table td {
  padding: 20px 18px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  color: var(--white);
  text-align: center;
  vertical-align: middle;
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.04em;
}
.iwakiActionRoadmap__table th:last-child,
.iwakiActionRoadmap__table td:last-child {
  border-right: 0;
}
.iwakiActionRoadmap__table thead th {
  background: #2f67b7;
}
.iwakiActionRoadmap__table tbody th {
  background: #2f67b7;
}
.iwakiActionRoadmap__table tr td {
  background: white;
  color: var(--ink);
}

.iwakiActionRoadmap__note {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
}

/* 6 fields */
.iwakiActionFields__list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1180px) {
  .iwakiActionFields__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .iwakiActionFields__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.iwakiActionFields__item {
  display: grid;
  place-items: center;
  min-height: 170px;
  padding: 22px 14px 18px;
  border: 2px solid var(--accent);
  border-radius: 18px;
  background: #2f67b7;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 18px 34px rgba(0, 0, 0, 0.22);
}

.iwakiActionFields__icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin-bottom: 18px;
  color: var(--white);
}
.iwakiActionFields__icon svg {
  width: 76px;
  height: 76px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.iwakiActionFields__item:first-child .iwakiActionFields__icon svg {
  fill: currentColor;
  stroke: none;
}

.iwakiActionFields__label {
  min-height: 2.8em;
  display: grid;
  place-items: center;
  font-family: "りょうゴシック", "Ryo Gothic PlusN", "Yu Gothic", sans-serif;
  font-size: clamp(13px, 0.95vw, 16px);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--white);
  text-align: center;
}

.iwakiActionSummary {
  --red: #c8102e;
  --blue: #2f67b7;
  --navy: #07142f;
  --ink: #06132d;
  --white: #fff;
  position: relative;
  color: var(--white);
}

.iwakiActionSummary__inner {
  margin: 0 auto;
}

.iwakiActionSummary__title {
  margin: 0 0 clamp(28px, 4vw, 48px);
  font-family: "neueplak-wide", sans-serif;
  font-size: clamp(36px, 5vw, 80px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.94);
}

.iwakiActionSummary__grid {
  display: grid;
  gap: clamp(16px, 2vw, 28px);
}
@media screen and (min-width: 600px) {
  .iwakiActionSummary__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.iwakiActionSummaryCard {
  position: relative;
  min-height: clamp(360px, 26vw, 520px);
  padding: clamp(34px, 4vw, 64px);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 251, 0.96));
  color: var(--ink);
  overflow: hidden;
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.32), inset 0 0 0 1px rgba(7, 20, 47, 0.08);
}
@media screen and (min-width: 320px) {
  .iwakiActionSummaryCard {
    padding: 32px;
  }
}
@media screen and (min-width: 600px) {
  .iwakiActionSummaryCard {
    padding: 32px;
  }
}
.iwakiActionSummaryCard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, currentColor 0, transparent 26%), linear-gradient(135deg, transparent 0%, transparent 72%, rgba(7, 20, 47, 0.05) 100%);
  opacity: 0.05;
  pointer-events: none;
}

.iwakiActionSummaryCard--red {
  --accent: var(--red);
  color: var(--red);
}

.iwakiActionSummaryCard--blue {
  --accent: var(--blue);
  color: var(--blue);
}

.iwakiActionSummaryCard__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (min-width: 320px) {
  .iwakiActionSummaryCard__head {
    margin-bottom: 18px;
  }
}
@media screen and (min-width: 600px) {
  .iwakiActionSummaryCard__head {
    margin-bottom: 24px;
  }
}

.iwakiActionSummaryCard__titleBlock {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 28px);
  min-width: 0;
}
@media (max-width: 560px) {
  .iwakiActionSummaryCard__titleBlock {
    gap: 14px;
  }
}

.iwakiActionSummaryCard__num {
  flex: 0 0 auto;
  font-family: "neueplak-wide", sans-serif;
  font-size: clamp(36px, 4vw, 66px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--accent);
}
@media screen and (min-width: 320px) {
  .iwakiActionSummaryCard__num {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 600px) {
  .iwakiActionSummaryCard__num {
    font-size: 2rem;
  }
}

.iwakiActionSummaryCard__title {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 0;
  color: var(--ink);
}
@media screen and (min-width: 320px) {
  .iwakiActionSummaryCard__title {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 600px) {
  .iwakiActionSummaryCard__title {
    font-size: 2.4rem;
  }
}

.iwakiActionSummaryCard__en {
  font-family: "neueplak-wide", sans-serif;
  font-size: 48%;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.iwakiActionSummaryCard__slash {
  display: none;
}

.iwakiActionSummaryCard__ja {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}

.iwakiActionSummaryCard__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--accent);
}
@media screen and (min-width: 320px) {
  .iwakiActionSummaryCard__icon {
    width: 3.2rem;
    height: 3.2rem;
  }
}
@media screen and (min-width: 600px) {
  .iwakiActionSummaryCard__icon {
    width: 3.2rem;
    height: 3.2rem;
  }
}
.iwakiActionSummaryCard__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.iwakiActionSummaryCard__icon svg path:not(:first-child) {
  fill: none;
  stroke: #fff;
}

.iwakiActionSummaryCard__list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(26px, 3vw, 42px);
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink);
}
@media screen and (min-width: 320px) {
  .iwakiActionSummaryCard__list {
    gap: 12px;
  }
}
@media screen and (min-width: 600px) {
  .iwakiActionSummaryCard__list {
    gap: 18px;
  }
}

.iwakiActionSummaryCard__list li {
  position: relative;
  padding-left: clamp(36px, 3.2vw, 54px);
  font-size: clamp(16px, 1.35vw, 25px);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 320px) {
  .iwakiActionSummaryCard__list li {
    font-size: 1rem;
  }
}
@media screen and (min-width: 600px) {
  .iwakiActionSummaryCard__list li {
    font-size: 1.2rem;
  }
}

.iwakiActionSummaryCard__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: clamp(12px, 1.2vw, 18px);
  height: clamp(12px, 1.2vw, 18px);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent) 12%, transparent);
}

@media (max-width: 640px) {
  .iwakiActionSummaryCard {
    min-height: auto;
    padding: 30px 22px 36px;
    border-radius: 14px;
  }
  .iwakiActionSummaryCard__icon {
    display: none;
  }
  .iwakiActionSummaryCard__titleBlock {
    align-items: flex-start;
  }
  .iwakiActionSummaryCard__list {
    gap: 20px;
  }
}
#__matchNav {
  position: sticky;
  top: 1rem;
  background: transparent;
}

@media screen and (min-width: 320px) {
  .iwakiWayReport {
    margin-top: 64px;
  }
}
@media screen and (min-width: 600px) {
  .iwakiWayReport {
    margin-top: 128px;
  }
}

@media screen and (min-width: 320px) {
  #articleListBody .articleListWrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 2.5vw;
  }
}
@media screen and (min-width: 600px) {
  #articleListBody .articleListWrapper {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0 2.5vw;
  }
}

.iwakiWayAbout {
  position: relative;
  background: #121212;
  color: rgba(255, 255, 255, 0.72);
  line-height: 2.4;
  text-align: center;
}
@media screen and (min-width: 320px) {
  .iwakiWayAbout {
    font-size: 1.2rem;
    padding: 48px 0;
  }
}
@media screen and (min-width: 600px) {
  .iwakiWayAbout {
    font-size: 1.32rem;
    padding: 48px 0;
  }
}
@media screen and (min-width: 320px) {
  .iwakiWayAbout .sp {
    display: block;
  }
}
@media screen and (min-width: 600px) {
  .iwakiWayAbout .sp {
    display: none;
  }
}

.iwakiActionFields__lead {
  margin: 0 0 clamp(20px, 2.5vw, 32px);
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 800;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.philoSections .content .logo {
  position: absolute;
}
@media screen and (min-width: 320px) {
  .philoSections .content .logo {
    inset: 16px 16px auto auto;
  }
}
@media screen and (min-width: 600px) {
  .philoSections .content .logo {
    inset: 24px 24px auto auto;
  }
}
.philoSections .content .logo img {
  display: block;
  height: auto;
}
@media screen and (min-width: 320px) {
  .philoSections .content .logo img {
    width: 3.2rem;
    height: 3.2rem;
  }
}
@media screen and (min-width: 600px) {
  .philoSections .content .logo img {
    width: 4.8rem;
    height: 4.8rem;
  }
}

#__matchNav .__menu a .icon {
  display: none;
}

#__matchNav .__menu a .text {
  width: 100%;
}

.iwakiActionSummaryCard__img .imgWrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 55.56%;
  overflow: hidden;
}
@media screen and (min-width: 320px) {
  .iwakiActionSummaryCard__img .imgWrapper {
    margin-bottom: 24px;
    border-radius: 24px;
  }
}
@media screen and (min-width: 600px) {
  .iwakiActionSummaryCard__img .imgWrapper {
    margin-bottom: 24px;
    border-radius: 24px;
  }
}
@media screen and (min-width: 320px) {
  .iwakiActionSummaryCard__img .imgWrapper.--large {
    padding-bottom: 43%;
  }
}
@media screen and (min-width: 600px) {
  .iwakiActionSummaryCard__img .imgWrapper.--large {
    padding-bottom: 55.56%;
  }
}
.iwakiActionSummaryCard__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=iwakiway.css.map */