@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-button a {
  width: 100%;
  max-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #F77E21;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 20px;
  border-radius: 10px;
  text-decoration: none;
  margin: auto;
}
.content-button a img {
  width: 25px;
  height: 25px;
}
.content-button .area_txt {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  margin-top: 5px;
}

.mv {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("/images/mv_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
}
.mv .mv-content {
  width: 100%;
  height: 100%;
}
.mv .mv-content h1 {
  display: table;
  position: relative;
  margin: auto;
  padding-top: 75px;
}
@media screen and (max-width: 1000px) {
  .mv .mv-content h1 {
    width: 100%;
  }
}
.mv .mv-content h1 .hukidashi {
  position: absolute;
  left: 85%;
  top: -30px;
}
@media screen and (max-width: 1000px) {
  .mv .mv-content h1 .hukidashi {
    left: inherit;
    right: 5%;
    width: 20%;
  }
}
@media screen and (max-width: 1000px) {
  .mv .mv-content h1 .chath {
    width: 100%;
  }
}
.mv .mv-content h2 {
  display: table;
  font-size: 20px;
  font-weight: 700;
  background-color: #fff;
  padding: 5px 50px;
  border-radius: 50px;
  margin: 15px auto;
}
.mv .mv-content .mv-content-flex {
  display: table;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px 20px;
  border-radius: 10px;
  margin: 0 auto 25px;
}
.mv .mv-content .mv-content-flex .mv-content-flex-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.mv .mv-content .mv-content-flex .mv-content-flex-inner-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.mv .mv-content .mv-content-flex .mv-content-flex-inner-item img {
  width: 25px;
  height: 25px;
}
.mv .mv-content .mv-content-flex .mv-content-flex-inner-item p {
  font-size: 16px;
  font-weight: 700;
  color: #4A4A4A;
  text-align: center;
  line-height: 1.2;
}

.intro {
  width: 100%;
  background-color: #24A453;
  padding: 75px 0;
}
.intro .intro-content {
  width: 100%;
  height: 100%;
}
.intro .intro-content .intro-content-head {
  margin-bottom: 35px;
}
.intro .intro-content .intro-content-head h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 5px;
}
@media screen and (max-width: 860px) {
  .intro .intro-content .intro-content-head h2 {
    font-size: 36px;
  }
}
.intro .intro-content .intro-content-head p {
  color: #FFCA1A;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 860px) {
  .intro .intro-content .intro-content-head p {
    font-size: 20px;
  }
}
.intro .intro-content .intro-content-head img {
  display: table;
  width: 100%;
  max-width: 430px;
  margin: 25px auto 0;
}
.intro .intro-content .intro-content-body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.intro .intro-content .intro-content-body .intro-content-body-item {
  width: calc(33.3333333333% - 20px);
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 860px) {
  .intro .intro-content .intro-content-body .intro-content-body-item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 480px) {
  .intro .intro-content .intro-content-body .intro-content-body-item {
    width: 100%;
  }
}
.intro .intro-content .intro-content-body .intro-content-body-item .intro-content-body-item-ttl {
  position: relative;
  left: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.intro .intro-content .intro-content-body .intro-content-body-item .intro-content-body-item-ttl img {
  width: 25px;
  height: 25px;
}
.intro .intro-content .intro-content-body .intro-content-body-item .intro-content-body-item-ttl p {
  font-size: 24px;
  font-weight: 700;
}
.intro .intro-content .intro-content-body .intro-content-body-item .intro-content-body-item-txt {
  font-size: 16px;
  text-align: center;
}
.intro .intro-content .intro-content-next {
  margin-top: 50px;
}
.intro .intro-content .intro-content-next p {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 860px) {
  .intro .intro-content .intro-content-next p {
    font-size: 24px;
  }
}
.intro .intro-content .intro-content-next h3 {
  color: #fff;
  font-size: 48px;
  font-weight: 900;
  text-align: center;
}
.intro .intro-content .intro-content-next h3 span {
  color: #FFCA1A;
  font-size: 64px;
  font-weight: 900;
}
@media screen and (max-width: 860px) {
  .intro .intro-content .intro-content-next h3 span {
    font-size: 48px;
  }
}
@media screen and (max-width: 860px) {
  .intro .intro-content .intro-content-next h3 {
    font-size: 36px;
  }
}

.merits {
  width: 100%;
  background-image: url("/images/mv_bg.jpg");
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.25);
  background-blend-mode: overlay;
  padding: 75px 0;
}
.merits .merits-head {
  margin-bottom: 50px;
}
.merits .merits-head img {
  display: table;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
.merits .merits-head h2 {
  font-size: 36px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 5px;
}
@media screen and (max-width: 480px) {
  .merits .merits-head h2 {
    font-size: 24px;
  }
}
.merits .merits-head h2 span {
  color: #F77E21;
  font-size: 64px;
  font-weight: 900;
}
@media screen and (max-width: 480px) {
  .merits .merits-head h2 span {
    font-size: 48px;
  }
}
.merits .merits-head p {
  text-align: center;
}
.merits .merits-body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.merits .merits-body .merits-body-item {
  width: calc(33.3333333333% - 20px);
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 860px) {
  .merits .merits-body .merits-body-item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 480px) {
  .merits .merits-body .merits-body-item {
    width: 100%;
  }
}
.merits .merits-body .merits-body-item .merits-body-item-ttl img {
  display: table;
  width: 75px;
  height: 75px;
  margin: 0 auto;
  margin-bottom: 10px;
}
.merits .merits-body .merits-body-item .merits-body-item-ttl .merits-body-item-ttl {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5px;
}
.merits .merits-body .merits-body-item .merits-body-item-ttl .merits-body-item-txt {
  font-size: 16px;
  text-align: center;
}

.banner {
  width: 100%;
  background-color: #14315E;
  padding: 25px 0 50px;
}
.banner .banner-head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 5px;
}
.banner .banner-head h2 {
  color: #fff;
  font-size: 54px;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 860px) {
  .banner .banner-head h2 {
    font-size: 36px;
  }
}
@media screen and (max-width: 480px) {
  .banner .banner-head h2 {
    font-size: 24px;
  }
}
.banner .banner-head-txt {
  color: #FFCA1A;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 860px) {
  .banner .banner-head-txt {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .banner .banner-head-txt {
    font-size: 20px;
  }
}

.voice {
  width: 100%;
  background-color: #24A453;
  padding: 75px 0;
}
.voice .voice-head {
  margin-bottom: 25px;
}
.voice .voice-head img {
  display: table;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  margin-bottom: 10px;
}
.voice .voice-head h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 860px) {
  .voice .voice-head h2 {
    font-size: 36px;
  }
}
.voice .voice-head p {
  text-align: center;
  margin-bottom: 30px;
}
.voice .voice-head hr {
  display: table;
  width: 80px;
  margin: 15px auto 50px;
}
.voice .voice-body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.voice .voice-body .voice-body-item {
  width: calc(50% - 20px);
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 860px) {
  .voice .voice-body .voice-body-item {
    width: 100%;
  }
}
.voice .voice-body .voice-body-item .voice-body-item-head {
  margin-bottom: 10px;
}
.voice .voice-body .voice-body-item .voice-body-item-head .name {
  font-size: 18px;
  font-weight: 700;
}
.voice .voice-body .voice-body-item .voice-body-item-head .detail {
  font-size: 14px;
  color: #808080;
}
.voice .voice-body .voice-body-item .voice-body-item-body .voice-body-item-body-period {
  display: inline-flex;
  align-items: center;
  background-color: #FFCA1A;
  border-radius: 5px;
  color: #4A4A4A;
  font-weight: bold;
  padding: 2.5px 10px;
  margin: 15px 0 0 0;
}
.voice .voice-body .voice-body-item .voice-body-item-body .voice-body-item-body-period img {
  margin-right: 5px;
}

