@charset "UTF-8";
html {
  font-size: 14px;
  scroll-behavior: smooth;
  font-family: YakuHanJP, "Noto Sans JP";
}

body {
  margin: 0;
  width: 100vw;
  overflow-x: hidden;
  background-color: #fff;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.2rem;
}

p {
  letter-spacing: 0.2rem;
  font-weight: bold;
  margin: 0;
  font-size: 1rem;
  line-height: 1.3rem;
  font-weight: 400;
}

h2 span,
p span,
a span {
  display: inline-block;
}

ul {
  padding: 0;
}

li {
  list-style-type: none;
}

img,
picture,
iframe {
  vertical-align: top;
  width: 100%;
}

a {
  text-decoration: none;
  outline: none;
  letter-spacing: 0.2rem;
}

.flex {
  display: flex;
}

.boxouter {
  width: 75%;
  margin: 0 auto;
  max-width: 1200px;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.puresent-pc {
  display: block;
}

.puresent-sp {
  display: none;
}

.box-w {
  background-color: #ffffff;
  border: 0.2em solid #302d2c;
  border-radius: 15px;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.16);
  text-align: center;
  padding: 100px 5%;
  position: relative;
}
@media screen and (max-width: 550px) {
  .box-w {
    padding: 50px 5%;
  }
}

.btn-form {
  background-image: url("../img/btnBg-form.webp");
  background-size: cover;
  background-position: left;
  border-radius: 100px;
  position: relative;
  transition: 0.3s;
}
.btn-form .btn-form__border {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 0.3em solid #7FC3BF;
  border-radius: 100px;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0.5em 0.5em 5px rgba(0, 0, 0, 0.2));
}
.btn-form p {
  font-size: 1.7em;
  padding: 0.8em;
  color: #fff;
  text-align: center;
  display: block;
}
.btn-form p span {
  line-height: 1;
}
.btn-form:hover {
  transform: translate(0.5em, 0.5em);
}
.btn-form:hover .btn-form__border {
  filter: drop-shadow(0.5em 0.5em 5px rgba(0, 0, 0, 0));
}

.house-bg {
  width: 100%;
  background-image: url("../img/top-bg.svg");
  background-size: cover;
  background-position: 0px 0;
  height: 80vh;
  animation: bg 180s infinite linear;
}
@media (max-aspect-ratio: 1/1) {
  .house-bg {
    height: 80vh;
  }
}
@media screen and (max-width: 550px) {
  .house-bg {
    height: 80vh;
  }
}
@keyframes bg {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -2500px 0;
  }
}

.header-con {
  position: absolute;
  width: 100%;
}
.header-con header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2em;
}
.header-con header h1 {
  width: 30%;
  max-width: 450px;
  min-width: 250px;
}

