@charset "UTF-8";

:root {
  --base-size: 1728;
  --gradient-primary: linear-gradient(120deg, #0ABDF3, #0A74CC, #2754D9);
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  font-family: "Noto Sans JP", "メイリオ", Meiryo, "游ゴシック", YuGothic, sans-serif;
  font-weight: 400;
  color: #171A1F;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

img,
video {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

a {
  display: inline-block;
  text-decoration: none;
}

li {
  list-style: none;
}

.header {
  position: fixed;
  top: 20px;
  right: 5%;
  background-color: rgba(17, 20, 23, 0.6);
  padding: 0 min(42px, calc(42 / var(--base-size) * 100vw));
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.is-expanded {
  right: 40px;
  width: min(calc(100vw - 80px), 1600px);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header__logo-area {
  opacity: 0;
  white-space: nowrap;
  flex-shrink: 0;
  width: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease 0.25s, transform 0.3s ease 0.25s, width 0s 0.5s;
  pointer-events: none;
  overflow: visible;
}

.header.is-expanded .header__logo-area {
  opacity: 1;
  width: auto;
  transform: translateX(0);
  transition: opacity 0.35s ease 0.3s, transform 0.35s ease 0.3s, width 0s 0.3s;
  pointer-events: auto;
}

.header__logo-area {
  display: flex;
  align-items: center;
  gap: min(12px, calc(12 / var(--base-size) * 100vw));
  padding-right: min(24px, calc(24 / var(--base-size) * 100vw));
}

.header__logo {
  max-width: min(260px, calc(260 / var(--base-size) * 100vw));
  height: auto;
  width: auto;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo img {
  max-width: 100%;
  height: auto;
  width: auto;
}

.header__deadline {
  font-size: min(18px, calc(18 / var(--base-size) * 100vw));
  font-weight: 400;
  white-space: nowrap;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(to right, #62D0FF, #79AAFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.4));
}

.header__cta-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  opacity: 0;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  padding: min(8px, calc(8 / var(--base-size) * 100vw)) min(28px, calc(28 / var(--base-size) * 100vw));
  background: var(--gradient-primary);
  border-radius: 2px;
  color: #fff;
  font-size: min(15px, calc(15 / var(--base-size) * 100vw));
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  transform: translateX(8px);
  transition: opacity 0.3s ease 0s, transform 0.3s ease 0s, width 0s 0.3s, box-shadow 0.3s ease;
  pointer-events: none;
}

.header.is-expanded .header__cta-btn {
  opacity: 1;
  width: auto;
  margin-left: 28px;
  transform: translateX(0);
  transition: opacity 0.35s ease 0.3s, transform 0.35s ease 0.3s, width 0s 0.3s, box-shadow 0.3s ease;
  pointer-events: auto;
}

.header__cta-btn:hover {
  box-shadow: 0 0 16px 4px rgba(71, 184, 236, 0.5);
}

.header__cta-btn__arrow {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.header__nav {
  margin-left: auto;
}

.header__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: 12px;
  gap: 32px;
}


.header__link {
  font-size: clamp(12px, calc(18 / var(--base-size) * 100vw), 18px);
  padding: min(8px, calc(8 / var(--base-size) * 100vw)) 0;
  color: #fff;
  line-height: 1em;
  position: relative;
}

.header__link::after {
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  background-color: rgba(255, 255, 255, 0);
  transition: 0.1s;
}

.header__link.active::after {
  background-color: #fff;
}

.fv {
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-height: 600px;
}

.fv__slider-bg {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  z-index: 0;
}

.fv__photo-row {
  flex: 1;
  overflow: hidden;
  display: flex;
}

.fv__photo-track {
  display: flex;
  gap: 0;
  animation: marquee-left 30s linear infinite;
  will-change: transform;
}

.fv__photo-track--reverse {
  animation: marquee-right 30s linear infinite;
}

.fv__photo-item {
  height: 100% !important;
  width: auto !important;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.fv__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  mix-blend-mode: multiply;
  z-index: 1;
}

.fv__gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, #0ABDF3 0%, #0A74CC 48%, #2754D9 100%);
  opacity: 0.4;
  mix-blend-mode: multiply;
  z-index: 2;
}

.fv__wrap {
  max-width: min(1370px, calc(1370 / var(--base-size) * 100vw));
  margin: auto;
  width: 100%;
  padding: min(140px, calc(140 / var(--base-size) * 100vw)) 0
    min(120px, calc(120 / var(--base-size) * 100vw));
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 3;
}

.fv__ttl {
  width: min(580px, calc(580 / var(--base-size) * 100vw));
}

.fv__label {
  font-size: min(28px, calc(28 / var(--base-size) * 100vw));
  color: #fff;
  padding-left: min(65px, calc(65 / var(--base-size) * 100vw));
  margin-top: min(-14px, calc(-14 / var(--base-size) * 100vw));
}

.about {
  background-size: cover;
  background-position: top;
  position: relative;
  width: 100%;
  overflow: hidden;
  background: radial-gradient(#171A1F, #010404);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 6vw));
  padding-bottom: 6vw;
  z-index: 2;
  margin-top: -1px;
}

@media (max-width: 769px) {
  .about {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 10vw));
    padding-bottom: 20vw;
  }
}

.about__deco {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #00297c transparent;
  border-width: 0px 0px 145px 1405px;
  mix-blend-mode: multiply;
  position: absolute;
  right: 0;
  bottom: 0;
}

.about::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #0a1a3a;
  opacity: 0.8;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  background: linear-gradient(90.49deg, rgba(1, 0, 65, 1) 0%, rgb(0 29 70) 100%);
  mix-blend-mode: multiply;
}
.about::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #0a1a3a;
  opacity: 0.8;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  background: radial-gradient(#171A1F, #010404);
  mix-blend-mode: multiply;
}

.about__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: min(1280px, calc(1280 / var(--base-size) * 100vw));
  width: 90%;
  gap: min(4px, calc(4 / var(--base-size) * 100vw));
  margin: auto;
  padding: min(100px, calc(100 / var(--base-size) * 100vw)) 0
    min(60px, calc(160 / var(--base-size) * 100vw));
  position: relative;
  z-index: 1;
}

.about__right {
  width: min(840px, calc(840 / var(--base-size) * 100vw));
  max-width: 100%;
}

.about__ttl {
  display: flex;
  flex-direction: column;
  gap: min(8px, calc(8 / var(--base-size) * 100vw));
}

.about__ttl__en {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: min(80px, calc(80 / var(--base-size) * 100vw));
  font-weight: 600;
  line-height: 1.1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about__ttl__ja {
  display: block;
  font-size: min(28px, calc(28 / var(--base-size) * 100vw));
  font-weight: 300;
  color: #fff;
}

.about__label {
  font-size: clamp(18px, calc(20 / var(--base-size) * 100vw), 20px);
  margin-bottom: min(16px, calc(16 / var(--base-size) * 100vw));
  color: #fff;
}

.about__detail {
  margin: 20px 0;
  font-size: clamp(16px, calc(18 / var(--base-size) * 100vw), 18px);
  color: #fff;
  line-height: 180%;
  font-weight: 300;
}

.about__btns {
  display: flex;
  gap: min(20px, calc(20 / var(--base-size) * 100vw));
  justify-content: center;
  padding: 0
    min(20px, calc(20 / var(--base-size) * 100vw))
    min(100px, calc(100 / var(--base-size) * 100vw));
  position: relative;
  z-index: 1;
}

.about__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: min(16px, calc(16 / var(--base-size) * 100vw));
  padding: min(20px, calc(20 / var(--base-size) * 100vw)) min(40px, calc(40 / var(--base-size) * 100vw));
  border: 1.5px solid rgba(255, 255, 255);
  border-radius: 100px;
  color: #fff;
  font-size: clamp(15px, calc(18 / var(--base-size) * 100vw), 18px);
  font-weight: 400;
  white-space: nowrap;
  transition: background-color 0.25s ease, border-color 0.25s ease;
  min-width: min(360px, calc(360 / var(--base-size) * 100vw));
}

.about__btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 1);
}

