@charset "utf-8";

:root {
  --tokyo: #187df5;
  --nagoya: #17ceff;
  --osaka: #17b69e;
}

body {
  background-color: #FFF;
}

main {
  position: relative;
  overflow: clip;
}

main::before {
  content: '';
  position: absolute;
  translate: -50% 0;
  top: 156px;
  left: 50%;
  width: min(1280px, 100%);
  height: 100%;
  background: url(../img/application/page-deco-pc.png) repeat-y;
  background-size: 100% auto;
}

@media screen and (max-width: 768px) {
  main::before {
    top: 110px;
    background: url(../img/application/page-deco-sp.png) repeat-y;
    background-size: 100% auto;
  }
}

/* ↓↓↓ fv ↓↓↓ */
.fv {
  position: relative;
  overflow-x: clip;
  margin: 0 auto;
}

.fv .breadcrumb {
  position: absolute;
  top: 0;
  left: 0;
  padding: 25px 48px;
  overflow: scroll;
  z-index: 1;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.fv .breadcrumb::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 768px) {
  .fv .breadcrumb {
    position: initial;
    padding: 10px 24px;
  }
}

.fv .breadcrumb .list {
  display: flex;
}

.fv .breadcrumb .list .item {
  position: relative;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  min-width: max-content;
  padding-left: 20px;
  margin-right: 15px;
}

@media screen and (max-width: 768px) {
  .fv .breadcrumb .list .item {
    font-size: 1rem;
    margin-right: 10px;
  }
}

.fv .breadcrumb .list .item:first-of-type::before {
  content: '';
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #17CEFF;
}

.fv .breadcrumb .list .item:not(:first-of-type)::before {
  content: '';
  position: absolute;
  translate: 0 -50%;
  top: 50%;
  left: 0;
  width: 10px;
  height: 1px;
  background-color: #000;
}

.fv .breadcrumb .list .item:last-of-type {
  padding-right: 20px;
  margin-right: 0;
}

@media screen and (min-width: 769px) {
  .fv .breadcrumb .list .item a {
    transition: opacity 0.3s ease;
  }

  .fv .breadcrumb .list .item a:hover {
    opacity: 0.7;
  }
}

.fv .inner {
  position: relative;
  height: 360px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .fv .inner {
    height: 165px;
    margin: 20px auto 0;
  }
}

.fv .image {
  width: min(calc(1014/1280*100vw), 1014px);
  display: block;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .fv .image {
    width: calc(350/375*100vw);
  }
}

.fv .inner .ttl-group {
  position: absolute;
  translate: -50% -50%;
  top: 50%;
  left: 50%;
  max-width: calc(1018px + 48px * 2);
  width: 100%;
  padding: 0 48px;
  color: #001932;
}

@media screen and (max-width: 768px) {
  .fv .inner .ttl-group {
    translate: -50% 0;
    top: 14.613%;
    padding: 0 24px;
  }
}

.fv .inner .ttl-group .ttl {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-shadow: 2px 3px 3px rgba(255, 255, 255, 1);
}

@media screen and (max-width: 768px) {
  .fv .inner .ttl-group .ttl {
    font-size: 2.2rem;
  }
}

.fv .inner .ttl-group .subttl {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  .fv .inner .ttl-group .subttl {
    font-size: 1.3rem;
    margin-top: 8px;
  }
}

/* ↑↑↑ fv ↑↑↑ */

/* ↓↓↓ event ↓↓↓ */
.event {
  position: relative;
  overflow-x: clip;
}

.event .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 145px;
}

@media screen and (max-width: 768px) {
  .event .inner {
    padding-top: 21.3334vw;
  }
}

.event .section-ttl {
  position: absolute;
  translate: -50% -50%;
  text-align: right;
  top: 0;
  left: 50%;
  max-width: 1280px;
  width: 100%;
  font-family: var(--jost);
  font-size: min(130px, calc((130 - 75) * ((100vw - 769px) / (1280 - 769)) + 75px));
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0;
  color: #DCF8FF;
  /* mix-blend-mode: hard-light; */
  padding-right: 10px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .event .section-ttl {
    translate: -50% -50%;
    font-size: calc((75 - 45) * ((100vw - 375px) / (768 - 375)) + 45px);
  }
}

