@charset "UTF-8";
* {
  font-family: "Noto Sans JP", "Roboto", sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5% !important;
}

body {
  color: #222222;
  background: linear-gradient(to right, #EEFAFC 0%, #FEFBED 100%);
  line-height: 1.5 !important;
}

img {
  width: -webkit-fill-available;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  /* Safari, Chrome */
  image-rendering: optimizeQuality;
  width: -moz-available;
  pointer-events: none;
  width: 100%;
}

a {
  display: block;
  text-decoration: none;
  color: #222222;
  transition: 0.3s;
}

a:hover,
.contactpage__inBtn:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.fade-start {
  opacity: 0;
}

.fade {
  opacity: 0;
}

.fade-in {
  opacity: 1;
  transition: 1s;
}

/* --- SVG drawing --- */
.handwriting_mask_line {
  fill: none;
  stroke: #fff;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  /* mask用：最初は線が見えない状態 */
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  /* ここが肝：デフォルトは止めておく */
  animation: none;
}

/* JSでこのクラスを付けたらアニメ開始 */
.handwriting.is-animating .handwriting_mask_line {
  animation: handwriting 3.8s ease forwards;
}

@keyframes handwriting {
  to {
    stroke-dashoffset: 0;
  }
}
.en-roboto {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  letter-spacing: 0.07em;
}

.ttl--l {
  font-size: clamp(0.1rem, 8vw, 3rem);
  font-size: 8vw;
}

.ttl--m {
  font-size: clamp(0.1rem, 6.93333vw, 2.6rem);
  font-size: 6.93333vw;
}

.ttl--s {
  font-size: clamp(0.1rem, 5.3333vw, 2rem);
  font-size: 5.3333vw;
}

.txt--l {
  font-size: clamp(0.1rem, 4.8vw, 1.8rem);
  font-size: 4.8vw;
}

.txt--m {
  font-size: clamp(0.1rem, 4vw, 1.5rem);
  font-size: 4vw;
}

.txt--s {
  font-size: clamp(0.1rem, 3.7333vw, 1.4rem);
  font-size: 3.7333vw;
}

.txt--ss {
  font-size: clamp(0.1rem, 3.466vw, 1.3rem);
  font-size: 3.466vw;
}

.bg-rainbow {
  background: linear-gradient(to right, #D1F7FE 0%, #E2FFD2 100%);
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  padding: 1% 5%;
  border-radius: 5px;
}
.bg-rainbow span {
  background: linear-gradient(to right, #001E56 0%, #004B7F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradation a {
  border-radius: 150px;
  background: linear-gradient(to right, #001E56 0%, #004B7F 50%, #001E56 100%);
  background-size: 200% 100%;
  background-position: left center;
  transition: background-position 0.8s ease;
}
.gradation a:hover {
  background-position: right center;
  opacity: 1;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  margin: 0 10px !important;
  background-color: #99AED5 !important;
}

.swiper-pagination-bullet-active {
  background: linear-gradient(to right, #001E56 0%, #004B7F 100%) !important;
}

.header {
  position: fixed;
  z-index: 5;
  width: 100%;
  font-family: "Noto Sans JP", "Roboto", sans-serif;
}
.header__content {
  padding: 5.117% 0 5.117% 5.067%;
  background-color: #fff;
}
.header__ttl {
  text-align: center;
  font-size: 7rem;
  font-weight: bold;
  text-shadow: 1px 2px 3px #808080;
}
.header__logo {
  width: 55.338%;
  max-width: 250px;
  transition: 0.3s;
}
.header__pcMenu {
  display: none;
}

.menu {
  position: absolute;
  right: 0;
  display: flex;
  align-items: end;
  justify-content: center;
  flex-direction: column;
  width: 16%;
  height: 100%;
  background: linear-gradient(to right, #001E56 0%, #004B7F 100%);
  transition: transform 250ms ease;
  cursor: pointer;
  z-index: 200;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.menu span {
  position: relative;
  display: block;
  width: 50%;
  height: 2.5px;
  background-color: #FFF;
  margin: 0 auto;
  transform-origin: center center;
  transition: transform 250ms ease;
  z-index: 200;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.menu span:nth-of-type(1) {
  top: -2px;
}
.menu span:nth-of-type(2) {
  top: 4px;
}

#menu {
  display: none;
}
#menu:checked ~ .menu {
  background-color: transparent;
  transform: rotate(360deg);
  transition: transform 250ms ease;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#menu:checked ~ .menu span {
  background-color: #FFF;
  transition: transform 250ms ease;
}
#menu:checked ~ .menu span:nth-of-type(1) {
  top: 2px;
  transform: rotate(45deg);
}
#menu:checked ~ .menu span:nth-of-type(2) {
  top: -1px;
  transform: rotate(135deg);
}
#menu:checked ~ main {
  transform: translateX(250px);
  transition: transform 0.5s ease;
}

.nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 96%;
  margin: 0;
  padding: 0;
  background: rgb(255, 255, 255);
  background-image: url(../common/img/nav-bg.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 0 0 0 60px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 199;
}
.nav.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav__header {
  position: absolute;
  width: 58%;
  top: 3%;
  left: 3%;
}
.nav ul {
  position: relative;
  list-style-type: none;
  margin: 18% 0 0;
  width: 76.39%;
  font-size: 4vw;
  font-weight: bold;
  padding-left: 6.945%;
}
.nav ul li {
  position: relative;
  display: block;
  padding: 5.5% 0;
  border-bottom: 1px solid #F0F0F0;
}
.nav ul li a {
  position: relative;
  display: flex;
  align-items: end;
  margin: 0;
  text-decoration: none;
  gap: 3%;
}
.nav ul li a:after {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  border-top: 4px solid;
  border-right: 4px solid;
  -o-border-image: linear-gradient(to bottom, #001E56 0%, #004B7F 100%) 1;
     border-image: linear-gradient(to bottom, #001E56 0%, #004B7F 100%) 1;
  transform: rotate(135deg);
  position: absolute;
  top: 0;
  right: 3%;
  bottom: 0;
  margin: auto;
}
.nav ul li a:hover:before {
  width: 100%;
  height: 100%;
  background-color: white;
  transition: width 250ms ease;
}
.nav ul li li:first-child {
  padding-top: 0;
}
.nav ul .no-link a::after {
  background-color: transparent !important;
  border-top: solid 3px #808080;
  border-right: solid 3px #808080;
}
.nav__link {
  background: linear-gradient(to right, #D1F7FE 0%, #FFF3B9 100%);
  width: 76.39%;
  margin: 7% 0 0;
  border-radius: 150px;
  margin-left: 6.945%;
}
.nav__link a {
  font-size: 3.7333vw;
  padding: 5% 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  background: linear-gradient(90deg, #001E56, #004B7F);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
}
.nav__link span {
  width: 20px;
}
.nav__entry {
  padding: 5.5% 8.335% 8.335%;
  margin-top: 7.778%;
  background: linear-gradient(to right, #001E56 0%, #004B7F 100%);
  text-align: center;
  font-weight: bold;
}
.nav__entry h2 {
  background: linear-gradient(78deg, #4CABCD, #E6CDF8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 10.666vw;
}
.nav__entry p {
  font-size: 3.466vw;
  margin: 1.667% auto 0;
  background-color: #4B6697;
  color: #fff;
  border-radius: 3px;
  padding: 3% 0;
  font-size: 3.4666vw;
  width: 65.334%;
}
.nav__entryBtn {
  margin-top: 6.667%;
  font-size: 3.7333vw;
  background-color: #fff;
  border-radius: 150px;
}
.nav__entryBtn a {
  position: relative;
  border-radius: 150px;
  padding: 5.669% 0;
}
.nav__entryBtn a span {
  position: absolute;
  width: 6%;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 198;
}

.nav.is-active ~ .nav-overlay,
.nav-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

main {
  padding-top: var(--header-h);
}

.cta {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 3;
  font-size: clamp(0.1rem, 3.2vw, 1.2rem);
  font-weight: bold;
}
.cta__top {
  position: absolute;
  right: 5px;
  bottom: 107%;
  width: 26.667%;
  background-color: #fff;
  border-radius: 150px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.05em;
  font-size: clamp(0.1rem, 3.2vw, 1.2rem);
}
.cta__top a {
  background: linear-gradient(to right, #001E56 0%, #004B7F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5%;
  padding: 7% 0;
}
.cta__top a span {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  /* 丸の背景 */
  background: linear-gradient(to right, #001E56 0%, #004B7F 100%);
  /* 中央寄せ */
  display: flex;
  align-items: center;
  justify-content: center;
  /* 文字グラデーションの影響を打ち消す */
  -webkit-text-fill-color: initial;
}
.cta__top a span::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 57%;
  left: 50%;
  /* ★ translate + rotate を同時指定 */
  transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
}
.cta__bottom {
  display: flex;
  color: #fff;
  border-radius: 30px 0 0 0;
  text-align: center;
}
.cta__bottomContent {
  width: 32%;
  background: linear-gradient(to right, #001E56 0%, #004B7F 100%);
  border-radius: 30px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cta__bottomContent h2.en-roboto {
  background: linear-gradient(78deg, #4CABCD, #E6CDF8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(0.1rem, 6.13333vw, 2.3rem);
}
.cta__bottomContent + .cta__bottomContent {
  width: 68%;
  background: #4B6697;
  border-radius: 0;
  padding: 4% 7%;
  display: block;
}
.cta__bottomContent + .cta__bottomContent p {
  background-color: #F46116;
  border-radius: 150px;
  margin-top: 4%;
}
.cta__bottomContent + .cta__bottomContent p a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4%;
  padding: 3.5% 0;
}
.cta__bottomContent + .cta__bottomContent p a span {
  width: 6.6%;
}

.footer {
  color: #fff;
  text-align: center;
}
.footer__inner {
  background-image: url(../common/img/footer-bg.webp);
  padding: 10.667% 8.534%;
  font-weight: bold;
  background-repeat: no-repeat;
  background-size: cover;
}
.footer__inner h2 {
  background: linear-gradient(78deg, #4CABCD, #E6CDF8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 10.666vw;
}
.footer__inner h3 {
  font-size: 3.73333vw;
  border: 1px solid #fff;
  padding: 2% 0;
  width: 54.09%;
  margin: 3.04% auto 0;
}
.footer__inner h4 {
  font-size: 4vw;
  margin: 4% auto 0;
}
.footer__inner p {
  font-size: 3.4666vw;
  margin: 4% auto 0;
}
.footer__inner .footer__btn {
  background-color: #fff;
  border-radius: 150px;
  margin-top: 8%;
}
.footer__inner .footer__btn a {
  position: relative;
  background: linear-gradient(90deg, #001E56, #004B7F);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 3.7333vw;
  padding: 5% 0;
  border-radius: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3%;
}
.footer__inner .footer__btn a span {
  width: 6%;
}
.footer__copy {
  padding: 6.134% 0 30%;
}
.footer__copy h2 {
  width: 41.067%;
  margin: 0 auto;
}
.footer__copy p {
  font-weight: 400;
  color: #222222;
  margin-top: 1%;
}

.pcBr {
  display: none;
}

.pcBr--ss {
  display: none;
}

.pcBr--s {
  display: none;
}

@media screen and (min-width: 750px) {
  .ttl--l {
    font-size: clamp(0.1rem, 3.333vw, 6.4rem);
  }
  .ttl--m {
    font-size: clamp(0.1rem, 2.5vw, 4.8rem);
  }
  .txt--l {
    font-size: clamp(0.1rem, 1.04166vw, 2rem);
  }
  .ttl--s {
    font-size: clamp(0.1rem, 1.875vw, 3.6rem);
  }
  .txt--m {
    font-size: clamp(0.1rem, 1.25vw, 2.4rem);
  }
  .txt--ss {
    font-size: clamp(0.1rem, 0.78125vw, 1.5rem);
  }
  .bg-rainbow {
    padding: 0.5% 2%;
    font-size: clamp(0.1rem, 0.9375vw, 1.8rem);
  }
  .header {
    z-index: 10;
    width: 100%;
    position: fixed;
    padding: 0;
  }
  .header__content {
    padding: 1.3024% 0 1.3024% 2%;
  }
  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header__logo {
    width: 18%;
    max-width: 264px;
  }
  .header__pcMenu {
    display: flex;
  }
  .header__pcList {
    display: flex;
    align-items: center;
    font-size: clamp(0.1rem, 0.78vw, 1.5rem);
    font-weight: bold;
    margin-right: 12.4vw;
  }
  .header__pcItem {
    margin-right: 2.5vw;
  }
  .header__pcItem:last-child {
    padding: 0;
    background: linear-gradient(to right, #D1F7FE 0%, #FFF3B9 100%);
    border-radius: 150px;
    margin-right: 2.08334vw;
    border-radius: 150px;
  }
  .header__pcItem:last-child a {
    font-size: clamp(0.1rem, 0.78vw, 1.5rem);
    padding: 6% 15px;
    display: flex;
    justify-content: center;
    gap: 6%;
    align-items: center;
    background: linear-gradient(90deg, #001E56, #004B7F);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
  }
  .header__pcItem:last-child a span {
    width: 15%;
  }
  .header__pcItem a {
    position: relative;
  }
  .header__pcItem a::after {
    content: "";
    border: 0;
    width: 0.434vw;
    max-width: 9px;
    height: 0.434vw;
    max-height: 9px;
    border-top: clamp(1px, 0.2vw, 3px) solid;
    border-right: clamp(1px, 0.2vw, 3px) solid;
    -o-border-image: linear-gradient(to bottom, #001E56 0%, #004B7F 100%) 1;
    border-image: linear-gradient(to bottom, #001E56 0%, #004B7F 100%) 1;
    transform: translateY(-50%) rotate(135deg);
    -webkit-transform: translateY(-50%) rotate(135deg);
    -ms-transform: translateY(-50%) rotate(135deg);
    position: absolute;
    top: 40%;
    right: -1.2vw;
    margin: auto;
  }
  .header__pcItem:last-child a::after {
    content: none;
  }
  .header__entry {
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
    background-image: url(../common/img/header-entry-bg.webp);
    padding: 1.042%;
    font-weight: bold;
    background-repeat: no-repeat;
    background-size: cover;
    width: 12.5%;
    color: #fff;
  }
  .header__entry h3 {
    background: linear-gradient(78deg, #4CABCD, #E6CDF8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(0.1rem, 1.71875vw, 3.3rem);
  }
  .header__entry p {
    margin-top: 2%;
    font-size: clamp(0.1rem, 0.72916vw, 1.4rem);
  }
  .header__entryBtn {
    margin-top: 6.667%;
    font-size: 3.7333vw;
    background-color: #F46116;
    border-radius: 150px;
    font-size: clamp(0.1rem, 0.78vw, 1.5rem);
  }
  .header__entryBtn a {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9%;
    padding: 6.5% 0;
  }
  .header__entryBtn a span {
    width: 8%;
    display: block;
  }
  .menu {
    display: none;
  }
  .cta {
    bottom: 5%;
  }
  .cta__top.txt--ss {
    font-size: 1.5rem;
    width: 130px;
    right: 50px;
  }
  .cta__bottom {
    display: none;
  }
  .footer__inner {
    background-image: url(../common/img/footer-bg-pc.webp);
    padding: 5.469% 0 4.6356%;
  }
  .footer__inner .footer__container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 62.5%;
    margin: 0 auto;
    text-align: left;
    gap: 10%;
  }
  .footer__inner h2 {
    font-size: clamp(0.1rem, 5.21vw, 10rem);
  }
  .footer__inner h3 {
    font-size: clamp(0.1rem, 1.04166vw, 2rem);
    margin: 0;
    text-align: center;
    width: 34%;
    padding: 1% 0;
    margin-top: 3%;
  }
  .footer__inner h4 {
    font-size: clamp(0.1rem, 1.25vw, 2.4rem);
    margin-top: 3%;
  }
  .footer__inner p {
    font-size: clamp(0.1rem, 1.04166vw, 2rem);
  }
  .footer__inner .footer__btn {
    width: 60.394%;
    text-align: center;
    margin-top: 5%;
  }
  .footer__inner .footer__btn a {
    font-size: clamp(0.1rem, 0.9375vw, 1.8rem);
  }
  .footer__inner .footer__btn a span {
    width: 6%;
  }
  .footer__copy {
    padding: 2.5% 0;
  }
  .footer__copy h2 {
    width: 11.042%;
  }
  .footer__copy p {
    margin-top: 0.25%;
  }
  .spBr {
    display: none;
  }
  .pcBr--ss {
    display: block;
  }
}
@media screen and (min-width: 750px) {
  .ttl--l {
    font-size: clamp(0.1rem, 5.818181vw, 6.4rem);
  }
  .ttl--m {
    font-size: clamp(0.1rem, 4.3636363vw, 4.8rem);
  }
  .txt--l {
    font-size: clamp(0.1rem, 1.818181vw, 2rem);
  }
  .ttl--s {
    font-size: clamp(0.1rem, 3.27272vw, 3.6rem);
  }
  .txt--m {
    font-size: clamp(0.1rem, 2.181818vw, 2.4rem);
  }
  .txt--ss {
    font-size: clamp(0.1rem, 1.3636336vw, 1.5rem);
  }
  .bg-rainbow {
    padding: 0.5% 2%;
    font-size: clamp(0.1rem, 1.636363vw, 1.8rem);
  }
  .header__pcList {
    font-size: clamp(0.1rem, 1.3636363vw, 1.5rem);
  }
  .header__pcItem:last-child a {
    font-size: clamp(0.1rem, 1.3636363vw, 1.5rem);
  }
  .header__entry h3 {
    font-size: clamp(0.1rem, 1.71875vw, 3.3rem);
  }
  .header__entry p {
    font-size: clamp(0.1rem, 0.72916vw, 1.4rem);
  }
  .header__entryBtn {
    font-size: clamp(0.1rem, 0.78vw, 1.5rem);
  }
  .footer__inner h2 {
    font-size: clamp(0.1rem, 5.21vw, 10rem);
  }
  .footer__inner h3 {
    font-size: clamp(0.1rem, 1.04166vw, 2rem);
  }
  .footer__inner h4 {
    font-size: clamp(0.1rem, 1.25vw, 2.4rem);
    margin-top: 3%;
  }
  .footer__inner p {
    font-size: clamp(0.1rem, 0.83333vw, 1.6rem);
  }
  .footer__inner .footer__btn a {
    font-size: clamp(0.1rem, 0.9375vw, 1.8rem);
  }
  .footer__inner .footer__btn a span {
    width: 6%;
  }
}
@media screen and (min-width: 1101px) {
  .header__content {
    padding-left: 5.2606%;
  }
  .pcBr--ss {
    display: none;
  }
  .pcBr--s {
    display: block;
  }
}
@media screen and (min-width: 1280px) {
  /*.header {
    &__pc {
      &List {
        display: flex;
        align-items: center;
        font-size: 1.5rem;
        font-weight: bold;
        margin-right: 12.4vw;
      }

      &Item:last-child {
        a {
        font-size: 1.5rem;
        }
      }
    }
  }*/
}
@media screen and (min-width: 1441px) {
  .pcBr--s {
    display: none;
  }
  .pcBr {
    display: block;
  }
}/*# sourceMappingURL=common.css.map */