.about__btn__text {
  flex: 1;
  text-align: center;
  margin-left: min(14px, calc(14 / var(--base-size) * 100vw));
}

.about__btn__icon {
  display: inline-block;
  width: min(14px, calc(14 / var(--base-size) * 100vw));
  height: min(14px, calc(14 / var(--base-size) * 100vw));
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 1);
  position: relative;
  font-style: normal;
  font-size: 0;
}

.about__btn__icon::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  right: -5px;
  bottom: -5px;
  border-bottom: 1.5px solid rgba(255, 255, 255);
  border-right: 1.5px solid rgba(255, 255, 255);
}

@media (max-width: 769px) {
  .about__btns {
    flex-direction: column;
    align-items: center;
    padding: calc(32 / var(--base-size) * 100vw) 5% calc(48 / var(--base-size) * 100vw);
    gap: calc(16 / var(--base-size) * 100vw);
  }

  .about__btn {
    width: 100%;
    min-width: unset;
    font-size: calc(16 / var(--base-size) * 100vw);
    padding: calc(18 / var(--base-size) * 100vw) calc(32 / var(--base-size) * 100vw);
  }
}


.awards {
  padding: min(160px, calc(160 / var(--base-size) * 100vw))
    min(40px, calc(40 / var(--base-size) * 100vw))
    min(200px, calc(200 / var(--base-size) * 100vw));
  position: relative;
  background-color: #000;
  margin-top: -6vw;
  overflow: hidden;
}

