header {
  position: fixed;
  height: 72px;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #1E2430;
  z-index: 100;
}

#header-box {
  margin: auto;
  max-width: 1400px;
  height: 90px;
  display: flex;
  position: relative;
}
#header-box .sp-nav {
  display: none;
}
#header-box .logo-area {
  display: flex;
  margin-top: 10px;
  margin-left: 10px;
  cursor: pointer;
}
#header-box .logo-area__img img {
  position: absolute;
  height: 50px;
}
#header-box .logo-area__txt {
  position: absolute;
  left: 200px;
  color: #ffffff;
  top: 15px;
}
#header-box .logo-area__txt-top {
  font-size: 14px;
  font-weight: 600;
}
#header-box .logo-area__txt-access {
  font-size: 14px;
  font-weight: 600;
}
#header-box .menu-area {
  position: absolute;
  right: 0;
  display: flex;
  justify-content: flex-end;
  font-size: 16px;
}
#header-box .menu-area__items-main {
  display: flex;
  font-weight: 600;
}
#header-box .menu-area__item-main {
  list-style: none;
  margin-right: 30px;
}
#header-box .menu-area__item-main a {
  color: #ffffff;
  line-height: 72px;
  cursor: pointer;
}
#header-box .menu-area__form {
  margin-top: 11px;
  line-height: 30px;
  width: 180px;
  height: 50px;
  background-color: #FDF150;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  margin-right: 20px;
}
#header-box .menu-area__form a {
  color: #1E2430;
  font-weight: 600;
  font-size: 16px;
}

@media screen and (max-width: 1066px) {
  header {
    height: 55px;
  }
  #header-box {
    background-color: #1E2430;
    position: fixed;
    width: 100%;
    height: 55px;
    top: 0;
  }
  #header-box .menu-area {
    display: none;
  }
  #header-box .logo-area {
    margin-left: 10px;
  }
  #header-box .logo-area img {
    height: 35px;
    top: 10px;
    left: 2px;
  }
  #header-box .logo-area__txt {
    left: 135px;
    top: 10px;
  }
  #header-box .logo-area__txt-top {
    font-size: 12px;
  }
  #header-box .logo-area__txt-access {
    font-size: 12px;
  }
  #header-box .form-area {
    margin-top: 2px;
  }
  #header-box .sp-nav {
    display: block;
  }
  #header-box .sp-nav .menu-btn {
    position: fixed;
    font-size: 30px;
    top: 0px;
    right: 0px;
    z-index: 10;
    border: none;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    background-color: inherit;
  }
  #sp-menu nav {
    display: block;
    position: fixed;
    top: 0;
    right: -300px;
    bottom: 0;
    width: 300px;
    background: #1E2430;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: 0.5s;
    z-index: 15;
  }
  #sp-menu nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #sp-menu nav ul li {
    position: relative;
    margin: 0;
    border-bottom: 1px solid #ffffff;
  }
  #sp-menu nav ul li a {
    display: block;
    color: #ffffff;
    font-size: 14px;
    padding: 20px 1em;
    text-decoration: none;
    transition-duration: 0.2s;
  }
  #sp-menu .sp-menu__toggle-btn {
    display: block;
    position: fixed;
    top: 14px;
    right: 6px;
    width: 30px;
    height: 30px;
    transform: translate(0, 0);
    transition: all 0.5s;
    cursor: pointer;
    z-index: 15;
  }
  #sp-menu .sp-menu__toggle-btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.5s;
  }
  #sp-menu .sp-menu__toggle-btn span:nth-child(1) {
    top: 5px;
  }
  #sp-menu .sp-menu__toggle-btn span:nth-child(2) {
    top: 12px;
  }
  #sp-menu .sp-menu__toggle-btn span:nth-child(3) {
    top: 19px;
  }
  .sp-menu__btn-area {
    text-align: center;
    margin-top: 70px;
    margin-left: auto;
    margin-right: auto;
    width: 265px;
  }
  .sp-menu__trial-btn {
    background-color: #FDF150;
    display: inline-block;
    width: 265px;
    height: 58px;
    font-size: 17px;
    font-weight: 500;
    line-height: 58px;
    border-radius: 7px;
    color: #1E2430;
    margin-bottom: 25px;
  }
  .sp-menu__sns-area {
    display: flex;
    justify-content: space-between;
  }
  .sp-menu__sns-btn {
    display: inline-block;
    position: relative;
  }
  .sp-menu__sns-btn img {
    width: 128px;
  }
  .sp-menu__sns-btn span {
    position: absolute;
    color: #ffffff;
    top: 0;
    left: 50%;
    line-height: 30px;
    transform: translate(-50%, 0);
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    letter-spacing: 1.05px;
    display: flex;
  }
  .sp-menu__sns-btn span i {
    margin-right: 5px;
  }
  #sp-menu.open nav {
    right: 0px;
  }
  #sp-menu.open .sp-menu__toggle-btn {
    right: 310px;
  }
  #sp-menu.open .sp-menu__toggle-btn span {
    background-color: #fff;
    width: 30px;
    display: block;
  }
  #sp-menu.open .sp-menu__toggle-btn span:nth-child(1) {
    transform: translate(0, 7px) rotate(-45deg);
    animation: unset;
  }
  #sp-menu.open .sp-menu__toggle-btn span:nth-child(2) {
    opacity: 0;
    animation: unset;
  }
  #sp-menu.open .sp-menu__toggle-btn span:nth-child(3) {
    transform: translate(0, -7px) rotate(45deg);
    animation: unset;
  }
  #sp-menu.open .sp-menu__nav-mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.8;
    z-index: 12;
    cursor: pointer;
    transition: all 0.5s;
  }
}
a {
  text-decoration: none;
  color: #000000;
  cursor: pointer;
}

