/* ■■■■■■ ヘッダー（#_ #header） ■■■■■■ */
#_ #header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 106px;
  z-index: 100;
  background: rgba(255,255,255,0.65);
}
#_ #header .header-inner {
  width: 1100px;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#_ #header .header-logo img {
  width: 172px;
}
#_ #header .header-nav ul {
  display: flex;
  align-items: center;
  gap: 25px;
}
#_ #header .header-nav a {
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-primary);
  text-decoration: none;
}

/* ■■■■■■ MV（#_ #main-visual） ■■■■■■ */
#_ #main-visual {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 106px;
}
#_ .particle-ring {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1100px;
  height: 1100px;
  max-width: 96vw;
  z-index: -1;
  pointer-events: none;
}
#_ #main-visual .main-visual-inner {
  position: relative;
  z-index: 1;
  width: 1100px;
  max-width: calc(100% - 80px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
#_ #main-visual .main-visual-row {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}
#_ #main-visual .main-visual-row-top {
  align-items: flex-start;
}
#_ #main-visual .main-visual-row-bottom {
  align-items: center;
}
#_ #main-visual .main-visual-logo {
  flex-shrink: 0;
  width: 25%;
}
#_ #main-visual .main-visual-logo img {
  width: 100%;
}
#_ #main-visual .main-visual-copy-box {
  margin-left: 10%;
  display: flex;
  justify-content: center;
}
#_ #main-visual .main-visual-copy {
  font-size: 8rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-primary);
  white-space: nowrap;
  margin-bottom: 20px;
}
#_ #main-visual .main-visual-copy-line {
  display: block;
}
#_ #main-visual .main-visual-copy-line:first-child {
  margin-left: -10%;
}
#_ #main-visual .main-visual-copy-line:nth-child(2) {
  margin-right: -5%;
}
#_ #main-visual .main-visual-copy-line:nth-child(2),
#_ #main-visual .main-visual-copy-line:nth-child(3) {
  text-align: right;
}

#_ #main-visual .main-visual-text {
  width: 55%;
  font-size: 2rem;
  line-height: 2;
  color: var(--color-black);
}

#_ .cta-fixed {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 90;
  display: block;
  width: 145px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}
#_ .cta-fixed.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#_ .cta-fixed.is-visible:hover {
  opacity: 0.8;
}
#_ .cta-fixed img {
  width: 100%;
}

#_ #main-visual .main-visual-photo {
  flex-shrink: 0;
}
#_ #main-visual .main-visual-photo img {
  width: 100%;
}
#_ #main-visual .main-visual-photo-1 {
  width: 30%;
}
#_ #main-visual .main-visual-photo-2 {
  width: 18%;
}

/* ■■■■■■ CTA（#_ #cta） ■■■■■■ */
#_ #cta {
  position: relative;
  padding: 35px calc((100% - 1100px) / 2) 90px;
  text-align: center;
}
#_ #cta .cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(700px, 100%);
  max-width: 100%;
  height: 100px;
  padding: 0 40px;
  border-radius: 999px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 2.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s;
}
#_ #cta .cta-button:hover {
  opacity: 0.8;
}
#_ #cta .cta-button-arrow {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 55px;
  height: 55px;
  background: url("../img/icon-arrow-white.svg") no-repeat center / contain;
}
#_ #cta .cta-button-date {
  font-size: 0.625em;
}
#_ .cta-button-spacer {
  display: none;
}

/* ■■■■■■ 共通見出し（#_ .section-head） ■■■■■■ */
#_ .section-head {
  margin-bottom: 50px;
}
#_ .section-head-en {
  font-family: var(--font-en);
  font-size: 10rem;
  font-weight: 300;
  line-height: 1;
  color: var(--color-primary);
}
#_ .section-head-ja {
  margin-top: 8px;
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-primary);
}

#_ .anime-up.displayed span {
  display: inline-block;
}
#_ .anime-up.displayed > span {
  overflow: hidden;
}
#_ .anime-up.displayed > span > span {
  animation: showTextFromBottom 0.5s backwards;
}
@keyframes showTextFromBottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}

/* ■■■■■■ VISION（#_ #vision） ■■■■■■ */
#_ #vision {
  position: relative;

  padding: 200px calc((100% - 1100px) / 2);
}
#_ #vision::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--color-back);
}
#_ #vision .section-head {
  margin-bottom: 0;
}
#_ #vision .vision-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
}

