@charset "utf-8";
/* CSS Document */

/*--main ----------------------------------------------------------*/
main .font16 { line-height: 1.6; }
main .font20 { line-height: 1.8; }


/*--kgl ----------------------------------------------------------*/


@media screen and (max-width: 768px) {
  main .font20 { line-height: 1.6; }
}

/*--#mv----------------------------------------------------------*/
#mv {
  padding-top: 40px;
  background: url("../img/mv_bg.png") no-repeat right top;
  background-size: cover;
}

#mv .flex_wrap {
  align-items: center;
  justify-content: space-between;
  position: relative;
	max-width: 1280px;
}
#mv .flex_box {
  padding-right: 30px;
}

#mv .sec_subttl img {
  margin: 30px 0 10px;
  max-width: 409px;
  width: 43%;
}
#mv .flex_box h2 {
  margin-bottom: 140px;
}

.mv_list {
  display: flex;
  margin: 0 auto;
  position: absolute;
  bottom: 7vh;
}
.mv_list li {
  padding-right: min(3.6vw, 55px);
  position: relative;
}
.mv_list li:last-of-type {
  padding-right: 0;
}
.mv_list li:after {
  content: " ";
  position: absolute;
  display: block;
  top: calc( 50% - min(1.5vw, 20px));
  max-width: 40px;
  max-height: 40px;
  width: 3vw;
  height: 3vw;
  z-index: 10;
  background: url("../img/icon_x.svg") no-repeat center;
}
.mv_list li:after {
  right: 0.4rem;
}
.mv_list li:last-of-type:after {
  display: none;
}

@media screen and (max-width: 1400px) {
  #mv .sec_subttl img { margin-top: 5vh; }
  #mv .flex_box h2 { margin-bottom: 15vh; }
  .mv_list { bottom: 5vh; }
  .mv_list li:after {
    right: 0.2rem;
  }
}

@media screen and (max-width: 1024px) {
  #mv .sec_subttl img { margin-top: 0; }
  #mv .flex_box h2 { margin-bottom: 8vh; }
  .mv_list { bottom: 4vh; }
}

@media screen and (max-width: 768px) {
  #mv {
    padding: var(--m40_sp) 0;
  }
  #mv .flex_wrap {
    margin-top: 9vh;
    flex-direction: column;
  }
  #mv .flex_box {
    max-width: 90%;
    width: 90%;
    padding: 0;
    text-align: center;
  }
  #mv .sec_subttl img {
    width: 50vw;
  }
  #mv .flex_box h2 {
    margin-bottom: var(--m40_sp);
  }
  #mv .flex_img {
    max-width: 80%;
    margin-left: auto;
  }
  .mv_list {
    flex-direction: column;
    bottom: 0;
  }
  .mv_list li {
    padding-right: 0;
    margin-bottom: var(--m30_sp);
    position: relative;
  }
  .mv_list li:last-of-type {
    margin-bottom: 0;
  }
  .mv_list li:after {
    top: auto;
    bottom: -5vw;
    right: 0;
    left: calc( 50% - 3vw);
    max-width: 6vw;
    max-height: 6vw;
    width: 6vw;
    height: 6vw;
  }
}


/*--.contact_area----------------------------------------------------------*/
.contact_area {
  padding: 60px 0;
  background-color: #e5f6ff;
  position: relative;
  color: #333;
  text-align: center;
}

.font48 {
  font-size: 2.5vw;
  line-height: 1.2;
  font-weight: 800;
}
.font36 {
  font-size: 1.5vw;
  line-height: 1.2;
  font-weight: 800;
}

.btn_list {
  max-width: 1200px;
  width: 95%;
  margin: 40px auto 0;
  display: flex;
  justify-content: center;
}

.btn_list li:first-of-type { margin-right: 40px; }

@media screen and (max-width: 768px) {
  .contact_area {
    padding: var(--m60_sp) 0;
  }
  .font48 {
    font-size: 5vw;
  }
  .font36 {
    font-size: 5vw;
  }
	
	
  .btn_list {
    margin: 0 auto;
    display: block;
    width: 70%;
  }
  .btn_list li {
    margin-top: var(--m40_sp);
  }
  .btn_list li:first-of-type { margin-right: 0; }
}