ul {
  padding: 0;
  margin: 0;
}

body {
  margin: 0;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 400;
  font-style: normal;
}

section {
  text-align: center;
  max-width: 1080px;
  margin: auto;
  padding-top: 50px;
}

section.w100 {
  max-width: 100vw;
}

.section-top {
  margin-bottom: 50px;
}
.section-top__title {
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 38px;
}
.section-top__title--green {
  color: #5EB064;
}
.section-top__title--pink {
  color: #C73281;
}
.section-top__title--orange {
  color: #E9AB2A;
}
.section-top__title--jp {
  font-size: 18px;
  display: block;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.section-top__txt {
  font-size: 18px;
  line-height: 28px;
}

.cta {
  max-width: 980px;
  margin: auto;
  margin-bottom: 50px;
}
.cta:hover {
  cursor: pointer;
}
.cta .sp-none-cta {
  width: 100%;
  border-radius: 7px;
  border: 2px solid #5EB064;
}
.cta .pc-none-cta {
  display: none;
}

.pc-none {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc-none {
    display: block;
  }
  .sp-none {
    display: none;
  }
  section {
    padding: 0 10px;
  }
  .section-top {
    text-align: left;
    padding-top: 15px;
  }
  .section-top__title {
    font-size: 32px;
    line-height: 28px;
  }
  .section-top__title--jp {
    font-size: 18px;
  }
  .section-top__txt {
    font-size: 16px;
  }
  .about .section-top {
    padding-top: 0;
  }
  .cta .sp-none-cta {
    display: none;
  }
  .cta .pc-none-cta {
    display: block;
    width: 100%;
    border-radius: 5px;
    border: 2px solid #5EB064;
  }
}
.more-btn {
  border: 1px solid #000;
  width: 180px;
  height: 45px;
  border-radius: 50px;
  display: inline-block;
  font-family: "futura-pt", sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 50px;
}
.more-btn span {
  line-height: 45px;
  position: relative;
}
.more-btn span i {
  position: absolute;
  right: -50px;
}
.more-btn:hover {
  background-color: #5EB064;
  border-color: #5EB064;
  color: #ffffff;
  transition: all 0.3s;
}
.more-btn--pink:hover {
  background-color: #C73281;
  border-color: #C73281;
}

.key-visual {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100vw;
  height: 90vh;
  overflow: hidden;
  margin-top: 72px;
  margin-bottom: 50px;
}
.key-visual__video {
  width: 100%;
  height: 90vh;
}
.key-visual__video video {
  width: 100%;
  height: 90vh;
  object-fit: cover;
}
.key-visual__video::after {
  position: absolute;
  z-index: 1;
  top: -6px;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.3);
}
.key-visual__txt {
  position: absolute;
  z-index: 10;
  color: #ffffff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% - 20px));
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 36px;
  text-align: center;
  width: 100%;
}
.key-visual__txt--jp {
  display: block;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 16px;
}
.key-visual__deco {
  height: 0;
}
.key-visual__deco-bg {
  position: relative;
  bottom: 21px;
  width: 100%;
  margin: 0 auto;
  z-index: 50;
}
.key-visual__deco-bg img {
  height: 22px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  overflow: hidden;
}
.key-visual__deco-scroll {
  position: relative;
  color: #ffffff;
  top: -47px;
  z-index: 10;
  font-family: "futura-pt", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  text-align: center;
}
.key-visual__deco-scroll img {
  position: absolute;
  width: 30px;
  left: 50%;
  transform: translate(-50%, 0%);
  top: 22px;
}

