@charset "UTF-8";
/*
全体共通
*/
body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
}
body h2 {
  font-size: 2rem;
  display: inline-block;
  padding: 0.5em 1em;
  border-bottom: 5px solid #ff9800;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body h2 {
    font-size: 1.3rem;
    padding-left: 0;
    padding-right: 0;
  }
}
body h3 {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  body h3 {
    font-size: 1.2rem;
  }
}
body p {
  font-size: 1.25rem;
}
body .content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  body .content {
    padding: 1rem;
  }
}
body .pc_only {
  display: block;
}
@media screen and (max-width: 768px) {
  body .pc_only {
    display: none;
  }
}
body .sp_only {
  display: none;
}
@media screen and (max-width: 768px) {
  body .sp_only {
    display: block;
  }
}
body input {
  box-sizing: border-box;
}
body input[type=submit] {
  background-color: #f44336;
  color: #fff;
  padding: 0.5em 1em;
  border-radius: 9999px;
  border: 1px solid #f44336;
  cursor: pointer;
}

/*
以下、セクション別
*/
.sec_hero {
  background-image: url("../img/hero_bg_orange.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 1em;
  height: 700px;
}
@media screen and (max-width: 768px) {
  .sec_hero {
    height: initial;
  }
}
.sec_hero .content {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sec_hero .content {
    flex-wrap: wrap;
    padding: 0;
  }
}
.sec_hero .content .text {
  width: 50%;
  padding: 1em;
}
@media screen and (max-width: 768px) {
  .sec_hero .content .text {
    width: 100%;
    padding: 0;
    margin-bottom: 1em;
  }
}
.sec_hero .content .text img {
  max-width: 100%;
  height: auto;
}
.sec_hero .content .text p {
  text-align: center;
  font-weight: bold;
}
.sec_hero .content .text p span {
  font-size: 1.5em;
  background-color: #fff3e0;
}
@media screen and (max-width: 768px) {
  .sec_hero .content .text p span {
    font-size: 1em;
  }
}
.sec_hero .content .text a {
  border-radius: 9999px;
  text-decoration: none;
  background-color: #f44336;
  color: #fff;
  display: block;
  text-align: center;
  padding: 0.5rem;
}
.sec_hero .content .text a .maincopy {
  display: block;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .sec_hero .content .text a .maincopy {
    font-size: 1.5em;
  }
}
.sec_hero .content .text a .maincopy .microcopy {
  display: block;
  font-size: 1em;
}
.sec_hero .content .text .img {
  width: 50%;
  padding: 1em;
}
@media screen and (max-width: 768px) {
  .sec_hero .content .text .img {
    width: 100%;
  }
}
.sec_hero .content .text .img img {
  max-width: 100%;
  height: auto;
  border-top-left-radius: 50px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 50px;
}
.sec_hero .content .img img {
  max-width: 100%;
  height: auto;
}

.sec_introduce {
  padding: 2em;
}
@media screen and (max-width: 768px) {
  .sec_introduce {
    padding: 1em;
  }
}
.sec_introduce .content {
  padding: 1em;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sec_introduce .content {
    padding: 0;
  }
  .sec_introduce .content:nth-of-type(2) .text {
    order: 2;
  }
}
@media screen and (max-width: 768px) {
  .sec_introduce .content {
    flex-wrap: wrap;
  }
}
.sec_introduce .content .img {
  width: 50%;
  padding: 1em;
}
@media screen and (max-width: 768px) {
  .sec_introduce .content .img {
    width: 100%;
  }
}
.sec_introduce .content .img img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  outline: 5px solid #fff;
}
.sec_introduce .content .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  padding: 1em;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .sec_introduce .content .text {
    width: 100%;
    padding: 0;
  }
}
.sec_introduce .content .text .free {
  display: flex;
  padding: 1em;
}
@media screen and (max-width: 768px) {
  .sec_introduce .content .text .free {
    padding: 0;
  }
}
.sec_introduce .content .text .free img {
  width: 33.3333333333%;
  max-width: 100%;
  height: auto;
}