.sec_ttl {
  text-align: center;
}
.sec_ttl img {
  max-width: 50vw;
}

/*--#about----------------------------------------------------------*/
.gray_area {
  background-color: #ddd;
  position: relative;
  padding: 20px 0 0;
}

.gray_area::before{
  content: "";
  position: absolute;
  top: 100%;
  right: 50%;
  transform: translatex(50%);
  box-sizing: border-box;
  border-right: 32vw solid transparent;
  border-left: 32vw solid transparent;
  border-top: 120px solid #ddd;
}

.about_txt {
  position: absolute;
  right: calc( 50% - 93px);
  bottom: -75px;
}

.blue_area {
  padding: 200px 0 60px 0;
  background: url("../img/about_bg.png") no-repeat bottom center;
  background-size: cover;
}

.item_list {
  display: flex;
  justify-content: space-between;
}
.item_list li {
  margin-right: 2%;
}
.item_list li:last-of-type {
  margin-right: 0;
}

#about .contact_area::before {
  content: "";
  position: absolute;
  top: 0;
  right: 50%;
  transform: translatex(50%);
  box-sizing: border-box;
  border-right: 35px solid transparent;
  border-left: 35px solid transparent;
  border-top: 30px solid #0373ba;
}

@media screen and (max-width: 768px) {
  .gray_area {
    padding: var(--m20_sp) 0 0;
  }
  .gray_area::before{
    border-right: 30vw solid transparent;
    border-left: 30vw solid transparent;
    border-top: 6vh solid #ddd;
  }
  .about_txt {
    right: calc( 50% - 11vw);
    bottom: -3vh;
    max-width: 22vw;
  }
  .blue_area {
    padding: 10vh 0 var(--m80_sp);
  }
  .item_list {
    flex-wrap:  wrap;
    justify-content: center;
  }
  #about .item_list {
    margin-top: var(--m30_sp);
  }
  .item_list li {
    width: 30%;
    margin-right: 5%;
  }
  .item_list li:nth-of-type(3),
  .item_list li:last-of-type {
    margin-right: 0;
  }
  #about .item_list li:nth-of-type(4),
  #about .item_list li:last-of-type {
    margin-top: var(--m30_sp);
  }
  #about .contact_area::before {
    border-right: 4vw solid transparent;
    border-left: 4vw solid transparent;
    border-top: 4vw solid #0373ba;
  }
}


/*--#price----------------------------------------------------------*/
#price {
  position: relative;
  overflow: hidden;
  z-index: 0;
  padding: 40px 0 0 0;
}

.font35 {
  font-size: min(2.3vw, 2rem);
  line-height: 1.4;
  font-weight: 800;
}

.table_scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.price_table {
  border-collapse: collapse;
  text-align: center;
  margin-top: 40px;
  table-layout: fixed;
  min-width: 100%;
}
.price_table th, .price_table td {
  white-space: nowrap;
}
.price_table th {
  position: relative;
}
.price_table th img {
  position: relative;
  margin-bottom: -30px;
}
.price_table td {
  background-color: #f5f5f5;
  font-size: 1.2rem;
  border-left: 1px solid #d6d6d6;
  padding: 15px;
  text-align: center;
  font-weight: 800;
  min-width: 134px;
}

.price_table td:first-of-type {
  border-left: none;
  text-align: left;
  min-width: auto;
}
.price_table tr:nth-of-type(2) td {
  padding-top: 60px;
}
.price_table tr:last-of-type td {
  background-color: #eee;
  border-top: 1px solid #000;
}
.sticky {
  position: sticky;
  top: 0;
  left: 0;
  background: none;
  border-left: none;
  border-right: none;
  z-index: 20;
}
.sticky::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.price_table tr:first-of-type th:first-of-type {
  background-color: var(--white);
  border-right: none;
  z-index: 1;
  position: sticky;
}

.note {
  margin-top: 10px;
  font-size: 0.8125rem;
  line-height: 1.4;
}