.awards::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../../../img/award/2026/award_categories_bg.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  transform: scale(1.03);
  transition: transform 2s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

.awards.is-visible::before {
  transform: scale(1);
}

@media (max-width: 769px) {
  .awards {
    margin-top: -10vw;
  }
}


.awards > * {
  position: relative;
  z-index: 1;
}

.awards__title {
  color: #fff;
  font-size: min(32px, calc(32 / var(--base-size) * 100vw));
  margin-bottom: min(20px, calc(20 / var(--base-size) * 100vw));
  text-align: center;
  font-weight: 500;
}
.awards__description {
  color: #fff;
  font-size: clamp(16px, calc(18 / var(--base-size) * 100vw), 18px);
  margin-bottom: min(20px, calc(20 / var(--base-size) * 100vw));
  text-align: center;
  font-weight: 300;
}

.awards__wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: min(20px, calc(20 / var(--base-size) * 100vw));
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.awards__wrap + .awards__wrap {
  margin-top: 40px;
}
.awards__item {
  position: relative;
  padding: min(28px, calc(28 / var(--base-size) * 100vw))
  min(180px, calc(180 / var(--base-size) * 100vw))
  min(20px, calc(20 / var(--base-size) * 100vw))
  min(60px, calc(60 / var(--base-size) * 100vw));
  border-radius: 20px;
  background: var(--gradient-primary);
  box-shadow: 0 0 40px 0 rgba(10, 87, 255, 0.15);
  color: #fff;
  width: 100%;
  min-height: 184px;
  overflow: hidden;
}
h3.awards__titile {
  margin: min(33px, calc(32 / var(--base-size) * 100vw)) 0
  min(12px, calc(12 / var(--base-size) * 100vw));
  font-size: clamp(26px, calc(28 / var(--base-size) * 100vw), 28px);
  font-weight: 400;
  color: #fff;
  display: flex;
  align-items: center;
  gap: min(10px, calc(10 / var(--base-size) * 100vw));
}

