@charset "UTF-8";
/*スマホファーストの書き方*/
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  background-color: #fff;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

.main,
footer {
  width: 100%;
  max-width: 375px;
  margin: auto;
  background-color: #fff;
}
@media (max-width: 768px) {
  .main,
  footer {
    max-width: 768px;
  }
}

.btn_wrapper {
  position: relative;
  margin-top: 6vw;
}

.btn_fukidashi {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  display: inline-block;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.7;
  padding: 8px 11px;
  color: #353535;
  background-color: #EFF864;
  z-index: 1;
}
@media (max-width: 768px) {
  .btn_fukidashi {
    font-size: 3.7333333333vw;
    top: -8px;
    transform: translate(-50%, -66%);
  }
}
.btn_fukidashi::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  border-top: 13px solid #eff864;
  border-bottom: 0;
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
}

.cta {
  width: 330px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  line-height: 1.4;
  color: #fff;
  background-image: linear-gradient(90deg, rgb(255, 165, 140) 0%, rgb(255, 105, 63) 32%, rgb(255, 165, 140) 66%, rgb(255, 105, 63));
  background-size: 300% 100%;
  background-position: right;
  margin: auto;
  border-radius: 100px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0px 4px 10px 0px rgba(185, 83, 37, 0.3);
}
@media (max-width: 768px) {
  .cta {
    width: 88vw;
    height: 18.6666666667vw;
    max-width: initial;
    max-height: initial;
  }
}
.cta .icon {
  position: absolute;
  top: 13px;
  right: 17px;
  width: 33px;
}
@media (max-width: 768px) {
  .cta .icon {
    top: 4.5vw;
    right: 5vw;
    width: 8vw;
  }
}

.cta::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #b5e7ff;
  transition: 300ms;
  animation: shinyshiny 2.5s ease-in-out infinite;
}