.event .content .event-box {
  color: #001932;
}

.event .content .intro-group {
  max-width: 1012px;
  margin: 0 auto 50px;
}

@media screen and (max-width: 768px) {
  .event .content .intro-group {
    margin: 0 auto 35px;
  }
}

.event .content .intro-group .area {
  width: max-content;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1;
  padding: 3px 5px 4px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .event .content .intro-group .area {
    font-size: 1.6rem;
  }
}

.event .content .intro-group .area.-tokyo {
  background-color: var(--tokyo);
}

.event .content .intro-group .area.-nagoya {
  background-color: var(--nagoya);
}

.event .content .intro-group .area.-osaka {
  background-color: var(--osaka);
}

.event .content .intro-group .lead {
  position: relative;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 20px 0 0;
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .event .content .intro-group .lead {
    font-size: 2.6rem;
    padding: 20px 0 0;
    margin-bottom: 30px;
  }
}

.event .content .intro-group .text {
  max-width: 820px;
}

.event .content .subttl {
  position: relative;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding-left: 34px;
  margin-bottom: 48px;
}

@media screen and (max-width: 768px) {
  .event .content .subttl {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

.event .content .subttl::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  width: 16px;
  height: 2px;
  background-color: #187df5;
}

@media screen and (max-width: 768px) {
  .event .content .subttl::before {
    top: 16px;
  }
}

.event .content .text {
  text-align: justify;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  line-height: 1.875;
}

.event .content.-order01 {
  position: relative;
  padding: 0 25px 230px;
}

@media screen and (max-width: 768px) {
  .event .content.-order01 {
    padding: 0 25px 120px;
  }
}

.event .content.-order01 .bg:first-of-type {
  position: absolute;
  width: 1768px;
  aspect-ratio: 1768 / 1038;
  background-color: #f2f6f6;
  clip-path: polygon(39% 0%, 100% 0%, 61% 100%, 0% 100%);
  top: 570px;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .event .content.-order01 .bg:first-of-type {
    width: 1369px;
    aspect-ratio: 1369 / 1216;
    clip-path: polygon(59% 0%, 100% 0%, 41% 100%, 0% 100%);
    top: 385px;
    left: -540px;
  }
}

.event .content.-order01 .bg:nth-of-type(2) {
  position: absolute;
  width: 2072px;
  aspect-ratio: 2072 / 1038;
  background-color: #F2F6F6;
  clip-path: polygon(39% 0%, 100% 0%, 61% 100%, 0% 100%);
  top: 2380px;
  right: 240px;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .event .content.-order01 .bg:nth-of-type(2) {
    width: 1369px;
    aspect-ratio: 1369 / 1216;
    clip-path: polygon(59% 0%, 100% 0%, 41% 100%, 0% 100%);
    top: 1430px;
    right: initial;
    left: 70px;
  }
}


.event .content.-order01 .bg:nth-of-type(3) {
  position: absolute;
  width: 1768px;
  aspect-ratio: 1768 / 1038;
  background-color: #f2f6f6;
  clip-path: polygon(39% 0%, 100% 0%, 61% 100%, 0% 100%);
  top: 3520px;
  left: 445px;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .event .content.-order01 .bg:nth-of-type(3) {
    width: 1369px;
    aspect-ratio: 1369 / 1216;
    clip-path: polygon(59% 0%, 100% 0%, 41% 100%, 0% 100%);
    top: 2880px;
    left: -540px;
  }
}

.event .content.-order01 .bg:nth-of-type(4) {
  position: absolute;
  width: 1768px;
  aspect-ratio: 1768 / 1038;
  background-color: #f2f6f6;
  clip-path: polygon(39% 0%, 100% 0%, 61% 100%, 0% 100%);
  top: 4900px;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .event .content.-order01 .bg:nth-of-type(4) {
    width: 1369px;
    aspect-ratio: 1369 / 1216;
    clip-path: polygon(59% 0%, 100% 0%, 41% 100%, 0% 100%);
    top: 3900px;
    left: 75px;
  }
}

.event .content.-order01 .no-event {
  max-width: 836px;
  margin: 0 auto;
  border: 3px solid #e4e4e4;
  background-color: #f2f6f6;
  padding: 65px 30px;
}

.event .content.-order01 .no-event .text {
  text-align: center;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #001932;
}

.event .content.-order01 .anchor-box {
  position: relative;
  max-width: 872px;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 0 auto 80px;
  padding: 20px 0;
  z-index: 10;
}

.event .content.-order01 .anchor-box .blur-bg {
  position: absolute;
  translate: -50% 0;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.6);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}