.awards__titile__icon {
  width: auto !important;
  height: min(48px, calc(48 / var(--base-size) * 100vw));
  flex-shrink: 0;
}
.awards__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(229, 229, 229, 0.6), rgba(239, 239, 239, 0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.awards__item::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 100%;
  right: 0;
  bottom: 0;
  background-image: url(../../../img/award/2026/award_obj.webp);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto 100%;
}
.awards__item h4.awards__titile {
  margin: min(12px, calc(12 / var(--base-size) * 100vw)) 0;
  font-size: clamp(22px, calc(26 / var(--base-size) * 100vw), 26px);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: min(10px, calc(10 / var(--base-size) * 100vw));
}

.awards__titile__icon {
  width: auto !important;
  height: min(48px, calc(48 / var(--base-size) * 100vw));
  flex-shrink: 0;
}
.awards__item__description {
  display: flex;
  flex-direction: column;
  font-size: clamp(15px, calc(17 / var(--base-size) * 100vw), 17px);
  font-weight: 300;
  line-height: 160%;
}
.awards__item__description small {
  font-size: clamp(11px, calc(12 / var(--base-size) * 100vw), 12px);
  line-height: 140%;
  margin-top: 8px;
}

.awards__note {
  color: #fff;
  font-size: clamp(11px, calc(12 / var(--base-size) * 100vw), 12px);
  font-weight: 300;
  margin-top: min(40px, calc(40 / var(--base-size) * 100vw));
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

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


.overview {
  position: relative;
  background-color: #ECEFF9;
}

.overview__ttl {
  width: min(373.46px, calc(373.46 / var(--base-size) * 100vw));
  font-size: min(32px, calc(32 / var(--base-size) * 100vw));
  margin: auto;
  text-align: center;
}
.overview__description {
  color: #474747;
  font-size: clamp(14px, calc(16 / var(--base-size) * 100vw), 16px);
  margin-bottom: min(20px, calc(20 / var(--base-size) * 100vw));
  text-align: center;
  font-weight: 400;
  line-height: 160%;
}

.overview__wrap {
  width: 100%;

  margin: 0 auto;
  padding: min(120px, calc(120 / var(--base-size) * 100vw)) 0 
  min(80px, calc(80 / var(--base-size) * 100vw));
}

.overview__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: min(60px, calc(60 / var(--base-size) * 100vw)) auto 0;
  gap: min(40px, calc(40 / var(--base-size) * 100vw));
}

.overview__left {
  width: min(560px, calc(560 / var(--base-size) * 100vw));
  display: flex;
  flex-direction: column;
  gap: min(24px, calc(24 / var(--base-size) * 100vw));
}

.overview__row {
  display: flex;
  flex-direction: column;
  gap: min(8px, calc(8 / var(--base-size) * 100vw));
}

.overview__label {
  margin:0 0 0 min(20px, calc(20 / var(--base-size) * 100vw));
  font-size: clamp(15px, calc(17 / var(--base-size) * 100vw), 17px);
  font-weight: 500;
  color: #007AB1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.overview__label__note {
  padding-left: 8px;
  font-size: min(12px, calc(12 / var(--base-size) * 100vw));
  font-weight: 400;
}

.overview__detail {
  padding: clamp(8px, calc(12 / var(--base-size) * 100vw), 20px) clamp(16px, calc(20 / var(--base-size) * 100vw), 20px);
  font-size: clamp(15px, calc(17 / var(--base-size) * 100vw), 17px);
  line-height: 1.8;
  background-color: #fff;
  border-radius: 8px;
}
.overview__detail span.desc {
  font-size: min(12px, calc(12 / var(--base-size) * 100vw));
}
.overview__detail small {
  font-size: min(12px, calc(12 / var(--base-size) * 100vw));
  display: block;
  margin-top: 4px;
}

.entry_form {
  min-width: 500px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 4px 40px 0 rgba(125, 129, 156, 0.20);
}

