@charset "UTF-8";
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  color: #1a2164;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.06em;
}

.pc {
  display: inline-block;
}

.sp {
  display: none;
}

.button {
  width: min(90%, 1168px);
  display: flex;
  text-align: center;
  margin: 0 auto;
  flex-direction: column;
}
.button p {
  font-size: min(4.2vw, 4rem);
  color: #1a2164;
  margin-bottom: min(2vw, 2rem);
}
.button a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(4.2vw, 5.1rem);
  font-weight: 500;
  color: #1a2164;
  border: 3px solid #1a2164;
  background-color: #fff;
  border-radius: 9999px;
  height: min(14vw, 20rem);
  box-shadow: 0px min(0.6vw, 8px) #1a2164;
}
.button a::before {
  content: "";
  width: min(12.4vw, 193px);
  height: min(13vw, 192px);
  background-image: url(../img/button_leftimg.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-bottom: min(3vw, 4.3rem);
  margin-right: min(1vw, 3rem);
}
.button a::after {
  content: "";
  width: min(12.4vw, 177px);
  height: min(14vw, 211px);
  background-image: url(../img/button_rightimg.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-bottom: min(4vw, 4.4rem);
  margin-left: min(1vw, 3rem);
}

/*フッターまでスクロールしたら消す*/
.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.fadeIn {
  opacity: 0;
  transition: 1.2s;
}
.fadeIn.is-show {
  opacity: 1;
}

.mv {
  position: relative;
  background-image: url(../img/mv_pc.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1920/1052;
}
.mv .logo {
  width: 62.5vw;
  margin: 0 auto;
  padding-top: 1%;
  mix-blend-mode: multiply;
}
.mv .logo img {
  width: 14.21875vw;
}

.ill {
  width: 74.1666666667vw;
  margin: 3% auto 5%;
}

.banner {
  width: 47.3958333333vw;
  margin: auto;
}

.worries .img {
  width: 47.3958333333vw;
  margin: 3% auto 7%;
}

.reason {
  padding-block: 7% 9%;
  position: relative;
  width: 100%;
  background-color: #db4230;
  background-image: url(../img/back_repeat.png);
  background-repeat: repeat;
  border-radius: 200px;
}
.reason h2 {
  font-size: 3.8541666667vw;
  text-align: center;
  color: #fff;
  font-weight: 700;
  margin-bottom: 2.8%;
  letter-spacing: 0.06em;
}
.reason h2 small {
  display: block;
  font-size: 0.5em;
}
.reason ul {
  display: flex;
  width: 62.5vw;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3vw 0;
  margin: auto;
}
.reason ul li {
  width: 47.5%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 2rem;
  justify-content: flex-start;
  position: relative;
}
.reason ul li .program_img img {
  border-radius: 2rem 2rem 0 0;
}
.reason ul li .ill01,
.reason ul li .ill02,
.reason ul li .ill03,
.reason ul li .ill04 {
  position: absolute;
}
.reason ul li .ill01 {
  width: 3.4375vw;
  top: 49%;
  right: 13%;
}
.reason ul li .ill02 {
  width: 3.0208333333vw;
  top: 43%;
  left: 13%;
}
.reason ul li .ill03 {
  width: 3.8020833333vw;
  top: 43%;
  right: 13%;
}
.reason ul li .ill04 {
  width: 4.0104166667vw;
  top: 41%;
  left: 13%;
}
.reason ul li .text_area {
  display: flex;
  flex-direction: column;
  padding: 7% 9% 8%;
}
.reason ul li .text_area h5 {
  font-size: 1.5625vw;
  font-weight: 600;
  color: #1a2164;
  line-height: 1.5;
  margin-bottom: 4%;
  letter-spacing: 0.1em;
}
.reason ul li .text_area p {
  font-size: 0.8333333333vw;
  text-align: justify;
  line-height: 2;
}
.reason ul li .text_area dl {
  line-height: 2;
  font-size: 0.8333333333vw;
  display: flex;
}
.reason ul li .text_area dl dt {
  font-weight: 600;
  width: 30%;
}
.reason ul li .text_area dl dd {
  width: 70%;
}
.reason .kids01 {
  position: absolute;
  width: 7.6041666667vw;
  bottom: -3%;
  right: 38%;
}

.event {
  padding-block: 6%;
  overflow: hidden;
}
.event h2 {
  width: 24.5833333333vw;
  margin: auto;
}
.event .wrap {
  overflow: inherit;
  margin-top: 2%;
}
.event .wrap .autoplay_slider {
  display: flex;
  width: 100%;
  width: -moz-min-content;
  width: min-content;
  animation: 60s linear infinite sliderAnimation reverse;
}
.event .wrap .autoplay_slider .slide {
  width: 23vw;
  margin: 0 0.8vw;
  position: relative;
}

@keyframes MoveLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes MoveLeft2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes sliderAnimation {
  100% {
    transform: translateX(-50%);
  }
}
.schedule {
  position: relative;
  width: 57.2916666667vw;
  margin: auto;
  background-color: #fffce4;
  border-radius: 100px;
  padding: 4%;
}
.schedule h2 {
  font-size: 2.6041666667vw;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2%;
}
.schedule h2 .clock {
  width: 2.9166666667vw;
}
.schedule .list {
  margin-top: 3%;
}
.schedule .list dl {
  display: flex;
  align-items: center;
  padding: 3% 4%;
}
.schedule .list dl:nth-child(odd) {
  background-color: #fff;
  border-radius: 10px;
}
.schedule .list dl dt {
  width: 16%;
  font-size: 1.5625vw;
  font-weight: 500;
}
.schedule .list dl dd {
  width: 84%;
  font-size: 1.0416666667vw;
  font-weight: 500;
  line-height: 1.6;
}
.schedule .kids02,
.schedule .kids03 {
  position: absolute;
}
.schedule .kids02 {
  width: 6.5104166667vw;
  top: -5%;
  left: 12%;
}
.schedule .kids03 {
  width: 6.1979166667vw;
  right: 16%;
  bottom: -6%;
}

.cv_btn {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 6% auto;
}
.cv_btn p {
  font-size: 1.7708333333vw;
  text-align: center;
  font-weight: 500;
  margin-bottom: 0.4em;
}
.cv_btn a {
  display: block;
  font-size: 2.2916666667vw;
  color: #fff;
  font-weight: 600;
  text-align: center;
  background-color: #db4230;
  padding: 1.2em 3em;
  line-height: 1.4;
  letter-spacing: 0.06em;
  border-radius: 999px;
}
.cv_btn .ill1,
.cv_btn .ill2 {
  position: absolute;
}
.cv_btn .ill1 {
  width: 5.9895833333vw;
  top: 0.8em;
  left: -0.5em;
}
.cv_btn .ill2 {
  width: 6.4583333333vw;
  bottom: -1.8em;
  right: 0;
}

.qanda {
  position: relative;
  background-color: #1a2164;
  padding-block: 7%;
  border-radius: 200px;
}
.qanda h2 {
  font-size: 2.6041666667vw;
  text-align: center;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 2%;
}
.qanda .accordion_area .accordion_one {
  max-width: 1200px;
  width: 90%;
  margin: 2% auto 0;
  background-color: #fff;
  border-radius: 1rem;
  padding: 1.6em 0 1.6em 2em;
}
.qanda .accordion_area .accordion_one .ac_header {
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: 0.2s;
  padding-right: 10%;
}
.qanda .accordion_area .accordion_one .ac_header .i_box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  width: 2.1vw;
  height: 2.1vw;
}
.qanda .accordion_area .accordion_one .ac_header .i_box:before, .qanda .accordion_area .accordion_one .ac_header .i_box:after {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
}
.qanda .accordion_area .accordion_one .ac_header .i_box:before {
  border-top: 3px solid #1a2164;
  width: 2.1vw;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.qanda .accordion_area .accordion_one .ac_header .i_box:after {
  border-left: 3px solid #1a2164;
  width: 0;
  height: 2.1vw;
  top: 0;
  bottom: 0;
  right: 0.95vw;
  transition: 0.3s;
}
.qanda .accordion_area .accordion_one .ac_header.open .i_box:after {
  height: 0;
}
.qanda .accordion_area .accordion_one .ac_inner {
  display: none;
}
.qanda .p-faq__headinner {
  display: flex;
  line-height: 1;
  align-items: center;
}
.qanda .p-faq__headinner p.q {
  font-size: 2.2395833333vw;
  color: #db4230;
  font-weight: 500;
  margin-right: 3%;
}
.qanda .p-faq__headinner p.p-faq__q-txt {
  font-size: 1.1458333333vw;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.08em;
  text-align: justify;
}
.qanda .p-faq__bodyinner {
  display: flex;
  align-items: center;
  line-height: 1;
  border-top: 1px #1a2164 solid;
  margin-top: 2rem;
  padding: 2rem 8rem 1rem 0;
}
.qanda .p-faq__bodyinner p.a {
  font-size: 2.2395833333vw;
  color: #db4230;
  font-weight: 500;
  margin-right: 3%;
}
.qanda .p-faq__bodyinner p.p-faq__a-txt {
  font-size: 0.9375vw;
  text-align: justify;
  line-height: 2;
  color: #1a2164;
  letter-spacing: 0.08em;
}
.qanda .gutter > *:not(:last-child) {
  margin-bottom: min(3vw, 3rem);
}
.qanda ul.list-disc {
  margin-bottom: 0;
  padding-left: 0;
}
.qanda .list-disc__item {
  margin-left: 1.5em;
  list-style: disc;
}
.qanda svg.bottom {
  margin-top: min(10vw, 8rem);
}
.qanda .kids06 {
  position: absolute;
  width: 7.7083333333vw;
  left: 34%;
  bottom: -9%;
}

.access {
  position: relative;
  padding-block: 5% 0;
}
.access h2 {
  font-size: 2.6041666667vw;
  text-align: center;
  font-weight: 600;
}
.access .wrap {
  width: 59.375vw;
  display: flex;
  justify-content: space-between;
  margin: 2% auto 3%;
}
.access .wrap .text_area {
  width: 46%;
}
.access .wrap .text_area .distance {
  font-size: 1.40625vw;
  font-weight: 500;
  color: #db4230;
  letter-spacing: 0.06em;
}
.access .wrap .text_area .info {
  font-size: 0.8333333333vw;
  color: #1a2164;
  line-height: 1.8;
  margin-top: 3%;
  letter-spacing: 0.04em;
}
.access .wrap .bus_img {
  width: 50%;
}
.access .gmap_iframe {
  aspect-ratio: 19/8;
  width: 100%;
  height: auto;
}
.access .kids07 {
  position: absolute;
  width: 6.71875vw;
  bottom: -6%;
  right: 25%;
}

.insta {
  max-width: 1200px;
  width: 90%;
  margin: 6% auto;
}
.insta h3 {
  width: 15.625vw;
  margin: 0 auto;
}
.insta p {
  font-size: 1.3541666667vw;
  text-align: center;
  margin-top: 1em;
}
.insta ul {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}
.insta ul li {
  width: 32%;
}

.fix_btn {
  position: fixed;
  width: -moz-fit-content;
  width: fit-content;
  right: 3%;
  bottom: 3%;
  z-index: 999;
}
.fix_btn a {
  display: block;
  font-size: 1.4583333333vw;
  color: #fff;
  font-weight: 600;
  text-align: center;
  background-color: #db4230;
  padding: 0.8em 3.6em;
  line-height: 1.4;
  letter-spacing: 0.06em;
  border-radius: 999px;
}
.fix_btn .ill1,
.fix_btn .ill2 {
  position: absolute;
}
.fix_btn .ill1 {
  width: 5vw;
  top: 0;
  left: -1em;
}
.fix_btn .ill2 {
  width: 5.2083333333vw;
  top: 0;
  right: -1em;
}

#form_area {
  max-width: 1200px;
  width: 86%;
  margin: 0 auto;
}
#form_area h2 {
  font-size: 2.6041666667vw;
  line-height: 1.3;
  text-align: center;
  font-weight: 500;
  color: #1a2164;
}
#form_area p.supplement {
  font-size: 1.1458333333vw;
  line-height: 1.8;
  text-align: center;
  color: #1a2164;
  margin-top: 3%;
}
#form_area p.supplement span {
  color: #db4230;
  font-weight: 500;
}
#form_area h2.hmt {
  margin-top: 6rem;
}
#form_area p.annotation {
  font-size: 0.8333333333vw;
  color: #1a2164;
  width: -moz-fit-content;
  width: fit-content;
  margin: 3% auto 2%;
  line-height: 2;
}
#form_area p.annotation span {
  color: #db4230;
}
#form_area p.thanks {
  margin-top: 5rem;
  font-size: min(1.4vw, 1.2rem);
  color: #1a2164;
  -moz-text-align-last: center;
       text-align-last: center;
  line-height: 2;
}
#form_area p.top_button a {
  display: flex;
  justify-content: center;
  margin: 8rem auto;
  border: 1px #1a2164 solid;
  border-radius: 999px;
  padding: 2rem 0;
  width: 20%;
  font-size: 1.2rem;
  color: #1a2164;
}
#form_area form.confirm dd {
  line-height: 2;
}
#form_area form dl {
  display: flex;
  font-size: 1rem;
  color: #1a2164;
  padding: min(5vw, 2em);
  border-top: 1px #ccc solid;
}
#form_area form dl.radio {
  border-bottom: 1px #ccc solid;
}
#form_area form dl.radio dd {
  display: flex;
  flex-direction: row;
  gap: 6rem;
}
#form_area form dl.radio input {
  -webkit-appearance: revert;
     -moz-appearance: revert;
          appearance: revert;
}
#form_area form dl dt {
  width: 28%;
  font-weight: 500;
  line-height: 1.6;
}
#form_area form dl dt span {
  color: #db4230;
}
#form_area form dl dd {
  width: 72%;
  display: flex;
  flex-direction: column;
  gap: 1em;
  line-height: 1;
}
#form_area form dl dd input[type=text],
#form_area form dl dd input[type=email] {
  border: 1px #ccc solid;
  border-radius: 4px;
  padding: 1.2em 1.6em;
}
#form_area form dl dd input[type=text].namearea,
#form_area form dl dd input[type=email].namearea {
  width: 60%;
}
#form_area form dl dd input[type=text].tel, #form_area form dl dd input[type=text].p-postal-code,
#form_area form dl dd input[type=email].tel,
#form_area form dl dd input[type=email].p-postal-code {
  width: 40%;
}
#form_area form dl dd p.annotation {
  font-size: 0.7291666667vw;
  color: #db4230;
  margin-top: 0;
  margin-left: 0;
  margin-bottom: 0;
}
#form_area form dl dd .name_l {
  margin-right: min(3vw, 3rem);
}
#form_area form dl dd .child_age {
  width: 30%;
  border: 1px #ccc solid;
  border-radius: 4px;
  padding: 1rem 1.5rem;
}
#form_area form dl dd select {
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}
#form_area form dl dd select::-ms-expand {
  display: block;
}
#form_area form dl dd textarea {
  border: 1px #ccc solid;
  border-radius: 4px;
  padding: 1.2em 1.4em;
  line-height: 2;
}
#form_area form dl dd.kinds {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 2em;
}
#form_area form dl dd.kinds input[type=radio] {
  -webkit-appearance: revert;
     -moz-appearance: revert;
          appearance: revert;
  margin-right: 0.4em;
}
#form_area form p.privacy {
  font-size: 1rem;
  padding: 2%;
  line-height: 2;
}
#form_area form .form_btn .button_list {
  display: flex;
  justify-content: center;
  width: 100%;
}
#form_area form .form_btn .button_list input {
  display: block;
  background-color: #db4230;
  color: #fff;
  font-size: 1.4583333333vw;
  padding: 2rem 0;
  width: 34%;
  margin: 3% auto 8%;
  text-align: center;
  border-radius: 999px;
}
#form_area form .form_btn .button_list input.btn_back {
  background-color: #999;
}

