@charset "UTF-8";
body{
    font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;;
	background-color:#fff;
    color: #1B1D1D;
}
main{
	background-color:#fff;
	line-height: normal;
}
a{
	color:#d82525;
}
.wrapper-1{
  width: 100%;
  max-width: 70rem;
  margin: 60px auto 0;
}
.mv{
    margin-top:60px;
}
.mv img{
    max-width: 800px;
   margin: 0 auto;
   display: block;
}
  /*header*/
     .header {
    background-color: #fff;
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
  }
  .header_inner{
    padding: 6px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: inherit;
    position: relative;
  }
  .header_ttl{
    width: 80px;
  }
  .header_ttl img{
    display: block;
    width: 70%;
    height: 100%;
  }
  .header .nav{
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%); 
    background-color: #fff; /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
    transition: ease .4s;
    margin: 0; 
  }
  .header .nav .nav_item{
    text-align: center;
    padding-top: 200px;
  }
  .header .nav .nav_item li{
    border:none;
    display: block;
    width: 100%;
  }
  .header .nav_item a{
    text-decoration: none;
    color: #fb9b12;
    display: block;
    width: 100%;
    font-size: 16px;
    margin-bottom: 24px;
    font-weight: bold;
  }
/* ハンバーガーメニュー */
.header_hamburger{
    width: 48px;
    height: 100%; 
}
.hamburger{
    background-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
    border-color: #fb9b12; /*buttonタグデフォルトスタイルを打ち消し*/
    z-index: 9;
    padding: 0;
}
.hamburger span{
    width: 78%;
    height: 3px;
    background-color: #fb9b12;
    position: relative;
    transition: ease .4s; /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
    display: block;
    margin: 0 auto;
}
.hamburger span:nth-child(1) {
    top: -8px;
  }
  
  .hamburger span:nth-child(2) {
    top: 0px;
  }
  
  .hamburger span:nth-child(3) {
    top: 8px;
  }
  .header nav.active{
    transform: translateX(0);
  }
  .hamburger.active span:nth-child(1) {
    top: 4px;
    transform: rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    top: -3px;
    transform: rotate(-45deg);
  }
  .modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content,.loadbox_or,.loadbox_gr {
    background-color: #fefefe;
    margin: 20% auto;
    /*padding: 20px;*/
    border: 40px solid #EEBE3C;
    max-width: 700px;
    border-radius: 5px
}
.loadbox_or{
    border: 40px solid #3C74A4;
}
.loadbox_gr{
    border: 40px solid #3B755D;
}
.modal_bottom .o_logo{
      display: block;
      margin: 0 auto;
    }
.modal-content .modal_ttl h2{
    font-size: 18px;
    padding: 30px 10px;
    color:#1B1D1D;
    text-align: center;
	margin-bottom:0;
}
.modal-content .modal_bottom{
    padding: 10px 10px 30px;
    text-align: center;
}
.modal-content .modal_btn{
    display: flex;
    border-style: inherit;
	justify-content: center;
}
.yesBtn,.noBtn{
    width: 250px;
    box-shadow:  0px 5px 15px 0px rgba(51, 51, 51, 0.35);
    color: #fff;
    border-radius: 10px;
    border: none;
    padding: 10px;
}
.yesBtn{
    background-color: #3C74A4;
    margin-right: 10px;
}
.noBtn{
    background-color: #3B755D;
}
.modal_bottom p{
    font-size: 10px;
    padding: 10px 0;
}
.loading {
    display: none;
    position: fixed;
    z-index: 11;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);
    color: white;
    font-size: 24px;
    text-align: center;
    /*padding-top: 40%;*/
}
.loadbox_or,.loadbox_gr{
    margin: 25% auto;
    padding: 100px 0 20px;
	position:relative;
}
.loadbox_or p,.loadbox_gr p{
    color: #313131;
    padding: 10px 0;
    font-size: 16px;
}
.loadbox_or img,.loadbox_gr img{
    display: block;
    margin: 0 auto;
}
.loadbox_or span{
    color: #3C74A4;
    font-weight: bold;
}
.loadbox_gr span{
    color: #3B755D;
    font-weight: bold;
}