.entry_form__description {
  max-width: 500px;
  width: 100%;
  padding: min(24px, calc(24 / var(--base-size) * 100vw)) min(52px, calc(52 / var(--base-size) * 100vw)) 0;
}

.entry_form__ttl {
  font-size: min(28px, calc(28 / var(--base-size) * 100vw));
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: min(16px, calc(16 / var(--base-size) * 100vw));
}

.entry_form__body {
  font-size: clamp(14px, calc(16 / var(--base-size) * 100vw), 16px);
  line-height: 1.8;
  margin-bottom: min(12px, calc(12 / var(--base-size) * 100vw));
}

.entry_form__required {
  font-size: min(12px, calc(12 / var(--base-size) * 100vw));
  color: #007AB1;
  text-align: right;
  margin: 0;
}

.footer__wrap {
  padding: min(10px, calc(10 / var(--base-size) * 100vw)) 0;
  width: 90%;
  max-width: min(1148.04px, calc(1148.04 / var(--base-size) * 100vw));
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: min(8px, calc(8 / var(--base-size) * 100vw));
  font-size: clamp(15px, calc(16 / var(--base-size) * 100vw), 16px);
  font-weight: 400;
  color: #171A1F;
  margin-right: min(40px, calc(40 / var(--base-size) * 100vw));
}

.footer__copy {
  font-size: min(16px, calc(16 / var(--base-size) * 100vw));
  color: #111417;
}

.body {
  position: relative;
}

.overview {
  position: relative;
}

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

.footer {
  position: relative;
  background-color: #ECEFF9;
  z-index: 1;
}

.sp-hum {
  display: none;
}

.footer__icon {
  width: 12px;
}

.sp-header-nav {
  display: none;
}



@media screen and (max-width: 700px) {
  .header.is-expanded {
    right: 16px;
    width: calc(100vw - 32px);
    padding: 8px 16px;
  }

  .header.is-expanded .header__nav {
    display: none;
  }

  .header.is-expanded .header__logo-area {
    max-width: 200px;
  }

  .header.is-expanded .header__cta-btn {
    max-width: 160px;
  }

  .header.is-expanded .sp-hum {
    display: block;
  }
}

