@keyframes mvFade {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@media screen and (min-width: 641px) {
  .sp {
    display: none !important;
  }
  .pc {
    display: block;
  }
}
@media screen and (max-width: 640px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block;
  }
}
.sizeSS {
  font-size: min(13px, 3vw);
}

.sizeS {
  font-size: min(14px, 3.4vw);
}

.sizeN {
  font-size: min(16px, 3.8vw);
}

.sizeM {
  font-size: min(18px, 4.2vw);
}

.sizeL {
  font-size: min(20px, 4.4vw);
}

.sizeLL {
  font-size: min(22px, 4.8vw);
}

.sizeH {
  font-size: min(24px, 5.2vw);
}

.sizeXL {
  font-size: min(28px, 5.6vw);
}

.sizeB {
  font-size: min(32px, 6vw);
}

.lhS {
  line-height: 1.1;
}

.lhN, .info__box .detail p {
  line-height: 1.3;
}

.lhM {
  line-height: 1.55;
}

.lhL {
  line-height: 1.75;
}

.taC {
  text-align: center !important;
}

.taR {
  text-align: right !important;
}

.taL {
  text-align: left !important;
}

.gothic {
  font-family: "Hiragino Kaku Gothic Pro", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

a img {
  transition: opacity 0.3s ease-in;
}

#wrapper {
  font-family: YakuHanJP, "Zen Old Mincho", serif;
  font-weight: 400;
}

.bg_dark {
  background-image: linear-gradient(90deg, rgb(50, 70, 118) 0%, rgb(49, 66, 113) 0.99%, rgb(44, 42, 87) 7.61%, rgb(40, 23, 67) 14.92%, rgb(37, 10, 53) 23.2%, rgb(35, 2, 45) 33.23%, rgb(35, 0, 42) 49.92%, rgb(36, 2, 45) 66.52%, rgb(38, 10, 53) 76.5%, rgb(41, 23, 67) 84.73%, rgb(45, 42, 87) 92.01%, rgb(51, 66, 113) 98.6%, rgb(53, 72, 120) 100%);
  color: #FFF;
}

.bg_blue {
  background: #FFF url(../img/bg_event.png) no-repeat center top;
  background-size: 100% auto;
  color: #333;
}
@media screen and (max-width: 640px) {
  .bg_blue {
    background-size: 250% auto;
  }
}

.sec {
  text-align: center;
}
.sec__inner {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}
.sec__inner.wide {
  max-width: 1000px;
}
@media screen and (max-width: 640px) {
  .sec__inner {
    width: 100%;
    padding: 0 3vw;
  }
}