.loadbox_or,.loadbox_gr{
    position: relative;
  }

  .loadbox_gr .loader,
  .loadbox_gr .loader:before,
.loadbox_gr .loader:after {
  background: #3B755D;
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}
.loadbox_gr .loader {
  color: #3B755D;
  text-indent: -9999em;
  margin: 88px auto;
  position: absolute;
  font-size: 11px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
  top: -10%;
    left: 50%;
    transform: translate(50%, -50%);
}
.loadbox_or .loader,
.loadbox_or .loader:before,
.loadbox_or .loader:after {
background: #3C74A4;
-webkit-animation: load1 1s infinite ease-in-out;
animation: load1 1s infinite ease-in-out;
width: 1em;
height: 4em;
}
.loadbox_or .loader {
color: #3C74A4;
text-indent: -9999em;
margin: 88px auto;
position: absolute;
font-size: 11px;
-webkit-transform: translateZ(0);
-ms-transform: translateZ(0);
transform: translateZ(0);
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
top: -10%;
  left: 50%;
  transform: translate(50%, -50%);
}
.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: '';
}
.loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 1.5em;
}
@-webkit-keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
@keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
/*Section01*/
.sec01{
    background-color: #fff;
    padding-bottom: 20px;
    max-width: 700px;
    margin: 0 auto;
}
.sec01 .form-container{
    border: solid 2px #eeeeee;
}
.sec01 h3{
    background-color: #3B755D;
    color: #fff;
    font-size: 21px;
    padding: 10px 0;
    text-align: center;
    margin: 0;
}
.sec01 .form-inner{
    margin: 0 auto;
    max-width: 660px;
    box-shadow: 0px 0px 15px -5px #777777;
    border-radius: 10px;
}
.cp_ipselect {
  overflow: hidden;
  width: 90%;
  margin: 2em auto;
  text-align: center;
}
.cp_ipselect select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}
.cp_ipselect select::-ms-expand {
    display: none;
}
.cp_ipselect.cp_sl01 {
  position: relative;
  width: 400px;
  height: 70px;
  border-radius: 2px;
  border: 2px solid #fb9b12;
  background: #ffffff;
}
.cp_ipselect.cp_sl01::before {
  position: absolute;
  top: 1.8em;
  right: 0.8em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fb9b12;
  pointer-events: none;
}
.cp_ipselect.cp_sl01 select {
  font-size: 18px;
  padding: 19px 38px 8px 28px;
  color: black;
}
.sec01 input, select {
    margin-bottom: 10px;
    padding: 5px;
}
.sec04 input, select {
    margin-bottom: 10px;
    padding: 5px;
}
.hidden {
    display: none;
}
#result-1 {
    font-size: 20px;        /* フォントサイズ */
    font-weight: bold;      /* 太さ */
    color: #1B1D1D;         /* 文字色 */
    padding: 20px 0px;          /* 内側の余白 */
    border-radius: 5px;     /* 角を丸くする */
    margin-top: 20px;       /* 上側の余白 */
    text-align: center;     /* テキストを中央揃え */
    margin: 0px 50px;
}
#max-loan-1{
    font-size: 20px;        /* フォントサイズ */
    font-weight: bold;      /* 太さ */
    color: #1B1D1D;         /* 文字色 */
    padding: 20px 0px;          /* 内側の余白 */
    border-radius: 5px;     /* 角を丸くする */
    margin-top: 20px;       /* 上側の余白 */
    text-align: center;     /* テキストを中央揃え */
    margin: 20px 50px;
}
#result-2 {
    font-size: 20px;        /* フォントサイズ */
    font-weight: bold;      /* 太さ */
    color: #1B1D1D;         /* 文字色 */
    padding: 20px 0px;          /* 内側の余白 */
    border-radius: 5px;     /* 角を丸くする */
    margin-top: 20px;       /* 上側の余白 */
    text-align: center;     /* テキストを中央揃え */
    margin: 0px 50px;
}
#max-loan-2{
    font-size: 20px;        /* フォントサイズ */
    font-weight: bold;      /* 太さ */
    color: #1B1D1D;         /* 文字色 */
    padding: 20px 0px;          /* 内側の余白 */
    border-radius: 5px;     /* 角を丸くする */
    margin-top: 20px;       /* 上側の余白 */
    text-align: center;     /* テキストを中央揃え */
    margin: 20px 50px;
}
.annotation{
    font-size: 12px;
	margin:20px;
}
.cnt span{
    padding-left: 10px;
}
.question01{
    margin-top: 5%;
}
.question01 label{
    font-size: 18px;
    background-color: #3B755D;
    color: #fff;
}
.sec01 p{
    text-align: center;
    background-color: #3B755D;
    color:#fff;
    font-size: 21px;
    margin: 0;
    padding: 10px 0;
}
.sec01 .cnt{
    text-align: center;
    border: solid 3px #3B755D;
    background-color: #fff;
}
.sec01 .choice{
    margin: 3%;
}
.sec04 p{
    margin: 0px 50px;
    text-align: center;
    background-color: #fb9b12;
    color:#fff;
    font-size: 21px;
	padding: 10px 0;
}
.sec04 .cnt{
    margin: 0px 50px; 
    text-align: center;
    border: solid 3px #fb9b12;
    background-color: #fff;
}
.sec04 .choice{
    margin: 3%;
}
.btn{
    text-align: center;
    margin-bottom: 40px;
    margin-top: 5%;
}
.sec01 .cnt input[type='number']{
    margin: 2em auto;
    font-size:21px;
    box-sizing: border-box;
	width: 400px;
    height: 70px;
	transition: 0.3s;
	letter-spacing: 1px;
	color: #aaaaaa;
	border-radius: 4px;
}
.sec04 .cnt input[type='number']{
    margin: 2em auto;
    font-size:21px;
    box-sizing: border-box;
	width: 400px;
    height: 70px;
	transition: 0.3s;
	letter-spacing: 1px;
	color: #aaaaaa;
	border-radius: 4px;
}
button.btn-border {
  width: 300px;
  padding: 10px 60px;
  font-size: 21px;
  border: solid 2px #d82525;
  border-radius: 20px;
  background: #fff;
  color: #d82525;
  text-decoration: none;
}