@media screen and (max-width: 1066px) {
  .key-visual {
    margin-top: 55px;
    height: 91vh;
  }
  .key-visual__txt {
    font-size: 32px;
  }
  .key-visual__txt--jp {
    font-size: 14px;
  }
}
.about {
  position: relative;
  margin-bottom: 50px;
}

.about-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.about-item {
  width: 330px;
  height: 425px;
  border-radius: 7px;
  border: 2px solid #E9AB2A;
  margin: 0 15px 60px 15px;
}
.about-item__img-area {
  width: 100%;
}
.about-item__img-area img {
  width: 100%;
  border-radius: 5px 5px 0 0;
}
.about-item__txt-area {
  padding: 10px 20px;
  font-size: 16px;
}
.about-item__txt-top {
  color: #E9AB2A;
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 1.7;
}
.about-item__txt-top--green {
  color: #5EB064;
}
.about-item__txt-top--pink {
  color: #C73281;
}
.about-item__txt-title {
  color: #E9AB2A;
  font-weight: 600;
  margin-bottom: 17px;
  font-size: 18px;
}
.about-item__txt-title--green {
  color: #5EB064;
}
.about-item__txt-title--pink {
  color: #C73281;
}
.about-item__txt-content {
  text-align: left;
}
.about-item--green {
  border-color: #5EB064;
}
.about-item--pink {
  border-color: #C73281;
}

.about-deco {
  position: absolute;
  margin: auto;
  top: 0px;
  width: 100vw;
  max-width: 1300px;
  left: 50%;
  transform: translate(-50%, 0%);
}
.about-deco__inner {
  position: relative;
}
.about-deco__deco1 {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 130px;
  width: 130px;
  background-color: #F0F0F0;
  border-radius: 50%;
  z-index: 1;
}
.about-deco__deco2 {
  position: absolute;
  top: 150px;
  right: 50px;
  height: 70px;
  width: 70px;
  background-color: #C73281;
  border-radius: 50%;
  z-index: 1;
}
.about-deco__deco3 {
  position: absolute;
  top: -20px;
  left: -80px;
  height: 150px;
  width: 150px;
  background-color: #5EB064;
  border-radius: 50%;
  z-index: 1;
}
.about-deco__deco4 {
  position: absolute;
  top: 80px;
  left: 0px;
  height: 110px;
  width: 110px;
  background-color: #F0F0F0;
  border-radius: 50%;
  z-index: 1;
}
.about-deco__deco5 {
  position: absolute;
  top: 210px;
  left: -30px;
  height: 70px;
  width: 70px;
  background-color: #E9AB2A;
  border-radius: 50%;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .about-items {
    justify-content: center;
  }
  .about-item {
    margin-bottom: 50px;
  }
  .about-deco__deco1 {
    width: 100px;
    height: 100px;
    top: -50px;
  }
  .about-deco__deco2 {
    width: 50px;
    height: 50px;
    top: 30px;
    background-color: #E9AB2A;
  }
  .about-deco__deco3, .about-deco__deco4, .about-deco__deco5 {
    display: none;
  }
}
.works {
  background-color: #F7F7F7;
  padding-bottom: 120px;
}

.works-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
  max-width: 1080px;
  margin: auto;
}

