@charset "UTF-8";
/* -- FOUNDATION -- */
html, body {
  overscroll-behavior-y: none;
}

html {
  font-size: 1.3333333333vw;
}
@media (min-width:769px) {
  html {
    font-size: 5.7333333333px;
  }
}
body {
  position: relative;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  line-height: 1;
  color: #000;
  overflow-x: hidden;
  background: #fff url(../img/bg.png) repeat left top/375px auto;
}

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

a {
  text-decoration: none;
  color: var(--main-color);
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

@media (min-width:1200px) {
  a:hover {
    opacity: 0.7;
  }
}
/* 共通フッター用 もしくはブレイクポイントごとの表示指定 */
.pc {
  display: none !important;
}

.sp {
  display: block;
}

@media (min-width:769px) {
  .sp {
    display: none !important;
  }
  .pc {
    display: block;
  }
}
/* -- LAYOUT -- */
.l-content__pc {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (min-width:769px) {
  .l-content__pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.l-content__pc-left {
  width: calc(100% - 430px);
  height: 100%;
}
@media (min-width:1200px) {
  .l-content__pc-left {
    width: calc((100% - 430px) / 2);
  }
}
.l-content__pc-right {
  width: calc((100% - 430px) / 2);
  height: 100%;
  background: url(../img/pc_bg_right.jpg) no-repeat top right/cover;
}
@media (min-width:769px) {
  .l-content__pc-right {
    display: none;
  }
}
@media (min-width:1200px) {
  .l-content__pc-right {
    display: block;
  }
}

.l-content__sp {
  position: relative;
  padding-top: 9rem;
}
@media (min-width:769px) {
  .l-content__sp {
    width: 430px;
    margin-left: auto;
  }
}
@media (min-width:1200px) {
  .l-content__sp {
    margin: 0 auto;
  }
}

.l-inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 4rem;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 9rem;
  background: #fff;
  padding: 0 2rem;
  z-index: 100;
}
@media (min-width:769px) {
  .l-header {
    height: 70px;
    padding: 0 20px;
  }
}
.l-header__logo-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.2rem;
     -moz-column-gap: 1.2rem;
          column-gap: 1.2rem;
}
.l-header__logo {
  list-style: none;
}
.l-header__logo.sol {
  width: 11.6rem;
}
@media (min-width:769px) {
  .l-header__logo.sol {
    width: 110px;
  }
}
.l-header__logo.x {
  position: relative;
  width: 1.5rem;
  aspect-ratio: 1/1;
}
@media (min-width:769px) {
  .l-header__logo.x {
    width: 15px;
  }
}
.l-header__logo.x::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #252b6b;
}
.l-header__logo.x::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 100%;
  height: 2px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #252b6b;
}
.l-header__logo.mizuho {
  width: 12.2rem;
}
@media (min-width:769px) {
  .l-header__logo.mizuho {
    width: 116px;
  }
}

.l-menu {
  position: fixed;
  top: 8.8rem;
  left: 0;
  width: 100%;
  height: calc(100dvh - 8.8rem);
  background: #fff url(../img/bg.png) repeat left top/375px auto;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  overflow-y: scroll;
  z-index: 99;
}
@media (min-width:769px) {
  .l-menu {
    top: 6.8rem;
    height: calc(100dvh - 6.8rem);
  }
}
.l-menu.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.l-menu__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  min-height: 50rem;
  gap: 6rem;
}
@media (min-width:769px) {
  .l-menu__lists {
    min-height: 500px;
    gap: 60px;
  }
}
.l-menu__lists li {
  list-style: none;
  font-size: 3.2rem;
  font-weight: 500;
  color: #252b6b;
}
@media (min-width:769px) {
  .l-menu__lists li {
    font-size: 32px;
  }
}
.l-menu__btn {
  position: relative;
  cursor: pointer;
  width: 5rem;
  aspect-ratio: 1/1;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}
@media (min-width:1200px) {
  .l-menu__btn:hover {
    opacity: 0.7;
  }
}
@media (min-width:769px) {
  .l-menu__btn {
    width: 50px;
  }
}
.l-menu__btn span {
  position: absolute;
  left: 50%;
  display: block;
  width: 5rem;
  height: 0.35rem;
  background-color: #252b6b;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
@media (min-width:769px) {
  .l-menu__btn span {
    width: 50px;
    height: 3.5px;
  }
}
.l-menu__btn span:nth-child(1) {
  top: calc(50% - 1.3rem);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (min-width:769px) {
  .l-menu__btn span:nth-child(1) {
    top: calc(50% - 13px);
  }
}
.l-menu__btn span:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.l-menu__btn span:nth-child(3) {
  top: calc(50% + 1.3rem);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (min-width:769px) {
  .l-menu__btn span:nth-child(3) {
    top: calc(50% + 13px);
  }
}
.l-menu__btn.is-open span:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.l-menu__btn.is-open span:nth-child(2) {
  display: none;
}
.l-menu__btn.is-open span:nth-child(3) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

/* -- COMPONENT -- */
.c-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  width: 62rem;
  height: 10rem;
  border-radius: 5rem;
  background: -webkit-gradient(linear, right top, left top, from(rgb(49, 199, 255)), to(rgb(27, 42, 122)));
  background: linear-gradient(270deg, rgb(49, 199, 255) 0%, rgb(27, 42, 122) 100%);
  -webkit-box-shadow: 0 1.1rem 0 #eeeeee;
          box-shadow: 0 1.1rem 0 #eeeeee;
  margin-inline: auto;
}
.c-btn::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 4.3rem;
  width: 0.8rem;
  height: 1.2rem;
  background-color: #fff;
  -webkit-transform: translateY(-100%) skewX(45deg);
          transform: translateY(-100%) skewX(45deg);
}
.c-btn::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 4.3rem;
  width: 0.8rem;
  height: 1.2rem;
  background-color: #fff;
  -webkit-transform: translateY(0%) skewX(-45deg);
          transform: translateY(0%) skewX(-45deg);
}

