@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
body {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  font-weight: 500;
  color: #565656;
  letter-spacing: 0.06em;
  line-height: 1.4;
  position: relative;
  background-color: #f2f2f2;
  overflow-x: hidden;
}
body.show {
  overflow: hidden;
}
@media (width < 768px) {
  body {
    padding-bottom: 60px;
  }
}

a {
  text-decoration: none;
  transition: all 0.5s ease;
}
a:hover {
  opacity: 0.5;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

img {
  width: 100%;
}

.onlyPC {
  display: block !important;
}

.onlySP {
  display: none !important;
}

@media (width < 768px) {
  .onlyPC {
    display: none !important;
  }
  .onlySP {
    display: block !important;
  }
}
.scroll-target {
  position: absolute;
  top: -60px;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
}
.scroll-target__wrap {
  position: relative;
}

.headline {
  position: relative;
  z-index: 1;
}
.headline__main, .headline__sub {
  display: block;
}
.headline__main {
  position: relative;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: 45px;
  line-height: 1;
  color: #000;
  padding-left: 31px;
}
.headline__main::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #e75e02;
  position: absolute;
  left: 0;
  top: 16px;
}
.headline__sub {
  padding-left: 33px;
  font-size: 14px;
  font-weight: 500;
  color: #e75e02;
  line-height: 1.86;
  margin-top: 5px;
}
@media (width < 768px) {
  .headline__main {
    font-size: 36px;
    line-height: 0.9;
  }
  .headline__main::before {
    top: 16px;
  }
  .headline__sub {
    margin-top: 0;
  }
}

.entry__btn {
  width: 100%;
  max-width: 409px;
  height: 73px;
  border-radius: 40px;
  background-color: #e75e02;
}
.entry__btn-link {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.5s ease;
  border-radius: 40px;
  background-color: #000;
}
.entry__btn-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 46px;
  height: 46px;
  background: url("../img/icon_arrow_circle_orange.webp") no-repeat center/contain;
  transform: translateY(-50%) rotate(-45deg);
}
.entry__btn-link:hover {
  opacity: 1;
}
.entry__btn-link:hover .entry__btn-circle {
  background-color: #fff;
}
.entry__btn-link:hover .entry__btn-icon {
  fill: #000;
}
.entry__btn-link:hover .entry__btn-text:nth-child(1) {
  left: 100%;
}
.entry__btn-link:hover .entry__btn-text:nth-child(2) {
  left: 0;
}
.entry__btn-link--soon {
  pointer-events: none;
}
.entry__btn-text-wrap {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.entry__btn-text {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  transition: all 0.5s ease;
  text-align: center;
  padding-right: 9px;
}
.entry__btn-text:nth-child(1) {
  left: 0;
}
.entry__btn-text:nth-child(2) {
  left: -100%;
}
.entry__btn-circle, .entry__btn-icon {
  transition: all 0.5s ease;
}
.entry__btn-circle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
  background-color: #000;
  width: 46px;
  height: 46px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.entry__btn-icon {
  fill: #fff;
  width: 14px;
  height: 14px;
}
@media (width < 768px) {
  .entry__btn {
    max-width: 310px;
    height: 53px;
  }
  .entry__btn-text {
    font-size: 16px;
    text-align: left;
    padding-left: 30px;
  }
  .entry__btn-circle {
    width: 40px;
    height: 40px;
  }
  .entry__btn-link::after {
    width: 34px;
    height: 34px;
    right: 9px;
  }
}

.header {
  position: relative;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 100;
  transition: all 0.5s ease;
  background-color: #fff;
}
.header__inner {
  transition: all 0.5s ease;
  width: 100%;
  max-width: 1440px;
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 40px;
}
@media (width < 1160px) {
  .header__inner {
    padding-left: 16px;
    padding-right: 0;
  }
}
@media (width < 769px) {
  .header {
    height: 60px;
  }
  .header__inner {
    width: 100%;
    padding-left: 14px;
    padding-right: 0;
  }
}

.header-logo__list {
  display: flex;
  align-items: center;
  gap: 26px;
}
.header-logo__link {
  display: block;
  pointer-events: none;
}
.header-logo__image--forbes, .header-logo__image--meti {
  transition: all 0.5s ease;
}
.header-logo__image--forbes {
  width: 99px;
}
.header-logo__image--meti {
  width: 165px;
}
@media (width < 1160px) {
  .header-logo__image--forbes {
    width: 84px;
  }
  .header-logo__image--meti {
    width: 150px;
  }
}
@media (width < 880px) {
  .header-logo__list {
    gap: 19px;
  }
  .header-logo__image--forbes {
    width: 72px;
  }
  .header-logo__image--meti {
    width: 120px;
  }
}
@media (width < 769px) {
  .header-logo__list {
    gap: 19px;
    position: relative;
    z-index: 110;
  }
  .header-logo__image--forbes {
    width: 72px;
  }
  .header-logo__image--meti {
    width: 120px;
  }
}

.header-nav {
  display: flex;
  align-items: center;
}
.header-nav__list {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-nav__item + .header-nav__item {
  margin-left: 35px;
}
.header-nav__link {
  color: #565656;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.5s ease;
  line-height: 1;
  letter-spacing: -0.02em;
}
.header-nav__link:hover {
  color: #e75e02;
  opacity: 1;
}
@media (width < 1440px) {
  .header-nav__item + .header-nav__item {
    margin-left: 0px;
  }
}
@media (width < 1160px) {
  .header-nav__link {
    font-size: 12px;
  }
}
@media (width < 940px) {
  .header-nav__list {
    gap: 12px;
  }
  .header-nav__link {
    font-size: 11px;
  }
}
@media (width < 769px) {
  .header-nav__list-wrap {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding-left: 22.13vw;
    transition: all 0.5s ease;
    opacity: 0;
    animation: fadeOut 0.5s ease-in 0s forwards;
  }
  .header-nav__list-wrap.show {
    opacity: 1;
    animation: fadeIn 0.5s ease-in 0s forwards;
  }
  .header-nav__list {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    height: 100%;
  }
  .header-nav__item + .header-nav__item {
    margin-left: 0;
  }
  .header-nav__link {
    font-size: 16px;
  }
}

.header-btn__list {
  margin-left: 38px;
  display: flex;
  align-items: center;
  transition: all 0.5s ease;
}
.header-btn__link {
  width: auto;
  height: 70px;
  display: flex;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.5s ease;
  letter-spacing: -0.02em;
  padding-left: 12px;
  padding-right: 12px;
}
.header-btn__link:hover {
  opacity: 1;
}
.header-btn__link-entry, .header-btn__link-download {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.5s ease;
}
.header-btn__link-entry {
  font-size: 16px;
  background-color: #e75e02;
  padding-left: 20px;
}
.header-btn__link-entry:hover {
  color: #e75e02;
  background-color: #fff;
}
.header-btn__link-entry:hover .header-btn__icon-entry {
  fill: #e75e02;
}
.header-btn__link-download {
  font-size: 14px;
  background-color: #000;
  padding-left: 23px;
}
.header-btn__link-download:hover {
  color: #000;
  background-color: #fff;
}
.header-btn__link-download:hover .header-btn__icon-download {
  fill: #000;
}
.header-btn__icon-entry, .header-btn__icon-download {
  transition: all 0.5s ease;
}
.header-btn__icon-entry {
  fill: #fff;
  width: 12px;
  height: 12px;
  margin-left: 18px;
}
.header-btn__icon-download {
  fill: #fff;
  width: 16px;
  height: 16px;
  margin-left: 11px;
}
@media (width < 1440px) {
  .header-btn__link-entry {
    width: auto;
  }
  .header-btn__link-download {
    width: 154px;
    padding-left: 12px;
  }
  .header-btn__icon-download {
    margin-left: 8px;
  }
  .header-btn__icon-entry {
    margin-left: 8px;
  }
}
@media (width < 1160px) {
  .header-btn__list {
    margin-left: 24px;
  }
  .header-btn__link-entry {
    font-size: 14px;
    width: auto;
  }
  .header-btn__link-download {
    font-size: 12px;
    width: 137px;
    padding-left: 10px;
  }
  .header-btn__icon-download {
    margin-left: 8px;
  }
  .header-btn__icon-entry {
    margin-left: 8px;
  }
}
@media (width < 940px) {
  .header-btn__list {
    margin-left: 12px;
  }
  .header-btn__link-entry {
    font-size: 12px;
  }
}
@media (width < 769px) {
  .header-btn__list, .header-btn__item {
    width: 100%;
  }
  .header-btn__list {
    position: fixed;
    bottom: 0;
    left: 0;
    margin-left: 0;
  }
  .header-btn__link {
    height: 60px;
  }
  .header-btn__link-entry, .header-btn__link-download {
    padding-left: 0;
    justify-content: center;
  }
  .header-btn__link-entry {
    font-size: 16px;
    width: 100%;
  }
  .header-btn__link-download {
    font-size: 14px;
    width: 52vw;
  }
  .header-btn__icon-entry {
    margin-left: 19px;
  }
  .header-btn__icon-download {
    margin-left: 26px;
  }
}

.header-trigger {
  display: none;
}
@media (width < 769px) {
  .header-trigger {
    display: block;
    position: fixed;
    top: 18px;
    right: 22px;
    z-index: 120;
    width: 32px;
    height: 32px;
    background: url(../img/btn_nav_open.svg) no-repeat center/22px 22px;
    z-index: 999;
  }
  .header-trigger.show {
    background: url(../img/btn_nav_close.svg) no-repeat center/22px 22px;
  }
}

.nav {
  display: none;
}
.nav__trigger {
  display: none;
  z-index: 999999999;
}
@media (width < 769px) {
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    display: none;
    z-index: 999999998;
    animation: fadeOut 0.5s ease-in 0s forwards;
    width: 100%;
    height: auto;
  }
  .nav::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999997;
  }
  .nav.show {
    opacity: 1;
    display: block;
    animation: fadeIn 0.5s ease-in 0s forwards;
  }
  .nav__inner {
    position: relative;
    z-index: 999999998;
    width: 100%;
    height: 100svh;
    background: #da2a2d url(../img/nav/bg_nav.png) no-repeat center right/44.67vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav__item {
    font-size: 24px;
  }
  .nav__item + .nav__item {
    margin-top: 37px;
  }
  .nav__link {
    color: #fff;
    font-family: "Viga", sans-serif;
    display: block;
    text-align: center;
  }
  .nav__trigger-wrap {
    position: absolute;
    top: 24px;
    right: 40px;
  }
  .nav__trigger {
    position: relative;
    display: block;
    width: 26px;
    height: 15px;
    background: url(../img/icon_nav_open.svg) no-repeat center/contain;
    transition: all 0.5s ease;
  }
  .nav__trigger.show {
    border-top: none;
    width: 20px;
    height: 20px;
    background-image: url(../img/icon_nav_close.svg);
  }
}
@media (1440px < width) {
  .nav__list {
    gap: 45px;
  }
  .nav__item {
    font-size: 16px;
  }
}