.works-item {
  width: 300px;
  margin: 0 25px 50px;
  text-align: left;
}
.works-item__img-area {
  width: 300px;
}
.works-item__img-area img {
  width: 100%;
}
.works-item__txt-top {
  font-size: 12px;
  display: inline-block;
}
.works-item__txt-top::before {
  content: "";
  display: inline-block;
  height: 10px;
  width: 10px;
  background-color: #F5B0D5;
  border-radius: 50%;
}
.works-item__txt-top--green::before {
  background-color: #ADD6B9;
}
.works-item__txt-top--orange::before {
  background-color: #FCD179;
}
.works-item__txt-title {
  font-size: 18px;
  color: #C73281;
  font-weight: 600;
  line-height: 30px;
}
.works-item__txt-title--green {
  color: #5EB064;
}
.works-item__txt-title--orange {
  color: #E9AB2A;
}
.works-item__txt-content {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .works {
    padding-bottom: 30px;
  }
}
.voice {
  padding-bottom: 50px;
}

.voice-item {
  display: flex;
  flex-wrap: wrap;
  max-width: 850px;
  margin: 0 auto 50px;
}
.voice-item__img-area {
  width: 140px;
  height: 140px;
  background-color: #E9F2E9;
  border-radius: 50%;
  position: relative;
}
.voice-item__img-area--pink {
  background-color: #FFF4FA;
}
.voice-item__img-area--orange {
  background-color: #FFFBD9;
}
.voice-item__img-area img {
  width: 140px;
  position: absolute;
  top: 0px;
  left: 0;
}
.voice-item__txt-area {
  text-align: left;
  width: calc(100% - 220px);
  margin-left: 70px;
}
.voice-item__txt-title {
  display: block;
  font-size: 20px;
  color: #5EB064;
  font-weight: 600;
  line-height: 30px;
}
.voice-item__txt-title--pink {
  color: #C73281;
}
.voice-item__txt-title--orange {
  color: #E9AB2A;
}
.voice-item__txt-age {
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
}
.voice-item__txt-age::before {
  content: "";
  display: inline-block;
  height: 10px;
  width: 10px;
  background-color: #ADD6B9;
  border-radius: 50%;
}
.voice-item__txt-age--pink::before {
  background-color: #F5B0D5;
}
.voice-item__txt-age--orange::before {
  background-color: #FCD179;
}