#_ #vision .vision-body {
  width: 51%;
}
#_ #vision .vision-photo {
  width: 45%;
}
#_ #vision .vision-photo img {
  width: 100%;
}
#_ #vision .vision-body p {
  font-size: 1.8rem;
  line-height: 2.2;
  color: var(--color-black);
}
#_ #vision .vision-body p + p {
  margin-top: 1.5em;
}
#_ #vision .vision-table {
  margin-top: 100px;
}
#_ #vision .vision-table img {
  width: 100%;
}

/* ■■■■■■ PROGRAM（#_ #program） ■■■■■■ */
#_ #program {
  position: relative;
  z-index: 1;
  padding: 200px calc((100% - 1100px) / 2);
}
#_ #program .section-head {
  margin-bottom: 100px;
  text-align: right;
}

#_ #program .program-flow {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 90px;
}
#_ #program .program-flow-photo {
  flex: 1;
}
#_ #program .program-flow-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#_ #program .program-flow-main {
  flex: 0 0 50%;
}
#_ #program .program-step-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
#_ #program .program-step {
  display: flex;
  align-items: flex-start;
  gap: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #BED6D6;
}
#_ #program .program-step-num {
  font-family: var(--font-en);
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  margin-top: -0.08em;
  color: var(--color-primary);
  flex-shrink: 0;
}
#_ #program .program-step-title {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-black);
}
#_ #program .program-step-text {
  margin-top: 16px;
  font-size: 1.6rem;
  line-height: 1.9;
  color: var(--color-black);
}

#_ #program .program-support-title {
  margin-top: 100px;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--color-black);
}
#_ #program .program-support {
  display: flex;
  gap: 25px;
  margin-top: 35px;
}
#_ #program .program-support-col {
  flex: 1;
}
#_ #program .program-support-photo {
  margin-bottom: 20px;
}
#_ #program .program-support-photo img {
  width: 100%;
}
#_ #program .program-support-col-title {
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-black);
}
#_ #program .program-support-col-text {
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-black);
}
#_ #program .program-support-col:first-child .program-support-col-text {
  padding-left: 2em;
  text-indent: -2em;
}

#_ #program .program-link-list {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
#_ #program .program-link {
  display: flex;
  align-items: center;
  gap: 35px;
  padding-bottom: 50px;
  border-bottom: 1px solid #BED6D6;
  text-decoration: none;
  transition: opacity 0.3s;
}
#_ #program .program-link:hover {
  opacity: 0.8;
}
#_ #program .program-link-arrow {
  flex-shrink: 0;
  width: 65px;
  height: 65px;
  background: url("../img/icon-arrow-blue.svg") no-repeat center / contain;
}
#_ #program .program-link-label {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 25px;
  margin-right: auto;
}
#_ #program .program-link-en {
  font-family: var(--font-en);
  font-size: 5rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--color-black);
}
#_ #program .program-link-ja {
  font-size: 2rem;
  color: var(--color-black);
}
#_ #program .program-link-icon {
  flex-shrink: 0;
  width: 60px;
}
#_ #program .program-note {
  margin-top: 100px;
  font-size: 2.4rem;
  text-align: right;
  color: var(--color-black);
}

/* ■■■■■■ NEWS（#_ #news） ■■■■■■ */
#_ #news {
  position: relative;
  padding: 200px calc((100% - 1100px) / 2);
}
#_ #news::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--color-back);
}
#_ #news .news-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
}
#_ #news .news-head .section-head {
  margin-bottom: 0;
}
#_ #news .news-more a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 1.6rem;
  color: var(--color-black);
  text-decoration: none;
}
#_ #news .news-more a::after {
  content: "";
  flex-shrink: 0;
  width: 65px;
  height: 65px;
  background: url("../img/icon-arrow-blue.svg") no-repeat center / contain;
}
#_ #news .news-list {
  display: flex;
  gap: 25px;
}
/* エラー/ローディング時の単発li（.news-card以外）を全幅にして中央寄せ */
#_ #news .news-list > li:not(.news-card) {
  flex: 1;
}
#_ #news .news-card {
  flex: 1;
}
#_ #news .news-card-link {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s;
}
#_ #news .news-card-link:hover {
  opacity: 0.8;
}
#_ #news .news-card-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  background: #c6c6c6;
  overflow: hidden;
}
#_ #news .news-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#_ #news .news-card-title {
  margin-top: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--color-black);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
#_ #news .news-card-more {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: 1.4rem;
  color: var(--color-black);
}
#_ #news .news-card-more::after {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 13px;
  background: url("../img/icon-menu-arrow.svg") no-repeat center / contain;
}