button.btn-border:hover {
  color: #fff;
  background: #d82525;
}
/*ttl*/
.ttl{
    text-align: center;
	color:#3B755D;
}
.ttl h3{
    position: relative;
  line-height: 1.4;
  padding:0.25em 3em;
  display: inline-block;
  font-size: 18px;
  font-weight: 900;
}
.ttl h3:before, .ttl h3:after { 
    content:'';
    width: 20px;
    height: 30px;
    position: absolute;
    display: inline-block;
  }
  
  .ttl h3:before {
    border-left: solid 2px #3B755D;
    border-top: solid 2px #3B755D;
    top:0;
    left: 0;
  }
  
  .ttl h3:after {
    border-right: solid 2px #1B1D1D;
    border-bottom: solid 2px #1B1D1D;
    bottom:0;
    right: 0;
  }
/*section02*/
.sec02{
    max-width: 800px;
    margin: 0 auto;
}

.sec02 h3{
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}
.sec2_point{
        text-align: center;
        background-color: #fff;
        margin:3%;
        box-shadow: 0px 0px 15px -5px #777777;
        border-radius: 3px;
        padding: 3%;
    }
    .sec2_point p{
        margin: 10px 0;
        color: #3B755D;
        font-weight: bold;
        font-size: 21px;
    }
    .sec2_point02{
        text-align: center;
        background-color: #fff;
        margin:3%;
    }
    .sec2_point02 p{
        margin: 10px 0;
        color: #fb9b12;
        font-weight: bold;
        font-size: 21px;
    }
    .sec2_point03{
        text-align: center;
        background-color: #fff;
        border-radius: 10px;
        margin:3% 3% 8% 3%;
    }
    .sec2_point03 p{
        margin: 10px 0;
        color: #fb9b12;
        font-weight: bold;
        font-size: 21px;
    }
    .o-line{
        border-bottom: 3px solid #38B652;
    }