.step {
  width: 100%;
  padding: 75px 0;
}
.step .step-head img {
  display: table;
  width: 100%;
  max-width: 330px;
  margin: 0 auto 25px;
}
.step .step-head h2 {
  display: table;
  margin: 0 auto 50px;
  font-size: 36px;
  font-weight: bold;
  border-bottom: 1px solid;
}
@media screen and (max-width: 860px) {
  .step .step-head h2 {
    font-size: 24px;
  }
}
.step .step-head h2 span {
  color: #F77E21;
  font-size: 64px;
}
@media screen and (max-width: 860px) {
  .step .step-head h2 span {
    font-size: 48px;
  }
}
.step .step-body {
  margin-bottom: 75px;
}
.step .step-body .step-body-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 25px;
}
.step .step-body .step-body-item .step-body-item-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #F77E21;
}
@media screen and (max-width: 860px) {
  .step .step-body .step-body-item .step-body-item-num {
    width: 40px;
    height: 40px;
  }
}
.step .step-body .step-body-item .step-body-item-num p {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}
@media screen and (max-width: 860px) {
  .step .step-body .step-body-item .step-body-item-num p {
    font-size: 20px;
  }
}
.step .step-body .step-body-item .step-body-item-content {
  width: calc(100% - 105px);
  background-color: #E3F0E8;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  padding: 25px;
}
@media screen and (max-width: 860px) {
  .step .step-body .step-body-item .step-body-item-content {
    width: calc(100% - 55px);
  }
}
.step .step-body .step-body-item .step-body-item-content .step-body-item-content-ttl {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 860px) {
  .step .step-body .step-body-item .step-body-item-content .step-body-item-content-ttl {
    font-size: 20px;
  }
}
.step .step-body .step-body-item .step-body-item-content .step-body-item-content-ttl img {
  width: 25px;
  height: 25px;
}
.step .step-body .step-body-item .step-body-item-content .step-body-item-content-txt {
  margin-top: 10px;
}