/* ■■■■■■ フッター（#_ #footer） ■■■■■■ */
#_ #footer {
  position: relative;
}
#_ #footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--color-back);
}

#_ #footer .footer-contact {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  padding: 100px calc((100% - 1100px) / 2);
  background:
    linear-gradient(
      to right,
      var(--color-primary)
        min(50% + 560px, 100% - clamp(7px, 8.9vw - 27px, 500px)),
      transparent min(50% + 560px, 100% - clamp(7px, 8.9vw - 27px, 500px))
    ),
    linear-gradient(to top, var(--color-black) 80px, transparent 80px);
  color: var(--color-white);
}
#_ #footer .footer-contact-en {
  font-family: var(--font-en);
  font-size: 8rem;
  font-weight: 300;
  line-height: 1;
  color: var(--color-white);
}
#_ #footer .footer-contact-ja {
  margin-top: 8px;
  font-size: 2rem;
  color: var(--color-white);
}
#_ #footer .footer-contact-org {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-white);
}
#_ #footer .footer-contact-mail {
  margin-top: 16px;
  font-size: 2.4rem;
}
#_ #footer .footer-contact-mail a {
  color: var(--color-white);
  text-decoration: none;
}
#_ #footer .footer-contact-body {
  margin-right: 70px;
}

#_ #footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 55px calc((100% - 1100px) / 2);
  background: var(--color-black);
}
#_ #footer .footer-logo {
  width: 350px;
}
#_ #footer .footer-logo img {
  width: 100%;
}
#_ #footer .footer-org-logos {
  display: flex;
  gap: 6px;
}
#_ #footer .footer-org-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 261px;
  aspect-ratio: 2.7;
  background: var(--color-white);
  border-radius: 8px;
}

#_ #footer .footer-copyright {
  padding: 30px 0;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 1.2rem;
  text-align: center;
}

#_ .header-menu-trigger {
  display: none;
}
#_ #header .header-nav-cta {
  display: none;
}

/* ■■■■■■ 中間幅補正（PC 1024〜1100px） ■■■■■■ */
@media screen and (min-width: 1024px) and (max-width: 1100px) {
  #_ #main-visual .main-visual-copy {
    font-size: 6rem;
  }

  #_ #cta,
  #_ #vision,
  #_ #program,
  #_ #news,
  #_ #header .header-inner,
  #_ #footer .footer-contact,
  #_ #footer .footer-bottom {
    padding-left: 40px;
    padding-right: 40px;
  }

  #_ #header .header-nav ul {
    gap: 15px;
  }

  #_ #vision .vision-main {
    align-items: flex-start;
  }
}

/* ■■■■■■ ハンバーガーメニュー（〜1023px） ■■■■■■ */
@media screen and (max-width: 1023px) {
  #_ .header-menu-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 45px;
    position: fixed;
    top: 14px;
    right: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 120;
  }
  #_ .header-menu-icon {
    display: block;
    width: 41px;
    height: 18px;
  }
  #_ .header-menu-line {
    transition:
      transform 0.3s,
      opacity 0.3s;
    transform-box: fill-box;
    transform-origin: center;
    stroke: var(--color-primary);
  }
  #_ #header.is-menu-open ~ .header-menu-trigger .header-menu-line-1 {
    transform: translateY(8px) rotate(20deg);
  }
  #_ #header.is-menu-open ~ .header-menu-trigger .header-menu-line-2 {
    opacity: 0;
  }
  #_ #header.is-menu-open ~ .header-menu-trigger .header-menu-line-3 {
    transform: translateY(-8px) rotate(-20deg);
  }
  #_ .header-menu-label {
    font-family: var(--font-en);
    font-size: 1.1rem;
    color: var(--color-primary);
    line-height: 1;
  }
  #_ .header-menu-label::after {
    content: "menu";
  }
  #_ #header.is-menu-open ~ .header-menu-trigger .header-menu-label::after {
    content: "close";
  }

  #_ #header .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    padding: 110px 21px 40px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s,
      visibility 0.3s;
  }
  #_ #header.is-menu-open .header-nav {
    opacity: 1;
    visibility: visible;
  }
  #_ #header .header-nav ul {
    display: block;
  }
  #_ #header .header-nav li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    font-family: var(--font-en);
    font-size: 2.05rem;
    font-weight: 300;
    line-height: 1.3;
    color: var(--color-black);
  }
  #_ #header .header-nav li a::after {
    content: "";
    width: 12px;
    height: 8px;
    background: url("../img/icon-menu-arrow.svg") no-repeat center / contain;
  }

  #_ #header .header-nav a.header-nav-cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    height: 50px;
    border-radius: 999px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
  }
  #_ #header .header-nav-cta::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 29px;
    height: 29px;
    background: url("../img/icon-arrow-white.svg") no-repeat center / contain;
  }
  #_ #header .header-nav-cta-date {
    font-size: 0.625em;
  }

}

