@charset "UTF-8";

/* 共通パーツ */
/* ボタン */
.btn-area {
  text-align: center;
  padding: 40px 0;
}
.btn-area a {
  display: block;
  background-color: #06C755;
  letter-spacing: 2px;
  border-radius: 60px;
  padding: 15px;
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-area a::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transform: skewX(-30deg);
    z-index: -1;
    animation: shine 2.4s infinite 
linear;
}
@keyframes shine {
    0% {
        left:-20%;
    }
    12% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}
.btn-area a .white {
  color: #fff;
  font-size: 42px;
  line-height: 1.2;
}
.btn-area a .yellow {
  color:#FFD800;
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .btn-area {
    text-align: center;
    padding: 30px 0;
  }
  .btn-area a {
    width: 90%;
    padding: 10px;
  }
  .btn-area a .white {
    font-size: 6vw;
  }
  .btn-area a .yellow {
    font-size: 4vw;
  }
}
@media screen and (max-width: 520px) {
  .btn-area {
    padding: 20px 0;
  }
  .btn-area a {
    width: 80%;
    padding: 7px;
  }
  .btn-area a .white {
    font-size: 5.4vw;
  }
  .btn-area a .yellow {
    font-size: 3.6vw;
  }
}

/* banner-red */
.banner-red {
  padding: 40px 20px;
}
.banner-p {
  padding-top: 0 !important;
}
@media screen and (max-width: 750px) {
  .banner-red {
    padding: 30px;
  }
}
@media screen and (max-width: 520px) {
  .banner-red {
    padding: 20px;
  }
}

/* セクション */
/* mv */
.mv {
  background-color: #000;
  margin-top: 98px;
}
@media screen and (max-width: 750px) {
  .mv {
      margin-top: 81px;
  }
}
@media screen and (max-width: 390px) {
  .mv {
      margin-top: 70px;
  }
}

/* komi */
#komi {
  padding: 30px 0;
}
#komi .reccomend-area {
  position: relative;
  z-index: 2;
  width: 90%;
  margin: 0 auto;
}
#komi .komi-area {
  background-color: #FFD800;
  position: relative;
  z-index: 1;
  margin-top: -50px;
  padding: 100px 0 60px;
}
#komi .komi-area h2 {
  text-align: center;
  font-size: 22px;
}
#komi .komi-text {
  font-size: 86px;
  color: #E50012;
  text-align: center;
}
#komi .komi-text span {
  font-size: 55px;
}
#komi .btn-area {
  padding: 0;
  margin-top: -50px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 750px) {  
  #komi .komi-area {
    padding: 70px 0 60px;
  }  
  #komi .komi-text {
    font-size: 12vw;
  }
  #komi .komi-text span {
    font-size: 9vw;
  }
}
@media screen and (max-width: 750px) {  
  #komi .komi-area h2 {
    font-size: 20px;
  }
}
  
/* worry */
#worry .section-inner {
  border-top: 10px solid #E50012;
  border-bottom: 10px solid #E50012;
}
#worry .content {
  text-align: center;
}
#worry h2 {
  color: #1D2087;
  font-size: 48px;
  text-align: center;
  padding-top: 20px;
  margin-bottom: 20px;
}
#worry .worry-text {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {  
  #worry h2 {
    font-size: 7vw;
  }
}

/* banner-komi */
#banner-komi {
  background-color: #000;
}

/* use */
#use {
  background-color: #FFD800; ;
}

/* compensation */
#compensation .section-inner {
  border: 10px solid #E50012;
  padding: 30px;
}
#compensation .box {
  margin-bottom: 50px;
}
#compensation .title-area {
  margin-bottom: 20px;
}
#compensation .box1 h2 {
  background-color: initial;
}
#compensation .text-area p {
  font-weight: bold;
  margin-bottom: 40px;
}
#compensation h2 {
  font-size: 32px;
  background-color: #FFD800;
  border-radius: 30px;
  padding: 6px;
  text-align: center;
}
#compensation h3 {
  font-size: 26px;
  text-align: center;
  color: #E50012;
  margin-bottom: 20px;
}
#compensation .box3 {
    margin-bottom: 20px;
}
#compensation .box3 h2 {
  background-color: #E50012;
  color: #fff;
  margin-bottom: 20px;
}
#compensation table {
  margin: 0 auto;
}
#compensation thead tr {
  color: #000;
}
#compensation td {
  border: 3px solid #000;
  padding: 12px 15px;
  vertical-align: middle;
}
#compensation .blue {
  background-color: #31A9EF;
  color: #fff;
  text-align: center;
}
#compensation td:last-child {
  text-align: center;
  font-weight: bold;
  width: 120px;
}
#compensation h3 br {
    display: none;
}
@media screen and (max-width: 750px) {
  #compensation .section-inner {
    padding: 20px;
  }
  #compensation .text-area p {
    margin-bottom: 20px;
  }
  #compensation h2 {
    font-size: 4.5vw;
  }
  #compensation h3 {
    font-size: 4vw;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 660px) {
  #compensation td {
    font-size: 16px;
  }
  #compensation .blue {
    text-align: left;
  }
  #compensation .blue br {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  #compensation td {
    font-size: 14px;
    line-height: 1.4;
    padding: 8px 12px;
  }
}
@media screen and (max-width: 390px) {
  #compensation .box3 h2 {
    letter-spacing: 1px;
  }
  #compensation .box {
    margin-bottom: 40px;
  }
  #compensation h3 {
    font-size: 5vw;
  }
  #compensation h3 br {
    display: block;
  }
}