/*========= ナビゲーションのためのCSS ===============*/
.top {
  position: relative;
  z-index: -1;
}
.top .top-list .img {
  width: 95%;
  max-width: 2000px;
  height: 100%;
  max-height: calc(90vh - 100px);
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top .top-list .img img {
  height: 100%;
  object-fit: contain;
}
.top .top-list .img:nth-of-type(1) {
  z-index: 1;
}
.top .top-list .img:nth-of-type(3) {
  z-index: 1;
}
@media (max-aspect-ratio: 1/1) {
  .top .top-list .img:nth-of-type(3) {
    max-height: 40vh;
    top: 13%;
    transform: translate(-50%, 0);
  }
}
@media screen and (max-width: 380px) {
  .top .top-list .img:nth-of-type(3) {
    max-height: 40vh;
  }
}
.top .top-list .img:nth-of-type(4) {
  z-index: 2;
}
.top .top-list .img-right {
  width: 20%;
  max-width: 250px;
  position: absolute;
  bottom: 2%;
  right: 2%;
}
.top .top-list .img-right img {
  height: 100%;
  max-height: 25vh;
}

.worries-bg {
  background-color: #FBF4DB;
}
.worries-bg .worries-deco {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  max-width: 1630px;
}
.worries-bg .worries-deco .deco1,
.worries-bg .worries-deco .deco2,
.worries-bg .worries-deco .deco3 {
  position: absolute;
}
.worries-bg .worries-deco .deco1 {
  padding-top: calc(10% + 100px);
  right: 0;
  width: 11%;
  max-width: 180px;
}
.worries-bg .worries-deco .deco2 {
  padding-top: calc(10% + 280px);
  right: 2%;
  width: 15%;
  max-width: 250px;
}
.worries-bg .worries-deco .deco3 {
  padding-top: calc(10% + 350px);
  left: 0;
  width: 14%;
  max-width: 230px;
}
.worries-bg .worries-deco .deco3 img {
  transform: rotate(180deg);
}
.worries-bg .worries {
  padding: 6% 0;
}
.worries-bg .worries-intro {
  display: none;
  margin: 10px 0 40px;
}
@media (max-aspect-ratio: 1/1) {
  .worries-bg .worries-intro {
    display: block;
  }
}
.worries-bg .worries .box-w {
  border: 0.2em solid #DFB03C;
  box-shadow: 10px 10px 0 #F5E8BB;
}
.worries-bg .worries .worries1 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.worries-bg .worries .worries1 h2 {
  color: #DFB03C;
  border-bottom: 0.1em dotted #DFB03C;
  font-size: 2em;
  margin-bottom: 50px;
  padding-bottom: 25px;
}
.worries-bg .worries .worries1 p {
  font-size: 1.438em;
  line-height: 1.2em;
}
.worries-bg .worries .worries1 .list-flex {
  width: 85%;
  display: flex;
  gap: 0.5rem;
  text-align: center;
  margin: 2em auto;
}
.worries-bg .worries .worries1 .list-flex .dot {
  width: 1.3em;
  min-width: 1.3em;
  height: 1.3em;
  background-color: #479F9B;
  border-radius: 50%;
  display: block;
  margin-top: 0.2rem;
}
.worries-bg .worries .worries1 .list-flex p {
  text-align: left;
}
.worries-bg .worries .worries1 p.nado {
  width: 85%;
  text-align: end;
}
.worries-bg .worries .deco1 {
  position: absolute;
  width: 34%;
  max-width: 400px;
  min-width: 80px;
  bottom: -10%;
  right: -6%;
}
.worries-bg .worries .deco2 {
  position: absolute;
  width: 12%;
  max-width: 110px;
  min-width: 60px;
  bottom: -3%;
  left: 1%;
}
.worries-bg .worries .yazirusi {
  width: 10%;
  min-width: 80px;
  margin: -3% auto 0;
}
.worries-bg .worries .worries2_ttl {
  text-align: center;
  color: #b63f53;
  font-size: 2rem;
  font-weight: bold;
  line-height: initial;
  margin-bottom: 1rem;
  margin-top: 3.5rem;
}
.worries-bg .worries .worries2_sub {
  text-align: center;
  font-size: 1.2rem;
  line-height: initial;
}
.worries-bg .worries .worries2.flex {
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  gap: 2%;
  margin-top: 3.5rem;
  display: flex;
}
.worries-bg .worries .worries2.flex.worries3 {
  margin-top: 0.8rem;
  z-index: 1;
  flex-direction: row-reverse;
}
.worries-bg .worries .worries2.flex.worries3 .sannkaku {
  transform: rotate(180deg);
}
.worries-bg .worries .worries2.flex > div {
  width: 100%;
  aspect-ratio: 5.5/4;
  box-sizing: border-box;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.worries-bg .worries .worries2.flex > div.iro {
  background-color: #b63f5394;
}
.worries-bg .worries .worries2.flex > div.sannkaku {
  background: 0 0;
  width: 10%;
  padding: 0;
  margin: -3%;
  position: relative;
  z-index: 1;
}
.worries-bg .worries .worries2.flex > div .down {
  width: 10%;
  position: absolute;
  bottom: 0;
  transform: translateY(65%) rotate(90deg);
}
.worries-bg .worries .worries2.flex p {
  font-size: 1.75em;
  line-height: 170%;
  color: #302d2c;
  font-weight: bold;
}
.worries-bg .worries .worries2.flex p span.inline {
  display: inline-block;
}
.worries-bg .worries .worries2.flex p span.iro {
  color: #b63f53;
  font-size: 1.1em;
}
.worries-bg .worries .worries2.flex p span.iro-w {
  color: #fff;
  font-size: 1.1em;
}
.worries-bg .worries .worries2.flex p span.S {
  font-size: 0.8em;
}
.worries-bg .worries .worries2.flex .nmb {
  position: absolute;
  width: 40%;
  z-index: -1;
  mix-blend-mode: multiply;
}
.worries-bg .worries .btn-form {
  margin-top: 10%;
}

.overview-bg {
  background-color: #F5E8BB;
}
.overview-bg .overview {
  padding: 6% 0;
}
.overview-bg .overview .overview__list {
  position: relative;
}
.overview-bg .overview .overview__list .list-flex {
  display: flex;
  align-items: baseline;
  gap: 2%;
  margin: 1em 0;
}
.overview-bg .overview .overview__list .list-flex p {
  font-size: 1.4em;
  line-height: 150%;
}
.overview-bg .overview .overview__list .list-flex p span.block {
  display: block;
  font-size: 0.7em;
  line-height: 200%;
  margin-top: 0.5rem;
  line-height: 150%;
}
.overview-bg .overview .overview__list .list-flex p span.block.kome {
  padding-left: 1.25em;
  margin: 0;
}
.overview-bg .overview .overview__list .list-flex p:nth-of-type(1) {
  width: 30%;
  max-width: 200px;
  background-color: #fff;
  border: 0.15em solid #302d2c;
  border-radius: 25px;
  padding: 0.8em;
  text-align: center;
}
.overview-bg .overview .overview__list .list-flex p:nth-of-type(2) {
  width: 100%;
}
.overview-bg .overview .overview__list .overview__deco1 {
  position: absolute;
  bottom: -10%;
  right: 0;
  width: 24%;
}
.overview-bg .overview .overview__teacher {
  width: 100%;
  max-width: 1440px;
  padding: 5%;
  align-items: center;
  gap: 5%;
  margin: 8% auto 0;
}
@media screen and (max-width: 920px) {
  .overview-bg .overview .overview__teacher {
    width: 80%;
    flex-direction: column;
    margin: 12% auto 0;
  }
}
.overview-bg .overview .overview__teacher.box-w {
  display: flex;
  border: 0.3em solid #DFB03C;
}
.overview-bg .overview .overview__teacher--list {
  width: 100%;
  display: flex;
  gap: 5%;
}
.overview-bg .overview .overview__teacher .img {
  position: relative;
  width: 100%;
}
.overview-bg .overview .overview__teacher .img .kousi {
  width: 50%;
  max-width: 250px;
  position: absolute;
  top: -20%;
  left: -20%;
}
.overview-bg .overview .overview__teacher .txt {
  width: 100%;
  text-align: left;
}
.overview-bg .overview .overview__teacher .txt .ttl {
  font-size: 1.28rem;
  line-height: 1.7em;
  letter-spacing: 0px;
  margin-top: 1.5rem;
}
.overview-bg .overview .overview__teacher .txt .ttl span {
  white-space: nowrap;
  display: block;
  line-height: 230%;
}
.overview-bg .overview .overview__teacher .txt .name {
  font-size: 2.25em;
  line-height: 1.7em;
  margin: 1rem 0 2rem 0;
}
@media screen and (max-width: 920px) {
  .overview-bg .overview .overview__teacher .txt .name {
    margin: 0 0 2rem 0;
  }
}
.overview-bg .overview .overview__teacher .txt .detail {
  font-size: 1em;
}
.overview-bg .overview .overview__teacher .txt .detail span {
  display: inline-block;
}
@media screen and (max-width: 920px) {
  .overview-bg .overview .overview__teacher .txt .detail span {
    display: inline;
  }
}
.overview-bg .overview .overview__teacher .txt > p {
  font-size: 1.188em;
  line-height: 2em;
}

.participate .ttl {
  width: 80%;
  background-color: #fff;
  border: 0.15em solid #302d2c;
  border-radius: 100px;
  padding: 1.5em 1em;
  text-align: center;
}
.participate .ttl h2 {
  font-size: 1.75em;
  line-height: 1.2em;
  white-space: nowrap;
}
.participate .ttl p {
  margin-top: 0.5em;
  font-size: 1.125em;
  line-height: 1.2em;
  white-space: nowrap;
}
@media screen and (max-width: 1900px) {
  .participate .ttl {
    font-size: 16px;
  }
  .participate .ttl h2 span,
.participate .ttl p span {
    display: block;
  }
}
@media screen and (max-width: 1650px) {
  .participate .ttl h2 span,
.participate .ttl p span {
    display: inline-block;
  }
}
@media screen and (max-width: 740px) {
  .participate .ttl {
    border-radius: 20px !important;
  }
  .participate .ttl h2 span,
.participate .ttl p span {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .participate .ttl {
    font-size: 12px;
  }
}
.participate .box {
  width: 70%;
}
.participate .day {
  margin: 3em 0;
}
.participate .participate1 .day {
  margin-bottom: 2em;
}
.participate .participate1 {
  background-color: #479F9B;
  width: 100%;
  padding-top: 6%;
  padding-bottom: 7%;
}
@media screen and (max-width: 1480px) {
  .participate .participate1 {
    padding-bottom: 6%;
  }
}
.participate .participate1 .kome {
  text-align: center;
  color: #fff;
  margin-top: 2rem;
  font-size: 1.125em;
}
.participate .participate1 .schedule {
  width: 70%;
  color: #fff;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1480px) {
  .participate .participate1 .schedule {
    justify-content: space-around;
  }
}
.participate .participate1 .schedule p {
  font-size: 1em;
  line-height: 1.7em;
  white-space: nowrap;
}
@media screen and (min-width: 1600px) {
  .participate .participate1 .schedule p {
    font-size: 1.3em;
  }
}
@media screen and (max-width: 1480px) {
  .participate .participate1 .schedule p {
    font-size: 1.45em;
  }
}
.participate .participate1 .schedule p.accent {
  background: #fff;
  color: #479F9B;
  font-size: 1.3em;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 30;
  padding: 10px 5px;
  margin-top: 1em;
  text-align: center;
}
.participate .participate1 .schedule .icon {
  position: relative;
  text-align: center;
  border-radius: 50%;
  aspect-ratio: 1/1;
  height: 30%;
  width: 30%;
  max-height: 250px;
  max-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #DFB03C;
}
.participate .participate1 .schedule .icon p {
  font-size: 1em;
  letter-spacing: 0;
  line-height: 1.4em;
}
@media screen and (min-width: 1600px) {
  .participate .participate1 .schedule .icon p {
    font-size: 1.3em;
  }
}
@media screen and (max-width: 1480px) {
  .participate .participate1 .schedule .icon p {
    font-size: 1.45em;
  }
}
.participate .participate1 .schedule .icon span {
  display: block;
}
.participate .participate1 .schedule .icon img {
  width: 6em;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(25%, 50%);
}
@media screen and (min-width: 2000px) {
  .participate .participate1 .schedule .icon img {
    min-width: 140px;
  }
}
@media screen and (max-width: 1480px) {
  .participate .participate1 .schedule .icon img {
    width: 10em;
  }
}
@media screen and (max-width: 520px) {
  .participate .participate1 .schedule .icon img {
    width: 70px;
  }
}
.participate .participate1 .puresent {
  width: 70%;
  text-align: center;
  color: #fff;
  border: 0.1em solid #fff;
  font-size: 1.125em;
  margin-top: 3em;
  padding: 1em;
}
.participate .participate1 .puresent p {
  font-size: 1em;
  line-height: 200%;
}
.participate .participate1 .puresentBtm {
  width: 70%;
  text-align: center;
  color: #fff;
}
.participate .participate1 .puresentBtm p {
  font-size: 1.438em;
  margin: calc(2rem + 3%) 3% 3%;
}
.participate .participate1 .map {
  width: 70%;
  margin-top: 3em;
  color: #fff;
  text-align: center;
}
.participate .participate1 .map p {
  font-size: 1.125em;
  line-height: 1.5em;
}
.participate .participate1 .map p:nth-of-type(1) {
  font-size: 1.438em;
  font-weight: bold;
  margin: 1em 0;
}
.participate .participate1 .box-w {
  margin-top: 10%;
  padding: 50px 5%;
}
.participate .participate1 .box-w > div {
  margin-bottom: 5%;
}
.participate .participate1 .box-w > div:last-of-type {
  margin-bottom: 0;
}
.participate .participate1 .box-w .ttl {
  width: 100%;
  border: none;
  padding: 0;
}
.participate .participate1 .box-w .txt p {
  width: 100%;
  text-align: left;
  color: #000;
  font-size: 0.8em;
  line-height: 2em;
  letter-spacing: 0.05em;
  margin-top: 1em;
}
.participate .participate2 {
  background-color: #DFB03C;
  width: 100%;
  padding-top: 6%;
  padding-bottom: 7%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.participate .participate2 .center {
  font-size: 1.563em;
  text-align: center;
  margin: 2em 0;
}
.participate .participate2 .step {
  width: 70%;
  text-align: center;
}
.participate .participate2 .step p:nth-of-type(1) {
  color: #fff;
  font-size: 1.563em;
  font-weight: bold;
  background-color: #302d2c;
  padding: 1em 0.5em;
}
.participate .participate2 .step p:nth-of-type(2) {
  font-size: 1.125em;
  line-height: 1.5em;
  background-color: #fff;
  padding: 1.8em 1em;
}
.participate .participate2 .step p:nth-of-type(2) .block {
  display: block;
}
.participate .participate2 .yazirusi {
  width: 5%;
  max-width: 40px;
  margin: -1% auto 1%;
}
.participate .participate2 .deco {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 68%;
}
.participate .participate2 .box-w {
  width: 70%;
  box-sizing: border-box;
  margin: 0 auto;
  margin-top: 7%;
  padding: 50px 5%;
}
@media screen and (max-width: 550px) {
  .participate .participate2 .box-w {
    width: 80%;
  }
}
.participate .participate2 .box-w .ttl {
  width: 100%;
  border: none;
  padding: 0;
  margin-bottom: 1em;
}
.participate .participate2 .box-w .txt {
  margin-top: 1em;
}
.participate .participate2 .box-w .txt p {
  width: 100%;
  text-align: left;
  color: #000;
  font-size: 0.8em;
  line-height: 2em;
  letter-spacing: 0.05em;
  margin-top: 1em;
}

.enquete-bg {
  position: relative;
  overflow: hidden;
}

.enquete-slide {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
}

.enquete {
  height: 100%;
  padding: 6% 0;
}
.enquete .telTxt {
  text-align: center;
}
.enquete .btn-form {
  margin: 3rem auto;
  color: #fff;
}
.enquete .btn-form:nth-of-type(2) {
  background-image: url(../img/btnBg-tel.svg);
}
@media screen and (max-width: 550px) {
  .enquete .btn-form:nth-of-type(2) {
    background-image: url(../img/btnBg-tel-sp.svg);
    background-position: center center;
    border-radius: 25px;
  }
}
.enquete .btn-form:nth-of-type(2) .btn-form__border {
  border: 0.15em solid #F5E8BB;
  color: #fff;
}
@media screen and (max-width: 550px) {
  .enquete .btn-form:nth-of-type(2) .btn-form__border {
    border: 0.18em solid #F5E8BB;
  }
}
.enquete .btn-form:nth-of-type(2) .btn-form__border * > {
  color: #fff;
}
.enquete .btn-form:nth-of-type(2) .icon {
  margin-right: 0.3em;
  height: 1em;
  width: 0.7em;
}
.enquete .btn-form:nth-of-type(2) .icon img {
  object-fit: contain;
}
.enquete .box-w {
  box-sizing: border-box;
  padding: 5% 7%;
  margin-top: 6em;
}
.enquete .box-w .ttl {
  position: relative;
  z-index: 1;
}
.enquete .box-w p {
  padding: 1em;
  font-size: 1.125em;
  line-height: 1.5em;
}
.enquete .box-w p:nth-of-type(1) {
  color: #fff;
  background-color: #b63f53;
  border-radius: 50px;
}

.footer-top {
  width: 100%;
  height: 1em;
  background-color: #302d2c;
}

footer.boxouter {
  background-color: #ffffff;
  width: 95%;
  max-width: initial;
}
footer.boxouter .footer-container {
  justify-content: space-between;
  align-items: center;
  padding: 1em 0;
}
footer.boxouter .footer-container .flex {
  justify-content: left;
  gap: 2em;
  flex-wrap: wrap;
}
footer.boxouter .footer-container .flex a {
  color: #1c2a53;
  font-size: 0.75em;
}
footer.boxouter .footer-container p {
  font-size: 0.75em;
}
footer.boxouter .footer-container p span {
  color: #1c2a53;
  font-family: "Montserrat", sans-serif;
}

@media screen and (max-width: 1500px) {
  footer.boxouter .footer-container {
    display: block;
    text-align: center;
  }
  footer.boxouter .footer-container .flex {
    display: flex;
    justify-content: center;
    gap: 1em;
    margin: 1em 0;
  }
}
@media screen and (max-width: 600px) {
  footer.boxouter .footer-container .flex {
    gap: 0.5em;
  }
  footer.boxouter .footer-container .flex a {
    text-align: left;
    font-size: 1em;
    width: 45%;
  }
}
@media (max-aspect-ratio: 1/1) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .top .top-list .img {
    width: 100%;
  }
  .top .top-list .img:nth-of-type(1), .top .top-list .img:nth-of-type(2) {
    max-height: 32vh;
    top: unset;
    bottom: 0;
    transform: translate(-50%, 0);
    padding-bottom: 0;
  }
}
@media screen and (max-width: 1480px) {
  .participate {
    display: block;
  }
  .participate .participate2 {
    position: initial;
  }
  .participate .participate2 .deco {
    position: initial;
    margin: 3% 4% 0 auto;
    width: 40%;
    max-width: 500px;
  }
}
@media screen and (max-width: 1360px) {
  .overview-bg .overview .overview__list .overview__deco1 {
    right: 0;
    width: 17%;
  }
}
@media screen and (min-width: 1255px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 1000px) {
  .header-con header {
    margin: 2em;
  }
  .header-con header h1 {
    width: 50%;
  }
  .header-con header .header-flex {
    display: none;
  }
  .header-con header .openbtn {
    display: block;
  }
}
@media screen and (max-width: 920px) {
  html {
    font-size: 14px;
  }

  .flex {
    display: block;
  }

  .puresent-pc {
    display: none;
  }

  .puresent-sp {
    display: block;
  }

  .worries-bg .worries .deco1 {
    top: 82%;
    right: -6%;
  }
  .worries-bg .worries .worries2.flex {
    flex-wrap: wrap;
    max-width: 500px;
    margin: 3.5rem auto 0;
  }
  .worries-bg .worries .worries2.flex.worries3 .sannkaku {
    transform: rotate(90deg);
  }
  .worries-bg .worries .worries2.flex > div {
    margin-bottom: 2%;
    aspect-ratio: 2/1;
  }
  .worries-bg .worries .worries2.flex > div.sannkaku {
    transform: rotate(90deg);
    margin: -4.5% -3% -3%;
  }
  .worries-bg .worries .worries2.flex .worries2-sp {
    display: none;
  }
  .worries-bg .worries .worries2.flex .nmb {
    width: 25%;
  }

  .overview-bg .overview .overview__list .list-flex {
    display: block;
    text-align: center;
  }
  .overview-bg .overview .overview__list .list-flex p:nth-of-type(1) {
    width: 100%;
    max-width: initial;
    margin: 2em auto 0.5em;
    padding: 0.5em 0;
  }
  .overview-bg .overview .overview__list .overview__deco1 {
    position: initial;
    width: 30%;
    margin: 6% 5% 0 auto;
  }
  .overview-bg .overview .overview__list .overview__deco2 {
    bottom: -100px;
  }
  .overview-bg .overview .overview__teacher .img .kousi {
    width: 40%;
    max-width: 250px;
    position: absolute;
    top: -10%;
    left: -10%;
  }
  .overview-bg .overview .overview__teacher .txt .ttl {
    text-align: center;
    margin-top: 1.5em;
  }
  .overview-bg .overview .overview__teacher .txt .name {
    text-align: center;
  }

  .participate .boxouter {
    width: 80% !important;
  }
  .participate .participate1 .schedule {
    margin: 2em auto 3em;
  }
  .participate .participate1 .schedule .icon {
    border-radius: 50px;
    aspect-ratio: initial;
    height: initial;
    width: 100%;
    max-width: initial;
    padding: 1em 0;
    box-sizing: border-box;
    margin-top: 1em;
  }
  .participate .participate1 .schedule .icon span {
    display: inline-block;
  }
  .participate .participate1 .puresent {
    width: 100%;
    margin: 2em auto;
    padding: 0;
    border: none;
  }
  .participate .participate1 .puresent p {
    font-size: 1.1em;
    white-space: normal;
  }
  .participate .participate1 .puresent span {
    display: block;
    line-height: 250%;
  }
  .participate .participate1 .puresent .line {
    border-bottom: 1px solid;
  }

  .enquete .box-w {
    padding: 5% 2%;
  }
}
@media screen and (max-width: 560px) {
  .btn-form {
    border-radius: 20px;
  }
  .btn-form .btn-form__border {
    border-radius: 30px;
    filter: drop-shadow(0.5em 0.5em 5px rgba(0, 0, 0, 0.4));
  }
}
@media screen and (max-width: 500px) {
  html {
    font-size: 10px;
  }

  .boxouter {
    width: 90%;
  }
}
@media screen and (max-width: 380px) {
  .participate .ttl h2 {
    font-size: 1.5em;
  }
  .participate .participate1 .schedule .puresent p {
    font-size: 1.2em;
  }

  .participate .participate2 .step p:nth-of-type(1) {
    font-size: 1.2em;
  }
}
.fadeIn,
.fadeUp {
  opacity: 0;
}

.delay-time02 {
  animation-delay: 0.2s;
}

.delay-time04 {
  animation-delay: 0.4s;
}

.delay-time06 {
  animation-delay: 0.6s;
}

.delay-time08 {
  animation-delay: 0.8s;
}

.delay-time10 {
  animation-delay: 1s;
}

.delay-time12 {
  animation-delay: 1.2s;
}

.delay-time15 {
  animation-delay: 1.5s;
}

.fadeIn.on {
  animation-duration: 1.5s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: running;
  animation-name: fadein;
  opacity: 0;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeUp.on {
  animation-name: fadeUp;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(5%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}