/* ========================================
  管理画面用
======================================== */
/* エディター全体の最大幅を広げる */
.wp-block {
    max-width: 1400px !important; /* お好みの幅（例: 1200px や 100% など）に調整してください */
}

/* 幅広・全幅要素の調整（必要に応じて） */
.wp-block[data-align="wide"] {
    max-width: 1400px !important;
}

.wp-block[data-align="full"] {
    max-width: none !important;
}

/* ========================================
   Header
======================================== */

.site-header {
  width: 100%;
  height: 112px;
  background: #fff;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid #e8edf4;
}

.header-inner {
  width: min(1780px, calc(100% - 80px));
  height: 100%;
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo
----------------------------------------- */

.header-logo {
  flex: 0 0 auto;
  padding: 0 0 5px;
}

.header-logo a {
  display: block;
}

.header-logo img {
  display: block;
  width: 280px;
  max-width: 100%;
  height: auto;
}

/* Navigation
----------------------------------------- */

.global-nav {
  margin-left: auto;
}

.global-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(20px, 1.8vw, 40px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-nav li {
  position: relative;
}

.global-nav a {
  display: flex;
  align-items: center;
  height: 112px;

  color: #15315d;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;

  transition: opacity 0.25s ease;
}

.global-nav a:hover {
  opacity: 0.65;
}

/* 現在ページ */

.global-nav li.current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;

  width: 100%;
  height: 3px;
  margin: auto;

  background: #1475dc;
}

/* Language
----------------------------------------- */

.header-language {
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  gap: 12px;

  font-size: 14px;
  font-weight: 700;
}

.header-language a {
  color: #6d7890;
  text-decoration: none;
}

.header-language a:hover,
.header-language a.active {
  color: #15315d;
}

.header-language span {
  display: block;
  width: 1px;
  height: 17px;
  background: #9ca5b5;
}

/* Entry
----------------------------------------- */

.header-entry {
  flex: 0 0 auto;
}

.header-entry a {
  width: 190px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;

  border-radius: 40px;
  background: #092b5e;

  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.header-entry a:hover {
  background: #1475dc;
  transform: translateY(-2px);
}

.entry-arrow {
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}

/* ========================================
   下層ページ：画像に重ねるヘッダー
======================================== */

.site-header--overlay {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  background: transparent;
  border-bottom: none;
}

.site-header--overlay .global-nav a {
  color: #fff;
}

.site-header--overlay .header-language a {
  color: rgba(255, 255, 255, 0.8);
}

.site-header--overlay .header-language a:hover,
.site-header--overlay .header-language a.active {
  color: #fff;
}

.site-header--overlay .header-language span {
  background: rgba(255, 255, 255, 0.65);
}

.site-header--overlay .header-entry a {
  background: transparent;
  border: 2px solid #fff;
}

.site-header--overlay .header-entry a:hover {
  color: #15315d;
  background: #fff;
}

.site-header--overlay .global-nav li.current::after {
  background: #d9ff19;
}

/* ========================================
   Mobile menu button
======================================== */

.menu-button {
  display: none;

  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;

  border: 0;
  background: transparent;

  position: relative;
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  left: 9px;

  width: 30px;
  height: 2px;

  background: #15315d;
  transition: 0.3s;
}

.menu-button span:nth-child(1) {
  top: 14px;
}

.menu-button span:nth-child(2) {
  top: 23px;
}

.menu-button span:nth-child(3) {
  top: 32px;
}

.site-header--overlay .menu-button span {
  background: #fff;
}

/* ========================================
   Responsive
======================================== */

@media (max-width: 1500px) {
  .header-inner {
    width: calc(100% - 50px);
    gap: 25px;
  }

  .header-logo img {
    width: 270px;
  }

  .global-nav ul {
    gap: 20px;
  }

  .global-nav a {
    font-size: 14px;
  }

  .header-entry a {
    width: 165px;
    height: 50px;
    font-size: 15px;
  }
}

@media (max-width: 1200px) {
  .site-header {
    height: 85px;
  }

  .header-inner {
    width: calc(100% - 40px);
  }

  .header-logo img {
    width: 250px;
  }

  .global-nav,
  .header-language,
  .header-entry {
    display: none;
  }

  .menu-button {
    display: block;
  }
}

/* Smartphone */

@media (max-width: 767px) {
  .site-header {
    height: 72px;
  }

  .header-inner {
    width: calc(100% - 30px);
  }

  .header-logo img {
    width: 210px;
  }
}

/* ========================================
   TOP HERO
======================================== */

.top-hero {
  position: relative;
  width: 100%;
  height: clamp(650px, 41.7vw, 800px);
  min-height: 650px;
  align-items: normal !important;
  color: #fff;

  background:
    linear-gradient(90deg, rgba(2, 25, 59, 0.56) 0%, rgba(2, 25, 59, 0.2) 40%, rgba(2, 25, 59, 0.03) 70%, rgba(2, 25, 59, 0.08) 100%),
    url("../img/top-hero-bg.webp") center center / cover no-repeat;

  overflow: hidden;
}

/* ----------------------------------------
   Inner
---------------------------------------- */

.top-hero__inner {
  position: relative;

  width: min(1760px, calc(100% - 100px));
  height: 100%;

  margin: 0 auto;
}

/* ========================================
   LEFT CONTENT
======================================== */

.top-hero__main {
  position: absolute;
  top: 10.5%;
  left: 0;

  z-index: 2;

  text-shadow: 0 2px 8px rgba(0, 20, 50, 0.25);
}

/* English title */

.top-hero__en-title {
  margin: 0 0 22px;

  font-size: clamp(14px, 1.05vw, 20px);
  font-weight: 700;
  line-height: 1;

  letter-spacing: 0.11em;
}

/* Main title */

.top-hero__title {
  margin: 0;

  font-size: clamp(48px, 4.25vw, 82px);
  font-weight: 800;
  line-height: 1.18;

  letter-spacing: 0.015em;
}

/* Year */

.top-hero__year {
  margin: 8px 0 0;

  font-size: clamp(36px, 3.1vw, 60px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.03em;
}

/* Place */

.top-hero__place {
  margin: 12px 0 0;

  font-size: clamp(24px, 2.15vw, 41px);
  font-weight: 700;
  line-height: 1;

  letter-spacing: 0.035em;
}

/* ========================================
   Asia color line
======================================== */

.top-hero__line {
  width: clamp(260px, 19vw, 365px);
  height: 10px;
  margin-top: 20px;

  background: linear-gradient(90deg, #8fd566 0%, #8fd566 5%, #24cb99 23%, #24cb99 36%, #e9e03b 58%, #f97b0a 70%, #f60112 81%, #f60112 100%);
}

/* ========================================
   Category
======================================== */

.top-hero__category {
  margin: 24px 0 0;

  font-size: clamp(27px, 2vw, 38px);
  font-weight: 700;
  line-height: 1.2;

  letter-spacing: 0.04em;
}

/* ========================================
   Message
======================================== */

.top-hero__message {
  margin-top: 34px;
}

.top-hero__message-jp {
  margin: 0;

  font-size: clamp(22px, 1.7vw, 33px);
  font-weight: 700;
  line-height: 1.4;

  letter-spacing: 0.06em;
}

.top-hero__message-en {
  margin: 7px 0 0;

  font-size: clamp(14px, 1.15vw, 22px);
  font-weight: 600;

  letter-spacing: 0.13em;
}

/* ========================================
   RIGHT CATCH COPY
======================================== */

.top-hero__catch {
  position: absolute;

  top: 6%;
  right: 1%;

  width: 310px;

  z-index: 2;

  color: #fff;

  transform: rotate(-3deg);
}

/* Japanese */

.top-hero__catch-jp {
  margin: 0 0 18px;

  /* font-size: clamp(32px, 2.65vw, 51px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.08em;
  font-family: "Yu Mincho", "YuMincho", serif; */
  width: 100%;
}

/* English */

.top-hero__catch-en {
  margin: 0 0 0 145px;

  font-size: clamp(15px, 1.15vw, 22px);
  font-weight: 600;
  line-height: 1.65;

  letter-spacing: 0.11em;

  transform: rotate(3deg);
}

/* ========================================
   VENUE
======================================== */

.top-hero__venue {
  position: absolute;

  right: 0;
  bottom: 5%;

  z-index: 2;

  display: flex;
  align-items: center;
  gap: 15px;

  text-shadow: 0 2px 7px rgba(0, 20, 50, 0.4);
}

/* Pin */

.top-hero__pin {
  display: block;

  width: 32px;
  flex: 0 0 32px;
}

.top-hero__pin svg {
  display: block;
  width: 100%;
  height: auto;

  fill: #fff;
}

/* Japanese */

.top-hero__venue-jp {
  margin: 0;

  font-size: clamp(19px, 1.55vw, 30px);
  font-weight: 700;
  line-height: 1.2;

  letter-spacing: 0.02em;
}

/* English */

.top-hero__venue-en {
  margin: 7px 0 0;

  font-size: clamp(12px, 1vw, 19px);
  font-weight: 600;
  line-height: 1;

  letter-spacing: 0.06em;
}

/* ========================================
   1500px
======================================== */

@media (max-width: 1500px) {
  .top-hero__inner {
    width: calc(100% - 80px);
  }

  .top-hero__catch {
    right: 0;
    width: 270px;
  }
  .top-hero__catch-jp {
    width: 100%;
  }
  .top-hero__catch-en {
    margin-left: 115px;
  }
}

/* ========================================
   Tablet
======================================== */

@media (max-width: 1100px) {
  .top-hero {
    height: 680px;
    min-height: 0;

    background-position: 57% center;
  }

  .top-hero__inner {
    width: calc(100% - 60px);
  }

  .top-hero__main {
    top: 10%;
  }

  .top-hero__title {
    font-size: 52px;
  }

  .top-hero__year {
    font-size: 42px;
  }

  .top-hero__place {
    font-size: 28px;
  }

  .top-hero__catch {
    width: 220px;
  }

  .top-hero__catch-jp {
    width: 220px;
  }

  .top-hero__catch-en {
    margin-left: 70px;
    font-size: 14px;
  }
}

/* ========================================
   Smartphone
======================================== */

@media (max-width: 767px) {
  .top-hero {
    height: 680px;

    background:
      linear-gradient(90deg, rgba(1, 25, 59, 0.67) 0%, rgba(1, 25, 59, 0.42) 55%, rgba(1, 25, 59, 0.15) 100%),
      url("../img/top-hero-bg.webp") 54% center / cover no-repeat;
  }

  .top-hero__inner {
    width: calc(100% - 40px);
  }

  /* Main */

  .top-hero__main {
    top: 55px;
    left: 0;
  }

  .top-hero__en-title {
    margin-bottom: 16px;

    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .top-hero__title {
    font-size: clamp(34px, 10vw, 45px);
    line-height: 1.18;
  }

  .top-hero__year {
    margin-top: 8px;
    font-size: 36px;
  }

  .top-hero__place {
    margin-top: 10px;
    font-size: 22px;
  }

  /* Line */

  .top-hero__line {
    width: 230px;
    height: 7px;

    margin-top: 16px;
  }

  /* Category */

  .top-hero__category {
    margin-top: 18px;
    font-size: 25px;
  }

  /* Message */

  .top-hero__message {
    margin-top: 28px;
  }

  .top-hero__message-jp {
    font-size: 20px;
  }

  .top-hero__message-en {
    margin-top: 5px;
    font-size: 12px;
  }

  /*
   * スマホでは右上コピーを非表示。
   * 情報量を抑えて大会名を優先します。
   */

  .top-hero__catch {
    display: none;
  }

  /* Venue */

  .top-hero__venue {
    right: 0;
    bottom: 25px;

    gap: 10px;
  }

  .top-hero__pin {
    width: 24px;
    flex-basis: 24px;
  }

  .top-hero__venue-jp {
    font-size: 16px;
  }

  .top-hero__venue-en {
    margin-top: 4px;
    font-size: 10px;
  }
}

/* ========================================
   Small Smartphone
======================================== */

@media (max-width: 400px) {
  .top-hero__inner {
    width: calc(100% - 30px);
  }

  .top-hero__title {
    font-size: 33px;
  }

  .top-hero__place {
    font-size: 20px;
  }

  .top-hero__category {
    font-size: 22px;
  }
}

/* ========================================
   OUR VISION
======================================== */

.vision {
  position: relative;
  width: 100%;
  padding: 80px 0 70px;
  overflow: hidden;

  background: radial-gradient(circle at 80% 45%, rgba(193, 229, 255, 0.2) 0%, rgba(255, 255, 255, 0) 48%), #fff;
}

.vision__inner {
  position: relative;

  width: min(1720px, calc(100% - 100px));
  min-height: 440px;
  margin: 0 auto;

  display: flex;
  align-items: center;
}

/* ========================================
   Content
======================================== */

.vision__content {
  position: relative;
  z-index: 2;

  width: 47%;
}

/* English heading
----------------------------------------- */

.vision__en {
  margin: 0 0 18px;

  color: #687895;

  font-size: 18px;
  font-weight: 600;
  line-height: 1;

  letter-spacing: 0.18em;
}

/* Main heading
----------------------------------------- */

.vision__title {
  margin: 0;

  color: #082d63;

  font-size: clamp(42px, 3.2vw, 62px);
  font-weight: 700;
  line-height: 1.25;

  letter-spacing: 0.03em;
}

/* ========================================
   Gradient line
======================================== */

.vision__line {
  width: 120px;
  height: 8px;

  margin: 22px 0 24px;

  background: linear-gradient(90deg, #c8e800 0%, #c8e800 30%, #83d12d 62%, #28a9e8 100%);
}

/* ========================================
   Text
======================================== */

.vision__text {
  margin: 0;

  color: #15355f;

  font-size: clamp(18px, 1.45vw, 27px);
  font-weight: 500;
  line-height: 1.65;

  letter-spacing: 0.025em;
}

/* ========================================
   Map
======================================== */

.vision__visual {
  position: absolute;

  top: 50%;
  right: -2%;

  width: 61%;

  transform: translateY(-50%);

  z-index: 1;
}

.vision__visual img {
  display: block;

  width: 100%;
  height: auto;
}

/* ========================================
   Tablet
======================================== */

@media (max-width: 1100px) {
  .vision {
    padding: 70px 0;
  }

  .vision__inner {
    width: calc(100% - 70px);
    min-height: 420px;
  }

  .vision__content {
    width: 53%;
  }

  .vision__visual {
    right: -12%;
    width: 65%;

    opacity: 0.8;
  }

  .vision__title {
    font-size: 44px;
  }

  .vision__text {
    font-size: 18px;
  }
}

/* ========================================
   Smartphone
======================================== */

@media (max-width: 767px) {
  .vision {
    padding: 60px 0 45px;
  }

  .vision__inner {
    width: calc(100% - 40px);
    min-height: 0;

    display: block;
  }

  .vision__content {
    width: 100%;
  }

  .vision__en {
    margin-bottom: 14px;

    font-size: 13px;
    letter-spacing: 0.18em;
  }

  .vision__title {
    font-size: clamp(34px, 9vw, 42px);
    line-height: 1.3;
  }

  .vision__line {
    width: 90px;
    height: 6px;

    margin: 18px 0 22px;
  }

  .vision__text {
    font-size: 16px;
    line-height: 1.8;
  }

  .vision__text br {
    display: none;
  }

  /* Map */

  .vision__visual {
    position: relative;

    top: auto;
    right: auto;

    width: 120%;
    margin: 30px 0 0 -10%;

    transform: none;

    opacity: 1;
  }
}

/* ========================================
   Small Smartphone
======================================== */

@media (max-width: 400px) {
  .vision__inner {
    width: calc(100% - 30px);
  }

  .vision__title {
    font-size: 32px;
  }
}

/* ========================================
   TOP LINKS
======================================== */

.top-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  width: 100%;

  /* 後から10pxなどに変更可能 */
  gap: 0;
}

/* ========================================
   ITEM
======================================== */

.top-links__item {
  position: relative;

  display: block;
  height: clamp(400px, 28vw, 540px);

  color: #fff;
  text-decoration: none;

  overflow: hidden;
}

/* ========================================
   IMAGE
======================================== */

.top-links__image {
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.6s ease;
}

/* ========================================
   Overlay
======================================== */

.top-links__overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(90deg, rgba(0, 27, 65, 0.68) 0%, rgba(0, 27, 65, 0.42) 38%, rgba(0, 27, 65, 0.1) 72%, rgba(0, 27, 65, 0) 100%);

  z-index: 1;

  transition: background 0.35s ease;
}

/* ========================================
   CONTENT
======================================== */

.top-links__content {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;

  height: 100%;

  padding: clamp(20px, 2.5vw, 40px) clamp(28px, 4vw, 80px) clamp(17px, 2.5vw, 40px);
}

/* ========================================
   NUMBER
======================================== */

.top-links__number {
  margin-bottom: 22px;
}

.top-links__number span {
  position: relative;

  display: inline-block;

  padding-bottom: 17px;

  font-size: clamp(40px, 3.4vw, 66px);
  font-weight: 500;
  line-height: 1;

  letter-spacing: 0.02em;
}

/* 黄緑のライン */

.top-links__number span::after {
  content: "";

  position: absolute;

  bottom: 0;
  left: 0;

  width: 74px;
  max-width: 100%;
  height: 7px;

  background: #c8e800;
}

/* ========================================
   TITLE
======================================== */

.top-links__title {
  margin: 0;

  color: #fff;

  font-size: clamp(27px, 2vw, 39px);
  font-weight: 700;
  line-height: 1.3;

  letter-spacing: 0.04em;
}

/* ========================================
   TEXT
======================================== */

.top-links__text {
  margin: 24px 0 0;

  color: #fff;

  font-size: clamp(18px, 1.4vw, 27px);
  font-weight: 500;
  line-height: 1.6;

  letter-spacing: 0.04em;
}

/* ========================================
   BUTTON
======================================== */

.top-links__button {
  width: 70px;
  height: 70px;

  margin-top: auto;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;

  background: rgba(0, 20, 50, 0.22);

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.top-links__button span {
  display: block;

  color: #fff;

  font-size: 36px;
  font-weight: 300;
  line-height: 1;

  transform: translateY(-2px);
}

/* ========================================
   HOVER
======================================== */

@media (hover: hover) {
  .top-links__item:hover .top-links__image {
    transform: scale(1.05);
  }

  .top-links__item:hover .top-links__button {
    color: #082d63;
    background: #fff;
    border-color: #fff;

    transform: translateX(5px);
  }

  .top-links__item:hover .top-links__button span {
    color: #082d63;
  }
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 1100px) {
  .top-links__item {
    height: 450px;
  }

  .top-links__content {
    padding: 30px;
  }

  .top-links__number {
    margin-bottom: 18px;
  }

  .top-links__number span {
    font-size: 48px;
  }

  .top-links__title {
    font-size: 29px;
  }

  .top-links__text {
    margin-top: 20px;

    font-size: 19px;
  }

  .top-links__button {
    width: 64px;
    height: 64px;
  }
}

/* ========================================
   SMARTPHONE
======================================== */

@media (max-width: 767px) {
  .top-links {
    grid-template-columns: 1fr;

    /*
     * PCと同じく隙間なし。
     * 必要なら 8px / 10px などに変更。
     */
    gap: 0;
  }

  .top-links__item {
    height: 390px;
  }

  .top-links__content {
    padding: 28px 25px;
  }

  .top-links__number {
    margin-bottom: 17px;
  }

  .top-links__number span {
    padding-bottom: 13px;

    font-size: 43px;
  }

  .top-links__number span::after {
    width: 58px;
    height: 5px;
  }

  .top-links__title {
    font-size: 27px;
  }

  .top-links__text {
    margin-top: 18px;

    font-size: 17px;
    line-height: 1.55;
  }

  .top-links__button {
    width: 58px;
    height: 58px;
  }

  .top-links__button span {
    font-size: 28px;
  }
}
/* ========================================
   NEWS
======================================== */

.top-news {
  width: 100%;
  padding: 60px 0 70px;
  background: #fff;
}

.top-news__inner {
  width: min(1760px, calc(100% - 100px));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;

  align-items: stretch;
}

/* ========================================
   NEWS LEFT
======================================== */

.top-news__news {
  min-width: 0;
}

/* Heading
----------------------------------------- */

.top-news__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 64px;

  border-bottom: 1px solid #dce2e9;
}

.top-news__heading-title {
  display: flex;
  align-items: baseline;
  gap: 28px;
}

.top-news__heading h2 {
  margin: 0;

  color: #082d63;

  font-size: clamp(27px, 2vw, 38px);
  font-weight: 700;
  line-height: 1.2;

  letter-spacing: 0.04em;
}

.top-news__heading-title > span {
  color: #163c72;

  font-size: 14px;
  font-weight: 600;

  letter-spacing: 0.13em;
}

/* 一覧を見る
----------------------------------------- */

.top-news__more {
  display: flex;
  align-items: center;
  gap: 20px;

  color: #163c72;

  font-size: 15px;
  font-weight: 700;
  line-height: 1;

  text-decoration: none;

  transition: opacity 0.25s ease;
}

.top-news__more:hover {
  opacity: 0.6;
}

.top-news__more-arrow {
  font-size: 25px;
  font-weight: 400;
}

/* ========================================
   NEWS LIST
======================================== */

.top-news__item {
  margin: 0;

  border-bottom: 1px solid #dce2e9;
}

.top-news__item a {
  min-height: 57px;
  padding: 0 16px;

  display: flex;
  align-items: center;

  color: #17365f;
  text-decoration: none;

  transition: background 0.25s ease;
}

.top-news__item a:hover {
  background: #f5f8fc;
}

/* Date */

.top-news__item time {
  flex: 0 0 165px;

  font-size: 16px;
  font-weight: 500;

  letter-spacing: 0.02em;
}

/* Title */

.top-news__title {
  margin: 0;

  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;

  letter-spacing: 0.025em;
}

/* NEW */

.top-news__new {
  flex: 0 0 auto;

  margin-left: 20px;
  padding: 6px 15px 5px;

  border-radius: 3px;

  background: #f60112;

  color: #fff;

  font-size: 12px;
  font-weight: 700;
  line-height: 1;

  letter-spacing: 0.06em;
}

/* ========================================
   MOVIE
======================================== */

.top-news__movie {
  position: relative;

  min-height: 315px;

  overflow: hidden;
}

/* Image */

.top-news__movie-image {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.6s ease;
}

/* ========================================
   Movie dark area
======================================== */

.top-news__movie::after {
  content: "";

  position: absolute;

  top: 0;
  right: 0;

  width: 43%;
  height: 100%;

  background: rgba(1, 27, 61, 0.8);

  z-index: 1;
}

/* 少し左側へグラデーション */

.top-news__movie::before {
  content: "";

  position: absolute;

  top: 0;
  right: 43%;

  width: 12%;
  height: 100%;

  background: linear-gradient(90deg, rgba(1, 27, 61, 0) 0%, rgba(1, 27, 61, 0.8) 100%);

  z-index: 1;
}

/* ========================================
   Movie content
======================================== */

.top-news__movie-content {
  position: absolute;

  top: 50%;
  right: 0;

  z-index: 2;

  width: 43%;
  padding: 0 45px;

  transform: translateY(-50%);
}

/* Copy */

.top-news__movie-copy {
  margin: 0 0 30px;

  color: #fff;

  font-size: clamp(20px, 1.55vw, 30px);
  font-weight: 700;
  line-height: 1.6;

  letter-spacing: 0.04em;
}

/* ========================================
   PLAY BUTTON
======================================== */

.top-news__play {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 82px;
  height: 82px;

  border: 2px solid #fff;
  border-radius: 50%;

  background: rgba(3, 29, 63, 0.25);

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

/* Triangle */

.top-news__play span {
  width: 0;
  height: 0;

  margin-left: 6px;

  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #fff;
}

.top-news__play:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.07);
}

/* Movie hover */

@media (hover: hover) {
  .top-news__movie:hover .top-news__movie-image {
    transform: scale(1.025);
  }
}

/* ========================================
   1300px
======================================== */

@media (max-width: 1300px) {
  .top-news__inner {
    width: calc(100% - 70px);
    gap: 30px;
  }

  .top-news__item time {
    flex-basis: 130px;
  }

  .top-news__movie-content {
    padding: 0 30px;
  }
}

/* ========================================
   Tablet
======================================== */

@media (max-width: 1000px) {
  .top-news {
    padding: 55px 0;
  }

  .top-news__inner {
    width: calc(100% - 60px);

    grid-template-columns: 1fr;
    gap: 45px;
  }

  .top-news__movie {
    min-height: 340px;
  }
}

/* ========================================
   Smartphone
======================================== */

@media (max-width: 767px) {
  .top-news {
    padding: 45px 0;
  }

  .top-news__inner {
    width: calc(100% - 40px);
    gap: 35px;
  }

  /* Heading */

  .top-news__heading {
    min-height: 55px;
  }

  .top-news__heading-title {
    gap: 14px;
  }

  .top-news__heading h2 {
    font-size: 27px;
  }

  .top-news__heading-title > span {
    font-size: 11px;
  }

  .top-news__more {
    gap: 10px;

    font-size: 12px;
  }

  .top-news__more-arrow {
    font-size: 20px;
  }

  /* News */

  .top-news__item a {
    position: relative;

    display: block;

    min-height: 0;

    padding: 14px 5px;
  }

  .top-news__item time {
    display: block;

    margin-bottom: 5px;

    font-size: 13px;
  }

  .top-news__title {
    padding-right: 50px;

    font-size: 15px;
  }

  .top-news__new {
    position: absolute;

    top: 13px;
    right: 5px;

    margin: 0;
    padding: 5px 8px;

    font-size: 10px;
  }

  /* Movie */

  .top-news__movie {
    min-height: 400px;
  }

  .top-news__movie-image {
    object-position: 35% center;
  }

  .top-news__movie::before {
    display: none;
  }

  .top-news__movie::after {
    top: auto;
    bottom: 0;

    width: 100%;
    height: 55%;

    background: linear-gradient(0deg, rgba(1, 27, 61, 0.92) 0%, rgba(1, 27, 61, 0.76) 60%, rgba(1, 27, 61, 0) 100%);
  }

  .top-news__movie-content {
    top: auto;
    right: 0;
    bottom: 25px;

    width: 100%;

    padding: 0 25px;

    transform: none;
  }

  .top-news__movie-copy {
    margin-bottom: 18px;

    font-size: 21px;
  }

  .top-news__play {
    width: 60px;
    height: 60px;
  }

  .top-news__play span {
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 14px;
  }
}
/* ========================================
   FOOTER
======================================== */

.site-footer {
  width: 100%;
  padding: 55px 0 60px;

  background: #fff;
}

.footer-inner {
  width: min(1720px, calc(100% - 100px));
  margin: 0 auto;

  display: grid;

  /*
   * ロゴ / ナビ / SNS / キャッチコピー
   */
  grid-template-columns:
    minmax(320px, 1.25fr)
    minmax(450px, 1.35fr)
    auto
    minmax(280px, 0.8fr);

  align-items: center;

  column-gap: clamp(35px, 4vw, 80px);
}

/* ========================================
   LOGO
======================================== */

.footer-logo a {
  display: inline-block;
}

.footer-logo img {
  display: block;

  width: 280px;
  max-width: 100%;
  height: auto;
}

/* ========================================
   NAVIGATION
======================================== */

.footer-nav ul {
  display: flex;
  align-items: center;

  margin: 0;
  padding: 0;

  list-style: none;
}

.footer-nav li {
  position: relative;
}

/* 区切り線 */

.footer-nav li:not(:last-child)::after {
  content: "";

  display: inline-block;

  width: 1px;
  height: 20px;

  margin: 0 24px;

  vertical-align: middle;

  background: #8290a6;
}

.footer-nav a {
  color: #17365f;

  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;

  letter-spacing: 0.02em;

  text-decoration: none;

  white-space: nowrap;

  transition: opacity 0.25s ease;
}

.footer-nav a:hover {
  opacity: 0.55;
}

/* ========================================
   SNS
======================================== */

.footer-sns {
  display: flex;
  align-items: center;

  gap: 30px;
}

.footer-sns__link {
  display: flex;
  align-items: center;
  justify-content: center;

  color: #000;

  text-decoration: none;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.footer-sns__link:hover {
  opacity: 0.55;
  transform: translateY(-2px);
}

/* Instagram */

.footer-sns__instagram {
  width: 39px;
  height: 39px;

  fill: none;
  stroke: currentColor;

  stroke-width: 1.8;
}

.footer-sns__dot {
  fill: currentColor;
  stroke: none;
}

/* YouTube */

.footer-sns__youtube {
  width: 48px;
  height: auto;

  fill: #000;
}

.footer-sns__youtube-play {
  fill: #fff;
}

/* ========================================
   CATCH COPY
======================================== */

.footer-catch {
  margin: 0;

  color: #17365f;

  font-size: 15px;
  font-weight: 600;
  line-height: 1;

  letter-spacing: 0.14em;

  text-align: right;

  white-space: nowrap;
}

/* ========================================
   1400px
======================================== */

@media (max-width: 1400px) {
  .footer-inner {
    width: calc(100% - 70px);

    grid-template-columns:
      280px
      1fr
      auto;
  }

  .footer-logo img {
    width: 270px;
  }

  .footer-nav li:not(:last-child)::after {
    margin: 0 16px;
  }

  .footer-nav a {
    font-size: 14px;
  }

  .footer-sns {
    gap: 20px;
  }

  .footer-catch {
    grid-column: 2 / 4;

    margin-top: 25px;

    text-align: right;
  }
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {
  .site-footer {
    padding: 50px 0;
  }

  .footer-inner {
    width: calc(100% - 60px);

    display: flex;
    flex-wrap: wrap;

    gap: 35px 50px;
  }

  .footer-logo {
    width: 100%;
  }

  .footer-logo img {
    width: 280px;
  }

  .footer-nav {
    flex: 1;
  }

  .footer-catch {
    width: 100%;

    margin: 0;

    text-align: left;
  }
}

/* ========================================
   SMARTPHONE
======================================== */

@media (max-width: 767px) {
  .site-footer {
    padding: 45px 0 40px;
  }

  .footer-inner {
    width: calc(100% - 40px);

    display: block;
  }

  /* Logo */

  .footer-logo {
    margin-bottom: 35px;
  }

  .footer-logo img {
    width: 250px;
  }

  /* Navigation */

  .footer-nav {
    margin-bottom: 32px;
  }

  .footer-nav ul {
    display: block;
  }

  .footer-nav li {
    border-bottom: 1px solid #e0e5eb;
  }

  .footer-nav li:first-child {
    border-top: 1px solid #e0e5eb;
  }

  .footer-nav li:not(:last-child)::after {
    display: none;
  }

  .footer-nav a {
    position: relative;

    display: block;

    padding: 14px 5px;

    font-size: 14px;
  }

  .footer-nav a::after {
    content: "→";

    position: absolute;

    top: 50%;
    right: 5px;

    transform: translateY(-50%);

    font-size: 18px;
  }

  /* SNS */

  .footer-sns {
    margin-bottom: 30px;

    gap: 25px;
  }

  .footer-sns__instagram {
    width: 34px;
    height: 34px;
  }

  .footer-sns__youtube {
    width: 43px;
  }

  /* Catch */

  .footer-catch {
    font-size: 12px;

    letter-spacing: 0.12em;

    text-align: left;
  }
}