hr{
 border-top: 2px solid #EEBE3C;
    border-right: none;
    border-bottom: none;
    border-left: none;
}
.promise_h4 span{
	display: block;
    padding: 10px 30px;
}
  /*tab02*/
  .tab-group{
    display: flex;
    justify-content: center;
    border-bottom: 3px solid #3B755D;
  }
  .tab{
    flex-grow: 1;
    padding:15px 5px;
    list-style:none;
    text-align:center;
    cursor:pointer;
	  background-color: #E1E6E4;
  }
  .panel-group{
    height:auto;
    border-top:none;
    background:#fff;
  }
  .panel{
    display:none;
  }
  .tab.is-active{
    background:#3B755D;
    color:#FFF;
    transition: all 0.2s ease-out;
  }
  .panel.is-show{
    display:block;
  }
/*Section03*/
.sec03 h3{
    text-align: center;
}
.sec03 .rec img{
    display: inline-block;
}
.sec03_ttl_pc{
    display: inline-block;
}
.sec03_ttl_sp{
    display: none;
}

.recback{
    background-color: #fff;
}
.rec{
    background-color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}
.box-ad-sp {
    font-size: 16px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    width: calc(100% - 10px);
    border-radius: 0 0 5px 5px;
    margin: 0 auto;
  }
  .box-ad-sp .ttl_promise {
    font-size: 1.5em;
    position: relative;
    width: calc(100% + 10px);
    margin-left: -5px;
    padding: 5px;
    background-color:#c9b357;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: none;
  }
  .box-ad-sp .ttl_acom {
    font-size: 1.5em;
    position: relative;
    width: calc(100% + 10px);
    margin-left: -5px;
    padding: 5px;
    background-color:#c3c1be;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: none;
  }
  .box-ad-sp .ttl_smbc {
    font-size: 1.5em;
    position: relative;
    width: calc(100% + 10px);
    margin-left: -5px;
    padding: 5px;
    background-color:#bf9569;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: none;
  }
  .box-ad-sp .ttl_promise img {
    position: absolute;
    top: 0;
    width: 2em;
  }
  .box-ad-sp .ttl_acom img {
    position: absolute;
    top: 0;
    width: 2em;
  }
  .box-ad-sp .ttl_smbc img {
    position: absolute;
    top: 0;
    width: 2em;
  }
  .box-ad-sp .ttl_promise a {
    font-weight: bold;
    padding: 0.2em 0.2em 0.1em 2em;
    background-color: #ffffff;
    border-radius: 4px;
    width: 100%;
    display: inline-block;
    text-decoration: none;
    color: #000;
    -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .box-ad-sp .ttl_acom a {
    font-weight: bold;
    padding: 0.2em 0.2em 0.1em 2em;
    background-color: #ffffff;
    border-radius: 4px;
    width: 100%;
    display: inline-block;
    text-decoration: none;
    color: #000;
    -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .box-ad-sp .ttl_smbc a {
    font-weight: bold;
    padding: 0.2em 0.2em 0.1em 2em;
    background-color: #ffffff;
    border-radius: 4px;
    width: 100%;
    display: inline-block;
    text-decoration: none;
    color: #000;
    -webkit-box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .ttl_promise::before {
    position: absolute;
    content: '';
    top: 100%;
    left: 0;
    border: none;
    border-bottom: solid 5px transparent;
    border-right: solid 5px #c2873b;
  }
  .box-ad-sp .ttl_promise::after {
    position: absolute;
    content: '';
    top: 100%;
    right: 0;
    border: none;
    border-bottom: solid 5px transparent;
    border-left: solid 5px #c2873b;
  }
  .promise_cnt{
    text-align: center;
    padding: 10px;
    margin-bottom: 5%;
  }
  .promise_h4{
    display: inline-block;
    color: #3B755D;
    border: 2px solid #38B652;
    background-color: #F7FFFC;
    margin-top: 20px;
    padding: 10px 20px;
}
.promise_h4 p{
    font-size: 21px;
    margin: 1em auto;
    width: 400px;
    height: 35px;
}
.img_text_set{
    grid-template-columns: auto auto;
    margin-top: 5%;
}
.smbc_sec{
    margin-top: 5%;
}
.smbc_sec h2 {
    position: relative;
    margin: 1rem -10px;
    padding: 1rem 2rem;
    background: #3B755D;
	color:#fff;
  }
  
  .smbc_sec h2:before,
  .smbc_sec h2:after {
    position: absolute;
    content: '';
  }
  
  .smbc_sec h2:before {
    bottom: -10px;
    left: 0;
    width: 0;
    height: 0;
    border-top: 10px solid #ccc100;
    border-left: 10px solid transparent;
  }
  
  .smbc_sec h2:after {
    right: 0;
    bottom: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid #ccc100;
    border-right: 10px solid transparent;
  }
  .smbc_img{
    margin: 0 auto;
}
.check_point ul{
    text-align: center;
    margin-left: 5%;
}
.check_point li{
    font-size: 21px;
    margin: 0 auto;
    text-align: left;
}
.check_point li::before{
    content: url(../lp_images/check_gr.png);
    display: inline-block;
    vertical-align: middle;
    transform: scale(0.6);
}
.check_point span{
    font-size: 10px;
}
.point_text01{
    border: solid 3px #EEBE3C;
    margin: 20px;
    background-color: #FDF4DB;
}
.point_text01 hr{
    color: #EEBE3C;
    border-width: 2px;
    margin: 0 5%;
    width: 90%;
}
.point_text_ttl01 h4{
    display: flex;
    color: #EEBE3C;
    font-size: 21px;
    margin: 1% 5%;
}
.point_text_ttl01 h4 span{
    color: #aaaaaa;
}
.promise_text{
  text-align: left;
   padding: 1.5rem 5%;
}
.point_text02{
    border: solid 3px #3B755D;
    margin: 20px;
}
.point_text02 hr{
    color: #3B755D;
    border-width: 2px;
    margin: 0 5%;
    width: 90%;
    display: inline-block;
}
.point_text_ttl02 h4{
    display: flex;
    color: #3B755D;
    font-size: 18px;
    font-weight: 800;
    margin: 1rem 5%;
}
.point_text_ttl02 p{
    color: #EEBE3C;
}
.point_text_ttl02 h4 span{
    color: #aaaaaa;
}
.sec03_table{
    margin: 2%;
    text-align: left;
    border-collapse: collapse;
    border:solid 2px #cac5c5;
}
.table_cnt td, th{
    font-size: 18px;
    padding: 10px;
}
.table_cnt td{
    border: none;
}
.table_cnt .table_cnt_border{
    border-bottom: 1px solid #cac5c5;
}
.table_cnt{
    width: 100%;
}
.table_cnt th{
    background-color: #efefef;
}
.sec03_point_area{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.point_area_box .box01,.point_area_box .box02{
    display: flex;
    justify-content: center;
}
.sec03_point_area p{
font-size: 0.8em;
background-color: #3B755D;
color: #fff;
border-radius: 95px;
text-align: center;
padding: 20px 50px 20px;
margin:10px 5px;
margin-bottom: 5px;
line-height: 1
}
.countdown-container{
    border: solid 3px #3FB858;
    display: inline-block;
    margin-top: 10px;
	background-color:#F7FFFC;
}
.countdown-container h4{
    color: #1B1D1D;
    font-size: 21px;
    padding: 5px 200px 10px;
}
.countdown-container p{
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
}
.countdown-container span{
    color:#D82525;
    font-size: 21px;
}
.sec03_btn,.l-btn{
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}
/*flow-wrap*/
.flow-wrap{
    margin: 10px 0;
}
.flow-wrap p{
    text-align: center;
    color: #3B755D;
    font-weight: 800;
    margin:20px ;
    font-size: 20px;
}
.flow_image img{
    margin: 0 auto;
    display: block;
}
.aiful_img{
    width: 300px;
}
.sec03_btn a.btn-border,.l-btn a{
  width: 300px;
  padding: 10px 60px;
  font-size: 21px;
  border-radius: 40px;
  color:#fff;
  text-decoration: none;
	background-color: #d82525;
}
.l-btn a{
	color: #fff;
	background:#F0ADD4;
}

/*section04*/
.sec04{
    margin-top: 6%;
    background-color: #fff4e4;
    padding-bottom: 20px;
    max-width: 800px;
    margin: 0 auto;
}
.sec04 h3{
    background-color: #fb9b12;
    color: #fff;
    font-size: 21px;
    padding: 30px 0;
    text-align: center;
}

.sec05{
    margin-top: 5%;
    margin-bottom: 5%;
    text-align: center;
    overflow: hidden;
}
.sec05_ttl{
    display: inline-block;
    margin-bottom: 5%;
}
.sec05 .ttl h3{
    padding: 0.25em 3em 2rem;
}

.table-container {
    width: 100%;
    overflow: auto;
}
.sec05_table{
    width: 740px;
    border-collapse: collapse;
    display: inline-block;
	color: #1B1D1D;
}

td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: center;
    vertical-align: middle;
}
.tdttl{
    background-color:#e5e5e5 ;
    padding: 8px;
    text-align: center;
    vertical-align: middle;
}
.td01{
    background-color:#e5e5e5 ;
    font-weight: bold;
}

td img {
    width: 250px;
    height: 250px;
    object-fit: cover;
}

button {
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.tr01{
    text-align: center;
}
.sec05_table .table_btn{
    padding: 10px 10px;
}
.table_btn{
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.table_btn a{
    font-size: 16px;
    border-radius: 20px;
    color: #d82525;
    text-decoration: none;
    padding: 2% 7%;
	 border: solid 2px #d82525;
  }
.root{
    margin: 10px 0 20px;
}
.root img{
    display: block;
    margin: 0 auto;
}
.sec06{
    margin-top: 7%;
    background-color: #e4fce5;
    padding-bottom: 3%;
    max-width: 800px;
    margin: 0 auto;
}
.sec06_ttl{
    text-align: center;
}
.sec06_ttl_pc{
    display: inline-block;
}
.sec06_ttl_sp{
    display: none;
}
.sec06_site_image{
    text-align: center;
    margin-bottom: 3%;
}
.sec06_pc_image{
    display: inline-block;
    max-width: 790px;
}
.sec07{
    text-align: center;
    background-color: #eeeeee;
    padding-bottom: 4%;
    max-width: 800px;
    margin: 0 auto;
}
.sec7_ttl{
    display: inline-block;
    margin: 3% 0;
}
.sec07_pc{
    display: inline-block;
}
.sec07_sp{
    display: none;
}
.sec06_sp_image{
    display: none;
  }
.sec07_flow{
    text-align: center;
}
.sec07_pc_flow{
    display: inline-block;
    max-width: 790px;
}
.sec07_sp_flow{
    display: none;
  }


.sec08{
    margin-top: 5%;
  }
.sec08_ttl{
    text-align: center;
}
.sec08_ttl img{
    display: inline-block;
}
.flow .flow_pc{
    display: inline-block;
    width: 94%;
    margin-top: 3%;
}
.flow .flow_sp{
    display: none;
}
.sec08_point_text_ttl::before{
    content: url(../lp_images/check_gr.png);
    display: inline-block;
    vertical-align: middle;
    transform: scale(0.6);
}
.sec08_point_text_ttl{
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 21px;
    padding: 15px 5px;
}
.sec08_point_text_ttl h4{
    color: #3B755D;
}
.sec08_point_text{
    border: solid 2px #3B755D;
    margin: 20px; 
    border-radius:10px
}
.sec08_promise_text{
    font-size: 16px;
    padding: 0 30px 15px 30px;
    text-align: left;
}
.sec08_point_text hr{
	 border-top: 2px solid #3B755D;
    border-right: none;
    border-bottom: none;
    border-left: none;
        width: 90%;
        display: inline-block;
	margin:0;
}

.sec09{
    max-width: 800px;
    margin: 0 auto;
}
.sec10{
    max-width: 800px;
    margin:0 auto;
}
.sec10_ttl{
    text-align: center;
}
.sec10_ttl img{
    display: inline-block;
}
footer{
    margin-top: 5%;
    max-width: 800px;
    margin: 0 auto;
	background-color:#fff;
}
/*
.footer_rogo{
    text-align: center;
}
.footer_rogo img{
    display: inline-block;
    max-width: 120px;
}

nav{
    text-align: center;
    margin: 5% 0;

    }
nav ul{
    margin: 0 ;
    padding: 0 ;
    }
nav li{
    list-style: none;
    display: inline-block;
    width: 30%;
    min-width: 90px;
    }
nav li:not(:last-child){
    border-right:2px solid #ddd;
    }
nav a{
    text-decoration: none;
    color: #333;
    }
nav a:hover{
    color:#fb9b12;
    }
.copy{
    background-color: #3B81BF;
    text-align: center;
}
.copy p{
    color: #fff;
    font-size: 13px;
	padding: 10px;
}
*/

@media (max-width:767px) {
	modal-content,.loadbox_or,.loadbox_gr {
		margin: 25% auto;
    	width: 98%;
	}
    .sec01 .cnt input[type='number'] {
        margin: 1em auto;
        width: 300px;
        font-size: 16px;
    }
    .sec01 p{
        text-align: center;
        color:#fff;
        font-size: 21px;
		    padding: 10px;
    }
    .sec01 .cnt{
        text-align: center;
        background-color: #fff;
    }
    .sec04 .cnt input[type='number'] {
        margin: 1em auto;
        width: 300px;
        font-size: 16px;
    }
    .cp_ipselect.cp_sl01 {
        position: relative;
        width: 270px;
        height: 40px;
        border-radius: 2px;
        border: 2px solid #fb9b12;
        background: #ffffff;
    }
    .cp_ipselect.cp_sl01 select {
        font-size: 18px;
        padding: 5px 38px 8px 28px;
        color: black;
    }
    .cp_ipselect.cp_sl01::before {
        position: absolute;
        top: 1em;
        right: 0.8em;
        width: 0;
        height: 0;
        padding: 0;
        content: '';
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid #fb9b12;
        pointer-events: none;
    }
    .sec03_point_area p{
        font-size: 0.8em;
        color: #fff;
        border-radius:50px;
        text-align: center;
        padding: 20px 15px 20px;
        margin:10px 5px;
        margin-bottom: 5px;
        line-height: 1
        }
    .countdown-container h4{
            font-size: 21px;
            padding: 15px 80px 0;
        }
    .countdown-container p{
            font-size: 17px;
            font-weight: bold;
            padding: 10px;
        }
    .countdown-container span{
            color:#ec6941;
            font-size: 21px;
        }
    .sec06_pc_image{
            display: inline-block
        }
    .sec06_sp_image{
            display: none;
          }
    .sec07_pc_flow{
            display: inline-block;
          }
    .sec07_sp_flow{
            display: none;
          }
          .check_point li {
            font-size: 18px;
            margin: 0 auto;
        }
        .promise_h4 p {
            font-size: 21px;
            margin: 1em auto;
            width: 340px;
            height: 35px;
        }
 
}
@media (max-width:430px) {
    .sec01 .cnt input[type='number'] {
        margin: 1em auto;
        width: 230px;
        font-size: 16px;
    }
    
    .sec04 .cnt input[type='number'] {
        margin: 1em auto;
        width: 230px;
        font-size: 16px;
    }
	.sec04 .cnt {
    margin: 0px 20px;
    text-align: center;
    border: solid 3px #fb9b12;
    background-color: #fff;
}
.sec04 p {
    margin: 0px 20px;
    text-align: center;
    background-color: #fb9b12;
    color: #fff;
    font-size: 21px;
    padding: 10px 0;
}
    .cp_ipselect.cp_sl01 {
        position: relative;
        width: 270px;
        height: 40px;
        border-radius: 2px;
        border: 2px solid #fb9b12;
        background: #ffffff;
    }

    .sec2_point{
        text-align: left;
        background-color: #fff;
        margin:5%;
    }
    .sec2_point p{
        margin: 10px 0;
        color: #fb9b12;
        font-weight: bold;
        font-size: 21px;
    }
    .sec2_point02{
        text-align: left;
        background-color: #fff;
        border-radius: 10px;
        margin:5%;
    }
    .sec2_point02 p{
        margin: 10px 0;
        color: #fb9b12;
        font-weight: bold;
        font-size: 21px;
    }
    .sec2_point03{
        text-align: left;
        background-color: #fff;
        border-radius: 10px;
        margin:5% 5% 8% 5%;
    }
    .sec2_point03 p{
        margin: 10px 0;
        color: #fb9b12;
        font-weight: bold;
        font-size: 21px;
    }
    
    /*section03*/

    .sec03_ttl_pc{
        display: none;
    }
    .sec03_ttl_sp{
        display: inline-block;
    }
    
    .promise_h4{
        overflow: hidden;
    }
    .promise_h4 p {
        font-size: 21px;
        margin: 1em auto;
        width: 300px;
        height: 35px;
    }
    .promise_img{
        margin-top:20px;
    }
    .img_text_set .promise_img img{
        display: inline-block;
    }
    .img_text_set .promise_img{
        margin: auto;
    }
    .check_point ul{
        text-align: left;
        margin: 5%;
    }
    .check_point li{
        font-size: 20px;
        display: inline-block;
        margin: 0 auto;
    }
    .img_text_set{
        display: block;
    }
    .check_point li::before{
        content: url(./lp_images/check_gr.png);
        display: inline-block;
        vertical-align: middle;
        transform: scale(0.6);
    }
    .check_point span{
        font-size: 10px;
    }
    .point_text01{
        border: solid 2px #f8b551;
        margin: 20px 0px;
        background-color: #fff4e4;
    }
    .point_text01 hr{
	 border-top: 2px solid #f8b551;
    border-right: none;
    border-bottom: none;
    border-left: none;
        margin: 0 5%;
        width: 90%;
    }
    .point_text_ttl01 h4{
        display: flex;
        color: #f8b551;
        font-size: 21px;
        margin: 5% 5%;
    }
    .point_text_ttl01 h4 span{
        color: #aaaaaa;
    }
    .promise_text{
      text-align: left;
       padding: 5%;
    }
    .point_text02{
        border: solid 2px #898989;
        margin: 20px 0px;
    }
    .point_text02 hr{
		border-top: 2px solid #898989;
    border-right: none;
    border-bottom: none;
    border-left: none;
        margin: 0 5%;
        width: 90%;
    }
    .point_text_ttl02 h4{
        display: flex;
        color: #333333;
        font-size: 21px;
        margin: 5% 5%;
    }
    .point_text_ttl02 p{
        color: #f8b551;
    }
    .point_text_ttl02 h4 span{
        color: #aaaaaa;
    }
    .sec03_table{
        margin: 5% 0;
        text-align: left;
        border-collapse: collapse;
        border:solid 2px #cac5c5;
    }
    .sec03_table td, th{
        font-size: 18px;
        padding: 10px;
    }
    .sec03_table th{
        background-color: #efefef;
    }
    .sec03_point_area{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .point_area_box .box01{
        display: flex;
    }
    .point_area_box .box02{
        display: flex;
    }
    .sec03_point_area p{
    font-size: 0.8em;
    background-color: #fb9b12;
    color: #fff;
    border-radius: 20px;
    text-align: center;
    padding: 10px 12px 7px;
    margin-top: 10px;
    margin-bottom: 5px;
    line-height: 1
    }
    .countdown-container h4{
        background-color: #f8b551;
        color: #fff;
        font-size: 21px;
        padding: 7px 60px;
    
    }
    .sec06_ttl_pc{
        display: none;
    }
    .sec06_ttl_sp{
        display: inline-block;
    }
    .sec06_pc_image{
        display: none;
    }
    .sec06_sp_image{
        display: inline-block
      }
    .sec07_pc_flow{
        display: none;
      }
    .sec07_sp_flow{
        display: inline-block;
      }
    .sec07_pc{
        display: none;
    }
    .sec07_sp{
        display: inline-block;
    }
    .flow .flow_pc{
        display: none;
    }
    .flow .flow_sp{
        display: inline-block;
    }
    .sec08_point_text{
        margin: 10px 0px;
    }
    .sec08_point_text h4{
        font-size: 18px;
		text-align:left;
    }
    nav a{
        text-decoration: none;
        color: #333;
        font-size: 16px;
        }

}