.sec_subttl02 {
  background-color: #f6ff10;
  color: var(--blue);
  font-size: min(1.7vw, 2.5rem);
  padding: 20px;
  position: relative;
  text-align: center;
  margin-top: 20px;
}
.sec_subttl02::before {
  content: "";
  position: absolute;
  top: -15px;
  right: 50%;
  transform: translatex(50%);
  box-sizing: border-box;
  border: 7px solid transparent;
  border-bottom: 8px solid #f6ff10;
}


/*　　初期費用0円キャンペーンここから　　*/

.campaign_fukidashi {
  position: absolute;
  top: -15%;
  transform: translate(-15%, 0%);
}

.campaign_fukidashi img{
  max-width: 120%;
}

.price_change{
	text-decoration: line-through;
	color: #888;
	font-size: 14px;
	line-height: 1.2rem;
}

.price_change span{
	font-size: 10px;
}

.price_change{
	text-decoration: line-through;
	color: #888;
	padding-top: 5px;
}

.new_price{
	color: #fb5d00;
}

@media screen and (max-width: 768px) {
  .campaign_fukidashi img{
  max-width: 140%;
}

.campaign_fukidashi {
    transform: translate(-25%, 0%);
}
}
/*　　初期費用0円キャンペーンここまで　　*/

@media screen and (max-width: 768px) {
  #price {
    padding: var(--m80_sp) 0 0;
  }
  .font35 {
    font-size: min(4vw, 4rem);
  }
  .price_table {
    margin-top: var(--m40_sp);
  }
  .price_table th {
    position: relative;
  }
  .price_table th img {
    position: relative;
    margin-bottom: -5vw;
  }
  .price_table td {
    font-size: 1rem;
    padding: var(--m30_sp);
  }
  .price_table tr:nth-of-type(2) td {
    padding-top: var(--m60_sp);
  }
  .price_table tr:last-of-type td.sticky::before {
    border-top: none;
  }
  .price_table tr:first-of-type th:first-of-type {
    left: -0.2vw;
  }
  .note {
    margin-top: var(--m10_sp);
    font-size: 0.75rem;
  }
  .sec_subttl02 {
    font-size: 4.8vw;
    padding: var(--m20_sp);
    margin-top: var(--m20_sp);
  }
}


/*--#resultse----------------------------------------------------------*/
#results {
  padding: 40px 0 40px 0;
  background-color: var(--blue);
}

.baloon_txt {
  background-color: var(--white);
  padding: 20px;
  font-size: min(4vw, 2.5rem);
  color: var(--blue);
  font-weight: 800;
  border-radius: 5px;
  position: relative;
  width: 84%;
  margin: 40px auto;
}
.baloon_txt:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 50%;
  transform: translatex(50%);
  box-sizing: border-box;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 10px solid var(--white);
}

.results_box {
  background-color: var(--white);
  margin-top: 40px;
  padding: 30px 40px;
  border-radius: 20px;
  box-shadow: 0px 12px 14px 0px rgba(36, 81, 136, 0.004);
}
.results_box:last-of-type {
  text-align: left;
}

.results_box_inr {
  width: 100%;
  border-collapse: collapse;
}
.results_box_inr th {
  background-color: #438ecb;
  color: var(--white);
  border-radius: 10px 0 0 10px;
  font-size: 1.8rem;
  line-height: 1.2;
  padding: 0 0 0 30px;
  width: 25%;
}
.results_box_inr td {
	width: 16rem;
  background-color: #e6eff2;
  font-size: 1rem;
  line-height: 1.2;
  padding: 30px 40px 30px 20px;
}
.results_box_inr td:first-of-type {
  text-align: center;
  padding-right: 10px;
}
.results_box_inr td:last-of-type {
  border-radius: 0 10px 10px 0;
  width: 35rem;
}
.results_box_inr:last-of-type td {
  padding: 20px 40px 20px 20px;
}