.sec_cta {
  background-image: url("../img/hero_bg_orange.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.sec_cta .content {
  max-width: 600px;
  padding: 2em;
  flex-direction: column;
  gap: 3em;
}
@media screen and (max-width: 768px) {
  .sec_cta .content {
    padding: 1em;
  }
}
.sec_cta .content img {
  max-width: 100%;
  height: auto;
  border-radius: 1em;
}
.sec_cta .content a {
  display: block;
  text-align: center;
  background-color: #f44336;
  padding: 0.5rem 0;
  text-decoration: none;
  color: #fff;
  border-radius: 9999px;
  font-size: 1.5em;
  width: 100%;
  max-width: 100%;
}
.sec_cta .content a span {
  display: block;
  font-size: 0.75em;
}
.sec_cta .content a .maincopy {
  display: block;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .sec_cta .content a .maincopy {
    font-size: 1.5rem;
  }
}
.sec_cta .content a .microcopy {
  display: block;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .sec_cta .content a .microcopy {
    font-size: 1rem;
  }
}
.sec_cta .content_cal {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2em;
}

.sec_feature {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em;
}
.sec_feature .content {
  background-color: #fff;
  justify-content: space-between;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .sec_feature .content {
    flex-wrap: wrap;
    padding: 0;
  }
}
.sec_feature .content .feature {
  width: calc(50% - 2em);
  margin-bottom: 1rem;
  border: 3px solid #ff9800;
}
@media screen and (max-width: 768px) {
  .sec_feature .content .feature {
    width: 100%;
    padding: 0;
  }
}
.sec_feature .content .feature h3 {
  font-size: 1.5em;
  text-align: center;
  background-color: #ff9800;
  color: #fff;
  margin: 0;
  padding: 2rem;
}
.sec_feature .content .feature p {
  padding: 1rem;
}
@media screen and (max-width: 768px) {
  .sec_feature .content .feature p {
    text-align: center;
  }
}
.sec_feature .content .feature .zeroyen_img {
  display: flex;
  justify-content: center;
}
.sec_feature .content .feature .zeroyen_img img {
  max-width: 50%;
  height: auto;
}

.sec_onayami {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 1em;
  background-color: #fff4e2;
  position: relative;
}
.sec_onayami .wrapper1200 {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.sec_onayami .wrapper1200 .kumadon_kaiketsu {
  position: absolute;
  bottom: 0;
  right: -10%;
  z-index: 999;
  max-width: 500px;
}
@media screen and (max-width: 768px) {
  .sec_onayami .wrapper1200 .kumadon_kaiketsu {
    right: 0;
    max-width: 100px;
  }
}
.sec_onayami .triangle {
  max-width: 100%;
  height: auto;
}
.sec_onayami .nayamis {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.sec_onayami .nayamis .nayami {
  background-color: #fff;
  border: 3px dashed #bdbdbd;
  border-radius: 1em;
  margin: 0.5em;
  width: calc(33.3333333333% - 3em - 6px);
  aspect-ratio: 2/1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec_onayami .nayamis .nayami {
    width: calc(50% - 2em);
  }
}
@media screen and (max-width: 768px) {
  .sec_onayami .nayamis .nayami {
    font-size: 1em;
  }
}
.sec_onayami .nayamis .nayami img {
  position: absolute;
  top: -10%;
  left: -5%;
  width: 20%;
  z-index: 999;
}
.sec_onayami p {
  color: #ff9800;
  font-weight: bold;
}
.sec_onayami .appeal_message {
  font-size: 2rem;
}

.sec_reason {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1em;
}
.sec_reason .reasons {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch; /* .reasonの高さを揃える */
}
.sec_reason .reasons .reason {
  display: flex;
  flex-direction: column; /* 縦方向に要素を配置 */
  padding: 1em;
  width: calc(33.3333333333% - 2em);
}
@media screen and (max-width: 768px) {
  .sec_reason .reasons .reason {
    width: 100%;
    padding: 0;
  }
}
.sec_reason .reasons .reason h3 {
  min-height: 4em;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ff9800;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  margin-top: 0;
  padding: 0 1em;
}
.sec_reason .reasons .reason p {
  margin-top: 0;
}

.sec_voices {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sec_voices .content {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}
.sec_voices .content .voice {
  width: calc(50% - 2em);
  padding: 1em;
}
@media screen and (max-width: 768px) {
  .sec_voices .content .voice {
    width: 100%;
    padding: 0;
  }
}
.sec_voices .content .voice img {
  max-width: 100%;
  height: auto;
}

.sec_kidsspace {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec_kidsspace {
    padding: 1em;
  }
}
.sec_kidsspace .content {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sec_kidsspace .content {
    flex-wrap: wrap;
  }
}
.sec_kidsspace .content img,
.sec_kidsspace .content p {
  margin: 1em;
}
.sec_kidsspace .content img {
  width: 50%;
  border-radius: 1em;
}
@media screen and (max-width: 768px) {
  .sec_kidsspace .content img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .sec_kidsspace .content p {
    margin: 0;
  }
}

.sec_faq .content {
  flex-direction: column;
}
.sec_faq .content details {
  width: 100%;
  font-size: 1rem;
}
.sec_faq .content details summary {
  background-color: #ffb74d;
  border-radius: 1rem;
  margin-bottom: 1rem;
  padding: 0 1rem;
  color: #fff;
  cursor: pointer;
  padding: 1rem;
}
.sec_faq .content details h3 {
  display: inline;
}
@media screen and (max-width: 768px) {
  .sec_faq .content details h3 {
    font-size: 1rem;
  }
}
.sec_faq .content details p {
  padding-left: 2rem;
}

.sec_muryousoudan {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1em;
}
.sec_muryousoudan .sessions {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .sec_muryousoudan .sessions {
    justify-content: center;
  }
}
.sec_muryousoudan .sessions .session {
  padding: 1em;
  width: calc(33.3333333333% - 2em);
  position: relative;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec_muryousoudan .sessions .session {
    width: calc(100% - 2em);
    padding: 0;
  }
}
.sec_muryousoudan .sessions .session p {
  float: left;
  margin-bottom: 30%;
}
.sec_muryousoudan .sessions .session img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30%;
  height: auto;
}

#reserve form {
  width: 100%;
}
#reserve form h3 {
  display: inline;
  text-wrap: nowrap;
  padding: 1rem;
  margin: 0;
  padding: 0;
  font-size: 1rem;
}
#reserve form h3 span {
  color: red;
  font-weight: bold;
}
#reserve form input {
  width: 100%;
  display: block;
  font-size: 1.5rem;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #c0c0c0;
  border-radius: 5px;
}
#reserve form input[type=submit] {
  border: none;
}
#reserve form button {
  width: 100%;
  border: none;
  background-color: #f44336;
  color: #fff;
  padding: 1rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: bold;
}

p {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 1rem;
  }
}

.fixed_footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  z-index: 9999;
}
@media screen and (min-width: 769px) {
  .fixed_footer {
    display: none;
  }
}
.fixed_footer .tel_button {
  width: 50%;
  background-color: #9C27B0;
  color: #fff;
  padding: 1em;
  text-decoration: none;
  display: block;
  text-align: center;
  border: 2px solid #fff;
}
.fixed_footer .line_button {
  width: 50%;
  background-color: #00b900;
  color: #fff;
  padding: 1em;
  text-decoration: none;
  display: block;
  text-align: center;
  border: 2px solid #fff;
  border-left: none;
}/*# sourceMappingURL=style.css.map */