.footer {
  position: relative;
  background-color: #000;
  padding: 69px 20px 76px;
  margin-top: 112px;
}
.footer__logo-link {
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin-top: 37px;
  margin-inline: auto;
}
.footer__logo {
  width: 127px;
}
.footer__copyright {
  margin-top: 33px;
  color: #727272;
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (width < 769px) {
  .footer {
    margin-top: 80px;
    background-color: #000;
    padding: 30px 15px;
  }
  .footer__logo {
    width: 137px;
    margin-inline: auto;
  }
  .footer__copyright {
    margin-top: 20px;
    font-size: 10px;
  }
}

.sns__list {
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 33px;
}
.sns__item {
  width: 42px;
  height: 42px;
}
.sns__item img {
  width: 100%;
}
.sns__logo {
  width: 42px;
  height: 42px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sns__logo--x img {
  width: 35.64px;
  height: 36.91px;
}

.mv {
  margin-top: 70px;
  background: url("../img/mv/bg_mv_pc.webp") no-repeat top -20px right/687px;
  min-width: 1440px;
}
.mv__inner {
  width: 1440px;
  margin-inline: auto;
  padding-top: 120px;
}
.mv__catch {
  width: 1139px;
  margin-left: 102px;
}
@media (width < 768px) {
  .mv {
    margin-top: 60px;
    background: none;
    min-width: 100%;
  }
  .mv__inner {
    width: 100%;
    padding-top: 0;
  }
  .mv__catch {
    width: 100%;
    margin-left: 0;
  }
  .mv__catch-img {
    width: 100%;
    max-width: 375px;
    margin-inline: auto;
  }
}

.info {
  margin-top: 81px;
}
.info__inner {
  width: 488px;
  position: relative;
  padding-top: 28px;
  margin-left: 120px;
}
.info__headline {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: 30px;
  color: #000;
  padding-left: 30px;
}
.info__headline::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #e75e02;
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.info__list {
  background-color: #f4f4f4;
  border-radius: 6px;
  padding: 24px 23px 29px 33px;
  box-shadow: 0 -1px 18px 0 rgba(0, 0, 0, 0.1);
}
.info__item + .info__item {
  margin-top: 9px;
  padding-top: 14px;
  border-top: 1px solid #c4c4c4;
  padding-bottom: 12px;
}
.info__item:last-child {
  border-bottom: 1px solid #c4c4c4;
}
.info__link {
  display: block;
  color: #565656;
}
.info__link.disabled {
  pointer-events: none;
}
.info__link--icon .info__text {
  background: url("../img/icon_arrow_orange.svg") no-repeat center right/10px;
}
.info__link--icon.disabled .info__text {
  background: none;
  padding-right: 0;
}
.info__date {
  font-size: 14px;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.info__text {
  letter-spacing: -0.01em;
  padding-right: 30px;
}
@media (width < 768px) {
  .info {
    margin-top: 61px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .info__inner {
    width: 100%;
    max-width: 400px;
    margin-inline: auto;
    padding-top: 28px;
  }
  .info__list {
    padding-right: 0;
    padding-left: 32px;
  }
  .info__link:hover {
    color: #e75e02;
    opacity: 1;
  }
  .info__link--icon .info__text {
    background-position: center right 10px;
  }
  .info__link--icon.disabled .info__text {
    padding-right: 24px;
  }
  .info__text {
    padding-right: 56px;
  }
}

.award {
  width: 1440px;
  min-width: 1440px;
  margin-inline: auto;
  padding-top: 110px;
  background: url("../img/award/bg_award_2_pc.webp") no-repeat top 182px right/133px;
}
.award__header-wrap {
  display: flex;
  align-items: flex-start;
  gap: 66px;
}
.award__header {
  position: sticky;
  top: 120px;
  height: 260px;
  background: url("../img/award/bg_award_1_pc.webp") no-repeat top 25px left/266px;
  padding-left: 120px;
}
.award__header-block {
  width: 754px;
}
.award__header-catch {
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.award__header-lead {
  margin-top: 2em;
  letter-spacing: 0.02em;
}
@media (width < 768px) {
  .award {
    position: relative;
    width: 100%;
    min-width: 100%;
    padding-top: 85px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .award::after {
    content: "";
    width: 199px;
    height: 265px;
    background: url("../img/award/bg_award_sp.webp") no-repeat center/contain;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .award__header-wrap {
    flex-direction: column;
    gap: 32px;
    max-width: 400px;
    margin-inline: auto;
  }
  .award__header {
    position: relative;
    top: initial;
    height: auto;
    background: none;
    padding-left: 0;
    z-index: 1;
  }
  .award__header-block {
    position: relative;
    z-index: 1;
    width: 100%;
  }
  .award__header-catch {
    font-size: 18px;
  }
  .award__header-lead {
    font-size: inherit;
    margin-top: 1.5em;
    line-height: 1.6;
  }
}

.award-contents {
  position: relative;
  width: 1200px;
  margin-inline: auto;
  background-color: #fff;
}
.award-contents::before, .award-contents::after {
  content: "";
  width: 300px;
  height: 350px;
  position: absolute;
  top: -11px;
  border-top: 11px solid #565656;
}
.award-contents::before {
  left: -11px;
  border-left: 11px solid #565656;
}
.award-contents::after {
  right: -11px;
  border-right: 11px solid #565656;
}
.award-contents__inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: url("../img/award/bg_award.svg") repeat-y top right 20px/163.56px;
  padding: 57px 100px 65px;
}
.award-contents__inner::before, .award-contents__inner::after {
  content: "";
  width: 300px;
  height: 350px;
  position: absolute;
  bottom: -11px;
  border-bottom: 11px solid #565656;
}
.award-contents__inner::before {
  left: -11px;
  border-left: 11px solid #565656;
}
.award-contents__inner::after {
  right: -11px;
  border-right: 11px solid #565656;
}
.award-contents__header {
  text-align: center;
}
.award-contents__headline-small, .award-contents__headline-large {
  display: block;
}
.award-contents__headline-small {
  font-size: 24px;
  line-height: 1.6;
}
.award-contents__headline-large {
  font-family: "DM Serif Display", serif;
  font-size: 100px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #e75e02;
}
.award-contents__anchor-list {
  margin-top: 40px;
  display: grid;
  gap: 30px;
}
.award-contents__anchor-link:hover {
  opacity: 1;
}
.award-contents__anchor-link:hover .award-contents__marker::after {
  width: calc(100% + 32px);
}
.award-contents__anchor-link:hover .award-contents__anchor-catch {
  color: #fff;
}
.award-contents__anchor-link:hover .award-contents__anchor-text {
  color: #dddddd;
}
.award-contents__anchor-link, .award-contents__anchor-catch, .award-contents__anchor-text {
  position: relative;
  display: block;
  margin-inline: auto;
  transition: all 0.5s ease;
}
.award-contents__marker {
  position: relative;
}
.award-contents__marker::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: -16px;
  width: 0;
  height: calc(100% + 8px);
  background-color: #e75e02;
  transition: all 0.5s ease;
  z-index: -1;
}
.award-contents__anchor-catch {
  width: -moz-max-content;
  width: max-content;
  font-size: 20px;
  line-height: 1.2;
  color: #000;
  z-index: 1;
}
.award-contents__anchor-text {
  font-size: 28px;
  line-height: 1.7;
  color: #565656;
  z-index: 1;
  display: inline-block;
}
@media (width < 768px) {
  .award-contents {
    width: 100%;
    margin-top: 69px;
  }
  .award-contents::before, .award-contents::after {
    width: 100px;
    height: 200px;
    top: -6px;
    border-top: 6px solid #565656;
  }
  .award-contents::before {
    left: -6px;
    border-left: 6px solid #565656;
  }
  .award-contents::after {
    right: -6px;
    border-right: 6px solid #565656;
  }
  .award-contents__inner {
    background: none;
    padding: 22px 20px 38px;
  }
  .award-contents__inner::before, .award-contents__inner::after {
    width: 100px;
    height: 200px;
    bottom: -6px;
    border-bottom: 6px solid #565656;
  }
  .award-contents__inner::before {
    left: -6px;
    border-left: 6px solid #565656;
  }
  .award-contents__inner::after {
    right: -6px;
    border-right: 6px solid #565656;
  }
  .award-contents__anchor-link, .award-contents__anchor-catch, .award-contents__anchor-text {
    width: auto;
  }
  .award-contents__anchor-link:hover .award-contents__marker::after {
    content: none;
  }
  .award-contents__anchor-link:hover .award-contents__anchor-catch {
    color: #000;
  }
  .award-contents__anchor-link:hover .award-contents__anchor-text {
    color: #565656;
  }
  .award-contents__headline-small {
    font-size: 18px;
    font-weight: 700;
  }
  .award-contents__headline-large {
    font-size: 45px;
  }
  .award-contents__anchor-list {
    margin-top: 33px;
  }
  .award-contents__anchor-link:hover .award-contents__marker::after {
    width: calc(100% + 16px);
  }
  .award-contents__marker::after {
    left: -8px;
    height: calc(100% + 4px);
  }
  .award-contents__anchor-catch {
    font-size: 16px;
    font-weight: bold;
  }
  .award-contents__anchor-text {
    font-size: 20px;
    font-weight: bold;
  }
}

.award-contents-block {
  position: relative;
  margin-top: 80px;
}
.award-contents-block__header {
  border-bottom: 2px solid #000;
  padding-bottom: 20px;
  margin-bottom: 60px;
}
.award-contents-block__headline {
  position: relative;
  padding-left: 21px;
}
.award-contents-block__headline::before {
  content: "";
  width: 6px;
  height: 60px;
  background-color: #e75e02;
  position: absolute;
  left: 0;
  top: 0;
}
.award-contents-block__headline-catch, .award-contents-block__headline-text {
  display: block;
}
.award-contents-block__headline-catch {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  color: #e75e02;
}
.award-contents-block__headline-text {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  color: #000;
}
.award-contents-block__lead {
  font-size: 16px;
  line-height: 1.25;
  margin-top: 20px;
}
.award-contents-block__item-wrap {
  display: grid;
  row-gap: 74px;
}
.award-contents-block__item {
  display: grid;
  grid-template-columns: auto auto;
  -moz-column-gap: 68px;
       column-gap: 68px;
}
.award-contents-block__item-figure, .award-contents-block__item-image {
  width: 390px;
  height: 276px;
}
.award-contents-block__item-image {
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: #e75e02 10px 10px 0 0;
}
.award-contents-block__item-image--border {
  border: 1px solid #e75e02;
}
.award-contents-block__item-title, .award-contents-block__item-subtitle {
  color: #e75e02;
}
.award-contents-block__item-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}
.award-contents-block__item-title--small {
  font-size: 26px;
}
.award-contents-block__item-subtitle {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
.award-contents-block__item-text {
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  margin-top: 68px;
}
.award-contents-block__item-text::before {
  content: "";
  width: 42px;
  height: 4px;
  background-color: #000;
  position: absolute;
  top: -29px;
  left: 0;
}
@media (width < 768px) {
  .award-contents-block {
    margin-top: 49px;
  }
  .award-contents-block__header {
    padding-bottom: 18px;
    margin-bottom: 28px;
  }
  .award-contents-block__headline::before {
    height: 45px;
  }
  .award-contents-block__headline-catch {
    font-size: 16px;
  }
  .award-contents-block__headline-text {
    font-size: 20px;
    margin-top: 2px;
  }
  .award-contents-block__lead {
    font-size: 14px;
    margin-top: 16px;
  }
  .award-contents-block__item-wrap {
    row-gap: 40px;
  }
  .award-contents-block__item {
    display: grid;
    grid-template-columns: auto;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 30px;
  }
  .award-contents-block__item-figure, .award-contents-block__item-image {
    width: 260px;
    height: 184px;
  }
  .award-contents-block__item-figure {
    margin-inline: auto;
  }
  .award-contents-block__item-title {
    font-size: 20px;
  }
  .award-contents-block__item-title--small {
    font-size: 20px;
  }
  .award-contents-block__item-subtitle {
    font-size: 16px;
    margin-top: 4px;
  }
  .award-contents-block__item-text {
    font-size: 14px;
    margin-top: 40px;
  }
  .award-contents-block__item-text::before {
    top: -19px;
  }
}

.finalist {
  width: 100%;
  border-radius: 6px;
  background-color: #f6f6f6;
  margin-top: 55px;
}
.finalist__list {
  text-align: center;
}
.finalist__term {
  font-size: 20px;
  line-height: 1;
  height: 65px;
  align-content: center;
  border-bottom: 2px solid #fff;
}
.finalist__desc {
  padding: 24px;
  display: grid;
  row-gap: 12px;
}
.finalist__item {
  font-size: 16px;
  line-height: 1.25;
}
@media (width < 768px) {
  .finalist {
    margin-top: 25px;
  }
  .finalist__term {
    font-size: 18px;
    height: 55px;
  }
  .finalist__desc {
    padding: 28px 20px 33px;
    display: grid;
    row-gap: 18px;
  }
  .finalist__item {
    font-size: 14px;
  }
}

.review {
  min-height: 77px;
  margin-top: 22px;
  padding-left: 50px;
  background: url("../img/award/img_review.webp") no-repeat top left/26px;
}
.review--bottom {
  margin-top: 40px;
}
.review__text {
  position: relative;
  font-size: 16px;
  line-height: 1.6;
}
.review__text::before {
  content: "";
  width: 2px;
  height: 74px;
  background-color: #d9d9d9;
  position: absolute;
  left: -22px;
  top: 0;
}
@media (width < 768px) {
  .review {
    margin-top: 24px;
  }
  .review__text {
    font-size: 14px;
  }
}

.database {
  margin-top: 130px;
  background-color: #fff;
}
.database__headline-main {
  font-size: 80px;
  white-space: nowrap;
}
.database__headline-main::before {
  top: 30px;
}
.database__headline-color {
  color: #565656;
}
.database__inner {
  margin-inline: auto;
  padding-left: 140px;
  width: 1440px;
  min-width: 1440px;
  height: 400px;
  background: url("../img/database/bg_pc.svg") no-repeat top right/contain;
  align-content: center;
}
.database__contents {
  display: flex;
  align-items: center;
  justify-content: start;
  -moz-column-gap: 165px;
       column-gap: 165px;
}
.database__contents-left {
  width: 560px;
}
.database__lead {
  margin-top: 38px;
  padding-left: 30px;
}
@media (width < 768px) {
  .database {
    margin-top: 75px;
  }
  .database__headline-main {
    font-size: 36px;
  }
  .database__headline-main::before {
    top: 16px;
  }
  .database__inner {
    padding: 33px 20px 35px;
    width: 100%;
    min-width: 100%;
    height: auto;
    background: url("../img/database/bg_sp.svg") no-repeat bottom right/142px 145px;
  }
  .database__contents {
    flex-direction: column;
    justify-content: center;
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .database__contents-left {
    width: auto;
  }
  .database__lead {
    margin-top: 14px;
    padding-left: 0;
  }
  .database__btn {
    margin-top: 25px;
  }
}

.advisory {
  position: relative;
  width: 1440px;
  min-width: 1440px;
  margin-inline: auto;
  padding-top: 118px;
}
.advisory::before, .advisory::after {
  content: "";
  position: absolute;
  z-index: 0;
}
.advisory::before {
  top: 63px;
  right: 68px;
  width: 333px;
  height: 332px;
  background: url("../img/advisory/bg_advisory_01.svg") no-repeat center/contain;
}
.advisory::after {
  top: 451px;
  left: 0;
  width: 133px;
  height: 198px;
  background: url("../img/advisory/bg_advisory_02.svg") no-repeat center/contain;
}
.advisory__headline {
  margin-left: 120px;
}
.advisory__inner {
  width: 1200px;
  margin-inline: auto;
}
.advisory__list {
  position: relative;
  margin-top: 43px;
  display: flex;
  flex-wrap: wrap;
  gap: 25px 72px;
  z-index: 1;
}
.advisory__item {
  width: 246px;
}
.advisory__link {
  pointer-events: none;
  color: #565656;
}
.advisory__figure {
  position: relative;
  padding-right: 6px;
  padding-bottom: 6px;
}
.advisory__figure::before, .advisory__figure::after {
  content: "";
  position: absolute;
  background-color: #000;
}
.advisory__figure::before {
  width: 6px;
  height: calc(100% - 22px);
  top: 8px;
  right: 0;
}
.advisory__figure::after {
  width: calc(100% - 22px);
  height: 6px;
  left: 8px;
  bottom: 0;
}
.advisory__img {
  width: 240px;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
.advisory__name {
  position: relative;
  font-size: 18px;
  color: #000;
  margin-top: 12px;
  padding-left: 16px;
}
.advisory__name::before {
  content: "";
  width: 4px;
  height: 20px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.advisory__text {
  font-size: 14px;
  line-height: 1.4;
  margin-top: 4px;
}
.advisory__btn {
  margin-top: 37px;
}
@media (width < 768px) {
  .advisory {
    width: 100%;
    min-width: 100%;
    padding-top: 59px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .advisory::before {
    right: 0;
  }
  .advisory::after {
    top: auto;
    bottom: 200px;
    left: 0;
  }
  .advisory__headline {
    width: 100%;
    max-width: 400px;
    margin-inline: auto;
  }
  .advisory__inner {
    width: 100%;
    max-width: 400px;
  }
  .advisory__list {
    margin-top: 32px;
    gap: 20px;
  }
  .advisory__item {
    width: calc(50% - 10px);
  }
  .advisory__img {
    width: 100%;
    height: 100%;
  }
  .advisory__name {
    font-size: 16px;
    margin-top: 10px;
  }
  .advisory__text {
    font-size: 12px;
    margin-top: 6px;
  }
  .advisory__btn {
    margin-top: 48px;
  }
}

.condition {
  overflow: clip;
  padding-top: 117px;
}
.condition__headline {
  margin-left: 120px;
}
.condition__inner {
  width: 1440px;
  min-width: 1440px;
  margin-inline: auto;
}
.condition__apply-list {
  margin-top: 39px;
  display: flex;
  gap: 41px;
  padding-left: 150px;
}
.condition__apply-term {
  min-width: 172px;
  width: 172px;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 24px;
  color: #fff;
  background-color: #565656;
}
.condition__apply-term--entry {
  font-size: 18px;
}
.condition__apply--desc {
  width: 960px;
}
.condition__apply-catch {
  color: #000;
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 16px;
  display: inline-block;
}
.condition__apply-item {
  position: relative;
  display: block;
  color: #000;
  font-size: 22px;
}
.condition__apply-item::before {
  content: none;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #000;
  position: absolute;
  top: 13px;
  left: 8px;
}
.condition__apply-item + .condition__apply-item {
  margin-top: 8px;
}
.condition__apply-item--entry {
  padding-left: 0;
}
.condition__apply-item--entry::before {
  content: none;
}
.condition__apply-item--entry + .condition__apply-item--entry {
  margin-top: 34px;
}
.condition__apply-item--bold {
  font-weight: 700;
}
.condition__apply-item-sup {
  margin-left: 1em;
  font-size: 18px;
  color: #e75e02;
}
.condition__apply-item-block {
  display: block;
  padding-left: 28px;
  font-size: 22px;
  line-height: 1.6;
}
.condition__apply-item-block-sup {
  display: block;
  font-size: 16px;
}
.condition__apply-sup {
  display: block;
  margin-top: 34px;
}
.condition__apply-sup-catch, .condition__apply-sup-text {
  display: block;
  color: #000;
  font-size: 18px;
  line-height: 1.6;
}
.condition__apply-sup-text {
  position: relative;
  padding-left: 18px;
}
.condition__apply-sup-text::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 5px;
  font-size: 18px;
}
.condition__detail {
  display: flex;
  margin-top: 59px;
  padding-left: 120px;
  gap: 82px;
}
.condition__detail-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 1;
  display: none;
  opacity: 0;
  animation: fadeOut 0.5s ease-in 0s forwards;
}
.condition__detail-bg.show {
  opacity: 1;
  display: block;
  animation: fadeIn 0.5s ease-in 0s forwards;
}
.condition__nav-list-wrap {
  position: sticky;
  top: 100px;
  width: 337px;
  min-width: 337px;
  height: 100%;
  z-index: 2;
}
.condition__nav-list-inner {
  position: relative;
}
.condition__nav-list-inner::after {
  content: "";
  position: absolute;
  top: 246px;
  left: -120px;
  width: 266px;
  height: 332px;
  background: url("../img/condition/bg_condition.webp") no-repeat center/contain;
  z-index: 0;
}
.condition__nav-trigger {
  display: none;
}
.condition__nav-list {
  position: relative;
  z-index: 2;
}
.condition__nav-item {
  border-bottom: 1px solid #d9d9d9;
}
.condition__nav-link {
  position: relative;
  width: 100%;
  font-size: 18px;
  color: #737373;
  transition: all 0.5s ease;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 43px;
  display: block;
}
.condition__nav-link::before {
  content: "";
  width: 39px;
  height: 39px;
  background: url("../img/icon_arrow_circle_orange.webp") no-repeat center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 32px;
  transition: all 0.5s ease;
  opacity: 0;
}
.condition__nav-link::after {
  content: "";
  width: 39px;
  height: 39px;
  background: url("../img/icon_arrow_circle_gray.webp") no-repeat center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5px;
  transition: all 0.5s ease;
  opacity: 1;
}
.condition__nav-link.on {
  opacity: 1;
  color: #e75e02;
  padding-left: 89px;
}
.condition__nav-link.on::before {
  opacity: 1;
}
.condition__nav-link.on::after {
  opacity: 0;
}
.condition__nav-link:hover {
  opacity: 1;
  color: #e75e02;
  padding-left: 89px;
}
.condition__nav-link:hover::before {
  opacity: 1;
}
.condition__nav-link:hover::after {
  opacity: 0;
}
.condition__detail-list {
  width: 100vw;
  display: grid;
  gap: 80px;
}
.condition__detail-item {
  position: relative;
}
.condition__detail-item::before {
  content: "";
  width: 351px;
  height: 8px;
  background-color: #e75e02;
  position: absolute;
  top: -8px;
  left: 0;
}
.condition__detail-item::after {
  content: "";
  width: 100vw;
  height: 100%;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.08);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: #fff;
  background: #fff url("../img/condition/bg_condition_detail.webp") no-repeat left 310px bottom -60px/665px 599px;
}
.condition__detail-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 45px 120px 88px 45px;
}
.condition__detail-title {
  font-size: 24px;
  line-height: 1.2;
  color: #e75e02;
  padding-bottom: 10px;
  border-bottom: 1px solid #e75e02;
}
.condition__detail-title--en {
  display: inline-block;
  margin-left: 12px;
}
.condition__detail-catch {
  width: 146px;
  height: 40px;
  background-color: #565656;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}
.condition__detail-lead {
  margin-top: 8px;
  font-size: 18px;
}
.condition__detail-point-list {
  margin-top: 38px;
  display: flex;
}
.condition__detail-point-item {
  width: 204px;
  height: 204px;
  border: 1px solid #000;
  border-radius: 100%;
  text-align: center;
  padding-top: 32px;
  padding-left: 24px;
  padding-right: 24px;
}
.condition__detail-point-item + .condition__detail-point-item {
  margin-left: -14px;
}
.condition__detail-point-catch {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 2.5;
  color: #e75e02;
}
.condition__detail-point-text {
  font-size: 14px;
  line-height: 1.5;
}
.condition__note {
  position: relative;
  padding-left: 120px;
  margin-top: 32px;
  z-index: 10;
}
.condition__note-text {
  position: relative;
  padding-left: 16px;
  display: inline-block;
}
.condition__note-text::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
@media (width < 768px) {
  .condition {
    padding-top: 80px;
  }
  .condition__inner {
    width: 100%;
    min-width: auto;
  }
  .condition__headline, .condition__apply-list {
    width: calc(100% - 40px);
    margin-inline: auto;
  }
  .condition__headline {
    max-width: 400px;
  }
  .condition__apply-list {
    max-width: 400px;
    margin-top: 32px;
    padding-left: 0;
    flex-direction: column;
    gap: 15px;
  }
  .condition__apply-term {
    width: 136px;
    height: 39px;
    font-size: 20px;
  }
  .condition__apply-term--entry {
    font-size: 18px;
  }
  .condition__apply--desc {
    width: 100%;
  }
  .condition__apply-item {
    font-size: 18px;
  }
  .condition__apply-item::before {
    width: 4px;
    height: 4px;
    top: 10px;
  }
  .condition__apply-item + .condition__apply-item {
    margin-top: 12px;
  }
  .condition__apply-item--entry {
    padding-left: 0;
  }
  .condition__apply-item--entry + .condition__apply-item--entry {
    margin-top: 10px;
  }
  .condition__apply-item-sup {
    margin-top: 4px;
    margin-left: 23px;
    font-size: 14px;
    display: block;
  }
  .condition__apply-item-block {
    margin-top: 2px;
    padding-left: 23px;
    font-size: 18px;
  }
  .condition__apply-item-block-sup {
    font-size: 14px;
  }
  .condition__apply-sup {
    margin-top: 10px;
  }
  .condition__apply-sup-catch, .condition__apply-sup-text {
    font-size: 14px;
  }
  .condition__apply-sup-text {
    padding-left: 14px;
  }
  .condition__apply-sup-text::before {
    left: 3px;
    font-size: 14px;
  }
  .condition__detail {
    flex-direction: column;
    margin-top: 17px;
    padding-left: 0;
    gap: 0;
  }
  .condition__nav-list-wrap {
    position: sticky;
    top: 80px;
    width: 100%;
    min-width: auto;
    z-index: 1;
  }
  .condition__nav-list-inner {
    position: absolute;
    background-color: #fff;
    border-bottom-left-radius: 10px;
    padding: 53px 23px 69px;
    width: 100%;
    max-width: 315px;
    right: -315px;
    transition: all 0.5s ease;
  }
  .condition__nav-list-inner::after {
    content: none;
  }
  .condition__nav-list-inner.show {
    right: 0;
  }
  .condition__nav-trigger {
    display: block;
    position: absolute;
    top: 0;
    left: -40px;
    width: 40px;
    height: 80px;
    transition: all 0.5s ease;
  }
  .condition__nav-trigger.show .condition__nav-trigger-open {
    display: none;
  }
  .condition__nav-trigger.show .condition__nav-trigger-close {
    display: block;
  }
  .condition__nav-trigger-open {
    display: block;
  }
  .condition__nav-trigger-close {
    display: none;
  }
  .condition__nav-link {
    padding-left: 3px;
  }
  .condition__nav-link::before {
    left: auto;
    right: 0;
    opacity: 1;
  }
  .condition__nav-link::after {
    content: none;
  }
  .condition__nav-link.on, .condition__nav-link:hover {
    padding-left: 0;
    color: #737373;
  }
  .condition__detail-list {
    width: 100%;
    gap: 40px;
    z-index: 0;
    padding-top: 33px;
    padding-left: 20px;
  }
  .condition__detail-item {
    position: relative;
  }
  .condition__detail-item::before {
    width: calc(100% - 40px);
  }
  .condition__detail-item::after {
    width: 100%;
    height: 100%;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.08);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background-color: #fff;
    background: #fff url("../img/condition/bg_condition_detail.webp") no-repeat center bottom 106px/539px 485px;
    background: #fff;
  }
  .condition__detail-inner {
    padding: 0;
  }
  .condition__detail-header {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 400px;
    margin-inline: auto;
  }
  .condition__detail-title {
    font-size: 20px;
  }
  .condition__detail-title--en {
    display: block;
    margin-left: 0;
  }
  .condition__detail-catch {
    margin-top: 22px;
  }
  .condition__detail-point-list {
    margin-top: 27px;
    padding-left: 0;
    padding-bottom: 20px;
    flex-direction: column;
    align-items: center;
    background: url("../img/condition/bg_condition_detail.webp") no-repeat center/539px 485px;
  }
  .condition__detail-point-item + .condition__detail-point-item {
    margin-top: -20px;
    margin-left: 0;
  }
  .condition__detail-point-catch {
    font-family: "Jost", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 2.5;
    color: #e75e02;
  }
  .condition__detail-point-text {
    font-size: 14px;
    line-height: 1.5;
  }
  .condition__note {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 24px;
  }
}

.benefits {
  position: relative;
  z-index: 2;
}
.benefits__inner {
  position: relative;
  min-width: 1200px;
  margin-top: 100px;
  margin-left: 120px;
  background-color: #d9d9d9;
  z-index: 1;
  padding: 22px 80px 55px 55px;
}
.benefits__inner::after {
  content: "";
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #d9d9d9;
}
.benefits__headline {
  position: absolute;
  top: -20px;
  left: 0;
}
.benefits__headline-img {
  width: 280px;
}
.benefits__contents {
  display: flex;
  gap: 80px;
}
.benefits__contents-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.benefits__list-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1145px;
}
.benefits__list-wrap:first-child .benefits__list {
  padding-top: 42px;
}
.benefits__list-wrap + .benefits__list-wrap {
  margin-top: 1px;
}
.benefits__list {
  display: flex;
  gap: 28px;
}
.benefits__term, .benefits__desc {
  font-size: 18px;
}
.benefits__term {
  color: #e75e02;
  min-width: 200px;
}
.benefits__desc-item {
  display: block;
}
.benefits__desc-item sup {
  font-size: 12px;
  vertical-align: 6px;
  display: inline-block;
  margin-left: 1px;
}
.benefits__desc-item--notes {
  font-size: 14px;
  margin-top: 20px;
  margin-left: 227px;
}
.benefits__figure {
  width: 100%;
  min-width: 437px;
  max-width: 437px;
}
.benefits__btn {
  margin-top: 74px;
}
@media (width < 769px) {
  .benefits {
    max-width: 400px;
    margin-inline: auto;
    z-index: 0;
  }
  .benefits__inner {
    min-width: 100%;
    margin-top: 80px;
    margin-left: 0;
    z-index: 1;
    padding: 20px;
  }
  .benefits__inner::before {
    content: "";
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    right: 100%;
    background-color: #d9d9d9;
  }
  .benefits__headline-img {
    width: 220px;
  }
  .benefits__contents {
    flex-direction: column;
    gap: 16px;
  }
  .benefits__contents-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .benefits__list-wrap {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 24px;
    max-width: auto;
  }
  .benefits__list-wrap:first-child .benefits__list {
    padding-top: 0;
  }
  .benefits__list-wrap + .benefits__list-wrap {
    margin-top: 24px;
  }
  .benefits__list {
    flex-direction: column;
    gap: 6px;
  }
  .benefits__term {
    font-size: 16px;
  }
  .benefits__desc {
    font-size: 14px;
  }
  .benefits__desc-item sup {
    font-size: 10px;
    vertical-align: 4px;
  }
  .benefits__desc-item--notes {
    font-size: 10px;
    margin-top: 14px;
    margin-left: 0;
  }
  .benefits__figure {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
  .benefits__btn {
    margin-top: 48px;
  }
}

.schedule {
  width: 1440px;
  min-width: 1440px;
  padding-top: 55px;
  padding-left: 120px;
  margin-top: 76px;
  margin-inline: auto;
  position: relative;
  background: url("../img/schedule/bg_schedule.webp") no-repeat right 28px top/199px 266px;
}
.schedule__inner {
  display: flex;
  gap: 195px;
}
.schedule__list-wrap {
  display: flex;
  gap: 172px;
}
.schedule__term-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 70px;
  width: -moz-max-content;
  width: max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  margin-top: 10px;
}
.schedule__term-list::after {
  content: "";
  width: 2px;
  height: calc(100% - 10px);
  background-color: #d9d9d9;
  position: absolute;
  top: -10px;
  right: -105px;
}
.schedule__term-item {
  position: relative;
  font-size: 20px;
  font-weight: 700;
}
.schedule__term-item::after {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #e75e02;
  position: absolute;
  top: 8px;
  right: -110px;
  z-index: 1;
}
.schedule__date-list {
  width: 402px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.schedule__date-item {
  width: 100%;
  background: url("../img/schedule/bg_date.webp") no-repeat left bottom/402px 18px;
  padding-bottom: 20px;
  padding-left: 17px;
}
.schedule__date-num, .schedule__date-text {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  color: #000;
  line-height: 1;
}
.schedule__date-num {
  font-size: 50px;
  letter-spacing: -0.04em;
}
.schedule__date-text {
  position: relative;
  font-size: 25px;
}
.schedule__date-sup {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-size: 16px;
}
.schedule__date-kanji {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-size: 32px;
}
@media (width < 768px) {
  .schedule {
    width: 100%;
    min-width: 100%;
    padding-top: 48px;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 64px;
    background-position: right top;
  }
  .schedule__inner {
    max-width: 400px;
    flex-direction: column;
    gap: 32px;
    margin-inline: auto;
  }
  .schedule__list-wrap {
    display: flex;
    gap: 20px;
  }
  .schedule__term-list {
    gap: 50px;
  }
  .schedule__term-list::after {
    top: -6px;
    right: -15px;
  }
  .schedule__term-item {
    font-size: 15px;
  }
  .schedule__term-item::after {
    top: 7px;
    right: -20px;
  }
  .schedule__date-list {
    width: 100%;
    gap: 13px;
  }
  .schedule__date-item {
    padding-bottom: 17px;
    padding-left: 8px;
  }
  .schedule__date-num {
    font-size: 40px;
  }
  .schedule__date-text {
    font-size: 20px;
  }
  .schedule__date-text--margin {
    margin-left: -8px;
  }
  .schedule__date-sup {
    position: absolute;
    top: -26px;
    right: -42px;
    font-size: 12px;
    white-space: nowrap;
  }
  .schedule__date-kanji {
    font-size: 20px;
  }
}

.outline {
  margin-top: 133px;
  padding-top: 146px;
  padding-bottom: 143px;
  background: url("../img/outline/bg_outline.webp") no-repeat center/cover;
}
.outline__inner {
  width: 1440px;
  min-width: 1440px;
  margin-inline: auto;
  padding-left: 120px;
  display: flex;
  align-items: center;
  gap: 180px;
}
.outline__list-wrap {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.outline__list {
  display: flex;
  align-items: center;
}
.outline__term, .outline__desc {
  color: #000;
}
.outline__term {
  font-size: 22px;
  width: 115px;
}
.outline__desc {
  position: relative;
  padding-left: 37px;
  font-size: 24px;
}
.outline__desc::after {
  content: "";
  width: 4px;
  height: 24px;
  background-color: #e75e02;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media (width < 769px) {
  .outline {
    margin-top: 80px;
    padding: 70px 20px;
  }
  .outline__inner {
    width: 100%;
    min-width: auto;
    max-width: 400px;
    margin-inline: auto;
    padding-left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .outline__list-wrap {
    gap: 24px;
  }
  .outline__term {
    font-size: 18px;
    width: 75px;
  }
  .outline__desc {
    width: calc(100% - 75px);
    padding-left: 32px;
    font-size: 16px;
  }
}

.articles {
  overflow: clip;
  padding-top: 123px;
}
.articles__headline {
  width: 1440px;
  min-width: 1440px;
  margin-inline: auto;
  padding-left: 120px;
}
@media (width < 769px) {
  .articles {
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .articles__headline {
    width: 100%;
    min-width: auto;
    max-width: 400px;
    padding-left: 0;
  }
}

.articles-slide {
  position: relative;
  padding-top: 32px;
  padding-bottom: 64px;
}
.articles-slide__swiper {
  padding-bottom: 0;
  width: 480px;
  overflow: visible;
  margin-inline: auto;
}
.articles-slide__swiper .swiper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.articles-slide__swiper .swiper-wrapper {
  display: flex;
}
.articles-slide__swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.articles-slide__swiper .swiper-slide .articles-slide__img-wrap {
  position: relative;
}
.articles-slide__swiper .swiper-slide .articles-slide__img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.articles-slide__swiper .swiper-slide.swiper-slide-active .articles-slide__img-wrap::before {
  opacity: 0;
}
.articles-slide__link {
  display: block;
}
.articles-slide__link:hover {
  opacity: 1;
}
.articles-slide__link:hover .articles-slide__btn::after {
  right: 4px;
}
.articles-slide__img-wrap {
  position: relative;
}
.articles-slide__btn {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #fff;
  color: #e75e02;
  line-height: 1;
  width: 129px;
  height: 42px;
  display: flex;
  align-items: center;
  padding-left: 21px;
}
.articles-slide__btn::after {
  content: "";
  background: url("../img/icon_arrow_orange2.svg") no-repeat center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 11px;
  width: 14px;
  height: 14px;
  transition: all 0.5s ease;
}
.articles-slide__text {
  margin-top: 14px;
  border-left: 4px solid #e75e02;
  padding-left: 23px;
  color: #000;
}
@media (width <= 768px) {
  .articles-slide {
    padding-top: 32px;
  }
  .articles-slide__swiper {
    width: 280px;
  }
  .articles-slide__swiper .swiper-slide {
    width: 280px;
  }
  .articles-slide__text {
    padding-left: 16px;
  }
}

.swiper-slide {
  cursor: pointer;
  transition: all 0.5s ease;
}
.swiper-slide:hover {
  opacity: 0.5;
}

.controls {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: -moz-max-content !important;
  width: max-content !important;
}
@media (width <= 768px) {
  .controls {
    bottom: 15px;
  }
}

.swiper-pagination {
  position: relative;
  width: -moz-max-content;
  width: max-content;
}

.swiper-pagination-bullet {
  background: #b8b8b8;
  opacity: 1;
  width: 26px;
  height: 3px;
  border-radius: 0;
  transition: all 0.5s ease;
}
.swiper-pagination-bullet:hover {
  background: rgba(184, 184, 184, 0.5);
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #e75e02;
  opacity: 1;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  font-size: 0;
  bottom: 0;
}
@media (width < 768px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: -4px;
  }
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 15px;
  width: 11px;
  height: 16px;
  background: url(../img/icon_arrow_orange.svg) no-repeat center/contain;
  transition: all 0.5s ease;
  cursor: pointer;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 0.5;
}
@media (width < 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 17px;
    height: 26px;
    background-size: contain;
  }
}

.swiper-button-prev {
  left: -46px;
  right: auto;
  transform: rotate(-180deg);
}

.swiper-button-next {
  left: auto;
  right: -46px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  content: none;
}

.intro {
  margin-top: 137px;
  padding-bottom: 80px;
}
.intro__inner {
  max-width: 753px;
  margin-inline: auto;
}
.intro__headline {
  font-size: 50px;
  letter-spacing: -0.03em;
}
.intro__lead {
  line-height: 2;
  color: #fff;
  text-align: center;
  margin-top: 25px;
}
.intro__lead + .intro__lead {
  margin-top: 2em;
}
@media (width < 768px) {
  .intro {
    margin-top: 93px;
    padding-bottom: 57px;
  }
  .intro__inner {
    max-width: 100%;
  }
  .intro__headline {
    font-size: 30px;
  }
  .intro__lead {
    margin-top: 13px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.contents {
  background-color: #1f1d17;
  padding-top: 82px;
  padding-bottom: 130px;
}
.contents__headline {
  font-size: 60px;
}
.contents__nav-list {
  width: 1024px;
  margin-top: 24px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
}
.contents__nav-item {
  width: 310px;
  height: 83px;
}
.contents__nav-item--active {
  position: relative;
}
.contents__nav-item--active:before, .contents__nav-item--active::after {
  content: "";
  position: absolute;
  opacity: 0;
  transition: all 0.5s ease;
}
.contents__nav-item--active:before {
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #b19960;
  height: 13.8564064606px;
  width: 16px;
  bottom: -42px;
  left: 50%;
  transform: translateX(-50%);
}
.contents__nav-item--active::after {
  width: 310px;
  height: 83px;
  background: url("../img/bg_btn.png") no-repeat center/contain;
  top: 10px;
  left: 10px;
  z-index: 0;
}
.contents__nav-item--active:hover::before, .contents__nav-item--active:hover::after {
  opacity: 1;
}
.contents__nav-item-link-01 {
  padding-right: 1em;
  margin-left: 1em;
}
.contents__nav-item-link-01--02 {
  margin-left: calc(1em - 5px);
}
.contents__nav-link {
  position: relative;
  width: 310px;
  height: 83px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5e492a;
  font-family: "Josefin Sans", serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  z-index: 2;
  padding-top: 15px;
  letter-spacing: -0.02em;
}
.contents__nav-link:hover {
  opacity: 1;
}
.contents__nav-link--soon {
  pointer-events: none;
  font-size: 30px;
  color: #503d20;
  padding-top: 6px;
  letter-spacing: 0.06em;
}
@media (width < 768px) {
  .contents {
    padding-top: 72px;
    padding-bottom: 79px;
  }
  .contents__headline {
    font-size: 40px;
    color: #373531;
  }
  .contents__nav-list {
    width: 100%;
    margin-top: 45px;
    display: block;
  }
  .contents__nav-item {
    width: 100%;
    max-width: 335px;
    margin-inline: auto;
  }
  .contents__nav-item--active:before {
    height: 18.1865334795px;
    width: 21px;
    top: 50%;
    bottom: auto;
    left: calc(100% - 21px);
    transform: translateY(-50%);
  }
  .contents__nav-item--active::after {
    max-width: 290px;
  }
  .contents__nav-item + .contents__nav-item {
    margin-top: 40px;
  }
  .contents__nav-link {
    width: 100%;
    font-size: 64px;
    max-width: 290px;
  }
  .contents__nav-link--soon {
    font-size: 30px;
    max-width: 335px;
  }
}

/* header */
.contents-item {
  margin-top: 120px;
  overflow-x: hidden;
}
.contents-item__bg {
  position: relative;
}
.contents-item__bg::after {
  content: "";
  width: 100%;
  height: 250px;
  background: url("../img/contents/bg_contents.png") repeat-x center/1440px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  bottom: 35px;
  z-index: 0;
}
.contents-item__bg + .contents-item__bg {
  margin-top: 80px;
}
.contents-item__inner {
  position: relative;
  max-width: 1024px;
  margin-inline: auto;
  z-index: 1;
  display: flex;
  align-items: flex-end;
}
.contents-item__inner--reverse {
  flex-direction: row-reverse;
}
.contents-item__header {
  margin-inline: auto;
  width: 1024px;
  display: grid;
  grid-template-columns: 1fr 172px;
  margin-bottom: 55px;
}
.contents-item__header--soon {
  grid-template-columns: 1fr 372px;
  margin-bottom: 0;
}
.contents-item__header-headline {
  position: relative;
  font-size: 90px;
  font-weight: 600;
  line-height: 1;
  color: #453722;
  letter-spacing: -0.02em;
}
.contents-item__header-headline span {
  margin-left: -9px;
}
.contents-item__header-headline::after {
  content: "";
  width: calc(100% + 50px);
  height: 2px;
  background-color: #a67c3f;
  position: absolute;
  bottom: -5px;
  left: 0;
}
.contents-item__header-block {
  color: #fff;
  line-height: 1.75;
  margin-top: 24px;
}
.contents-item__header-catch {
  font-size: 16px;
  letter-spacing: 0.06em;
}
.contents-item__header-name {
  font-size: 30px;
  margin-top: -6px;
  margin-left: -2px;
  display: flex;
  align-items: flex-end;
}
.contents-item__header-name-en {
  color: #868585;
  font-weight: 400;
  font-size: 20px;
  margin-left: 10px;
  padding-bottom: 5px;
  line-height: 1;
  letter-spacing: 0;
}
.contents-item__header-soon {
  font-size: 34px;
  display: inline-block;
  padding-right: 2em;
  margin-top: 35px;
  letter-spacing: -0.02em;
}
.contents-item__header-soon.onlyPC {
  display: inline-block !important;
}
.contents-item__header-soon.onlySP {
  display: none !important;
}
.contents-item__figure {
  position: relative;
}
.contents-item__figure::after {
  content: "";
  width: 162px;
  height: 213px;
  background-color: #453722;
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 0;
}
.contents-item__figure--soon {
  width: 372px;
  height: 210px;
  background-color: #453722;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  letter-spacing: 0.06em;
  color: #503d20;
  position: relative;
  right: -29px;
}
.contents-item__figure--soon::after {
  content: none;
}
.contents-item__image {
  width: 162px;
  height: 213px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 162/213;
  position: relative;
  z-index: 1;
}
@media (width < 768px) {
  .contents-item {
    margin-top: 100px;
  }
  .contents-item__bg {
    position: relative;
    overflow: hidden;
  }
  .contents-item__bg::after {
    content: "";
    width: 100%;
    height: 100%;
    background: #66481c url("../img/contents/bg_contents_sp.png") no-repeat top center/100%;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    top: 120px;
    bottom: auto;
    z-index: 0;
  }
  .contents-item__bg + .contents-item__bg {
    margin-top: 80px;
  }
  .contents-item__inner {
    max-width: 100%;
  }
  .contents-item__inner--reverse {
    flex-direction: row-reverse;
  }
  .contents-item__header {
    width: 100%;
    max-width: 335px;
    margin-inline: auto;
    margin-bottom: 45px;
    grid-template-columns: 1fr 155px;
  }
  .contents-item__header--soon {
    grid-template-columns: 1fr 155px;
    margin-bottom: 30px;
  }
  .contents-item__header-headline {
    font-size: 50px;
  }
  .contents-item__header-headline span {
    margin-left: 0;
  }
  .contents-item__header-headline span span {
    font-size: 90px;
  }
  .contents-item__header-headline::after {
    content: none;
  }
  .contents-item__header-headline-num {
    position: relative;
  }
  .contents-item__header-headline-num::after {
    content: "";
    width: 120px;
    height: 2px;
    background-color: #a67c3f;
    position: absolute;
    bottom: 42px;
    left: calc(100% + 8px);
  }
  .contents-item__header-block {
    display: grid;
    margin-top: 0;
  }
  .contents-item__header-catch {
    font-size: 14px;
    order: 2;
    margin-top: 14px;
  }
  .contents-item__header-name {
    font-size: 24px;
    margin-top: -6px;
    margin-left: -2px;
    display: block;
  }
  .contents-item__header-name-en {
    font-size: 16px;
    margin-left: 0;
    margin-top: 3px;
    padding-bottom: 0;
    display: block;
  }
  .contents-item__header-soon {
    font-size: 40px;
    margin-top: 0;
    margin-inline: auto;
    max-width: 335px;
    letter-spacing: -0.02em;
    white-space: nowrap;
    padding-right: 0;
    text-align: center;
  }
  .contents-item__header-soon.onlyPC {
    display: none !important;
  }
  .contents-item__header-soon.onlySP {
    display: block !important;
  }
  .contents-item__figure::after {
    width: 147px;
    height: 165px;
    left: 8px;
    top: 8px;
  }
  .contents-item__figure--soon {
    width: 155px;
    height: 165px;
    font-size: 18px;
    right: 0;
    letter-spacing: -0.02em;
  }
  .contents-item__image {
    width: 147px;
    height: 165px;
    aspect-ratio: 147/165;
  }
}

/* contents */
.contents-item__image-wrap {
  position: relative;
  padding-left: 12px;
}
.contents-item__image-wrap::before {
  content: "";
  width: 12px;
  height: calc(100% - 10px);
  position: absolute;
  top: 10px;
  left: 0;
  background: linear-gradient(172deg, #f5e89f 0%, #a67c3f 50%, #d59231 87%);
}
.contents-item__catch {
  font-size: 50px;
  font-weight: 600;
  line-height: 1;
  padding-left: 15px;
  position: relative;
  z-index: 1;
}
.contents-item__catch-small {
  font-size: 28px;
}
.contents-item__iframe-wrap {
  position: relative;
  width: 570px;
  aspect-ratio: 16/9;
  margin-top: -11px;
}
.contents-item__iframe-wrap--reverse {
  margin-right: -30px;
}
.contents-item__iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contents-item__desc {
  position: relative;
  color: #fff;
  line-height: 2;
  height: 250px;
  padding-top: 22px;
  padding-left: 55px;
  margin-bottom: 35px;
  white-space: nowrap;
  width: 100%;
}
.contents-item__desc--none {
  display: none;
}
.contents-item__desc--reverse {
  padding-left: 0;
  padding-right: 45px;
  white-space: normal;
}
.contents-item__desc-catch {
  font-size: 20px;
}
.contents-item--reverse .contents-item__inner {
  flex-direction: row-reverse;
}
.contents-item--reverse .contents-item__desc {
  margin-left: 0;
  margin-right: 92px;
}
.contents-item--reverse .contents-item__name {
  left: auto;
  right: 0;
  text-align: right;
}
.contents-item--reverse .contents-item__name::after {
  left: auto;
  right: 0;
}
@media (width < 768px) {
  .contents-item--mtNone::after {
    height: 160px;
  }
  .contents-item__inner {
    max-width: 100%;
    display: block;
    padding-left: 20px;
    padding-right: 20px;
  }
  .contents-item__image-wrap {
    width: 100%;
    max-width: 335px;
    margin-inline: auto;
  }
  .contents-item__image-wrap::before {
    height: calc(100% - 5px);
    top: 5px;
  }
  .contents-item__catch {
    font-size: 30px;
    padding-left: 10px;
  }
  .contents-item__catch-small {
    font-size: 18px;
  }
  .contents-item__iframe-wrap {
    width: 100%;
    max-width: 323px;
    margin-top: -7px;
  }
  .contents-item__iframe-wrap--reverse {
    margin-right: 0;
  }
  .contents-item__desc {
    margin-top: 10px;
    margin-left: 0;
    max-width: 335px;
    margin-inline: auto;
    margin-bottom: 0;
    padding-top: 0;
    padding-left: 0;
    padding-bottom: 20px;
    white-space: normal;
    height: auto;
  }
  .contents-item__desc--reverse {
    padding-right: 0;
  }
  .contents-item__desc-text {
    font-size: 14px;
  }
  .contents-item--reverse .contents-item__inner {
    display: block;
  }
  .contents-item--reverse .contents-item__desc {
    margin-left: auto;
    margin-right: auto;
  }
  .contents-item--reverse .contents-item__name {
    position: relative;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .contents-item--reverse .contents-item__name::after {
    content: none;
  }
  .contents-item--soon::after {
    height: 36px;
    background: url("../img/contents/bg_comingsoon.png") repeat-x center/375px;
    left: 0;
    top: 100px;
    transform: none;
    position: absolute;
    bottom: auto;
    z-index: 0;
  }
  .contents-item--soon .contents-item__link {
    position: relative;
    pointer-events: none;
  }
  .contents-item--soon .comingsoon {
    position: absolute;
    font-size: 30px;
    color: #fff;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
  }
  .contents-item--soon .contents-item__desc {
    display: none;
  }
  .contents-item--soon .contents-item__inner {
    padding-bottom: 0;
  }
}
/*# sourceMappingURL=style.css.map */
