/* ----------ヘッダー関係---------- */
.header-bar {
  display: flex;
  justify-content: space-between;
  position: fixed;
  z-index: 5;
  width: 100%;
}

.header-logo {
  margin: 23px 0 0 25px;
  min-width: 216px;
  min-height: 50px;
  transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease;
  opacity: 1;
  visibility: visible;
  max-height: 100px;
  overflow: hidden;
}

.header-menu {
  display: flex;
}

.header-link {
  display: flex;
  gap: 35px;
  align-items: center;
  transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease;
  opacity: 1;
  visibility: visible;
  max-height: 100px;
  overflow: hidden;
  position: relative;
}

.header-link a {
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s ease;
  position: relative;
}

.header-link a.is-current {
  color: #F88A95;
}

.header-link a.is-current::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 50%;
  width: 28px;
  height: 28px;
  transform: translateX(-50%);
  background-image: url(../images/current.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header-contact {
  position: relative;
  width: 100px;
  height: 100px;
  margin-right: 7px;
  margin-left: 55px;
  background-color: #F88A95;
  background-image: url("../images/mail.svg");
  background-size: 72px 72px;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  cursor: pointer;
  z-index: 10001;
  border-radius: 0px 0px 20px 20px;
  transition:
    background 0.3s ease;
}

.header-contact:hover {
  background-color: #3FADF3;
}

.header-bar.is-scrolled .header-logo,
.header-bar.is-scrolled .header-link {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
}

/* ----------ヘッダー関係---------- */


/* ----------ハンバーガーメニュー関連---------- */
.hamburger-area {
  position: relative;
  z-index: 9999;
}

/* チェックボックスは非表示 */
.menu-toggle {
  display: none !important;
}

/* ハンバーガーボタン */
.hamburger-button {
  position: relative;
  width: 100px;
  height: 100px;
  background-color: #4B5D92;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  z-index: 10001;
  border-radius: 0px 0px 0px 20px;
}

/* 二本線 */
.hamburger-button span {
  display: block;
  height: 3px;
  width: 30px;
  background: #fff;
  transition:
    transform 0.7s ease,
    background 0.3s ease;
}

/* 右から出るメニュー */
.slide-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 375px;
  height: 100vh;
  background: #4B5D92;
  padding: 135px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.7s ease;
  z-index: 10000;
  overflow-y: scroll;
}

/* メニューリスト */
.slide-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.slide-menu li {
  margin-bottom: 20px;
}

.slide-menu li a {
  display: block;
  width: 100%;
  padding-left: 5px;

}

.slide-menu ul li span {
  border-bottom: 1px solid #fff;
  width: 100%;
  display: block;
}

.slide-menu ul li ul {
  margin-left: 30px;
}

.slide-menu ul li ul li {
  list-style: disc !important;
  color: #fff;
}

.slide-menu a {
  color: #fff !important;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.slide-menu a:hover {
  color: #FFF89F !important;
}

/* 開いた時：メニューを表示 */
.menu-toggle:checked~.slide-menu {
  transform: translateX(0);
}

/* 開いた時：上の線を斜めにして× */
.menu-toggle:checked+.hamburger-button span:nth-child(1) {
  transform: translateY(9.0px) rotate(45deg);
}

/* 開いた時：下の線を斜めにして× */
.menu-toggle:checked+.hamburger-button span:nth-child(2) {
  transform: translateY(-9.0px) rotate(-45deg);
}

/* ----------ハンバーガーメニュー関連---------- */

/* ----------フッター関係---------- */
.site-footer {
  background-image: url("../images/footer_cloud.svg");
  background-repeat: repeat-x;
  background-position: center bottom;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
}

.site-footer::before {
  content: "";
  display: block;
  background-image: url("../images/footer_rainbow_pc.svg");
  position: absolute;
  background-repeat: no-repeat;
  z-index: 1;
  width: 100%;
  height: 140px;
  top: -130px;
  background-position: center center;
  background-size: auto 100%;
}