.bdrBox {
  width: calc(100% - 20px);
  background-color: #FFF;
  color: #333;
  position: relative;
  padding: min(40px, 4vw) min(40px, 4vw);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.bdrBox::before {
  content: "";
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 1px solid #FFF;
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 0;
  pointer-events: none;
}

.listCaution {
  text-align: left;
}
.listCaution:not(.sizeSS) {
  font-size: min(14px, 3.4vw);
}
.listCaution > li {
  position: relative;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.6;
}

.dotList {
  text-align: left;
  font-size: min(14px, 3.4vw);
  display: flex;
  flex-direction: column;
  gap: min(3px, 1vw);
}
@media screen and (max-width: 640px) {
  .dotList {
    font-size: min(13px, 3vw);
  }
}
.dotList li, .dotList dd {
  padding-left: 1em;
  line-height: 1.3;
  position: relative;
}
.dotList li::before, .dotList dd::before {
  display: inline-block;
  content: "";
  width: 0.6em;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: currentColor;
  position: absolute;
  left: 0;
  top: 0.45em;
}

.pageMenu {
  margin-top: 35px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 40px;
}
@media screen and (max-width: 640px) {
  .pageMenu {
    margin-top: 8vw;
    gap: 5vw 3vw;
  }
}
.pageMenu li {
  width: 242px;
}
@media screen and (max-width: 640px) {
  .pageMenu li {
    width: calc(50% - 1.5vw);
  }
  .pageMenu li a {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 45vw;
  }
  .pageMenu li:nth-child(3) {
    width: 100%;
  }
}

.linkBtn a {
  background-color: #213C70;
  color: #fff !important;
  border-radius: 9999px;
  display: inline-block;
  padding: 15px;
  font-size: min(20px, 4.4vw);
  text-align: center;
}
@media screen and (min-width: 641px) {
  .linkBtn a {
    min-width: 290px;
  }
}
@media screen and (max-width: 640px) {
  .linkBtn a {
    width: 100%;
    padding: 3vw;
  }
}
.linkBtn a span {
  position: relative;
  padding: 0 12px;
}
.linkBtn a span::before {
  content: "";
  display: block;
  width: 6px;
  aspect-ratio: 30/54;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg  xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 54'  preserveAspectRatio='none'%3E%3Cg%3E%3Cpath fill='%23FFFFFF' d='M2.5,54c-.5,0-1-.2-1.4-.6-.8-.8-.8-2,0-2.8l23.6-23.6L1.1,3.4C.3,2.6.3,1.4,1.1.6,1.9-.2,3.1-.2,3.9.6l25,25c.8.8.8,2,0,2.8L3.9,53.4c-.4.4-.9.6-1.4.6Z' /%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: calc(50% + 2px);
  left: 0;
  transform: translateY(-50%);
}
.linkBtn a.orange {
  background-color: #ed781e;
}

/* -------- KV AREA --------  */
.mv {
  position: relative;
  width: 100%;
  aspect-ratio: 26/13;
  overflow: hidden;
  background-color: rgb(41, 23, 67);
  background-image: url(../img/mv1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 640px) {
  .mv {
    aspect-ratio: 750/1060;
    background-image: url(../img/mv_sp1.jpg);
  }
}
.mv::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 110px;
  background-image: linear-gradient(90deg, rgb(50, 70, 118) 0%, rgb(49, 66, 113) 0.99%, rgb(44, 42, 87) 7.61%, rgb(40, 23, 67) 14.92%, rgb(37, 10, 53) 23.2%, rgb(35, 2, 45) 33.23%, rgb(35, 0, 42) 49.92%, rgb(36, 2, 45) 66.52%, rgb(38, 10, 53) 76.5%, rgb(41, 23, 67) 84.73%, rgb(45, 42, 87) 92.01%, rgb(51, 66, 113) 98.6%, rgb(53, 72, 120) 100%);
  mask-image: linear-gradient(to top, black, transparent);
  -webkit-mask-image: linear-gradient(to top, black, transparent);
  pointer-events: none;
}
.mv picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  will-change: opacity;
  animation: mvFade 12s infinite cubic-bezier(0.4, 0, 0.2, 1);
}
.mv picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv picture:nth-child(2) {
  animation-delay: 6s;
}

@media screen and (max-width: 640px) {
  .intro {
    padding-top: 3vw;
  }
  .intro .sizeLL {
    font-size: 4.2666666667vw;
  }
  .intro .sizeL {
    font-size: 4vw;
  }
}

.prologue {
  margin-top: min(65px, 8vw);
  position: relative;
}
.prologue::before, .prologue::after {
  content: "";
  display: block;
  width: 197px;
  aspect-ratio: 197/134;
  background: url(../img/icon_smoke.svg) no-repeat center top;
  background-size: 100% auto;
  position: absolute;
}
@media screen and (max-width: 640px) {
  .prologue::before, .prologue::after {
    width: 40vw;
  }
}
.prologue::before {
  top: 50px;
  left: -50px;
}
@media screen and (max-width: 640px) {
  .prologue::before {
    top: 30vw;
    left: -10vw;
  }
}
.prologue::after {
  bottom: -50px;
  right: -30px;
}
@media screen and (max-width: 640px) {
  .prologue::after {
    bottom: -20vw;
    right: -15vw;
  }
}
.prologue h2 {
  padding: min(15px, 4vw) 0;
  font-size: min(32px, 6vw);
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.95), 0 0 10px rgba(255, 255, 255, 0.85), 0 0 20px rgba(200, 160, 255, 0.6), 0 0 35px rgba(180, 120, 255, 0.4), 0 0 60px rgba(150, 80, 255, 0.25);
  position: relative;
}
.prologue h2::before, .prologue h2::after {
  content: "";
  width: 65%;
  height: 1px;
  background-color: #FFF;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 640px) {
  .prologue h2::before, .prologue h2::after {
    width: 100%;
  }
}
.prologue h2::before {
  top: 0;
}
.prologue h2::after {
  bottom: 0;
}
.prologue__text {
  margin-top: min(25px, 6vw);
}