@-webkit-keyframes shinyshiny {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.cta_text {
  display: inline-block;
  width: 200px;
}
@media (max-width: 768px) {
  .cta_text {
    width: 55vw;
  }
}
.cta_text img {
  vertical-align: bottom;
}

.btn_click {
  position: absolute;
  right: -11px;
  bottom: 0;
  width: 28px;
}
@media (max-width: 768px) {
  .btn_click {
    right: -11px;
    bottom: 0;
    width: 8vw;
  }
}

.bg_pc {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: -1;
}
.bg_pc img {
  height: 100%;
  object-fit: cover;
  object-position: top left;
}
.bg_pc .logo_mv {
  position: fixed;
  width: 10.8333333333vw;
  max-width: 156px;
  height: auto;
  object-fit: contain;
  z-index: 1;
  top: 63px;
  left: 50px;
}

.mv {
  position: relative;
}
.mv .btn_wrapper {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.lead_point {
  margin-top: -40px;
}

.lead_bottom {
  margin-top: -20px;
}

.nayami {
  position: relative;
  z-index: 1;
}
.nayami::after {
  content: "";
  display: block;
  width: 100%;
  background-image: url(../img/nayami_bottom.png);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  height: 60px;
  background-size: 140%;
  bottom: -56px;
}
@media (max-width: 768px) {
  .nayami::after {
    height: 20vw;
    background-size: 112% 100%;
    bottom: -17vw;
  }
}

.voice {
  position: relative;
}

.voicelist {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0px;
  width: 310px;
  position: absolute;
  top: 260px;
  left: 50%;
  transform: translate(-50%);
}
@media (max-width: 768px) {
  .voicelist {
    width: 83vw;
    top: 69vw;
  }
}

.voice .btn_wrapper {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .voice .btn_wrapper {
    bottom: 14vw;
    left: 50%;
    transform: translateX(-50%);
  }
}

.content {
  padding-bottom: 50px;
  position: relative;
}
.content > img {
  width: 89.0666666667%;
  margin-inline: auto;
}
.content .btn_wrapper {
  margin-top: 74px;
}
@media (max-width: 768px) {
  .content .btn_wrapper {
    margin-top: 15vw;
  }
}
.content .btn_wrapper .btn_click {
  right: 10px;
}

.curriculum {
  position: relative;
}

.curriculum_list {
  list-style: none;
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 38px;
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .curriculum_list {
    top: 48vw;
    width: 94.5vw;
    max-width: none;
  }
}

.price {
  position: relative;
}
.price .btn_wrapper {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}

.detail {
  padding: 60px 0;
}
.detail > img {
  width: 88%;
  margin-inline: auto;
}

.voice_02 {
  position: relative;
}
.voice_02 .voicelist {
  width: 100%;
  max-width: 320px;
  top: 200px;
  row-gap: 10px;
}
@media (max-width: 768px) {
  .voice_02 .voicelist {
    width: 87vw;
    max-width: none;
    top: 52vw;
    row-gap: 4px;
  }
}

.price {
  background-image: url(../img/price_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.about {
  padding-top: 50px;
  padding-bottom: 38px;
  overflow: hidden;
}
.about .btn_wrapper {
  margin-top: -130px;
}
@media (max-width: 768px) {
  .about .btn_wrapper {
    margin-top: -35vw;
  }
}
.about .btn_wrapper .btn_click {
  position: absolute;
  right: 11px;
  bottom: 0;
  width: 28px;
}

footer {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
}
footer a {
  color: #000;
  font-size: 14px;
  display: block;
}
footer a:hover {
  opacity: 0.7;
}
footer a:not(:last-child) {
  margin-bottom: 10px;
}

.footer_logo {
  margin-top: 30px;
  margin-bottom: 10px;
}

.inner {
  width: 75%;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .inner {
    width: 90%;
  }
}

.page {
  color: #353535;
  font-size: 14px;
  line-height: 2;
}
.page .header {
  background-color: #EFFAFF;
  height: 80px;
  display: flex;
  align-items: center;
}
.page .header_logo {
  width: 5.5555555556%;
  max-width: 61px;
  min-width: 50px;
}
.page .main {
  max-width: none;
}
.page .main .inner {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .page .main .inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.page footer {
  max-width: none;
  border-top: 1px solid #E4F7FF;
}

.page_title {
  text-align: center;
  font-size: 32px;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  line-height: 1.6;
  color: #FF9274;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .page_title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

.privacy_inner {
  width: 72.2222222222%;
  max-width: 780px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .privacy_inner {
    width: 100%;
  }
}
.privacy_inner a {
  text-decoration: underline;
  color: #353535;
}

.privacy_lead {
  line-height: 1.8;
  margin-bottom: 20px;
}

.privacy_list_title {
  font-family: "游明朝", "YuMincho", serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #000;
}
@media (max-width: 768px) {
  .privacy_list_title {
    font-size: 18px;
  }
}

.privacy_list_item ol {
  list-style-type: decimal;
  padding-inline-start: 24px;
}

.privacy_list_item:not(:last-child) {
  margin-bottom: 20px;
}

.term_inner {
  width: 100%;
  max-width: 730px;
  margin: 0 auto;
}

.term_table {
  color: #000;
  font-size: 16px;
}
.term_table > div {
  display: flex;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #D6D6D6;
}
@media (max-width: 768px) {
  .term_table > div {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.term_table dt {
  flex-basis: 210px;
  letter-spacing: -0.022em;
}
@media (max-width: 768px) {
  .term_table dt {
    flex-basis: auto;
    padding-bottom: 8px;
  }
}
.term_table dd {
  flex-basis: 520px;
  padding-left: 20px;
}
@media (max-width: 768px) {
  .term_table dd {
    flex-basis: auto;
    padding-left: 0;
  }
}
.term_table a {
  text-decoration: none;
  color: inherit;
}/*# sourceMappingURL=style.css.map */