/* price */
#price .content {
  position: relative;
  text-align: center;
}
#price .content h2 {
  background-color: #FFD800;
  font-size: 48px;
  padding: 30px 0 70px;
}
#price .title-area .section-inner {
  position: relative;
  margin-top: -80px;
}

#price .lead-area {
  margin-bottom: 20px;
}
#price .lead-area h3 {
  font-weight: bold;
  margin-bottom: 10px;
}
#price .lead-area ul li {
  font-size: 16px;
}
#price .lead-area ul li span {
  padding-left: 1em;
}

#price .plan .section-inner {
  padding: 30px 30px 50px;
}
#price .plan h3 {
  font-size: 42px;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 20px;
}
#price .plan1 {
  background-color: #FEF7CB;
}
#price .plan2 {
  background-color: #D5EEFC;
}
#price .plan3 {
  background-color: #FACCCF;
}
#price .plan4 {
  background-color: #D0E2ED;
}
#price .plan1 h3,#price .plan3 h3 {
  color: #E50012;
}
#price .plan2 h3 {
  color: #1D2087;
}
#price .plan h3 span {
  font-size: 30px;
}
#price .plan .kome {
  font-size: 16px;
  text-align: center;
  margin-bottom: 30px;
}
#price .plan-card {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
#price .plan4 h3 {
  color: #1675A7;
}
#price .plan h3 br {
  display: none;
}
@media screen and (max-width: 750px) {
  #price .section-inner {
    padding: 0 20px;
  }
  #price .content h2 {
    font-size: 7vw;
    padding: 30px 0 80px;
  }
  #price .lead-area ul li {
    font-size: 14px;
  }
  #price .lead-area ul li span {
    padding-left: 0;
  }
  #price .lead-area ul li br {
    display: none;
  }
    #price .plan .section-inner {
    padding: 30px 20px 40px;
  }
  #price .plan h3 {
    font-size: 6vw;
  }
  #price .plan h3 br {
    display: block;
  }
  #price .plan h3 span {
    font-size: 4vw;
  }
  #price .plan .kome {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  #price .plan .kome {
    text-align: left;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 390px) {
  #price .lead-area h3 {
    font-size: 14px;
    padding-top: 10px;
  }
  #price .lead-area ul li {
      font-size: 12px;
  }
  #price .plan .kome {
   font-size: 12px;
  }
  #price .plan-card {
    row-gap: 20px;
  }
}

/* voice */
#voice {
  background-color: #FFD800;
}
#voice .section-inner {
  padding: 40px;
}
#voice .title-area {
  margin-bottom: 20px;
}
#voice .box {
  background-color: #fff;
  margin-bottom: 30px;
  border-radius: 20px;
  padding: 20px;
}
#voice .top {
  display: flex;
  column-gap: 20px;
  margin-bottom: 20px;
}
#voice .icon {
  max-width: 120px;
}
#voice .top h3 {
  font-size: 28px;
}
#voice .top .sub-title {
  display: flex;
  align-items: center;
}
#voice .under p {
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  #voice .section-inner {
      padding: 30px;
  }
}
@media screen and (max-width: 670px) {
  #voice .top h3 br {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  #voice .top h3 {
    font-size: 4vw;
  }
}
@media screen and (max-width: 450px) {
  #voice .top {
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 12px;
  }
  #voice .icon {
    margin: 0 auto;
  }
  #voice .under p {
    font-size: 14px;
  }
}

/* reason */
#reason {
  background-color: #000;
  padding-bottom: 40px;
}
#reason ul {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
#reason ul li {
  background-color: #fff;
  border-radius: 30px;
  padding: 20px;
  min-height: 180px;
}
#reason h3 {
  font-size: 38px;
  margin-bottom: 10px;
}
#reason h3 span {
  display: inline-block;
  color: #fff;
  background-color: #E50012;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  text-align: center;
  line-height: 58px;
  margin-right: 20px;
}
#reason ul li p {
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  #reason .section-inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 750px) {
  #reason h3 {
    font-size: 5vw;
  }
  #reason h3 span {
    width: 48px;
    height: 48px;
    line-height: 48px;
    margin-right: 15px;
}
}
@media screen and (max-width: 520px) {
  #reason ul li {
      padding: 15px;
      min-height: 150px;
  }
    #reason h3 span {
        width: 38px;
        height: 38px;
        line-height: 38px;
        margin-right: 10px;
    }
}
@media screen and (max-width: 450px) {
  #reason ul li p {
      font-size: 14px;
  }
}
@media screen and (max-width: 390px) {
      #reason h3 span {
        width: 32px;
        height: 32px;
        line-height: 32px;
        margin-right: 8px;
    }
}