@media screen and (max-width: 769px) {
  :root {
    --base-size: 440;
  }
  .header,
  .header.is-expanded {
    padding: 0;
    background: none !important;
    background-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    mix-blend-mode: normal;
    width: auto !important;
    right: 20px !important;
    justify-content: flex-end;
  }
  .header__logo-area,
  .header__nav,
  .header__cta-btn {
    display: none !important;
  }
  .sp-hum {
    display: block;
    position: relative;
    z-index: 11;
  }
  .sp-header-nav {
    display: block;
  }

  .header-hum {
    display: block;
  }

  .header-hum__wrap {
    position: relative;
    display: block;
    width: calc(44 / var(--base-size) * 100vw);
    height: calc(28 / var(--base-size) * 100vw);
  }

  .header-hum__wrap {
    position: relative;
  }

  .header-hum__wrap.open {
    height: calc(34 / var(--base-size) * 100vw);
  }

  .sp-header-nav {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 9;
    background: rgba(17, 20, 23, 0.95);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .sp-header-nav.open {
    opacity: 1;
    pointer-events: auto;
  }

  .sp-header-nav__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(32 / var(--base-size) * 100vw);
    width: 100%;
    padding: 0 5%;
  }

  .sp-header-nav__logo img {
    width: calc(300 / var(--base-size) * 100vw);
    height: auto;
    display: block;
  }

  .sp-header-nav__deadline {
    font-size: calc(18 / var(--base-size) * 100vw);
    font-weight: 400;
    white-space: nowrap;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    background: linear-gradient(to right, #62D0FF, #79AAFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.4));
  }

  .sp-header-nav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .sp-header-nav__item {
    width: 100%;
    text-align: center;
  }

  .header-nav__link {
    display: block;
    padding: calc(8 / var(--base-size) * 100vw) 0;
    width: 100%;
    color: #fff;
    font-size: calc(18 / var(--base-size) * 100vw);
    font-weight: 400;
    text-decoration: none;
    text-align: center;
  }

  .sp-header-nav__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: calc(200 / var(--base-size) * 100vw);
    padding: calc(12 / var(--base-size) * 100vw) calc(28 / var(--base-size) * 100vw);
    background: var(--gradient-primary);
    border-radius: 2px;
    color: #fff;
    font-size: calc(16 / var(--base-size) * 100vw);
    font-weight: 400;
    text-decoration: none;
  }

  .header-hum__line {
    display: block;
    margin: auto;
    width: 100%;
    height: calc(4 / var(--base-size) * 100vw);
    background: #fff;
    transition: 0.3s;
    border-radius: 40px;
    position: absolute;
  }

  .header-hum__line--top {
    top: 0;
    left: 0;
    transform: translateY(0%);
  }

  .header-hum__line--top.open {
    top: 0;
    left: 0;
    transform: translateY(0%) rotate(-45deg);
    transform-origin: right;
  }

  .header-hum__line--center {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .header-hum__line--under {
    bottom: 0;
    left: 0;
    transform: translateY(0%);
  }

  .header-hum__line--center.open {
    opacity: 0;
  }

  .sp-hum.is-dark .header-hum__line {
    background: #171A1F;
    transition: background 0.3s ease, transform 0.3s, opacity 0.3s;
  }

  .header-hum__line--under.open {
    bottom: 0;
    left: 0;
    transform: translateY(0%) rotate(45deg);
    transform-origin: right;
  }

  .fv__wrap {
    text-align: center;
    gap: 20px;
  }

  .fv__ttl {
    max-width: min(calc(400 / 440 * 100vw), 400px);
    margin: auto;
  }

  .fv__photo-track {
    gap: 0;
    animation-duration: 20s;
  }

  .about__wrap {
    flex-wrap: wrap;
    padding: calc(100 / var(--base-size) * 100vw) 0 0;
  }

  .about__right {
    width: 100%;
  }

  .about__label {
    font-size: calc(20 / var(--base-size) * 100vw);
    margin-bottom: calc(4 / var(--base-size) * 100vw);
  }

  .about__ttl__en {
    font-size: calc(56 / 440 * 100vw);
  }
  .about__ttl__en br {
    display: none;
  }

  .about__ttl__ja {
    font-size: calc(20 / 440 * 100vw);
  }
  .about__detail {
    font-size: calc(16 / 440 * 100vw);
  }
  .awards {
    padding: calc(72 / var(--base-size) * 100vw) 0
      calc(100 / var(--base-size) * 100vw);
  }

  .awards__title {
    font-size: calc(28 / var(--base-size) * 100vw);
    margin-bottom: calc(16 / var(--base-size) * 100vw);
  }

  .awards__wrap {
    flex-wrap: wrap;
    justify-content: center;
    padding: calc(20 / var(--base-size) * 100vw);
    gap: calc(16 / var(--base-size) * 100vw);
  }
  .awards__wrap+.awards__wrap {
    margin-top: 20px;
  }
  .awards__item h4.awards__titile {
  font-size: clamp(20px, calc(22 / var(--base-size) * 100vw), 22px);
  }
  .awards__item {
    width: calc(400 / var(--base-size) * 100vw);
    height: auto;
    padding: calc(20 / var(--base-size) * 100vw) 
      calc(108 / var(--base-size) * 100vw)
      calc(28 / var(--base-size) * 100vw)
      calc(40 / var(--base-size) * 100vw);
  }
  .awards__item__description {
  font-size: clamp(14px, calc(16 / var(--base-size) * 100vw), 16px);
  }
  .awards__item__description small {
    font-size: min(12px, calc(12 / var(--base-size) * 100vw));
  }
  .awards__item::after {
    height: 200px;
  }
  h3.awards__titile {
      margin: min(12px, calc(12 / var(--base-size) * 100vw)) auto ;
      font-size: min(24px, calc(24 / var(--base-size) * 100vw));
  }

  .awards__note {
    margin-top: 0;
    padding: 0 calc(20 / var(--base-size) * 100vw);
  }
  .header__nav {
    display: none;
  }
  .header__list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .header__item {
    width: 100%;
  }
  .overview__ttl {
    width: calc(313.46 / var(--base-size) * 100vw);
  }
  .overview__description br {
    display: none;
  }
  .overview__content {
    margin-top: calc(32 / var(--base-size) * 100vw);
  }

  .overview__left {
    width: 100%;
    padding: 0;
  }

  .overview__detail {
    padding: clamp(12px, calc(16 / var(--base-size) * 100vw), 20px) clamp(16px, calc(20 / var(--base-size) * 100vw), 20px);
    font-size: calc(16 / var(--base-size) * 100vw);
    line-height: 1.8em;
    margin-bottom: calc(0 / var(--base-size) * 100vw);
  }

  .overview__wrap {
    width: 100%;
    padding: min(80px, calc(80 / var(--base-size) * 100vw)) min(20px, calc(20 / var(--base-size) * 100vw)) 0 min(20px, calc(20 / var(--base-size) * 100vw));
  }

  .footer__wrap {
    display: block;
    text-align: center;
  }

  .footer__link {
    margin: 0 4px;
  }

  .footer__copy {
    font-size: calc(14 / var(--base-size) * 100vw);
  }

  .header__link::after {
    display: none;
  }

}

/* fv CTA button */
.fv__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 440px;
  margin-top: 8px;
  padding: min(calc(32 / var(--base-size) * 100vw), 32px) min(calc(56 / var(--base-size) * 100vw), 56px);
  background: linear-gradient(to right, #0ABDF3, #0A74CC, #2754D9);
  border-radius: min(calc(4 / var(--base-size) * 100vw), 4px);
  color: #fff;
  font-size: min(calc(24 / var(--base-size) * 100vw), 24px);
  font-weight: 400;
  text-decoration: none;
  transition: box-shadow 0.4s ease;
  cursor: pointer;
}

.fv__cta-btn:hover {
  box-shadow: 0 0 20px 4px rgba(136, 217, 255, 0.35);
}

.fv__cta-btn__arrow {
  position: absolute;
  right: min(calc(20 / var(--base-size) * 100vw), 20px);
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

@media (max-width: 769px) {
  .fv__cta-btn {
    max-width: min(calc(380 / 440 * 100vw), 380px);
    padding: min(calc(22 / 440 * 100vw), 22px) min(calc(32 / 440 * 100vw), 32px);
    font-size: min(calc(18 / 440 * 100vw), 18px);
    border-radius: min(calc(10 / 440 * 100vw), 10px);
  }

  .fv__cta-btn__arrow {
    right: min(calc(28 / 440 * 100vw), 28px);
  }
  .entry_form {
    min-width: 100%;
    margin: min(calc(40 / 440 * 100vw), 40px) min(calc(20 / 440 * 100vw), 20px);
  }
  .entry_form__description {
    padding: min(24px, calc(24 / var(--base-size) * 100vw)) min(28px, calc(28 / var(--base-size) * 100vw)) 0;
  }
}

/* ===== entry_step ===== */
.entry_step {
  margin-top: min(40px, calc(40 / var(--base-size) * 100vw));
  margin-bottom: min(100px, calc(100 / var(--base-size) * 100vw));
  padding-bottom: min(100px, calc(100 / var(--base-size) * 100vw));
}
.entry_flow {
  padding-bottom: 0;
  margin-bottom: 0;
}
.entry_step__inner {
  position: relative;
  display: flex;
  align-items: stretch;
  max-width: 1250px;
  margin: 0 auto;
  width: 90%;
}

.entry_step__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(260px, calc(260 / 1250 * 90vw));
  flex-shrink: 0;
  position: relative;
}

.entry_step__box {
  width: 100%;
  flex: 1;
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #b8d8f8;
  padding: min(24px, calc(24 / var(--base-size) * 100vw)) min(28px, calc(28 / var(--base-size) * 100vw));
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: min(12px, calc(12 / var(--base-size) * 100vw));
}

.entry_step__label {
  background-color: #E8ECF8;
  margin: calc(-1 * min(24px, calc(24 / var(--base-size) * 100vw))) calc(-1 * min(20px, calc(20 / var(--base-size) * 100vw)));
  margin-bottom: 0;
  padding: min(12px, calc(12 / var(--base-size) * 100vw)) min(20px, calc(20 / var(--base-size) * 100vw));
  border-radius: 14px 14px 0 0;
  width: calc(100% + min(56px, calc(56 / var(--base-size) * 100vw)));
  text-align: center;
}

.entry_step__label__text {
  font-weight: 600;
  font-size: min(18px, calc(18 / var(--base-size) * 100vw));
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.entry_step__ttl {
  display: flex;
  align-items: center;
  height: min(80px, calc(80 / var(--base-size) * 100vw));
  font-size: clamp(15px, calc(20 / var(--base-size) * 100vw), 20px);
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}
.entry_step__title {
  margin-top: min(100px, calc(100 / var(--base-size) * 100vw));
}
.entry_step__body {
  font-size: clamp(14px, calc(16 / var(--base-size) * 100vw), 16px);
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  text-align: left;
}

.entry_step__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--gradient-primary);
  color: #fff;
  font-size: min(16px, calc(16 / var(--base-size) * 100vw));
  font-weight: 500;
  border-radius: 4px;
  padding: min(12px, calc(12 / var(--base-size) * 100vw)) min(28px, calc(28 / var(--base-size) * 100vw));
  text-decoration: none;
}