@media screen and (max-width: 767px) {
  .voice-item__top {
    text-align: left;
    margin-bottom: 10px;
  }
  .voice-item__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .voice-item__txt-title {
    font-size: 18px;
    line-height: 30px;
  }
  .voice-item__img-area {
    width: 100px;
    height: 100px;
  }
  .voice-item__img-area img {
    width: 100px;
  }
  .voice-item__txt-content {
    margin-left: 20px;
    width: calc(100% - 120px);
    text-align: left;
    font-size: 15px;
  }
}
.schedule-item {
  max-width: 826px;
  margin: auto;
  margin-bottom: 120px;
}
.schedule-item__title {
  font-size: 22px;
  line-height: 50px;
  font-weight: 500;
  color: #5EB064;
  background-color: #E9F2E9;
}
.schedule-item__content {
  text-align: left;
  margin: 0 40px;
  padding: 30px 0;
  background-image: linear-gradient(to right, #707070, #707070 3px, transparent 5px);
  background-size: 10px 0.5px;
  background-position: left bottom;
  background-repeat: repeat-x;
}
.schedule-item__content--valued {
  display: flex;
  justify-content: space-between;
}
.schedule-item__heading {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}
.schedule-item__heading:before {
  content: "";
  display: inline-block;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: #ADD6B9;
}
.schedule-item__access {
  font-size: 16px;
}
.schedule-item__access-link {
  color: #0000EE;
  text-decoration: underline;
}
.schedule-item__detail {
  display: flex;
  margin-left: 15px;
}
.schedule-item__detail-date {
  color: #5EB064;
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
}
.schedule-item__detail-time {
  font-size: 18px;
  line-height: 30px;
  margin-left: 145px;
}
.schedule-item__detail-note {
  display: block;
  margin-top: 15px;
  font-size: 16px;
  margin-left: 214px;
}
.schedule-item__valued {
  width: calc(100% - 214px);
}
.schedule-item__valued-amount {
  line-height: 25px;
  font-size: 18px;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .schedule-item {
    margin-bottom: 80px;
  }
  .schedule-item__title {
    font-size: 18px;
    line-height: 33px;
  }
  .schedule-item__content {
    margin: 0 15px;
  }
  .schedule-item__content--valued {
    display: block;
  }
  .schedule-item__heading {
    font-size: 18px;
  }
  .schedule-item__detail {
    justify-content: space-between;
    margin-left: 0;
  }
  .schedule-item__detail-time {
    width: calc(100% - 75px);
    margin-left: 0;
  }
  .schedule-item__detail-note {
    margin-left: 0;
  }
  .schedule-item__valued {
    width: 100%;
  }
  .schedule-item__valued-note {
    font-size: 15px;
  }
}
.under-page {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .under-page {
    margin-top: 100px;
  }
}
footer {
  background-color: #1E2430;
}

.footer {
  max-width: 984px;
  padding: 70px 0 30px;
  margin: 0 auto;
}
.footer__link {
  margin-bottom: 50px;
}
.footer__link ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.footer__link ul li {
  list-style: none;
  margin-right: 50px;
}
.footer__link ul li a {
  color: #ffffff;
}
.footer__sns {
  display: flex;
  align-items: center;
}
.footer__sns-area {
  display: flex;
  margin-right: 20px;
}
.footer__sns-btn {
  display: inline-block;
  position: relative;
  margin-right: 30px;
}
.footer__sns-btn img {
  width: 178px;
}
.footer__sns-btn span {
  position: absolute;
  color: #ffffff;
  top: 0;
  left: 50%;
  line-height: 42px;
  transform: translate(-50%, 0);
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  letter-spacing: 1.05px;
  display: flex;
}
.footer__sns-btn span i {
  margin-right: 5px;
}
.footer__copy {
  color: #ffffff;
  font-size: 14px;
}
.footer__copy--en {
  font-family: "futura-pt", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 17px;
  letter-spacing: 1.1px;
}

@media screen and (max-width: 1066px) {
  footer {
    padding: 0 10px;
  }
  footer .footer__link ul li {
    margin-bottom: 10px;
  }
  footer .footer__sns {
    display: block;
    text-align: center;
  }
  footer .footer__sns-area {
    max-width: 320px;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  footer .footer__sns-btn {
    margin-right: 0;
  }
  footer .footer__sns-btn img {
    width: 148px;
  }
  footer .footer__sns-btn span {
    line-height: 34px;
    font-size: 16px;
  }
  footer .footer__copy {
    font-size: 12px;
  }
  footer .footer__copy--en {
    font-size: 12px;
  }
}
.policy-items {
  max-width: 1080px;
  margin: auto;
  text-align: left;
}

.policy-item {
  margin-bottom: 30px;
}
.policy-item__title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.access-items {
  margin-bottom: 50px;
}

.access-item {
  text-align: left;
  display: flex;
  max-width: 980px;
  margin: auto;
  padding-bottom: 70px;
  flex-direction: row-reverse;
}
.access-item__img.green {
  border: 2px solid #5EB064;
  border-radius: 7px;
  max-width: 500px;
}
.access-item__img.green iframe {
  border-radius: 7px;
}
.access-item__img.orange {
  border: 2px solid #E9AB2A;
  border-radius: 7px;
  max-width: 500px;
}
.access-item__img.orange iframe {
  border-radius: 7px;
}
.access-item__img.pink {
  border: 2px solid #C73281;
  border-radius: 7px;
  max-width: 500px;
}
.access-item__img.pink iframe {
  border-radius: 7px;
}
.access-item__txt-area {
  width: 35%;
}
.access-item__img-area {
  width: 66%;
}
.access-item__txt-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
.access-item__txt-item {
  margin-bottom: 10px;
}

.access-green {
  color: #5EB064;
}

.access-orange {
  color: #E9AB2A;
}

.access-pink {
  color: #C73281;
}

@media screen and (max-width: 767px) {
  .access-item {
    display: block;
    margin: auto;
  }
  .access-item__img-area {
    width: 100%;
  }
  .access-item__img {
    width: 350px;
  }
  .access-item__txt-area {
    width: 100%;
  }
}

/*# sourceMappingURL=coret.css.map */