.blue_list {
  font-size: 1rem;
  line-height: 1.6;
}
.blue_list li + li{
  margin-top: 5px;
}
.blue_list li {
  position: relative;
  padding-left: 15px;
}
.blue_list li:before {
  content: "";
  position: absolute;
  top: .4em;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #438ecb;
  border-radius: 50%;
}
.blue_list .note {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  #results {
    padding: var(--m80_sp) 0;
    background-color: var(--blue);
  }
  .baloon_txt {
    padding: var(--m20_sp);
    font-size: min(5vw, 2.5rem);
    width: 100%;
    margin: var(--m40_sp) auto;
  }
  .results_box {
    margin-top: var(--m40_sp);
    padding: var(--m30_sp) var(--m40_sp);
    border-radius: 20px;
  }
  .results_box_inr th,
  .results_box_inr td {
    display: block;
    width: 100%!important;
  }
  .results_box_inr th {
    border-radius: 10px 10px 0 0;
    font-size: 1.5rem;
    padding: var(--m20_sp);
    text-align: center;
  }
  .results_box_inr td,
  .results_box_inr td:first-of-type,
  .results_box_inr:last-of-type td {
    font-size: 0.8rem;
    padding: var(--m40_sp);
  }
  .results_box_inr td:last-of-type {
    border-radius: 0 0 10px 10px;
  }
}

/*--#step----------------------------------------------------------*/
#step {
  padding: 40px 0;
}

.step_box_inr {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  border-top: 2px solid var(--blue);
  border-left: 2px solid var(--blue);
  margin-top: 20px;
  position: relative;
}
.step_box_inr:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 50%;
  transform: translatex(50%);
  box-sizing: border-box;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-top: 18px solid var(--blue);
}
.step_box_inr:first-of-type {
  margin-top: 40px;
}
.step_box_inr:last-of-type:before {
  display: none;
}
.step_box_inr th {
  width: 18vw;
  max-width: 500px;
  background: var(--blue) no-repeat left center;
  background-size: contain;
  border-radius: 10px 0 0 10px;
  border-bottom: 2px solid var(--blue);
  padding: min(4vw, 40px) 20px min(4vw, 40px) 160px;
}
.step_box_inr:first-of-type th { background-image: url("../img/step_item_bg01.png"); }
.step_box_inr:nth-of-type(2) th { background-image: url("../img/step_item_bg02.png"); }
.step_box_inr:nth-of-type(3) th { background-image: url("../img/step_item_bg03.png"); }
.step_box_inr:nth-of-type(4) th { background-image: url("../img/step_item_bg04.png"); }
.step_box_inr:nth-of-type(5) th { background-image: url("../img/step_item_bg05.png"); }
.step_box_inr:nth-of-type(6) th { background-image: url("../img/step_item_bg06.png"); }

.step_box_inr td {
  font-size: 1.2rem;
  line-height: 1.4;
  padding: 15px 20px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  border-radius: 0 10px 10px 0;
}

.step_box_inr td .btn_list {
  max-width: 90%;
  margin: 15px 0 0;
}

@media screen and (max-width: 1020px) {
  .step_box_inr td {
    padding: 20px 20px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #step {
    padding:  var(--m80_sp) 0;
  }
  .step_box_inr {
    margin-top: var(--m20_sp);
  }
  .step_box_inr:before {
    border-right: var(--m20_sp) solid transparent;
    border-left: var(--m20_sp) solid transparent;
    border-top: 2vw solid var(--blue);
  }
  .step_box_inr:first-of-type {
    margin-top: var(--m40_sp);
  }
  .step_box_inr th,
  .step_box_inr td {
    display: block;
    width: 100%!important;
  }
  .step_box_inr th {
    border-radius: 10px 10px 0 0;
    padding: var(--m40_sp) var(--m20_sp) var(--m40_sp) 16vw;
    max-width: 100%;
  }
  .step_box_inr th img {
    width: 70%;
  }
  .step_box_inr td {
    padding: var(--m20_sp) var(--m20_sp) var(--m40_sp);
    border-radius: 0 0 10px 10px;
  }
  .step_box_inr td .btn_list {
    margin: var(--m30_sp) auto 0;
  }
}

/*--#question----------------------------------------------------------*/
#question {
  padding: 40px 0 40px 0;
  background-color: #f0f2f7;
}