footer {
  width: 100%;
  background-color: #1a2164;
  padding: 2rem 0;
}
footer .copyright {
  font-size: 12px;
  color: #fff;
  text-align: center;
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: inline-block;
  }
  .button p {
    font-size: 5vw;
  }
  .button a {
    font-size: 6.8vw;
    line-height: 1.3;
    height: 30vw;
    box-shadow: 0px 1vw #1a2164;
  }
  .button a::before {
    content: "";
    width: 16vw;
    height: 17vw;
    margin-bottom: 0;
    margin-right: 2vw;
  }
  .button a::after {
    content: "";
    width: 16vw;
    height: 17vw;
    margin-bottom: 0;
    margin-left: 2vw;
  }
  .mv {
    position: relative;
    background-image: url(../img/mv_sp.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 1125/1725;
  }
  .mv .logo {
    width: 90%;
    margin: 0 auto;
    padding-top: 3%;
    mix-blend-mode: multiply;
  }
  .mv .logo img {
    width: 32vw;
  }
  .ill {
    width: 90%;
    margin: 6% auto 10%;
  }
  .banner {
    width: 90%;
  }
  .worries .img {
    width: 90%;
    margin: 6% auto 7%;
  }
  .reason {
    padding-block: 14% 20%;
    border-radius: 10vw;
  }
  .reason h2 {
    font-size: 9.8666666667vw;
    margin-bottom: 6%;
  }
  .reason ul {
    width: 86%;
    gap: 6vw 0;
  }
  .reason ul li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 6vw;
  }
  .reason ul li .program_img img {
    border-radius: 6vw 6vw 0 0;
  }
  .reason ul li .ill01,
  .reason ul li .ill02,
  .reason ul li .ill03,
  .reason ul li .ill04 {
    position: absolute;
  }
  .reason ul li .ill01 {
    width: 8.8vw;
    top: 49%;
    right: 13%;
  }
  .reason ul li .ill02 {
    width: 7.7333333333vw;
    top: 30%;
    left: 13%;
  }
  .reason ul li .ill03 {
    width: 9.7333333333vw;
    top: 37%;
    right: 13%;
  }
  .reason ul li .ill04 {
    width: 10.2666666667vw;
    top: 32%;
    left: 13%;
  }
  .reason ul li .text_area {
    padding: 7% 9% 8%;
  }
  .reason ul li .text_area h5 {
    font-size: 5.3333333333vw;
    margin-bottom: 3%;
  }
  .reason ul li .text_area p {
    font-size: 3.7333333333vw;
  }
  .reason ul li .text_area dl {
    line-height: 2;
    font-size: 3.7333333333vw;
    display: flex;
    flex-wrap: wrap;
  }
  .reason ul li .text_area dl dt {
    font-weight: 600;
    width: 100%;
  }
  .reason ul li .text_area dl dd {
    width: 100%;
  }
  .reason .kids01 {
    position: absolute;
    width: 19.4666666667vw;
    bottom: -9vw;
    right: 18%;
  }
  .event {
    padding-block: 12%;
  }
  .event h2 {
    width: 62.9333333333vw;
  }
  .event .wrap {
    margin-top: 6%;
  }
  .event .wrap .autoplay_slider .slide {
    width: 50vw;
    margin: 0 1vw;
  }
  .schedule {
    width: 100%;
    border-radius: 10vw;
    padding: 12% 5%;
  }
  .schedule h2 {
    font-size: 6.6666666667vw;
    gap: 2%;
  }
  .schedule h2 .clock {
    width: 7.4666666667vw;
  }
  .schedule .list {
    margin-top: 6%;
  }
  .schedule .list dl {
    padding: 6% 8%;
  }
  .schedule .list dl:nth-child(odd) {
    border-radius: 10px;
  }
  .schedule .list dl dt {
    width: 30%;
    font-size: 4.8vw;
  }
  .schedule .list dl dd {
    width: 70%;
    font-size: 3.4666666667vw;
  }
  .schedule .kids02 {
    width: 16.6666666667vw;
    top: -4%;
    left: 12%;
  }
  .schedule .kids03 {
    width: 15.8666666667vw;
    right: 16%;
    bottom: -3%;
  }
  .cv_btn {
    position: relative;
    width: 86%;
    margin: 14% auto;
  }
  .cv_btn p {
    font-size: 4.5333333333vw;
    margin-bottom: 0.4em;
  }
  .cv_btn a {
    display: block;
    font-size: 5.8666666667vw;
    padding: 1.2em 0;
  }
  .cv_btn .ill1 {
    width: 15.3333333333vw;
    top: 0.8em;
    left: -0.5em;
  }
  .cv_btn .ill2 {
    width: 16.5333333333vw;
    bottom: -1.8em;
    right: 0;
  }
  .qanda {
    padding-block: 12%;
    border-radius: 10vw;
  }
  .qanda h2 {
    font-size: 6.6666666667vw;
    margin-bottom: 5%;
  }
  .qanda .accordion_area .accordion_one {
    width: 90%;
    margin: auto;
    background-color: #fff;
    border-radius: 1vw;
    padding: 1.6em 0 1.6em 1em;
  }
  .qanda .accordion_area .accordion_one .ac_header {
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: 0.2s;
    padding-right: 16%;
  }
  .qanda .accordion_area .accordion_one .ac_header .i_box {
    position: absolute;
    top: 50%;
    right: 5%;
    width: 4.9vw;
    height: 4.9vw;
  }
  .qanda .accordion_area .accordion_one .ac_header .i_box:before, .qanda .accordion_area .accordion_one .ac_header .i_box:after {
    position: absolute;
    content: "";
    margin: auto;
    box-sizing: border-box;
    vertical-align: middle;
  }
  .qanda .accordion_area .accordion_one .ac_header .i_box:before {
    border-top: 2px solid #1a2164;
    width: 4.9vw;
    height: 0;
    top: 0;
    bottom: 0;
    right: 0;
  }
  .qanda .accordion_area .accordion_one .ac_header .i_box:after {
    border-left: 2px solid #1a2164;
    width: 0;
    height: 4.9vw;
    top: 0;
    bottom: 0;
    right: 2.3vw;
    transition: 0.3s;
  }
  .qanda .accordion_area .accordion_one .ac_header.open .i_box:after {
    height: 0;
  }
  .qanda .accordion_area .accordion_one .ac_inner {
    display: none;
  }
  .qanda .p-faq__headinner {
    display: flex;
    line-height: 1;
    align-items: center;
  }
  .qanda .p-faq__headinner p.q {
    font-size: 5.7333333333vw;
    color: #db4230;
    font-weight: 500;
    margin-right: 7%;
  }
  .qanda .p-faq__headinner p.p-faq__q-txt {
    font-size: 3.4666666667vw;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.08em;
    text-align: justify;
  }
  .qanda .p-faq__bodyinner {
    display: flex;
    align-items: center;
    line-height: 1;
    border-top: 1px #1a2164 solid;
    margin-top: 2rem;
    padding: 1.2em 2em 0 0;
  }
  .qanda .p-faq__bodyinner p.a {
    font-size: 5.7333333333vw;
    color: #db4230;
    font-weight: 500;
    margin-right: 7%;
  }
  .qanda .p-faq__bodyinner p.p-faq__a-txt {
    font-size: 3.4666666667vw;
    text-align: justify;
    line-height: 2;
    color: #1a2164;
    letter-spacing: 0.08em;
  }
  .qanda .gutter > *:not(:last-child) {
    margin-bottom: min(3vw, 3rem);
  }
  .qanda ul.list-disc {
    margin-bottom: 0;
    padding-left: 0;
  }
  .qanda .list-disc__item {
    margin-left: 1.5em;
    list-style: disc;
  }
  .qanda svg.bottom {
    margin-top: min(10vw, 8rem);
  }
  .qanda .kids06 {
    position: absolute;
    width: 19.7333333333vw;
    left: 12%;
    bottom: -3em;
  }
  .access {
    padding-block: 12%;
  }
  .access h2 {
    font-size: 6.6666666667vw;
  }
  .access .wrap {
    width: 82%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: min(4vw, 6rem) auto;
  }
  .access .wrap .text_area {
    width: 100%;
  }
  .access .wrap .text_area .distance {
    font-size: 4vw;
    line-height: 1.4;
  }
  .access .wrap .text_area .info {
    font-size: 3.4666666667vw;
    margin-top: 3%;
  }
  .access .wrap .bus_img {
    width: 100%;
    margin: 4vw auto;
  }
  .access .gmap_iframe {
    aspect-ratio: 1/1;
  }
  .access .kids07 {
    width: 17.2vw;
    bottom: 2%;
    right: 20%;
  }
  .insta {
    margin-bottom: 16%;
  }
  .insta h3 {
    width: 40vw;
  }
  .insta p {
    font-size: 3.4666666667vw;
    margin-top: 0.6em;
  }
  .fix_btn {
    width: 96%;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1%;
  }
  .fix_btn a {
    font-size: 4.2666666667vw;
    padding: 1em 0 1.2em;
  }
  .fix_btn .ill1 {
    width: 11.3333333333vw;
    top: -0.4em;
    left: 1em;
  }
  .fix_btn .ill2 {
    width: 12vw;
    top: -0.4em;
    right: 1em;
  }
  #form_area {
    width: 86%;
  }
  #form_area h2 {
    font-size: 6.6666666667vw;
  }
  #form_area p.supplement {
    font-size: 3.7333333333vw;
    text-align: justify;
    margin-top: 7vw;
  }
  #form_area h2.hmt {
    margin-top: 6rem;
  }
  #form_area p.annotation {
    font-size: 3.2vw;
    margin: 5vw auto;
  }
  #form_area p.thanks {
    margin-top: 5rem;
    font-size: 3.7333333333vw;
    color: #1a2164;
    -moz-text-align-last: center;
         text-align-last: center;
    line-height: 2;
  }
  #form_area p.top_button a {
    margin: 8rem auto;
    width: 80%;
    font-size: 1.6rem;
  }
  #form_area form dl {
    flex-direction: column;
    font-size: 3.7333333333vw;
    padding: 6vw 0;
  }
  #form_area form dl.radio dd {
    gap: 8vw;
  }
  #form_area form dl dt {
    width: 100%;
    margin-bottom: 1rem;
  }
  #form_area form dl dd {
    width: 100%;
    gap: 1.2em;
  }
  #form_area form dl dd input {
    font-size: 16px;
  }
  #form_area form dl dd input.namearea, #form_area form dl dd input.tel {
    width: 100% !important;
  }
  #form_area form dl dd input.p-postal-code {
    width: 70%;
  }
  #form_area form dl dd p.annotation {
    font-size: 3.2vw;
    margin-top: 0;
    margin-left: 0;
    margin-bottom: 0;
  }
  #form_area form dl dd .name_l {
    display: inline-block;
    margin-right: 0;
    margin-bottom: 2vw;
  }
  #form_area form dl dd .child_age {
    width: 70%;
  }
  #form_area form dl dd textarea {
    font-size: 16px;
  }
  #form_area form p.privacy {
    font-size: 3.2vw;
    padding: 5vw 0;
  }
  #form_area form .form_btn .button_list input {
    font-size: 5.3333333333vw;
    padding: 4vw 0;
    width: 70%;
    margin: 5vw auto 12vw;
  }
  #form_area form .form_btn .confirm input {
    width: 44%;
  }
  footer {
    padding: 2em 0;
  }
  footer .copyright {
    font-size: 2.4vw;
  }
}/*# sourceMappingURL=style.css.map */