@charset "UTF-8";
:root,
*::before,
*::after {
  --pd-01: 20px;
  --width-01: calc(1000px + (var(--pd-01) * 2));
  --height-header: 70px;
  --outline: 2px solid #ccc;
  --transition: 0.2s;
  --z-menubtn: 13;
  --z-menubg: 12;
  --z-overlay: 11;
  --z-spmenu: 10;
}
@media screen and (max-width: 767px) {
  :root,
  *::before,
  *::after {
    --height-header: 56px;
    --pd-01: 10px;
  }
}
/* リセット
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
  margin: 0;
}
ul, ol {
  padding: 0;
  margin: 0;
}
ul {
  list-style: none;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
/* デフォルト
============================================================ */
body {
  font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  line-height: 1;
  color: #181818;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 150%;
}
ol {
  padding: 0 0 0 1.25em;
}
@media all and (max-width: 767px) {
  ol {
    padding: 0 0 0 1.5em;
  }
}
a {
  color: #01f;
  line-break: strict;
  word-break: normal;
  overflow-wrap: anywhere;
  text-decoration: none;
  transition: opacity var(--transition) linear, color var(--transition) linear, border var(--transition) linear, background var(--transition) linear, box-shadow var(--transition) linear, text-shadow var(--transition) linear, filter var(--transition) linear;
}
a:focus:not(:focus-visible) {
  outline: 0;
}
a:focus-visible {
  outline: var(--outline);
}
@media (any-hover: hover) {
  a:hover img {
    filter: brightness(1.1);
  }
}
@media (hover: none) {
  a:active img {
    filter: brightness(1.1);
  }
}
a img {
  transition: filter var(--transition) linear;
}
a::before,
a::after {
  transition: var(--transition) linear;
}
img,
picture {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
/* レイアウト
============================================================ */
.l-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.l-wrapper:not(.p-index, .p-sponsors) {
  background: #181818;
}
.l-wrapper:not(.p-index, .p-sponsors) .l-main {
  margin: var(--height-header) 0 0;
}
.l-wrapper.is-fixed {
  position: fixed;
  right: 0;
  left: 0;
}
.l-wrapper.is-fixed .follower {
  display: none;
}
/* ----------------------------------------
メインエリア
---------------------------------------- */
.l-main {
  width: 100%;
  line-height: 150%;
}
.l-main :is(p, ul, ol) {
  line-height: 180%;
}
:where(.l-main) p + p {
  margin: 1em 0 0;
}
/* ヘッダー
---------------------------------------- */
.l-header {
  position: relative;
  width: 100%;
  height: var(--height-header);
  background: rgba(0, 0, 0, 0.2);
  transition: 0.2s linear background;
}
.l-header.is-scrolled {
  background: rgba(0, 0, 0, 0.8);
  opacity: 0.95;
}
@media (any-hover: hover) {
  .l-header.is-scrolled:hover {
    opacity: 1;
  }
}
@media (hover: none) {
  .l-header.is-scrolled:active {
    opacity: 1;
  }
}
.l-header {
  position: fixed;
  top: 0;
  z-index: var(--z-spmenu);
}
.header-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--width-01);
  height: 100%;
  padding: 0 var(--pd-01);
  margin: 0 auto;
}
@media all and (max-width: 767px) {
  .logo-header {
    width: 180px;
  }
}
.logo-link {
  display: inline-block;
}
@media all and (min-width: 768px) {
  .nav-global {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media all and (max-width: 1000px) and (min-width: 768px) {
  .nav-global {
    font-size: 90%;
    transform: translateX(calc(-50% + 70px));
  }
}
@media all and (max-width: 767px) {
  .nav-global {
    position: fixed;
    right: 0;
    z-index: var(--z-menubg);
    width: 100%;
    transition: all 0.3s;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    top: 0;
    height: 100%;
    min-height: 100vh;
    padding: calc(var(--height-header) + 10px) 0 20px;
    overflow-y: scroll;
    background: rgba(255, 255, 255, 0.9);
  }
}
.menu-global {
  display: flex;
  gap: 1em;
}
@media all and (max-width: 767px) {
  .menu-global {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
.menu-global-link {
  color: #fff;
  letter-spacing: 0.5px;
}
.menu-global-link:focus:not(:focus-visible) {
  outline: 0;
}
.menu-global-link:focus-visible {
  outline: var(--outline);
}
@media (any-hover: hover) {
  .menu-global-link:hover {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .menu-global-link:active {
    opacity: 0.8;
  }
}
@media all and (min-width: 768px) {
  .menu-global-link.is-current {
    position: relative;
  }
  .menu-global-link.is-current::after {
    position: absolute;
    bottom: -10px;
    left: -5px;
    width: calc(100% + 10px);
    height: 3px;
    content: "";
    background: #fff;
  }
}
@media all and (max-width: 767px) {
  .menu-global-link {
    display: grid;
    place-content: center;
    min-height: 44px;
    padding: 5px 10px;
    background: #333;
  }
}
/* --- メニュー開閉ボタン ------------------- */
.btn-menu {
  display: none;
}
.btn-menu.is-active {
  outline: 2px solid #aaa;
}
@media all and (max-width: 767px) {
  .btn-menu {
    position: absolute;
    right: var(--pd-01);
    z-index: var(--z-menubtn);
    display: flex;
    width: 38px;
    height: 38px;
    color: #333;
    background: #fff;
    border: none;
    border-radius: 2px;
    transition: background var(--transition) linear, color var(--transition) linear;
  }
}
@media (max-width: 767px) and (any-hover: hover) {
  .btn-menu:hover {
    cursor: pointer;
    background: #e0e0e0;
  }
}
@media (max-width: 767px) and (hover: none) {
  .btn-menu:active {
    cursor: pointer;
    background: #e0e0e0;
  }
}
/* --- ハンバーガーライン ------------------- */
.btn-menu.is-active .btn-menu-line-top {
  top: 48%;
  transform: translateY(0) scale(0);
}
.btn-menu.is-active .btn-menu-line-middle::before {
  transform: rotate(45deg);
}
.btn-menu.is-active .btn-menu-line-middle::after {
  transform: rotate(-45deg);
}
.btn-menu.is-active .btn-menu-line-bottom {
  top: 48%;
  transform: translateY(0) scale(0);
}
.btn-menu-line {
  position: absolute;
  left: 9px;
  display: block;
  width: 20px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: var(--transition) linear;
}
.btn-menu-line-top {
  top: 12px;
  transform: scale(1);
}
.btn-menu-line-middle {
  top: 18px;
  background: none;
}
.btn-menu-line-middle::before, .btn-menu-line-middle::after {
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  content: "";
  background: #333;
  transform: rotate(0);
  transition: var(--transition) linear;
}
.btn-menu-line-bottom {
  top: 24px;
  transform: scale(1);
}
/* フッター
---------------------------------------- */
.l-footer {
  width: 100%;
  max-width: var(--width-01);
  padding: 55px var(--pd-01) 20px;
  margin: auto auto 0;
  background: #181818;
  border-image-source: linear-gradient(#181818, #181818);
  border-image-slice: 0 fill;
  border-image-outset: 0 100vw;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  justify-content: center;
  margin: 80px 0 0;
}
@media all and (max-width: 767px) {
  .footer-menu {
    flex-direction: column;
  }
}
.footer-menu li {
  position: relative;
}
@media all and (max-width: 767px) {
  .footer-menu li {
    padding-left: 0.75em;
  }
}
.footer-menu li::before {
  position: absolute;
  top: 5%;
  left: -20px;
  display: inline-block;
  width: 1px;
  height: 90%;
  content: "";
  background: #9f9f9f;
}
@media all and (max-width: 767px) {
  .footer-menu li::before {
    left: 0;
  }
}
@media all and (min-width: 768px) {
  .footer-menu li:last-of-type::after {
    position: absolute;
    top: 0;
    right: -20px;
    display: inline-block;
    width: 1px;
    height: 90%;
    content: "";
    background: #9f9f9f;
  }
}
.footer-menu-link {
  font-size: 14px;
  color: #9f9f9f;
}
/* トップへ戻るボタン
---------------------------------------- */
.btn-to-top {
  position: fixed;
  right: var(--pd-01);
  bottom: var(--pd-01);
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: var(--transition) linear;
}
.btn-to-top.is-visible {
  pointer-events: auto;
  opacity: 1;
}
.link-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #666;
  border: 1px solid #fff;
  border-radius: 50%;
  opacity: 0.7;
  transform: scale(1);
  transition: var(--transition) linear;
}
.link-to-top:focus:not(:focus-visible) {
  outline: 0;
}
.link-to-top:focus-visible {
  outline: var(--outline);
}
@media (any-hover: hover) {
  .link-to-top:hover {
    opacity: 0.9;
    transform: scale(1.05);
  }
}
@media (hover: none) {
  .link-to-top:active {
    opacity: 0.9;
    transform: scale(1.05);
  }
}
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}
.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}
.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.splide--rtl {
  direction: rtl;
}
.splide__track--ttb > .splide__list {
  display: block;
}
.splide__container {
  box-sizing: border-box;
  position: relative;
}
.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}
.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}
.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}
.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}
.splide:not(.is-overflow) .splide__pagination {
  display: none;
}
.splide__progress__bar {
  width: 0;
}
.splide {
  position: relative;
  visibility: hidden;
}
.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}
.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}
.splide__slide img {
  vertical-align: bottom;
}
.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}
.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}
.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}
.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
/* トップページ
============================================================ */
.movie {
  position: relative;
  line-height: 100%;
  background: #181818;
}
@media all and (max-width: 767px) {
  .movie {
    padding: var(--height-header) 0 0;
  }
}
.lottie-section {
  position: absolute;
  bottom: -30%;
  z-index: 5;
  width: 100%;
  aspect-ratio: 16/5;
  overflow: hidden;
}
.dot-lottie {
  position: absolute;
  top: -45%;
  display: block;
  width: 100%;
  line-height: 100%;
}
.top-movie {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
}
.sec-news {
  padding-block: 150px 50px;
  background: #181818;
}
@media all and (max-width: 767px) {
  .sec-news {
    padding-top: 70px;
  }
}
.news-list {
  width: 100%;
  max-width: 720px;
  margin: 40px 0 0 auto;
}
.news-item {
  border-top: 1px solid #fff;
}
.news-item:last-of-type {
  border-bottom: 1px solid #fff;
}
.news-item-link {
  display: block;
  padding: 1em 0;
  color: #fff;
}
@media (any-hover: hover) {
  .news-item-link:hover {
    background: rgba(255, 255, 255, 0.1);
  }
}
@media (hover: none) {
  .news-item-link:active {
    background: rgba(255, 255, 255, 0.1);
  }
}
.news-date {
  font-size: 10px;
}
.news-ttl {
  line-height: 180%;
}
.news-more {
  width: 100%;
  max-width: 720px;
  margin: 60px 0 0 auto;
}
.news-more-link {
  position: relative;
  display: block;
  width: 100%;
  max-width: 194px;
  padding: 15px 20px;
  line-height: 100%;
  color: #fff;
  border: 1px solid;
  border-radius: 2em;
}
@media (any-hover: hover) {
  .news-more-link:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  .news-more-link:hover::after {
    transform: translate(2px, -50%);
  }
}
@media (hover: none) {
  .news-more-link:active {
    background: rgba(255, 255, 255, 0.1);
  }
  .news-more-link:active::after {
    transform: translate(2px, -50%);
  }
}
.news-more-link::after {
  position: absolute;
  top: 50%;
  right: 20px;
  align-self: baseline;
  width: 29px;
  height: 20px;
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2228.76%22%20height%3D%2219.79%22%20viewBox%3D%220%200%2028.76%2019.79%22%3E%3Cpath%20d%3D%22M18.06.38a1.5%201.5%200%200%200-2%202.24l6.49%205.77H1.5a1.5%201.5%200%201%200%200%203h21.06l-6.49%205.77a1.5%201.5%200%200%200%202%202.24l10.7-9.52z%22%20style%3D%22fill%3A%23fff%22%2F%3E%3C%2Fsvg%3E") no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  transition: 0.2s linear;
}
.sec-about {
  padding-block: 120px 50px;
  overflow-x: hidden;
  color: #fff;
  background: #181818;
}
.about-contents {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 0 0 auto;
}
.about-contents::before {
  position: absolute;
  top: -120px;
  right: -40px;
  display: block;
  width: 198px;
  aspect-ratio: 1/1;
  content: "";
  background: url("/asset/img/top/img_about_01.jpg") no-repeat;
  background-size: contain;
}
.about-contents::after {
  position: absolute;
  top: 200px;
  left: -424px;
  display: block;
  width: 384px;
  height: 527px;
  content: "";
  background: url("/asset/img/top/img_about_02.jpg") no-repeat;
  background-size: contain;
}
.about-contents-desc {
  margin: 80px 0 0;
  line-height: 180%;
}
.about-img {
  margin: 100px 0 0;
}
.about-highlight {
  padding-block: 100px 50px;
  margin: 200px 0 0;
  background: #000 url("/asset/img/top/bg_about.jpg") no-repeat center;
  background-attachment: fixed;
  background-size: cover;
}
_::-webkit-full-page-media,
_:future, :root .about-highlight {
  background-attachment: initial !important;
}
.splide {
  position: relative;
  padding: 20px 50px;
  margin: 70px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  box-shadow: 0 0 21px -8px rgba(255, 255, 255, 0.3);
}
@media all and (max-width: 767px) {
  .splide {
    margin: 40px 0 0;
    transform: none;
  }
}
.splide__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  cursor: pointer;
  background: transparent;
  border: none;
  transform: translate(0, -50%);
  transition: 0.2s transform linear;
}
.splide__arrow--prev {
  left: 0;
}
@media (any-hover: hover) {
  .splide__arrow--prev:hover {
    transform: translate(-2px, -50%);
  }
}
@media (hover: none) {
  .splide__arrow--prev:active {
    transform: translate(-2px, -50%);
  }
}
.splide__arrow--next {
  right: 0;
}
@media (any-hover: hover) {
  .splide__arrow--next:hover {
    transform: translate(2px, -50%);
  }
}
@media (hover: none) {
  .splide__arrow--next:active {
    transform: translate(2px, -50%);
  }
}
.splide__track {
  z-index: 3;
}
.splide__list {
  line-height: 100%;
}
@media (any-hover: hover) {
  .splide__slide a:hover {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
  }
  .splide__slide a:hover img {
    filter: none;
  }
}
@media (hover: none) {
  .splide__slide a:active {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
  }
  .splide__slide a:active img {
    filter: none;
  }
}
.splide__title {
  margin: 0.5em 0 0;
  line-height: 140%;
  color: #fff;
}
.sec-archives {
  padding-block: 80px;
  background: #181818;
}
.archives-list {
  width: 100%;
  max-width: 720px;
  margin: 40px 0 0 auto;
}
.archives-item {
  padding: 1em 0;
  color: #fff;
  border-top: 1px solid #fff;
}
.archives-item:last-of-type {
  border-bottom: 1px solid #fff;
}
.archives-date {
  font-size: 10px;
}
.archives-title {
  line-height: 180%;
}
.archives-link {
  margin: 1em 0 0;
}
.archives-link a {
  position: relative;
  display: block;
  width: 100%;
  max-width: 206px;
  padding: 15px 20px;
  line-height: 100%;
  color: #fff;
  border: 1px solid;
  border-radius: 2em;
}
@media (any-hover: hover) {
  .archives-link a:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  .archives-link a:hover::after {
    transform: translate(2px, -50%);
  }
}
@media (hover: none) {
  .archives-link a:active {
    background: rgba(255, 255, 255, 0.1);
  }
  .archives-link a:active::after {
    transform: translate(2px, -50%);
  }
}
.archives-link a::after {
  position: absolute;
  top: 50%;
  right: 20px;
  align-self: baseline;
  width: 29px;
  height: 20px;
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2228.76%22%20height%3D%2219.79%22%20viewBox%3D%220%200%2028.76%2019.79%22%3E%3Cpath%20d%3D%22M18.06.38a1.5%201.5%200%200%200-2%202.24l6.49%205.77H1.5a1.5%201.5%200%201%200%200%203h21.06l-6.49%205.77a1.5%201.5%200%200%200%202%202.24l10.7-9.52z%22%20style%3D%22fill%3A%23fff%22%2F%3E%3C%2Fsvg%3E") no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  transition: 0.2s linear;
}
.sec-top-sponsors {
  position: relative;
  padding-block: 240px 80px;
  margin-top: -22%;
  background: url("/asset/img/top/bg_sponsor.jpg") no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
@media all and (max-width: 767px) {
  .sec-top-sponsors {
    padding-top: 140px;
    margin-top: -25%;
  }
}
_::-webkit-full-page-media,
_:future, :root .sec-top-sponsors {
  background-attachment: initial !important;
}
.lottie-section2 {
  position: relative;
  z-index: 5;
  width: 100%;
  aspect-ratio: 16/4;
  overflow: hidden;
}
.dot-lottie2 {
  position: absolute;
  top: -63%;
  display: block;
  width: 100%;
  line-height: 100%;
}
.sponsors-ttl {
  text-align: center;
}
.sponsors-ttl-sub {
  font-size: 14px;
}
.sponsors-ttl-main {
  margin: 50px 0 0;
  font-size: 80px;
  color: #c00010;
}
@media all and (max-width: 767px) {
  .sponsors-ttl-main {
    margin: 20px 0 0;
    font-size: 36px;
  }
}
.sponsors-txt {
  display: flex;
  justify-content: center;
  margin: 50px 0 0;
  line-height: 180%;
}
.sponsors-look {
  position: relative;
  width: 100%;
  max-width: 227px;
  margin: 40px auto 0;
}
.sponsors-look-link {
  position: relative;
  z-index: 5;
  display: block;
  padding: 15px 20px;
  line-height: 100%;
  color: inherit;
  border: 1px solid;
  border-radius: 2em;
}
@media (any-hover: hover) {
  .sponsors-look-link:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  .sponsors-look-link:hover::before {
    transform: translate(2px, -50%);
  }
}
@media (hover: none) {
  .sponsors-look-link:active {
    background: rgba(255, 255, 255, 0.1);
  }
  .sponsors-look-link:active::before {
    transform: translate(2px, -50%);
  }
}
.sponsors-look-link::before {
  position: absolute;
  top: 50%;
  right: 20px;
  align-self: baseline;
  width: 29px;
  height: 20px;
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2228.76%22%20height%3D%2219.79%22%20viewBox%3D%220%200%2028.76%2019.79%22%3E%3Cpath%20d%3D%22M18.06.38a1.5%201.5%200%200%200-2%202.24l6.49%205.77H1.5a1.5%201.5%200%201%200%200%203h21.06l-6.49%205.77a1.5%201.5%200%200%200%202%202.24l10.7-9.52z%22%20style%3D%22fill%3A%23181818%22%2F%3E%3C%2Fsvg%3E") no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  transition: 0.2s linear;
}
.sponsors-company {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-block: 20px;
  margin: 80px 0 0;
}
@media all and (max-width: 767px) {
  .sponsors-company {
    gap: 40px;
  }
}
.sponsors-company::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  content: "";
  background: rgba(255, 255, 255, 0.2);
}
.sponsors-company-item {
  position: relative;
  z-index: 2;
}
.sec-contact {
  padding-block: 80px;
}
.contact-form {
  width: 100%;
  max-width: 720px;
  margin: 40px 0 0 auto;
}
.news-contents {
  width: 100%;
  max-width: 700px;
  margin: -60px 0 0 auto;
  color: #fff;
}
@media all and (max-width: 1000px) {
  .news-contents {
    margin-top: 20px;
  }
}
@media all and (max-width: 767px) {
  .s-page-ttl {
    font-size: 28px;
  }
}
.newx-txt {
  padding: 0 0 100px;
  margin: 1em 0 0;
  border-bottom: 1px solid #fff;
}
.newx-txt p {
  line-height: 180%;
}
.newx-txt a {
  color: #fff;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .newx-txt a:hover {
    text-decoration: none;
  }
}
@media (hover: none) {
  .newx-txt a:active {
    text-decoration: none;
  }
}
.sec-sponsor {
  width: 100%;
  padding: calc(var(--height-header) + 50px) 0 100px;
  background: url("/asset/img/sponsor/bg_sponsor_01.jpg") no-repeat top;
  background-size: 100% auto;
}
.cmn-sponsor-contents {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 40px 0 0 auto;
}
.cmn-sponsor-contents p {
  line-height: 180%;
}
.cmn-sponsor-contents a {
  color: inherit;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .cmn-sponsor-contents a:hover {
    text-decoration: none;
  }
}
@media (hover: none) {
  .cmn-sponsor-contents a:active {
    text-decoration: none;
  }
}
.cmn-list-check li {
  position: relative;
  padding-left: 1.25em;
}
.cmn-list-check li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1em;
  height: 1em;
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2232%22%20fill%3D%22%23ff001f%22%20viewBox%3D%220%200%20256%20256%22%3E%3Cpath%20d%3D%22m232.49%2080.49-128%20128a12%2012%200%200%201-17%200l-56-56a12%2012%200%201%201%2017-17L96%20183%20215.51%2063.51a12%2012%200%200%201%2017%2017Z%22%2F%3E%3C%2Fsvg%3E") no-repeat;
  background-size: 100% auto;
  transform: translateY(3px);
}
.sec-value {
  padding-block: 100px 200px;
  background: #f2f2f2;
}
.value-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.value-item {
  display: grid;
  grid-template-columns: 160px auto;
  gap: 60px;
  align-items: center;
}
@media all and (max-width: 767px) {
  .value-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    width: 100%;
  }
}
.value-en {
  display: grid;
  place-content: center;
  aspect-ratio: 1/1;
  font-size: 24px;
  background: #ebebeb;
  border-radius: 50%;
  box-shadow: 10px 10px 20px #bebebe, -10px -10px 20px #fff;
}
@media all and (max-width: 767px) {
  .value-en {
    width: 160px;
  }
}
@media all and (max-width: 767px) {
  .value-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.value-ttl {
  font-size: 20px;
  font-weight: bold;
}
.value-copy {
  display: inline-block;
  padding: 5px 10px;
  margin: 7px 0 0;
  font-size: 24px;
  line-height: 120%;
  color: #fff;
  background: #181818;
}
.value-point {
  margin: 7px 0 0;
}
.value-point li {
  font-weight: bold;
}
.value-csr {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  width: 100%;
  padding: 60px 30px;
  margin: 100px 0 0;
  color: #fff;
  background: #181818;
  border-radius: 24px;
}
@media all and (max-width: 767px) {
  .value-csr {
    flex-direction: column;
  }
}
.csr-ttl {
  position: relative;
  font-size: 28px;
}
.csr-ttl::after {
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: #fff;
}
.csr-list li + li {
  margin: 5px 0 0;
}
.sec-adv {
  padding: 0 0 80px;
  background: url("/asset/img/sponsor/bg_sponsor_02.jpg") no-repeat top;
  background-attachment: fixed;
  background-size: cover;
}
_::-webkit-full-page-media,
_:future, :root .sec-adv {
  background-attachment: initial !important;
}
.sec-adv .cmn-inner {
  transform: translateY(-133px);
}
@media all and (max-width: 767px) {
  .sec-adv .cmn-inner {
    transform: translateY(-93px);
  }
}
.sec-adv-child {
  position: relative;
  z-index: 2;
  padding: 50px 30px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  box-shadow: 0 0 21px -8px rgba(255, 255, 255, 0.8);
}
@media all and (max-width: 767px) {
  .sec-adv-child {
    padding: 40px 10px;
  }
}
.adv-data {
  display: grid;
  grid-template-columns: 190px auto;
  width: 100%;
  margin: 20px 0 0;
  color: #fff;
  background: #181818;
  border-radius: 24px;
}
@media all and (max-width: 767px) {
  .adv-data {
    grid-template-columns: auto;
  }
}
.adv-platform {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding-block: 60px;
  font-size: 20px;
}
@media all and (max-width: 767px) {
  .adv-platform {
    padding-block: 30px 0;
  }
}
.adv-platform::after {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 2px;
  height: 100%;
  content: "";
  background: #939393;
}
@media all and (max-width: 767px) {
  .adv-platform::after {
    top: auto;
    bottom: -10px;
    width: 100%;
    height: 2px;
  }
}
.adv-impr {
  padding: 60px 30px;
}
@media all and (max-width: 767px) {
  .adv-impr {
    padding: 30px 20px;
  }
}
.adv-impr-list {
  display: flex;
  gap: 40px;
  justify-content: center;
}
@media all and (max-width: 767px) {
  .adv-impr-list {
    flex-direction: column;
    gap: 20px;
  }
}
.adv-impr-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.adv-impr-count {
  font-size: 28px;
  font-weight: bold;
}
.u-fz-s {
  font-size: 16px;
  font-weight: normal;
}
.u-note-mark {
  font-size: 10px;
  font-weight: normal;
}
.adv-impr-note {
  margin: 20px 0 0;
  line-height: 150%;
  counter-reset: number 0;
}
.adv-impr-note li {
  position: relative;
  padding-left: 1.75em;
  font-size: 12px;
}
.adv-impr-note li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "※" counter(number);
  counter-increment: number 1;
}
.sec-company {
  padding-block: 100px;
  background: #fff;
}
.company-contents {
  padding-bottom: 60px;
  margin-top: 60px;
  border-bottom: 2px solid #181818;
}
.company-ttl {
  padding-bottom: 10px;
  font-size: 20px;
  border-bottom: 2px solid #181818;
}
.company-list {
  margin: 60px 0;
}
.company-list li + li {
  margin: 5px 0 0;
}
@media all and (max-width: 767px) {
  .company-list li {
    position: relative;
    padding-left: 0.75em;
  }
  .company-list li::after {
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 4px;
    height: 4px;
    content: "";
    background: #181818;
    border-radius: 2px;
    transform: translateY(5px);
  }
}
/* 汎用スタイル
============================================================ */
.s-sns {
  display: flex;
  gap: 30px;
  align-items: center;
}
.s-sns.header {
  position: absolute;
  right: var(--pd-01);
}
@media all and (max-width: 767px) {
  .s-sns.header {
    right: 70px;
    gap: 20px;
  }
}
.s-sns.footer {
  margin: 30px 0 0;
}
@media all and (max-width: 767px) {
  .s-sns.footer {
    margin-left: 10px;
  }
}
.s-sns-icon {
  fill: #fff;
}
.barlow-semibold {
  font-family: Barlow, sans-serif;
  font-style: normal;
  font-weight: 600;
}
.cmn-ttl-sub {
  font-size: 14px;
  color: #939393;
}
.cmn-ttl-sub.type-darkgray {
  color: #606060;
}
.cmn-ttl-main {
  margin: 40px 0 0;
  font-family: Barlow, sans-serif;
  font-size: 100px;
  font-style: normal;
  font-weight: 600;
  font-optical-sizing: auto;
  line-height: 120%;
  color: #fff;
  word-break: normal;
  overflow-wrap: anywhere;
}
@media all and (max-width: 767px) {
  .cmn-ttl-main {
    margin: 20px 0 0;
    font-size: 48px;
  }
}
.cmn-ttl-main.type-black {
  color: #181818;
}
@media all and (min-width: 768px) {
  .cmn-ttl-main.type-fz-s {
    font-size: 82px;
  }
}
.s-ttl-anime {
  filter: blur(10px);
  transform: translateY(10px);
  transition: 0.5s linear;
}
.s-ttl-anime.is-visible {
  filter: blur(0);
  transform: translateY(0);
}
_::-webkit-full-page-media,
_:future, :root .s-ttl-anime.is-visible {
  opacity: 1;
  filter: none;
}
_::-webkit-full-page-media,
_:future, :root .s-ttl-anime {
  opacity: 0.2;
  filter: none;
}
.cmn-sec {
  padding-block: 80px 50px;
  color: #fff;
}
.cmn-inner {
  width: 100%;
  max-width: var(--width-01);
  padding-inline: var(--pd-01);
  margin: 0 auto;
}
.s-liquidglass::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  isolation: isolate;
  filter: url("#glass-distortion2");
  backdrop-filter: blur(7px);
}
.s-liquidglass.type-border-radius::after {
  border-radius: 24px;
}
.s-list-dot {
  list-style: none;
}
.s-list-dot li {
  position: relative;
  padding: 0 0 0 1em;
}
.s-list-dot li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  content: "・";
  background: var(--color-06);
}
@media screen and (min-width: 768px) {
  .u-dl {
    display: grid;
    gap: 0.25em 1em;
  }
  .dt-width3em {
    grid-template-columns: 3em auto;
  }
  .dt-width4em {
    grid-template-columns: 4em auto;
  }
}
@media screen and (max-width: 767px) {
  .u-dl dt {
    margin: 1em 0 0 -0.5em;
  }
  .u-dl dt::before {
    content: "【";
  }
  .u-dl dt::after {
    content: "】";
  }
}
/* --- 表示/非表示 ------------------- */
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}
.tb-only {
  display: none;
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .tb-only {
    display: unset;
  }
}
/* --- 余白 ------------------- */
.m-t05em {
  margin-top: 0.5em;
}
.m-t1em {
  margin-top: 1em;
}
.m-t2em {
  margin-top: 2em;
}
.m-t20 {
  margin-top: 20px;
}
.m-t40 {
  margin-top: 40px;
}
.m-t60 {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .sp-only-m-t1em {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .sp-only-m-t1em {
    margin-top: 1em;
  }
}
/* --- 文字詰め ------------------- */
.set-center {
  text-align: center;
}
.set-left {
  text-align: left;
}
.set-right {
  text-align: right;
}
/* --- マウスカーソル ------------------- */
@media (hover: hover) {
  body {
    width: 100%;
    overflow-x: hidden;
  }
  .follower {
    position: absolute;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    pointer-events: none;
    background: #fff;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 50%;
    opacity: 0;
    filter: blur(20px);
    transition: transform ease 0.5s;
  }
  .follower.is-visible {
    opacity: 0.5;
  }
  .follower.is-active {
    transform: scale(2);
  }
}