.faq {
  width: 100%;
  background-color: #24A453;
  padding: 75px 0;
}
.faq .faq-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  margin-right: 150px;
}
@media screen and (max-width: 680px) {
  .faq .faq-head {
    display: block;
    margin: 0 auto 50px;
  }
}
.faq .faq-head .faq-head-img {
  display: table;
  width: 100%;
  max-width: 150px;
}
@media screen and (max-width: 680px) {
  .faq .faq-head .faq-head-img {
    margin: 0 auto 25px;
  }
}
.faq .faq-head h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 860px) {
  .faq .faq-head h2 {
    font-size: 36px;
  }
}
.faq .faq-head p {
  text-align: center;
}
.faq .faq-head .faq-head-icon {
  position: absolute;
  right: 185px;
  top: 30px;
}
@media screen and (max-width: 1120px) {
  .faq .faq-head .faq-head-icon {
    display: none;
  }
}
.faq .faq-body .faq-body-item {
  width: 100%;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 25px;
  margin-bottom: 25px;
}
.faq .faq-body .faq-body-item .faq-body-item-head {
  margin-bottom: 10px;
}
.faq .faq-body .faq-body-item .faq-body-item-head .faq-body-item-head-ttl {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 860px) {
  .faq .faq-body .faq-body-item .faq-body-item-head .faq-body-item-head-ttl {
    font-size: 20px;
  }
}
.faq .faq-body .faq-body-item .faq-body-item-head .faq-body-item-head-ttl img {
  margin-right: 10px;
}
.faq .faq-body .faq-body-item .faq-body-item-bod .faq-body-item-body-txt {
  display: flex;
  align-items: flex-start;
}
.faq .faq-body .faq-body-item .faq-body-item-bod .faq-body-item-body-txt img {
  margin-right: 10px;
}

.contact {
  width: 100%;
  background-color: #528FEB;
  padding: 75px 0;
}
.contact .contact-head {
  position: relative;
  display: table;
  margin: 0 auto 50px;
}
.contact .contact-head .contact-head-img01 {
  position: absolute;
  left: -45px;
  top: 0;
  width: 100%;
  max-width: 150px;
}
@media screen and (max-width: 860px) {
  .contact .contact-head .contact-head-img01 {
    width: 100px;
  }
}
@media screen and (max-width: 660px) {
  .contact .contact-head .contact-head-img01 {
    left: 0px;
    top: -35px;
  }
}
.contact .contact-head .contact-head-img02 {
  position: absolute;
  right: -85px;
  bottom: 35px;
  width: 100%;
  max-width: 155px;
}
@media screen and (max-width: 860px) {
  .contact .contact-head .contact-head-img02 {
    width: 100px;
  }
}
@media screen and (max-width: 660px) {
  .contact .contact-head .contact-head-img02 {
    right: 0;
    top: -55px;
    bottom: inherit;
  }
}
.contact .contact-head h2 {
  position: relative;
  z-index: 2;
  color: #FFCA1A;
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 860px) {
  .contact .contact-head h2 {
    font-size: 36px;
  }
}
.contact .contact-head p {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 860px) {
  .contact .contact-head p {
    font-size: 24px;
  }
}
.contact .contact-head p span {
  font-size: 52px;
}
@media screen and (max-width: 860px) {
  .contact .contact-head p span {
    font-size: 40px;
  }
}
.contact #formWrap {
  width: 100%;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 50px;
}
@media screen and (max-width: 480px) {
  .contact #formWrap {
    padding: 50px 25px;
  }
}
.contact #formWrap .contact-body-item-content-txt {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
}
.contact #formWrap table {
  width: 100%;
}
.contact #formWrap table tr {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.contact #formWrap table tr th {
  width: 100%;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
}
.contact #formWrap table tr td {
  width: 100%;
}
.contact #formWrap table tr input[type=text], .contact #formWrap table tr textarea {
  width: 100%;
  background-color: #F8F8F8;
  border: 1px solid #D0D0D0;
  border-radius: 5px;
  padding: 15px 25px;
}
.contact #formWrap .personal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 35px auto;
}
.contact #formWrap input[type=submit] {
  width: 100%;
  max-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #F77E21;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 20px;
  border-radius: 10px;
  text-decoration: none;
  margin: auto;
  border: none;
}
.contact #formWrap .ttt {
  color: #6A6A6A;
  font-size: 14px;
  text-align: center;
  margin-top: 25px;
}

.copylight {
  width: 100%;
  background-color: #000;
  padding: 25px 15px;
}
.copylight p {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}/*# sourceMappingURL=style.css.map */