.footer-main {
  max-width: 1200px;
  background-color: #fff;
  padding: 67px 100px 97px;
  border-radius: 120px 120px 0 0;
  display: flex;
  position: relative;
  margin: 250px auto 0;
  gap: 82px;
}

.footer-left {
  text-align: center;
}

.footer-left>img {
  margin-bottom: 24px;
  min-width: 293px;
}

.footer-left p {
  font-size: 14px;
  line-height: 1.75;
  color: #4B5D92;
}

.footer-left p span {
  font-size: 16px;
  font-weight: bold;
}

.footer-left .access {
  font-size: 14px;
  line-height: 1.75;
  margin-top: 8px;
  display: inline-flex;
  position: relative;
  align-items: center;
  transition: color 0.3s ease;
}

.footer-left .access .link-icon {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 20px;
}

.footer-left .access .link-icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}

/* 通常時：青を表示 */
.footer-left .access .link-icon .link-normal {
  opacity: 1;
}

/* 通常時：ピンクを非表示 */
.footer-left .access .link-icon .link-hover {
  opacity: 0;
}

.footer-left .access:hover {
  color: #F88A95;
}

/* hover時：青を消す */
.footer-left .access:hover .link-icon .link-normal {
  opacity: 0;
}

/* hover時：ピンクを表示 */
.footer-left .access:hover .link-icon .link-hover {
  opacity: 1;
}

.footer-left .button-yellow {
  margin-top: 19px;
}

.footer-right {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.footer-right .footer-info {
  display: flex;
  position: relative;
  gap: 11px;
}

.footer-right .footer-info li {
  flex: 1;
}

.footer-right .footer-info li a {
  padding: 18px 22px;
  display: block;
  background-color: #FAF9E4;
  color: #4B5D92;
  font-weight: bold;
  position: relative;
  box-shadow: 0px 4px 0px rgba(88, 131, 255, 0.5);
  ;
  border-radius: 20px 0px 20px 20px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease
}

.footer-right .footer-info li a::after {
  content: "";
  background-image: url(../images/arrow_blue.svg);
  background-repeat: no-repeat;
  display: block;
  width: 16px;
  height: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}

.footer-right .footer-info li a:hover {
  transform: translateY(4px);
  box-shadow: none;
  background-color: #FFC5CB;
}

.footer-right .footer-link {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  row-gap: 13px;
  column-gap: 40px;
  margin-top: 43px;
}

.footer-right .footer-link li a {
  font-size: 14px;
  font-weight: bold;
  line-height: 2.2;
  position: relative;
  padding-left: 20px;
  transition:
    color 0.3s ease;
}

.footer-right .footer-link li a::before {
  content: "";
  background-image: url(../images/footer-arrow.svg);
  background-repeat: no-repeat;
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 3.5px;
}

.footer-right .copyright {
  font-size: 12px;
  margin: auto 0 0 auto;
  line-height: 2;
  color: #4B5D92;
}


/* ----------フッター関係---------- */

/* ----------サイト全体---------- */

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 250px 40px 0px;
}

.breadcrump {
  text-align: end;
  font-size: 14px;
  line-height: 1.75;
  color: #4B5D92;
  font-weight: 500;
}

.main-box {
  display: block;
  position: relative;
  background-color: #fff;
  padding: 105px 100px;
  margin-bottom: 110px;
  border-radius: 120px 120px 10px 10px;
  box-shadow: 0px 8px 24px 0 #82B5F8;
}

h2,
.h2-pseudo {
  margin: 0 auto 36px;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #4B5D92;
  font-size: 36px;
  font-weight: bold;
  position: relative;
  line-height: 1;
  letter-spacing: 0.1em;
}

h2::before,
.h2-pseudo::before {
  content: "";
  background-image: url("../images/h2_pc.svg");
  background-repeat: no-repeat;
  position: absolute;
  width: 55px;
  height: 82px;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
}

.sentence_center {
  text-align: center;
}