.event .content.-order01 .anchor-box .blur-bg.-active {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .event .content.-order01 .anchor-box {
    max-width: 440px;
    margin: 0 auto 60px;
    gap: 12px;
    padding: 10px 0;
  }
}

.event .content.-order01 .anchor-btn {
  position: relative;
  display: grid;
  place-content: center;
  width: calc((100% - 40px * 2) / 3);
  min-height: 50px;
  padding: 1px;
  border-radius: 60px;
  background-color: #fff;
  box-shadow: 0px 2px 2px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .event .content.-order01 .anchor-btn {
    width: calc((100% - 12px * 2) / 3);
  }
}

.event .content.-order01 .anchor-btn.-tokyo {
  background: var(--tokyo);
}

.event .content.-order01 .anchor-btn.-nagoya {
  background: var(--nagoya);
}

.event .content.-order01 .anchor-btn.-osaka {
  background: var(--osaka);
}

.event .content.-order01 .anchor-btn::before {
  content: '';
  position: absolute;
  translate: -50% -50%;
  top: 50%;
  left: 50%;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 60px;
  background-color: #fff;
}

.event .content.-order01 .anchor-btn .txt {
  position: relative;
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 0 35px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .event .content.-order01 .anchor-btn .txt {
    padding: 0;
  }
}

.event .content.-order01 .anchor-btn .txt::before {
  content: '';
  position: absolute;
  translate: -50% -50%;
  scale: 0;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  z-index: -1;
}

.event .content.-order01 .anchor-btn.anchor-btn.-tokyo .txt::before {
  background: var(--tokyo);
}

.event .content.-order01 .anchor-btn.anchor-btn.-nagoya .txt::before {
  background: var(--nagoya);
}

.event .content.-order01 .anchor-btn.anchor-btn.-osaka .txt::before {
  background: var(--osaka);
}

@media screen and (min-width: 769px) {
  .event .content.-order01 .anchor-btn .txt {
    transition: color 0.5s ease;
  }

  .event .content.-order01 .anchor-btn:hover .txt {
    color: #fff;
  }

  .event .content.-order01 .anchor-btn:hover::after {
    background: url(../img/system/anchor-angle_w.png) no-repeat;
    background-size: cover;
  }

  .event .content.-order01 .anchor-btn .txt::before {
    transition: scale 0.5s ease;
  }

  .event .content.-order01 .anchor-btn:hover .txt::before {
    scale: 15;
  }
}

.event .content.-order01 .event-box {
  position: relative;
  max-width: 1012px;
  margin: 0 auto;
}

.event .content.-order01 .event-box:not(:first-of-type) {
  padding-top: 80px;
  margin-top: 45px;
}

.event .content.-order01 .event-box:not(:first-of-type):nth-of-type(even)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #b1b1b1;
}

.event .content.-order01 .event-box:not(:first-of-type):nth-of-type(odd)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #17ceff, #0019b4);
}

@media screen and (max-width: 768px) {

  .event .content.-order01 .event-box:not(:first-of-type):nth-of-type(odd)::before,
  .event .content.-order01 .event-box:not(:first-of-type):nth-of-type(even)::before {
    translate: -50% 0;
    left: 50%;
    width: calc(100% + 25px * 2);
  }
}

.event .content.-order01 .event-box .list {
  max-width: 836px;
}

.event .content.-order01 .event-box .list .item {
  display: flex;
  padding: 35px 0;
  border-bottom: 1px solid #E4E4E4;
}

.event .content.-order01 .event-box .list .item:first-of-type {
  padding-top: 0;
}


.event .content.-order01 .event-box .list .item:last-of-type {
  border-bottom: none;
}

@media screen and (max-width: 768px) {
  .event .content.-order01 .event-box .list .item {
    flex-direction: column;
    padding: 20px 0;
  }
}