/* ■■■■■■ SPレイアウト（〜1023px） ■■■■■■ */
@media screen and (max-width: 1023px) {
  #_ #cta {
    padding: 35px 20px 60px;
  }
  #_ #vision {
    padding: 80px 20px;
  }
  #_ #program {
    padding: 65px 20px;
  }
  #_ #news {
    padding: 65px 20px;
  }

  #_ #vision .section-head {
    margin-bottom: 0;
  }

  #_ #vision .vision-table {
    margin-top: 50px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
  }
  #_ #vision .vision-table img {
    width: auto;
    height: 150px;
    max-width: none;
  }
  #_ #program .section-head {
    margin-bottom: 50px;
    text-align: left;
  }
  #_ #program .program-support-title {
    margin-top: 50px;
  }
  #_ #program .program-link-list {
    margin-top: 50px;
    gap: 25px;
  }
  #_ #news .news-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 40px;
  }
  #_ #news .news-more {
    margin-left: auto;
  }
  #_ #news .news-list {
    gap: 18px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
  }

  /* ■■■■■■ ヘッダー（#_ #header） ■■■■■■ */
  #_ #header {
    height: 70px;
  }
  #_ #header .header-inner {
    width: 100%;
    padding: 0 20px;
  }
  #_ .header-menu-trigger {
    right: 20px;
  }
  #_ #header .header-logo {
    position: relative;
    z-index: 110;
  }
  #_ #header .header-logo img {
    width: 172px;
  }

  /* ■■■■■■ MV（#_ #main-visual） ■■■■■■ */
  #_ #main-visual {
    padding-top: 105px;
  }
  #_ #main-visual .main-visual-inner {
    width: 100%;
    max-width: 100%;
    gap: 10px;
    padding: 0 20px;
  }
  #_ .particle-ring {
    width: 740px;
    height: 740px;
    max-width: 180vw;
  }
  #_ #main-visual .main-visual-row-top {
    display: block;
    position: relative;
  }
  #_ #main-visual .main-visual-logo {
    width: 180px;
  }
  #_ #main-visual .main-visual-photo-1 {
    position: absolute;
    top: 85px;
    right: 0;
    width: 140px;
  }
  #_ #main-visual .main-visual-copy-box {
    margin-left: 0;
    justify-content: flex-start;
  }
  #_ #main-visual .main-visual-copy {
    margin-top: 55px;
    font-size: 2.6rem;
    line-height: 2;
    white-space: normal;
    margin-bottom: 0;
  }
  #_ #main-visual .main-visual-copy-line:first-child {
    margin-left: 0;
  }
  #_ #main-visual .main-visual-copy-line:nth-child(2) {
    margin-right: 0;
  }
  #_ #main-visual .main-visual-copy-line:nth-child(2),
  #_ #main-visual .main-visual-copy-line:nth-child(3) {
    text-align: left;
  }
  #_ #main-visual .main-visual-row-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 22px;
  }
  #_ #main-visual .main-visual-photo-2 {
    width: 125px;
  }
  #_ #main-visual .main-visual-text {
    width: auto;
    font-size: 1.45rem;
    line-height: 1.7;
  }

  /* SP: 丸い追従ボタンは出さない（#ctaの応募ボタン自体を追従させる） */
  #_ .cta-fixed {
    display: none;
  }
  /* SP: 応募ボタンの定位置を確保（ボタンは常にfixedで追従するため、スペーサーで高さを残す） */
  #_ #cta .cta-button-spacer {
    display: block;
    height: 50px;
  }
  /* 追従バーが最下部で他要素に重ならないようフッターに余白 */
  #_ #footer .footer-copyright {
    padding-bottom: 82px;
  }

  /* ■■■■■■ CTA（#_ #cta） ■■■■■■ */
  #_ #cta .cta-button {
    min-width: 0;
    height: 50px;
    font-size: 1.6rem;
    /* 応募ボタン自体を常にfixedにし、定位置→画面下部へスムーズに追従（topはJSで制御） */
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: auto;
    width: auto;
    z-index: 90;
  }
  #_ #cta .cta-button-arrow {
    right: 8px;
    width: 30px;
    height: 30px;
  }

  /* ■■■■■■ 共通見出し（#_ .section-head） ■■■■■■ */
  #_ .section-head-en {
    font-size: 5.7rem;
  }
  #_ .section-head-ja {
    font-size: 2rem;
  }

  /* ■■■■■■ VISION（#_ #vision） ■■■■■■ */
  #_ #vision .vision-head-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 50px;
  }
  #_ #vision .vision-head-photo {
    flex-shrink: 0;
    width: 117px;
  }
  #_ #vision .vision-main {
    flex-direction: column;
    gap: 40px;
  }
  #_ #vision .vision-body {
    width: 100%;
  }
  #_ #vision .vision-body p {
    font-size: 1.45rem;
    line-height: 2;
  }
  #_ #vision .vision-photo {
    width: 100%;
  }

  /* ■■■■■■ PROGRAM（#_ #program） ■■■■■■ */
  #_ #program .program-flow {
    flex-direction: column-reverse;
    gap: 50px;
  }
  #_ #program .program-flow-photo {
    display: block;
    flex: none;
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
  #_ #program .program-flow-photo img {
    height: auto;
  }
  #_ #program .program-flow-main {
    flex: none;
    width: 100%;
  }
  #_ #program .program-step-list {
    width: 100%;
  }
  #_ #program .program-step {
    gap: 16px;
  }
  #_ #program .program-step-num {
    font-size: 2.4rem;
  }
  #_ #program .program-step-title {
    font-size: 2rem;
  }
  #_ #program .program-step-text {
    font-size: 1.4rem;
  }
  #_ #program .program-support {
    flex-direction: column;
    gap: 25px;
  }
  #_ #program .program-support-title {
    font-size: 2.4rem;
  }
  #_ #program .program-support-col-title {
    font-size: 1.6rem;
  }
  #_ #program .program-support-col-text {
    font-size: 1.2rem;
  }
  #_ #program .program-support-photo {
    margin-bottom: 10px;
  }
  #_ #program .program-link {
    gap: 16px;
    padding-bottom: 25px;
  }
  #_ #program .program-link-arrow {
    width: 33px;
    height: 33px;
  }
  #_ #program .program-link-label {
    align-items: center;
    gap: 8px;
  }
  #_ #program .program-link-en {
    font-size: 2.4rem;
  }
  #_ #program .program-link-ja {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  #_ #program .program-link-icon {
    width: 26px;
  }
  #_ #program .program-note {
    font-size: 1.6rem;
    margin-top: 50px;
  }

  /* ■■■■■■ NEWS（#_ #news） ■■■■■■ */
  #_ #news .news-card {
    flex: 0 0 268px;
    width: 268px;
  }
  #_ #news .news-card-title {
    font-size: 1.4rem;
    line-height: 1.6;
  }
  #_ #news .news-more a {
    gap: 8px;
  }
  #_ #news .news-more a::after {
    width: 30px;
    height: 30px;
  }

  /* ■■■■■■ フッター（#_ #footer） ■■■■■■ */
  #_ #footer .footer-contact {
    width: 100%;
    flex-direction: column;
    gap: 33px;
    padding: 70px 20px 55px;
  }
  #_ #footer .footer-contact-en {
    font-size: 5.7rem;
  }
  #_ #footer .footer-contact-ja {
    margin-top: 16px;
  }
  #_ #footer .footer-contact-mail {
    margin-top: 8px;
    font-size: 2.4rem;
    font-weight: 700;
  }
  #_ #footer .footer-contact-org {
    font-size: 1.4rem;
  }
  #_ #footer .footer-contact-body {
    margin-right: 0;
  }
  #_ #footer .footer-bottom {
    flex-direction: column;
    gap: 50px;
    align-items: center;
    padding: 45px 20px;
  }
  #_ #footer .footer-logo {
    width: 200px;
  }
  #_ #footer .footer-org-logos {
    gap: 8px;
  }
  #_ #footer .footer-org-logo {
    width: 164px;
    height: 64px;
  }
}

/* ■■■■■■ PC/SP出し分け ■■■■■■ */
@media (min-width: 1024px) {
  #_ .sp-only {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  #_ .pc-only {
    display: none !important;
  }
}

/* ■■■■■■ 低い画面（高さ〜900px） ■■■■■■ */

@media (max-height: 900px) and (min-width: 1024px) {
  #_ #main-visual .main-visual-copy {
    font-size: 6rem;
  }
  #_ #cta {
    padding-top: 20px;
  }
}