/* flow */
#flow {
  background-color: #FFD800;
  padding: 30px 0;
  overflow: hidden;
}
#flow .section-inner {
  border: 10px solid #FED800;
}
#flow h2 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 40px;
}
#flow .content {
  background-color: #fff;
  position: relative;
  z-index: 1;
}
#flow .content {
  position: relative;
}
#flow .sub-title-area {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  transform: translateY(-30px);
}
#flow .sub-title-area {
  text-align: center;
}
#flow .sub-title-area h3 {
  background-color: #E50012;
  color: #fff;
  text-align: center;
  font-size: 38px;
  padding: 6px 40px;
  border-radius: 40px;
  display: inline-block;
  margin: 0 auto;
}
#flow ul {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  padding-bottom: 40px;
}
#flow ul li {
  padding: 0 30px;
}
#flow ul .list2 {
  padding: 0;
}
#flow ul .list2 .list2-2 {
  display: none;
}
@media screen and (max-width: 750px) {
  #flow ul {
    row-gap: 20px;
    padding-bottom: 20px;
  }
  #flow h2 {
    font-size: 7vw;
  }
  #flow .sub-title-area h3 {
    font-size: 5vw;
  }
}
@media screen and (max-width: 520px) {
  #flow ul li {
    padding: 0 10px;
  }
  #flow ul .list2 .list2-1 {
    display: none;
  }
  #flow ul .list2 .list2-2 {
    display: block;
  }
}


/* faq */
#faq {
  background-color: #31A9EF;
  padding: 30px 30px 40px;
}
#faq .title-area {
  text-align: center;
}
#faq .title-area h2 {
  font-size: 48px;
  color: #fff;
  margin-bottom: 30px;
}
#faq .content {
  position: relative;
}
#faq .faq-cat {
  position: absolute;
  width: 170px;
  top: -90px;
  left: 0;
}
#faq ul {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  background-color: #fff;
  border-radius: 30px;
  padding: 80px 30px 50px;
}
#faq ul li {
  border-bottom: 3px solid #C1E5FA;
  padding-bottom: 20px;
}
#faq ul li:last-child {
  border-bottom: none;
}
#faq .q-area,#faq .a-area {
  display: flex;
  column-gap: 20px;
}
#faq .icon {
  flex-shrink: 0;
  font-size: 48px;
  line-height: 1.3;
}
#faq .q-area .icon h3 {
  color: #31A9EF;
  width: 50px;
}
#faq .a-area .icon h3 {
  color: #E50012;
  width: 50px;
}
#faq .q-area .text,#faq .a-area .text {
  display: flex;
  align-items: center;
}
#faq .q-area .text h3 {
  font-size: 28px;
}
#faq .a-area .text p {
  font-weight: bold;
}
#faq .message-area {
  padding-top: 50px;
  color: #fff;
}
#faq .message-area .title {
  max-width: 560px;
  margin: 0 auto 30px;
}
#faq .message-area h3 {
  font-size: 28px;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 20px;
}
#faq .message-area p {
  font-weight: bold;
}
#faq .message-area p span {
  color: #FFD800;
}
#faq .message-area h3 br {
  display: none;
}
@media screen and (max-width: 750px) {
  #faq {
    padding: 30px 20px;
  }
  #faq .title-area h2 {
    font-size: 7vw;
  }
  #faq .faq-cat {
    width: 20vw;
  }
  #faq .q-area, #faq .a-area {
    column-gap: 15px;
  }
  #faq .q-area .icon h3,#faq .a-area .icon h3 {
    width: 50px;
  }
  #faq ul {
    padding: 7vw 30px 50px;
  }
  #faq .icon {
    font-size: 7vw;
  }
  #faq .q-area .text h3 {
    font-size: 4vw;
  }
  #faq .message-area h3 {
    font-size: 4.5vw;
  }
}
@media screen and (max-width: 600px) {
  #faq .faq-cat {
    top: -70px;
  }
    #faq ul {
        padding: 7vw 20px 20px;
        row-gap: 15px;
    }
    #faq ul li {
      padding-bottom: 15px;
    }
}
@media screen and (max-width: 520px) {
  #faq .q-area .icon h3, #faq .a-area .icon h3 {
    width: 40px;
  }
}
@media screen and (max-width: 450px) {
  #faq .faq-cat {
    top: -50px;
  }
  #faq .q-area .icon h3, #faq .a-area .icon h3 {
        width: 30px;
  }
  #faq .a-area .text p {
    font-size: 14px;
  }
  #faq .message-area p {
    font-size: 14px;
  }
}
@media screen and (max-width: 390px) {
  #faq .q-area .icon h3, #faq .a-area .icon h3 {
    width: 20px;
  }
  #faq .message-area .title {
    margin: 0 auto 20px;
  }
  #faq .message-area h3 br {
    display: block;
  }
}