.summary {
  margin-top: 60px;
}
@media screen and (max-width: 640px) {
  .summary {
    margin-top: 2vw;
  }
}
.summary__tab {
  padding-bottom: min(60px, 8vw);
}
@media screen and (max-width: 640px) {
  .summary__tab {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
.summary__tab ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: min(80px, 6vw);
}
@media screen and (max-width: 640px) {
  .summary__tab ul li {
    width: calc(50% - 3vw);
  }
}
.summary__tab ul li button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  position: relative;
}
.summary__tab ul li button::after {
  content: "";
  display: block;
  background-color: transparent;
  width: 18px;
  aspect-ratio: 1/0.8;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: calc(100% + 25px);
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 640px) {
  .summary__tab ul li button::after {
    widthh: 4vw;
    top: calc(100% + 2vw);
  }
}
.summary__tab ul li button.current::after {
  background-color: #FFF;
}
.summary__sec {
  background-color: #FFF;
  color: #213C70;
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.summary__sec__inner {
  padding: min(30px, 5vw) 0 min(60px, 12vw) 0;
  background: url(../img/bg_wave.svg) repeat-x center 200px;
  background-size: 25% auto;
}
@media screen and (max-width: 640px) {
  .summary__sec__inner {
    background: url(../img/bg_wave_sp.svg) repeat-x center 170vw;
    background-size: 75% auto;
  }
}
.summary__sec#gendai {
  background-image: linear-gradient(90deg, rgba(50, 70, 118, 0.85) 0%, rgba(128, 79, 122, 0.82) 10%, rgba(186, 85, 125, 0.79) 20%, rgba(221, 89, 126, 0.75) 30%, rgba(232, 90, 127, 0.68) 50%, rgba(221, 89, 127, 0.75) 70%, rgba(186, 85, 125, 0.79) 80%, rgba(128, 80, 123, 0.82) 90%, rgba(53, 72, 120, 0.85) 100%);
}
.summary__sec#kako {
  background-image: linear-gradient(90deg, rgba(50, 70, 118, 0.85) 0%, rgba(121, 105, 89, 0.82) 10%, rgba(179, 134, 65, 0.79) 20%, rgba(214, 151, 50, 0.75) 30%, rgba(225, 156, 46, 0.68) 50%, rgba(214, 151, 51, 0.75) 70%, rgba(179, 134, 66, 0.79) 80%, rgba(121, 105, 91, 0.82) 90%, rgba(53, 72, 120, 0.85) 100%);
}
.summary__sec#kako .summary__box__title h2 {
  color: #ed781e;
}
.summary__sec#kako .summary__box__title h2::before, .summary__sec#kako .summary__box__title h2::after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 41.8 147.5'%3E%3Cg%3E%3Cpolygon fill='%23ed781e80' points='37.2 142.9 36.2 142.9 36.2 1 0 1 0 0 37.2 0 37.2 142.9'/%3E%3Cpolygon fill='%23ed781e80' points='41.8 147.5 40.8 147.5 40.8 5.6 4.6 5.6 4.6 4.6 41.8 4.6 41.8 147.5'/%3E%3C/g%3E%3C/svg%3E");
}
.summary__sec#kako .summary__box__detail dl .dlBox dd .stepList .mark {
  background-color: #ed781e;
}
@media screen and (max-width: 640px) {
  .summary__sec .sec__inner {
    padding: 0 7vw;
  }
}
.summary__head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 690px;
  margin-bottom: min(50px, 7vw);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 640px) {
  .summary__head {
    padding: 0 3vw;
    flex-direction: column;
    gap: 5vw;
    align-items: center;
  }
}
.summary__head__title {
  margin-bottom: min(20px, 5vw);
  width: 100%;
}
@media screen and (max-width: 640px) {
  .summary__head__title {
    order: 2;
    margin-bottom: 0;
  }
}
.summary__head__title span {
  font-size: min(28px, 5.6vw);
  font-weight: 500;
  position: relative;
}
.summary__head__title span::before, .summary__head__title span::after {
  content: "";
  background: url(../img/hx.svg) no-repeat center top;
  display: block;
  width: 271px;
  height: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.summary__head__title span::before {
  left: calc(100% + 20px);
}
.summary__head__title span::after {
  right: calc(100% + 20px);
}
@media screen and (max-width: 640px) {
  .summary__head__title span {
    font-size: 6.9333333333vw;
  }
  .summary__head__title span::before, .summary__head__title span::after {
    width: 25vw;
    background-size: auto 100%;
  }
}
.summary__head__img {
  width: 200px;
}
@media screen and (max-width: 640px) {
  .summary__head__img {
    order: 1;
  }
}
.summary__head__story {
  flex: 1;
  font-size: min(18px, 4.2vw);
  font-weight: 600;
  line-height: 1.15;
}
@media screen and (max-width: 640px) {
  .summary__head__story {
    order: 3;
    font-size: 4vw;
    line-height: 1.33;
  }
}
.summary__box {
  display: flex;
  flex-wrap: wrap;
  gap: min(40px, 5vw);
}
@media screen and (max-width: 640px) {
  .summary__box {
    flex-direction: column;
    align-items: center;
  }
}
.summary__box__title {
  width: 70px;
}
@media screen and (max-width: 640px) {
  .summary__box__title {
    width: -moz-fit-content;
    width: fit-content;
    padding: 5vw 0;
  }
}
.summary__box__title h2 {
  color: #e3007f;
  position: relative;
  padding: 35px 20px;
}
@media screen and (min-width: 641px) {
  .summary__box__title h2 {
    writing-mode: vertical-rl;
  }
}
@media screen and (max-width: 640px) {
  .summary__box__title h2 {
    padding: 0;
    display: inline-block;
    font-size: min(24px, 5.2vw);
  }
}
.summary__box__title h2::before, .summary__box__title h2::after {
  content: "";
  width: 41px;
  aspect-ratio: 41/147;
  position: absolute;
  display: block;
  background-position: center top;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 41.8 147.5'%3E%3Cg%3E%3Cpolygon fill='%23e3007f80' points='37.2 142.9 36.2 142.9 36.2 1 0 1 0 0 37.2 0 37.2 142.9'/%3E%3Cpolygon fill='%23e3007f80' points='41.8 147.5 40.8 147.5 40.8 5.6 4.6 5.6 4.6 4.6 41.8 4.6 41.8 147.5'/%3E%3C/g%3E%3C/svg%3E");
}
@media screen and (max-width: 640px) {
  .summary__box__title h2::before, .summary__box__title h2::after {
    width: 9vw;
  }
}
@media screen and (min-width: 641px) {
  .summary__box__title h2::before {
    right: 0;
    top: 0;
  }
  .summary__box__title h2::after {
    left: 0;
    bottom: 0;
    transform: scale(-1, -1);
  }
}
@media screen and (max-width: 640px) {
  .summary__box__title h2::before {
    transform: rotate(-90deg);
    top: -15vw;
    left: 4vw;
  }
  .summary__box__title h2::after {
    transform: rotate(90deg);
    bottom: -15vw;
    right: 4vw;
  }
}
.summary__box__detail {
  flex: 1;
  text-align: left;
  color: #333;
}
.summary__box__detail dl {
  display: flex;
  flex-direction: column;
  gap: min(14px, 2vw);
}
.summary__box__detail dl .dlBox {
  display: flex;
  flex-wrap: wrap;
  font-size: min(22px, 4.8vw);
  gap: min(20px, 2vw);
  align-items: center;
}
@media screen and (max-width: 640px) {
  .summary__box__detail dl .dlBox {
    flex-direction: column;
    align-items: flex-start;
  }
}
.summary__box__detail dl .dlBox dt {
  width: 100px;
  text-align: center;
  padding: 5px 0;
}
@media screen and (max-width: 640px) {
  .summary__box__detail dl .dlBox dt {
    width: 100%;
    padding: 0;
    text-align: left;
  }
}
.summary__box__detail dl .dlBox dt h3 {
  font-weight: 400;
  font-size: min(22px, 4.8vw);
}
@media screen and (min-width: 641px) {
  .summary__box__detail dl .dlBox dt h3.sizeA {
    font-size: min(18px, 4.2vw);
  }
}
.summary__box__detail dl .dlBox dd {
  flex: 1;
  padding: 5px 0;
  position: relative;
}
@media screen and (max-width: 640px) {
  .summary__box__detail dl .dlBox dd {
    width: 100%;
    font-size: 5.8vw;
    line-height: 1.15;
    padding: 2vw;
  }
}
.summary__box__detail dl .dlBox dd::before {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: -10px;
}
@media screen and (max-width: 640px) {
  .summary__box__detail dl .dlBox dd::before {
    width: 100%;
    height: 2px;
    left: 0;
  }
}
.summary__box__detail dl .dlBox dd a {
  color: #005799;
}
@media screen and (max-width: 640px) {
  .summary__box__detail dl .dlBox dd .dateIndent {
    padding-left: 3.2em;
    text-indent: -3.2em;
  }
}
.summary__box__detail dl .dlBox dd .num {
  font-size: min(32px, 6vw);
  vertical-align: text-bottom;
}
@media screen and (max-width: 640px) {
  .summary__box__detail dl .dlBox dd .num {
    font-size: 8vw;
  }
}
.summary__box__detail dl .dlBox dd .stepList {
  font-size: min(16px, 3.8vw);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: min(10px, 3vw);
}
@media screen and (max-width: 640px) {
  .summary__box__detail dl .dlBox dd .stepList {
    font-size: 4.2vw;
  }
}
.summary__box__detail dl .dlBox dd .stepList li {
  position: relative;
  padding-left: 30px;
  line-height: 1.3;
}
@media screen and (min-width: 641px) {
  .summary__box__detail dl .dlBox dd .stepList li {
    letter-spacing: -0.05em;
  }
}
.summary__box__detail dl .dlBox dd .stepList li div, .summary__box__detail dl .dlBox dd .stepList li p {
  line-height: 1.3;
}
.summary__box__detail dl .dlBox dd .stepList li .listCaution > li {
  padding-left: 1em;
}
.summary__box__detail dl .dlBox dd .stepList li .linkBtn {
  margin-top: min(20px, 3vw);
}
.summary__box__detail dl .dlBox dd .stepList .mark {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(20px, 4.4vw);
  font-weight: 600;
  line-height: 0;
  background-color: #e3007f;
  width: 27px;
  border-radius: 100%;
  aspect-ratio: 1/1;
  color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
}
.summary__box__detail dl .dlBox dd .flexBox {
  display: flex;
  flex-wrap: wrap;
  gap: min(20px, 3vw);
  margin-bottom: 10px;
}
@media screen and (max-width: 640px) {
  .summary__box__detail dl .dlBox dd .flexBox {
    flex-direction: column;
  }
}
.summary__box__detail dl .dlBox dd .flexBox .detail {
  width: calc(100% - 220px);
}
@media screen and (max-width: 640px) {
  .summary__box__detail dl .dlBox dd .flexBox .detail {
    width: 100%;
  }
}
.summary__box__detail dl .dlBox dd .flexBox .img {
  width: 200px;
}
@media screen and (max-width: 640px) {
  .summary__box__detail dl .dlBox dd .flexBox .img {
    width: 100%;
  }
}
.summary__box__detail dl .dlBox dd .flexBox .img img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.summary__box__detail .attBox {
  margin-top: min(30px, 4vw);
}
.summary__box__detail .attBox .dotList {
  margin-top: min(10px, 3vw);
}

.collabo {
  background: url(../img/bg_star_circle.png) repeat-y center top;
  background-size: 1190px auto;
  padding: min(110px, 12vw) 0 min(90px, 10vw) 0;
}
@media screen and (max-width: 640px) {
  .collabo {
    padding-top: 26vw;
  }
  .collabo .sec__inner {
    padding: 0 7vw;
  }
}
.collabo__head {
  position: relative;
  padding-top: min(30px, 8vw);
}
.collabo__head__title {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #213C70;
  width: 602px;
  aspect-ratio: 602/114;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -110px;
  background: url(../img/collabo_title.svg) no-repeat center top;
  background-size: 100% auto;
}
@media screen and (max-width: 640px) {
  .collabo__head__title {
    background-image: url(../img/collabo_title_sp.svg);
    width: 105%;
    aspect-ratio: 282/84.4;
    top: -20vw;
  }
  .collabo__head__title .sizeH {
    font-size: 4.4vw;
  }
  .collabo__head__title .sizeB {
    font-size: 5.2vw;
  }
}
.collabo__head__story {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: min(40px, 5vw);
}
.collabo__head__story .img {
  width: 240px;
  padding: min(20px, 3vw);
  background: rgba(242, 189, 104, 0.2);
}
@media screen and (max-width: 640px) {
  .collabo__head__story .img {
    width: 86%;
  }
}
.collabo__head__story .img img {
  margin-bottom: min(5px, 1vw);
}
.collabo__head__story .text {
  flex: 1;
  text-align: left;
  color: #213C70;
}
.collabo__head__story .text p {
  line-height: 1.55;
}
.collabo__box {
  margin-top: min(30px, 5vw);
}
.collabo__box + .collabo__box {
  margin-top: min(60px, 5vw);
}
.collabo__box__title {
  position: relative;
}
@media screen and (max-width: 640px) {
  .collabo__box__title {
    padding-bottom: 3vw;
  }
}
.collabo__box__title::before, .collabo__box__title::after {
  content: "";
  background: url(../img/hx_glass.png) no-repeat center top;
  background-size: 100% auto;
  display: block;
  width: 212px;
  aspect-ratio: 212/36;
  position: absolute;
}
@media screen and (min-width: 641px) {
  .collabo__box__title::before, .collabo__box__title::after {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 640px) {
  .collabo__box__title::before, .collabo__box__title::after {
    width: 30vw;
    bottom: 0;
  }
}
.collabo__box__title::before {
  left: 0;
}
.collabo__box__title::after {
  right: 0;
}
.collabo__box__title span {
  font-size: min(24px, 5.2vw);
  color: #213C70;
  position: relative;
}
.collabo__list {
  margin-top: min(20px, 5vw);
  display: flex;
  flex-wrap: wrap;
  gap: min(30px, 5vw) min(50px, 5vw);
  position: relative;
}
.collabo__list li {
  width: calc((100% - 50px) / 2);
}
@media screen and (max-width: 640px) {
  .collabo__list li {
    width: 100%;
  }
}
.collabo__list li .img {
  padding: 6px;
  border: 1px solid #f7b657;
}
.collabo__list li .img img {
  width: 100%;
  height: auto;
}
.collabo__list li .menuTitle {
  font-size: min(22px, 4.8vw);
  position: relative;
  padding: min(10px, 3vw) 0;
}
@media screen and (max-width: 640px) {
  .collabo__list li .menuTitle {
    font-size: min(20px, 4.4vw);
  }
}
.collabo__list li .menuTitle::after {
  content: "";
  width: 278px;
  aspect-ratio: 278/4;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg  xmlns='http://www.w3.org/2000/svg' viewBox='0 0 278 4' %3E%3Cg%3E%3Cpath fill='%23f7b657' d='M275.9,0c-.9,0-1.7.6-1.9,1.5H.2v1h273.7c.2.9,1,1.5,1.9,1.5s2-.9,2-2-.9-2-2-2h.1Z' /%3E%3C/g%3E%3C/svg%3E");
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 640px) {
  .collabo__list li .menuTitle::after {
    width: 80%;
  }
}
.collabo__list li .name {
  margin-top: min(15px, 3vw);
}
@media screen and (max-width: 640px) {
  .collabo__list li .name {
    font-size: 3.6vw;
    line-height: 1.3;
  }
}
.collabo__list li .text {
  text-align: left;
  font-size: min(14px, 3.4vw);
  margin-top: min(15px, 3vw);
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  .collabo__list li .text {
    font-size: 3.2vw;
  }
}
.collabo__list li .place {
  text-align: left;
  font-size: min(14px, 3.4vw);
  margin-top: min(10px, 2vw);
}
@media screen and (max-width: 640px) {
  .collabo__list li .place {
    font-size: min(13px, 3vw);
  }
}
@media screen and (min-width: 641px) {
  .collabo__list.withIcon::after {
    content: "";
    display: block;
    width: 202px;
    aspect-ratio: 202/140;
    background: url(../img/collabo_image.svg) no-repeat center top;
    position: absolute;
    bottom: 60px;
    right: 40px;
  }
}

.event {
  padding: min(60px, 8vw) 0 0 0;}


@media screen and (max-width: 640px) {
  .event .sec__inner {
    padding: 0 7vw;
  }
}
.event__head {
  position: relative;
  margin-bottom: min(60px, 12vw);
}
@media screen and (min-width: 641px) {
  .event__head::after {
    content: "";
    width: 350px;
    aspect-ratio: 350/296;
    background: url(../img/icon_circle.png) no-repeat center top;
    background-size: 100% auto;
    display: block;
    position: absolute;
    top: -20px;
    right: -80px;
  }
}
.event__head__title {
  font-weight: 400;
  color: #213C70;
  position: relative;
}
@media screen and (max-width: 640px) {
  .event__head__title .sizeB {
    font-size: 6.8vw;
  }
}
.event__head__title::after {
  content: "";
  width: 400px;
  aspect-ratio: 400/18;
  background: url(../img/hx_event.png) no-repeat center top;
  background-size: 100% auto;
  display: block;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 640px) {
  .event__head__title::after {
    width: 92%;
  }
}
.event__box {
  width: 100%;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: min(60px, 5vw);
}
.event__box .img {
  width: 480px;
}
@media screen and (max-width: 640px) {
  .event__box .img {
    width: 90%;
  }
}
.event__box .img img {
  width: 100%;
  height: auto;
}
.event__box .detail {
  flex: 1;
  text-align: left;
  color: #213C70;
}
.event__box .detail h3 {
  color: #333;
  font-size: min(22px, 4.8vw);
  border-bottom: 3px double #213C70;
  padding-bottom: min(20px, 3vw);
  margin-bottom: min(20px, 3vw);
}
.event__box .detail p {
  line-height: 1.55;
}
@media screen and (max-width: 640px) {
  .event__box .detail p {
    font-size: min(16px, 3.8vw);
  }
}

.info {
padding: min(60px, 8vw) 0 min(60px, 7vw) 0;
/*  padding: 0 0 min(60px, 10vw) 0;*/
}
@media screen and (max-width: 640px) {
  .info .sec__inner {
    padding: 0 5vw;
  }
}
.info__bdrBox__outer {
  padding: min(40px, 6vw) 0;
}
.info__bdrBox {
  position: relative;
  padding: 0 min(40px, 5vw);
  background: url(../img/bdrbox_bg.svg) repeat-y center top;
}
@media screen and (max-width: 640px) {
  .info__bdrBox {
    background-image: url(../img/bdrbox_bg_sp.svg);
    padding: 3vw 6vw;
  }
}
.info__bdrBox::before, .info__bdrBox::after {
  content: "";
  background: url(../img/bdrbox_corner.svg) no-repeat center top;
  width: 100%;
  aspect-ratio: 90/4;
  position: absolute;
  left: 0;
  display: block;
}
@media screen and (max-width: 640px) {
  .info__bdrBox::before, .info__bdrBox::after {
    background-image: url(../img/bdrbox_corner_sp.svg);
    aspect-ratio: 34/2;
  }
}
.info__bdrBox::before {
  bottom: 100%;
}
.info__bdrBox::after {
  top: 100%;
  transform: scale(1, -1);
}
.info__head {
  margin-bottom: min(35px, 5vw);
}
.info__box + .info__box {
  margin-top: min(70px, 7vw);
}
.info__box .img {
  margin-bottom: min(20px, 5vw);
}
.info__box .detail {
  font-size: min(20px, 4.4vw);
  text-align: left;
}
.info__box .linkBtn {
  margin-top: min(40px, 5vw);
}