.button-white {
  position: relative;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 8px 25px;
  border: #4B5D92 1px solid;
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 0px 4px 0px rgba(88, 131, 255, 0.25);
  letter-spacing: 0.05em;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.button-white::after {
  content: "";
  border-top: 2px solid;
  border-right: 2px solid;
  position: relative;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  top: -2px;
  right: -15px;
  display: inline-block;
}

.button-white:hover {
  transform: translateY(4px);
  box-shadow: none;
  background-color: #4B5D92;
  color: #ffffff;
}

.button-yellow {
  display: inline-block;
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
  background-color: #FFF89F;
  color: #4B5D92;
  border: #4B5D92 2px solid;
  border-radius: 50px;
  box-shadow: 0px 4px 0px #4B5D92;
  padding: 12px 38px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.button-yellow::after {
  content: "";
  border-top: 2px solid;
  border-right: 2px solid;
  position: relative;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  top: -2px;
  right: -25px;
  display: inline-block;
}

.button-yellow:hover {
  transform: translateY(4px);
  box-shadow: none;
  background-color: #F88A95;
  color: #ffffff;

}

.balloonboy::before {
  content: "";
  background-image: url("../images/balloonboy_left_pc.svg");
  background-repeat: no-repeat;
  position: absolute;
  width: 179px;
  height: 95px;
  z-index: 1;
  top: 40px;
  left: -20px;
}

.balloonboy::after {
  content: "";
  background-image: url(../images/balloonboy_right_pc.svg);
  background-repeat: no-repeat;
  position: absolute;
  width: 298px;
  height: 249px;
  z-index: 1;
  top: -70px;
  right: -60px;
}

.flowergirl::before {
  content: "";
  background-image: url("../images/flowergirl_left_pc.svg");
  background-repeat: no-repeat;
  position: absolute;
  width: 306px;
  height: 233px;
  z-index: 1;
  top: -65px;
  left: -85px;
}

.flowergirl::after {
  content: "";
  background-image: url(../images/flowergirl_right_pc.svg);
  background-repeat: no-repeat;
  position: absolute;
  width: 226px;
  height: 162px;
  z-index: 1;
  top: -40px;
  right: 0;
}

.babblegirl::before {
  content: "";
  background-image: url("../images/bubblegirl_left_pc.svg");
  background-repeat: no-repeat;
  position: absolute;
  width: 180px;
  height: 75px;
  z-index: 1;
  top: 0;
  left: 0;
}

.babblegirl::after {
  content: "";
  background-image: url(../images/bubblegirl_right_pc.svg);
  background-repeat: no-repeat;
  position: absolute;
  width: 298px;
  height: 210px;
  z-index: 1;
  top: -70px;
  right: -60px;
}

.yearevent::before {
  content: "";
  background-image: url("../images/yearevent_left_pc.svg");
  background-repeat: no-repeat;
  position: absolute;
  width: 212px;
  height: 124px;
  z-index: 1;
  top: -30px;
  left: -30px;
}

.yearevent::after {
  content: "";
  background-image: url(../images/yearevent_right_pc.svg);
  background-repeat: no-repeat;
  position: absolute;
  width: 211px;
  height: 120px;
  z-index: 1;
  top: -30px;
  right: 0;
}

.birdstar::before {
  content: "";
  background-image: url("../images/birdstar_left_pc.svg");
  background-repeat: no-repeat;
  position: absolute;
  width: 306px;
  height: 188px;
  z-index: 1;
  top: -15px;
  left: -60px;
}

.birdstar::after {
  content: "";
  background-image: url(../images/birdstar_right_pc.svg);
  background-repeat: no-repeat;
  position: absolute;
  width: 300px;
  height: 93px;
  z-index: 1;
  top: -40px;
  right: 10px;
}

.recruitassets::before {
  content: "";
  background-image: url("../images/recruitassets_left_pc.svg");
  background-repeat: no-repeat;
  position: absolute;
  width: 276px;
  height: 129px;
  z-index: 1;
  top: -23px;
  left: -45px;
}

.recruitassets::after {
  content: "";
  background-image: url(../images/recruitassets_right_pc.svg);
  background-repeat: no-repeat;
  position: absolute;
  width: 285px;
  height: 123px;
  z-index: 1;
  top: -38px;
  right: 10px;
}

.contact {
  position: relative;
}

.contact::before {
  content: "";
  background-image: url("../images/contact_star_pc.svg");
  position: absolute;
  background-repeat: no-repeat;
  width: 768px;
  height: 114px;
  background-position: center center;
  background-size: auto 100%;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
}

.contact img {
  width: 60px;
}

.contact h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.contact h2::before {
  display: none;
}

.contact img {
  display: block;
  margin: auto;
}

.contact .contact-content {
  background-color: #E9F8FF;
  border-radius: 30px;
  display: flex;
  position: relative;
  margin: 0 auto;
  max-width: 768px;
  padding: 40px 0;
  font-size: 18px;
  color: #4B5D92;
  font-weight: bold;
}

.contact .contact-content .tel {
  font-size: 20px;
  font-family: "Zen Maru Gothic", sans-serif;
}

.contact .contact-content .tel span {
  font-size: 40px;
}

.contact .contact-content .message {
  font-size: 14px;
  font-weight: 500;
}

.contact .contact-content>*+* {
  border-left: 1px solid #4B5D92;
}

.contact .contact-content .contact-tel,
.contact .contact-content .contact-mail {
  flex: 1;
  text-align: center;
}

.contact .contact-content .contact-mail a {
  margin-top: 18px;
  padding: 12px 80px;
}

.contact .contact-content .contact-mail a::after {
  right: -65px;
}

.contact .contact-content .contact-mail .message {
  margin-top: 14px;
}

.pc {
  display: block;
}

.sp {
  display: none;
}





/* ----------サイト全体---------- */

/* ----------media query---------- */
@media screen and (max-width: 1439px) {
  .header-link {
    display: none;
  }

  .footer-main {
    max-width: 1200px;
    background-color: #fff;
    padding: 67px 50px 60px;
    border-radius: 100px 100px 0 0;
    display: flex;
    position: relative;
    margin: 250px auto 0;
    gap: 50px;
  }

  .main-box {
    padding: 110px 70px 75px;
  }

}


@media screen and (max-width: 1023px) {

  .footer-main {
    flex-direction: column;
    padding: 67px 50px 60px;
  }

}


@media screen and (max-width: 767px) {
  .header-logo {
    margin: 13px 0 0 15px;
    width: 180px;
    height: 42px;
    min-width: unset;
    min-height: unset;
  }

  .header-link {
    display: none;
  }

  .header-contact {
    position: relative;
    width: 60px;
    height: 60px;
    margin-right: 6px;
    margin-left: 0px;
    background-image: url("../images/mail_sp.svg");
    background-size: 30px 30px;
    border-radius: 0px 0px 15px 15px;
    transition:
      background 0.3s ease;
  }

  .hamburger-button {
    width: 60px;
    height: 60px;
    gap: 10px;
    border-radius: 0px 0px 0px 15px;
  }

  /* 二本線 */
  .hamburger-button span {
    width: 20px;
    background: #fff;
    transition:
      transform 0.7s ease,
      background 0.3s ease;
  }


  /* 開いた時：上の線を斜めにして× */
  .menu-toggle:checked+.hamburger-button span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  /* 開いた時：下の線を斜めにして× */
  .menu-toggle:checked+.hamburger-button span:nth-child(2) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .site-footer {
    background-color: unset;
    background-image: unset;
  }

  .site-footer::before {
    content: "";
    display: block;
    background-image: url(../images/footer_rainbow_sp.svg);
    position: absolute;
    background-repeat: no-repeat;
    z-index: 1;
    background-position: center center;
    background-size: unset;
    width: 100%;
    height: 83px;
    top: -80px;
  }

  .footer-main {
    padding: 46px 40px 50px;
    border-radius: 30px 30px 0 0;
    margin: 160px auto 0;
    gap: 41px;
  }


  .footer-right .footer-link {
    display: none;
  }

  .footer-right .footer-info {
    flex-direction: column;
    margin-bottom: 59px;
    gap: 15px;
  }

  .footer-right .copyright {
    margin: 0 auto;
  }

  .wrap {
    padding: 150px 28px 0px;
  }

  h2,
  .h2-pseudo {
    font-size: 24px;
    margin: 0 auto 27px;
  }

  h2::before,
  .h2-pseudo::before {
    background-image: url("../images/h2_sp.svg");
    width: 27px;
    height: 41px;
    top: -60px;
  }

  .main-box {
    border-radius: 30px 30px 10px 10px;
    box-shadow: 0px 8px 16px 0 #82B5F8;
    padding: 40px 25px 50px;
  }

  .balloonboy::before {
    background-image: url("../images/balloonboy_left_sp.svg");
    width: 62px;
    height: 63px;
    z-index: 1;
    top: -80px;
    left: -28px;
  }

  .balloonboy::after {
    background-image: url(../images/balloonboy_right_sp.svg);
    width: 79px;
    height: 131px;
    z-index: 1;
    top: -60px;
    right: -10px;
  }

  .flowergirl::before {
    background-image: url("../images/flowergirl_left_sp.svg");
    width: 86px;
    height: 131px;
    z-index: 1;
    top: -80px;
    left: -20px;
  }

  .flowergirl::after {
    background-image: url(../images/flowergirl_right_sp.svg);
    width: 71px;
    height: 61px;
    z-index: 1;
    top: -23px;
    right: 10px;
  }

  .babblegirl::before {
    background-image: url("../images/bubblegirl_left_sp.svg");
    width: 66px;
    height: 42px;
    z-index: 1;
    top: -55px;
    left: -30px;
  }

  .babblegirl::after {
    background-image: url(../images/bubblegirl_right_sp.svg);
    width: 102px;
    height: 108px;
    z-index: 1;
    top: -51px;
    right: -20px;
  }

  .yearevent::before {
    background-image: url("../images/yearevent_left_sp.svg");
    width: 114px;
    height: 66px;
    z-index: 1;
    top: -22px;
    left: -20px;
  }

  .yearevent::after {
    background-image: url(../images/yearevent_right_sp.svg);
    width: 106px;
    height: 64px;
    z-index: 1;
    top: -22px;
    right: -15px;
  }

  .birdstar::before {
    content: "";
    background-image: url("../images/birdstar_left_sp.svg");
    width: 91px;
    height: 71px;
    z-index: 1;
    top: -20px;
    left: -15px;
  }

  .birdstar::after {
    content: "";
    background-image: url(../images/birdstar_right_sp.svg);
    width: 106px;
    height: 67px;
    z-index: 1;
    top: -27px;
    right: -10px;
  }

  .recruitassets::before {
    content: "";
    background-image: url("../images/recruitassets_left_sp.svg");
    width: 91px;
    height: 83px;
    z-index: 1;
    top: -35px;
    left: -30px;
  }

  .recruitassets::after {
    content: "";
    background-image: url(../images/recruitassets_right_sp.svg);
    width: 97px;
    height: 79px;
    z-index: 1;
    top: -35px;
    right: -25px;
  }

  .button-white {
    font-size: 14px;
    padding: 5px 40px;
  }

  .button-white::after {
    content: "";
    border-top: 1px solid;
    border-right: 1px solid;
    position: relative;
    width: 6px;
    height: 6px;
  }

  .contact::before {
    background-image: url("../images/contact_star_sp.svg");
    width: 289px;
    height: 64px;
    background-position: center center;
    background-size: auto 100%;
    left: 50%;
    top: -20px;
    transform: translateX(-50%);
  }

  .contact img {
    margin-bottom: 7px;
  }

  .contact h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .contact .contact-content {
    flex-direction: column;
    padding: 40px;
  }

  .contact .contact-content>*+* {
    border-top: 1px solid #4B5D92;
    border-left: 0px;
  }

  .contact .contact-content .contact-tel {
    padding-bottom: 28px;
  }

  .contact .contact-content .tel span {
    font-size: 32px;
  }

  .contact .contact-content .contact-mail {
    padding-top: 28px;
  }

  .contact .contact-content .contact-mail a {
    margin-top: 15px;
    padding: 14px 60px;
  }

  .contact .contact-content .contact-mail a::after {
    right: -45px;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

}