.faq_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.faq_list a {
  position: relative;
  display: inline-block;
  margin: 20px 20px 0 0;
  padding: 10px 35px 10px 20px;
  text-decoration: none;
  font-size: 1.25rem;
  border: solid 1px var(--blue);
  border-radius: 25px;
  font-weight: 800;
  background-color: var(--white);
  color: var(--blue);
}
.faq_list a:before {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-bottom: solid 2px var(--blue);
  border-right: solid 2px var(--blue);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 13px;
  bottom: 0;
  margin: auto;
}

.sec_subttl03 {
  color: var(--blue);
  font-size: 1.8rem;
  margin-top: 40px;
}

summary {
  display: block;
}
summary::-webkit-details-marker {
  display: none;
}
.js-details {
  background-color: var(--white);
  border-radius: 5px;
  margin-top: 20px;
  box-shadow: 0 4px 4px rgb(0 0 0 / 2%), 0 2px 3px -2px rgba(0 0 0 / 5%);
}
.summary_inner {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}
.summary_inner h4 {
  font-size: 1.25rem;
  position: relative;
  padding-left: 2rem;
  line-height: 1.4;
}
.summary_inner h4::before,
.content_inner .answer_txt::before {
  position: absolute;
  font-size: 1.3rem;
  left: 0;
  font-weight: 800;
}
.summary_inner h4::before {
  color: var(--blue);
  content: "Q";
  top: -0.2rem;
}

.symbol {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--blue);
  border-radius: 50%;
  position: relative;
}
.symbol span {
  display: block;
  background-color: var(--white);
  width: 20px;
  height: 2px;
  transition: all 0.4s ease;
  left: 10px;
  position: absolute;
}
.symbol span:nth-of-type(1) {
}
.symbol span:nth-of-type(2) {
  transform: rotate(-90deg);
}
details.is-opened .symbol span:nth-of-type(2) {
  transform: rotate(0deg);
}

/* アコーディオンの中身のスタイル */
.content {
  overflow: hidden;
}
.content_inner {
  font-size: 1.25rem;
  line-height: 1.6;
  padding: 0 30px 20px 30px;
  font-weight: 800;
}
.content_inner .answer_txt {
  border-top: 1px dashed #ddd;
  position: relative;
  padding: 20px 0 0 2rem;
}
.content_inner .answer_txt::before {
  color: #fa700b;
  content: "A";
  top: 20px;
}

.content_inner p .note {
  display: block;
}

.red_list {
  line-height: 1.6;
}
.red_list li {
  position: relative;
  padding-left: 10px;
}
.red_list li:before {
  content: "";
  position: absolute;
  top: .7em;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #fa700b;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  #question {
    padding: var(--m80_sp) 0;
  }
  .faq_list {
    margin-top: var(--m40_sp);
  }
  .faq_list a {
    margin: var(--m20_sp) var(--m20_sp) 0 0;
    padding: var(--m20_sp) var(--m60_sp) var(--m20_sp) var(--m40_sp);
    font-size: 1.125rem;
  }
  .faq_list a:before {
    width: 8px;
    height: 8px;
    right: var(--m20_sp);
  }
  .sec_subttl03 {
    font-size: 1.5rem;
    margin-top: var(--m60_sp);
  }
  .js-details {
    margin-top: var(--m30_sp);
  }
  .summary_inner {
    padding: var(--m20_sp) 35px var(--m20_sp) var(--m30_sp);
    display: block;
    position: relative;
  }
  .summary_inner h4 {
    font-size: 1.125rem;
    padding-left: 1.5rem;
  }
  .summary_inner h4::before,
  .content_inner p::before {
    font-size: 1.25rem;
  }
  .summary_inner h4::before {
    top: -0.1rem;
  }
  .symbol {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 1rem;
    right: var(--m20_sp);
  }
  .symbol span {
    display: block;
    background-color: var(--white);
    width: 12px;
    left: 4px;
    position: absolute;
  }
  .content_inner {
    font-size: 1.125rem;
    line-height: 1.6;
    padding: 0 var(--m30_sp) var(--m20_sp) var(--m30_sp);
  }
  .content_inner p {
    padding: var(--m20_sp) 0 0 1.5rem;
  }
  .content_inner p::before {
    top: var(--m20_sp);
  }

}