.entry_step__btn__arrow {
  position: absolute;
  right: 12px;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transition: right 0.25s ease;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.entry_step__btn__text {
  flex: 1;
  text-align: center;
  padding-left: 18px;
  padding-right: 18px;
}

.entry_step__btn:hover .entry_step__btn__arrow {
  right: 10px;
}

.entry_step__note {
  font-size: 12px;
  font-weight: 300;
  color: #fff;
  text-align: left;
  line-height: 1.6;
  width: 100%;
  position: absolute;
  top: calc(100% + min(12px, calc(12 / var(--base-size) * 100vw)));
  left: 0;
}

.entry_step__connector {
  flex: 1;
  display: flex;
  align-items: center;
  align-self: center;
}

.entry_step__dot {
  position: relative;
  margin-right: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #47b8ec, #2f4fd0);
  flex-shrink: 0;
  z-index: 2;
}
.entry_step__dot::after {
  content:"" ;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #47b8ec, #2f4fd0);
  flex-shrink: 0;
  opacity: 0.2;
}

.entry_step__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #47b8ec, #2f4fd0);
}

/* SP */
@media (max-width: 769px) {
  .entry_step__inner {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .entry_step {
    padding-bottom: 0;
  }
  .entry_step__item {
    width: 100%;
  }

  .entry_step__connector {
    display: flex;
    flex: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 20px;
    height: 60px;
    align-self: auto;
  }

  .entry_step__line {
    flex: 1;
    width: 2px;
    height: auto;
    min-height: 0;
    background: linear-gradient(to bottom, #47b8ec, #2f4fd0);
  }

  .entry_step__dot {
    margin-right: 0;
    margin-bottom: -5px;
    flex-shrink: 0;
  }
  .entry_step03__line {
    margin-top: 100px;
  }
  .entry_step__ttl {
    height: auto;
    padding: 20px 0;
  }
}

@media (max-width: 1000px) {
  .entry_step__ttl br {
    display: none;
  }
  .header__list {
    gap: 16px;
  }
}