/* hero */
.p-hero {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 89rem;
  background: url(../img/sp_bg.jpg) no-repeat bottom left/cover;
  padding: 0 2.5rem 10rem 0;
}
@media (min-width:769px) {
  .p-hero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    width: 100%;
    height: 100%;
  }
}
@media (min-width:1200px) {
  .p-hero {
    background: url(../img/pc_bg_left.jpg) no-repeat bottom left/cover;
  }
}
.p-hero__logo {
  width: 57.6rem;
}
@media (min-width:769px) {
  .p-hero__logo {
    width: 60%;
    min-width: 270px;
  }
}

/* lead */
.p-lead {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 7.5rem;
}
.p-lead__txt {
  font-size: 3rem;
  font-weight: 500;
  line-height: 4.934rem;
  text-align: center;
  background: url(../img/lead_top.png) no-repeat top center/contain, url(../img/lead_bottom.png) no-repeat bottom center/contain;
  padding: 8.5rem 0 9rem;
}

/* apply */
.p-apply {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 12rem;
}
.p-apply__ttl {
  width: 64.2rem;
  margin-inline: auto;
}
.p-apply__txt {
  font-size: 3rem;
  font-weight: 500;
  line-height: 4.934rem;
  text-align: center;
}
.p-apply__txt span {
  font-weight: 700;
  color: #00aaeb;
}
.p-apply__txt:nth-of-type(1) {
  margin-top: 3rem;
}
.p-apply__txt:nth-of-type(2) {
  margin-top: 1rem;
}
.p-apply__img {
  width: 44.2rem;
  border-radius: 1rem;
  overflow: hidden;
  margin-inline: auto;
  margin-top: 5rem;
}
.p-apply__attention {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
  margin-top: 2.4rem;
}
.p-apply__btn {
  margin-top: 6rem;
}

/* message */
.p-message {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 14rem;
}
.p-message__ttl {
  width: 48rem;
  margin-inline: auto;
}
.p-message__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4rem;
  margin-top: 4.7rem;
}
.p-message__item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  border-radius: 2rem;
  border: 1px solid #00aaeb;
  background: #fff;
  padding: 4rem 3rem 5.8rem;
}
.p-message__item.is-off {
  display: none;
}
.p-message__item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-message__item-detail {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 4.8rem;
  padding-left: 1rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-message__item-rname {
  color: #00aaeb;
}
.p-message__item-old {
  color: #00aaeb;
}
.p-message__item-logo {
  width: 14.2rem;
}
.p-message__item-body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 4.8rem;
  margin-top: 2rem;
  padding: 0 1rem;
}
.p-message__item-btn {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 32rem;
  height: 7.2rem;
  border-radius: 3.6rem;
  border: 1px solid #00aaeb;
  font-size: 2.8rem;
  font-weight: 700;
  color: #00aaeb;
  -webkit-box-shadow: 0 1.2rem 0 #eeeeee;
          box-shadow: 0 1.2rem 0 #eeeeee;
  margin-top: 2.8rem;
  margin-inline: auto;
}
.p-message__item-btn.is-off {
  display: none;
}
.p-message__item-btn {
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}
@media (min-width:1200px) {
  .p-message__item-btn:hover {
    opacity: 0.7;
  }
}
.p-message__btn {
  cursor: pointer;
  margin-top: 8.2rem;
}
.p-message__btn.is-off {
  display: none;
}
.p-message__btn {
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}
@media (min-width:1200px) {
  .p-message__btn:hover {
    opacity: 0.7;
  }
}

/* guest */
.p-guest {
  margin-top: 13rem;
}
.p-guest__ttl {
  width: 35.6rem;
  margin-inline: auto;
}
.p-guest__box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.8rem;
  margin-top: 6rem;
}
.p-guest__item {
  display: block;
  width: calc((100% - 2.8rem) / 2);
}
.p-guest__item img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: fill;
     object-fit: fill;
}

/* sns */
.p-sns {
  margin-top: 11rem;
}
.p-sns__ttl {
  width: 64.8rem;
  margin-inline: auto;
}
.p-sns__wrapper {
  width: 50.6rem;
  min-width: 288px;
  margin-inline: auto;
  margin-top: 5rem;
}

/* sponsor */
.p-sponsor {
  margin-top: 10rem;
}
.p-sponsor__item {
  display: block;
  width: 24rem;
  margin-inline: auto;
}

/* footer */
.p-footer {
  background: #00aaeb;
  padding: 3rem 0;
  margin-top: 10rem;
}
.p-footer__logo {
  display: block;
  width: 19.2rem;
  margin-inline: auto;
}
.p-footer__copy {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-top: 3.3rem;
}

/* 共通フッター用 もしくはブレイクポイントごとの表示指定 *//*# sourceMappingURL=style.css.map */