.event .content.-order01 .event-box .list .item .heading {
  min-width: 220px;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #001932;
}

@media screen and (max-width: 768px) {
  .event .content.-order01 .event-box .list .item .heading {
    margin-bottom: 10px;
  }
}

.event .content.-order01 .event-box .list .item .link-btn {
  position: relative;
  max-width: 330px;
  min-width: 264px;
  width: fit-content;
  min-height: 50px;
  border-radius: 50px;
  display: flex;
  gap: 10px;
  align-items: center;
  background: linear-gradient(45deg, #17ceff, #0019b4);
  overflow: clip;
  padding: 5px 55px 5px 23px;
  margin: 20px 0 0;
}

@media screen and (max-width: 768px) {
  .event .content.-order01 .event-box .list .item .link-btn {
    align-self: flex-end;
    margin: 20px auto 0;
  }
}

.event .content.-order01 .event-box .list .item .link-btn.bg-none {
  background-color: unset;
}

.event .content.-order01 .event-box .list .item .link-btn::before {
  content: '';
  position: absolute;
  width: 30px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff;
  translate: 0 -50%;
  top: 50%;
  right: 19px;
  transition: scale ease .3s;
}

.event .content.-order01 .event-box .list .item .link-btn:hover::before {
  scale: 20;
}

@media screen and (max-width: 768px) {
  .event .content.-order01 .event-box .list .item .link-btn:hover::before {
    scale: 1;
  }
}

.event .content.-order01 .event-box .list .item .link-btn::after {
  content: '';
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 9999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #17ceff, #0019b4) border-box border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  mask-composite: exclude;
  translate: -50% -50%;
  top: 50%;
  left: 50%;
}

.event .content.-order01 .event-box .list .item .link-btn .arrow {
  position: absolute;
  display: block;
  width: 30px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  translate: 0 -50%;
  top: 50%;
  right: 19px;
  transition: background-size ease .3s;
}

.event .content.-order01 .event-box .list .item .link-btn .arrow::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(45deg, #17ceff, #0019b4);
  translate: -50% -50%;
  top: 50%;
  left: 50%;
  scale: 0;
  transition: scale ease .3s;
}

.event .content.-order01 .event-box .list .item .link-btn:hover .arrow::before {
  scale: 1;
}

@media screen and (max-width: 768px) {
  .event .content.-order01 .event-box .list .item .link-btn:hover .arrow::before {
    scale: 0;
  }
}

.event .content.-order01 .event-box .list .item .link-btn .arrow::after {
  content: '';
  position: absolute;
  width: 13px;
  height: 7px;
  mask-image: url(../img/top/more-arrow.svg);
  mask-position: center center;
  mask-size: 13px 7px;
  background: linear-gradient(135deg, #17ceff, #0019b4);
  translate: -50% -50%;
  top: 50%;
  left: 50%;
  transition: background-color ease .3s;
}

.event .content.-order01 .event-box .list .item .link-btn:hover .arrow::after {
  background: #fff;
}

@media screen and (max-width: 768px) {
  .event .content.-order01 .event-box .list .item .link-btn:hover .arrow::after {
    background: linear-gradient(135deg, #17ceff, #0019b4);
  }
}

.event .content.-order01 .event-box .list .item .link-btn .txt {
  position: relative;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #fff;
  transition: color ease .3s;
}

.event .content.-order01 .event-box .list .item .link-btn:hover .txt {
  color: #404040;
}

@media screen and (max-width: 768px) {

  .event .content.-order01 .event-box .list .item .link-btn:hover .txt {
    color: #fff;
  }
}

.event .content.-order02 {
  position: relative;
  padding: 145px 25px 230px;
}

@media screen and (max-width: 768px) {
  .event .content.-order02 {
    padding: 21.3334vw 25px 120px;
  }
}

.event .content.-order02 .no-event {
  max-width: 836px;
  margin: 0 auto;
  padding: 0 30px;
}

.event .content.-order02 .no-event .text {
  text-align: center;
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #001932;
}

@media screen and (max-width: 768px) {
  .event .content.-order02 .no-event .text {
    font-size: 2rem;
  }
}

/* ↑↑↑ event ↑↑↑ */