@charset "utf-8";
/* CSS Document */
/*all*/
*, *:before, *:after {
    box-sizing: border-box;
    }
body {
    font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'Meiryo', 'メイリオ', "Century Gothic", sans-serif!important;
    color: #000;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    position: relative;
    height: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
p {
    line-height: 1.6;
    word-wrap: break-word;
}
img{
    display: inline-block;
    max-width: 100%;
    text-align: center;
    vertical-align: bottom;
    margin: 0;
    padding: 0;
}

/*common*/
/*pc・sp responsive*/
@media screen and (max-width:768px){
    .sp_ds{
        display: block;
    }
    .pc_ds{
        display: none;
    }
    form input[type=submit] {
    width: 49%;
    font-size: 23px;
    }
    div .otoiawase_naiyou {
    padding: 10% 5%;
    }
}
@media screen and (min-width:768px){
    .sp_ds{
        display: none;
    }
    .pc_ds{
		display: block;
    }
}

.po_r {
    position: relative;
}
.po_ab {
    position: absolute;
}

/*content*/
.content_ss, .content_s, .content_m, .content_l {
    display: block;
    padding: 2%;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    box-sizing:border-box;
}
.content_s {
    max-width: 700px;
}
@media screen and (max-width:900px){
    .content_s {
        width: 90%;
        padding: 2% 4%;
    }
}
.content_m {
    max-width: 1100px;
}
@media screen and (max-width:1200px){
    .content_m {
        width: 90%;
        padding: 2% 4%;
    }
}
.content_l {
    max-width: 1400px;
}
@media screen and (max-width:1500px){
    .content_l {
        width: 90%;
        padding: 2% 4% 12% 4%;
    }
}
@media screen and (max-width: 768px){
.content_ss, .content_s, .content_m, .content_l {
        padding: 8% 0 1%;
    }
}

/*decoration*/
.teL {
    text-align: left;
}
.teR {
    text-align: right;
}
.red {
    color: #e50f29;
}
.yellow{
    color:#f7ff1c;
}


/*header*/
header {
    display: flex;
    width: 100%;
    max-height: 80px;
    margin: auto;
    z-index: 20;
    padding: 0.5%;
    background: #fff;
    font-size: 0.9em;
    align-items: center;
    justify-content: space-between;
}
header .logo {
    padding: 0 0 0 1%;
}
.hea_l {
    width: 20%;
}
.hea_r {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 54px;
}
.hea_r a.tel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
}
.hea_r a.tel p {
    color: #ff0000;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.0;
    margin-left: 6px;
}
.hea_r a.tel span {
    color: #000;
    font-weight: normal;
    font-size: 0.8rem;
}
.hea_r a.mail {
    background-color: #038ce7;
    padding: 4px;
    width: 50px;
    height: 50px;
    display: flex;
    margin-left: 10px;
    border-radius: 4px;
}
.hea_r a.mail img {
    margin: auto;
    width: 90%;
}
@media screen and (max-width:1200px){
    header .logo {
        padding: 0 0 0 1%;
        width:100% ;
    }
}
@media screen and (max-width:768px){
    header {
        padding: 2%;
    }
    .hea_l {
        width: 30%;
    }
    .hea_r {
        margin-right: 50px;
    }
    .hea_r a.tel img {
        width: 17%;
    }
    .hea_r a.tel p {
        font-size: 1.0rem;
        letter-spacing: -1.2px;
        margin-left: 4px;
    }
    .hea_r a.tel span {
        font-size: 0.6rem;
        letter-spacing: normal;
    }
    .hea_r a.mail {
        padding: 4px;
        width: 42px;
        height: 42px;
        margin-left: 4px;
    }
}
/* ハンバーガーボタン */
.hamburger {
    display : block;
    position: fixed;
    z-index : 3;
    right : 5px;
    top   : 5px;
    width : 50px;
    height: 50px;
    cursor: pointer;
    text-align: center;
    border-radius: 4px;
    background: #eafcff;
  }
  .hamburger span {
    display : block;
    position: absolute;
    width   : 30px;
    height  : 3px ;
    left    : 11px;
    background : #038ce7;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition   : 0.3s ease-in-out;
    transition        : 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 14px;
  }
  .hamburger span:nth-child(2) {
    top: 24px;
  }
  .hamburger span:nth-child(3) {
    top: 34px;
  }

  /* ナビ開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
    top : 25px;
    left: 11px;
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
  }

  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 25px;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
  }

  nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 79px;
    right: 0;
    color: #000;
    background: #fff;
    text-align: center;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 400px;
  }

  nav.globalMenuSp ul {
    background: #ebebeb;
    margin: 0 auto;
    padding: 0 0 40px;
    width: 100%;
  }

  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #fff;
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  nav.globalMenuSp ul li:hover{
    background :#ddd;
  }

  nav.globalMenuSp ul li a {
    display: block;
    color: #000;
    padding: 1em 0;
    text-decoration :none;
  }

  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.active {
    transform: translateX(0%);
  }

  nav.globalMenuSp ul li a{
  max-width: 300px;
  width: 90%;
  text-align: left;
  margin: auto;
  color: #0060ff;
  font-weight: bold;
}
nav.globalMenuSp ul li a::before{
  content: "▼";
  margin-right: 10px;
}
nav.globalMenuSp.active p {
    text-align: center;
    margin: 0;
    padding: 20px 0;
}

@media screen and (max-width:640px) {
    .hamburger {
        right: 8px;
        top: 8px;
        width: 42px;
        height: 42px;
    }
    .hamburger span {
        left: 6px;
    }
    .hamburger span:nth-child(1) {
        top: 9px;
    }
    .hamburger span:nth-child(2) {
        top: 19px;
    }
    .hamburger span:nth-child(3) {
        top: 29px;
    }
    nav.globalMenuSp {
    top: 65px;
    width: 100%;
    }
    .hamburger.active span:nth-child(1) {
    top: 21px;
    left: 8px;
    }
    .hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
    top: 21px;
    }
}

/* モーダルウィンドウ */
.madal_container {
    background: rgba(0, 0, 0, .7);
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 10000;
}
.madal_contents {
    width: 29%;
    height: auto;
    position: absolute;
    top: 44%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.madal_contents span {
    cursor: pointer;
    position: absolute;
    top: -38px;
    right: -33px;
    color: #fff;
    font-size: 2em;
    z-index: 11111;
    font-weight: bold;
}
.active {
    display: block !important;
    animation-name: fadeIn;
    animation-duration: .2s;
    animation-fill-mode: both;
}
@media screen and (max-width:768px) {
    .madal_contents {
        width: 75%;
        top: 47%;
    }
}


/*mv*/
.fv{
    position: relative;
}
.cta_box{
    position: absolute;
    width: 50%;
    top: 85%;
    right: 0;
    left: 0;
    margin: 0 auto;
}
.mv_pc {
    text-align: center;
    width: 100%;
    margin: 0 auto;
}
.mv_pc_text {
    position: absolute;
    width: 100%;
}

/*時間表示*/
.hour-all{
    position: absolute;
    bottom:100%;
    left:25%;
}
.hour p {
    font-size: clamp(13px, 2.0vw, 28px);
    font-weight: bold;
    z-index: 1;
}
/* 点滅 */
.blinking{
    -webkit-animation:blink 0.7s ease-in-out infinite alternate;
    -moz-animation:blink 0.7s ease-in-out infinite alternate;
    animation:blink 0.7s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}

@media screen and (max-width:1200px) {
    .mv_pc_text {
        width: 100%;
    }
}
@media screen and (max-width:768px) {
    .mv_pc{
        display: none;
    }
    .fv .hour p {
        line-height: 1.3;
    }
    .cta_box{
        width: 90%;
        right: 0;
        left: 0;
        margin: 0 auto;
    }
    /*時間表示*/
.hour-all{
    left: 20%;
}
}
@media screen and (max-width:376px) {
    /*時間表示*/
    .hour-all{
        left: 14%;
    }
}

@media (min-width: 501px) and (max-width: 767px) {
    .fv .hour p {
        font-size:18px;
    }
}


/*cta*/
.cta_box{
    position: absolute;
    left: 0;
    right: 0;
    top: 80%;
}
.cta p{
    font-size: clamp(16px, 2.5vw, 35px);
    font-weight: bold;
    text-align: center;
    margin: 0 0 5%;
}
.cta {
    position: relative;
    width: 100%;
    z-index: 1;
    max-width: 600px;
    margin: 1% auto;
}
.cta a::before,
.cta a::after {
    content: "";
    position: absolute;
    z-index: -10;
    width: 90%;
    height: 84%;
    top: 10px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 999px;
    transform: translate3d(0, 0, 0);
}
.modal_area_cta .cta a::before,
.modal_area_cta .cta a::after {
    content: "";
    position: absolute;
    z-index: -12;
    width: 90%;
    height: 78%;
    top: 11%;
    left: 3px;
    right: 0;
    margin: 0 auto;
    border-radius: 200px;
    transform: translate3d(0, 0, 0);
}
.offer_cta.cta a::before,
.offer_cta.cta a::after {
    content: "";
    position: absolute;
    z-index: -10;
    width: 86%;
    height: 91%;
    top: 5%;
    left: -2px;
    right: 0;
    margin: 0 auto;
    border-radius: 200px;
    transform: translate3d(0, 0, 0);
}

.cta a::before {
    animation: aura 3s ease-out infinite;
}
.cta a::after,
.cta02 a::after {
    animation: aura 3s ease-out 1.5s infinite;
}
.cta a::before,
.cta a::after {
    background: #f5354d;
}
@keyframes aura {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }
    90% {
        opacity: 0.1;
    }
    to {
        transform: scale(1.2, 1.5);
        opacity: 0;
    }
}
@keyframes aura2 {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }
    90% {
        opacity: 0.1;
    }
    to {
        transform: scale(1.1, 1.2);
        opacity: 0;
    }
}


/*scroll*/
.scroll_area {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 3% auto 2%;
    color: #131313;
    background-color: #038ce7;
    border-radius: 100px;
    z-index: 5;
}
.scroll01 {
    position: absolute;
    bottom: 45%;
    left: 25%;
    width: 3em;
    height: 1em;
    cursor: pointer;
    text-decoration: none;
    color: #038ce7;
}
.scroll01 span {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-align: center;
}
.arrow {
    position: absolute;
    top: 1.25em;
    left: 2em;
    animation: 2s arrow-animation infinite ease-in-out;
    width: 0;
    height: 10em;
    border: 0.5px solid #038ce7;
}
.arrow::after {
    content: '';
    display: block;
    position: absolute;
    top: 100%;
    left: -2px;
    width: 1px;
    height: 10px;
    border-top: 10px solid #038ce7;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
}
@keyframes arrow-animation {
    0% {
    height: 1em;
    }
    66% {
    height: 5em;
    }
}
@media screen and (max-width:1200px) {
    .cta_box{
        bottom: -8%;
    }
}
@media (min-width: 376px) and (max-width: 767px) {
    .cta_box{
        bottom: -5%;
    }
    /*.cta a::before, .cta a::after{
        max-width: 700px;
    }*/
    .cta a::before, .cta a::after{
        width: 100%;
        height: 55%;
        left: 12%;
        top: 37%;
        max-width: 500px;
    }
}
@media screen and (max-width:768px) {
    .cta_box{
        bottom: 3%;
        top: unset;
    }

    /*.cta{
        max-width: 550px;
    }*/
    .cta p{
        margin: 4% 0 2%;
    }
    .cta img{
        width: 85%;
        margin: 0 auto;
        display: block;
    }
    .cta a::before, .cta a::after{
        overflow: hidden;
        width: 78%;
        height: 86%;
        top: 9%;
        left: 0%;
        border-radius: 70px;
        transform: translate3d(0,0,0);
        max-width: 400px;
    }
    .scroll_area {
        width: 80px;
        height: 80px;
        margin: 4% auto 2%;
    }
    .scroll01 {
        left: 19%;
        bottom: 40%;
    }
    .scroll01 span {
        font-size: 15px;
    }
    .arrow {
        left: 1.5em;
        height: 5em;
    }
}



/*title*/
h2 {
    margin: 0;
}
.ttl {
    padding: 2% 0;
    text-align: center;
}
.ttl img{
    width: 40%;
    margin: 0 auto;
    text-align: center;
}


/*worries*/
.worries .ttl img{
    width: 45%;
}
.worries_wrap{
    position: relative;
}
.worries{
    display: block;
    text-align: center;
    background-image: url(../img/worries_bg_pc.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width:100%;
    padding: 0% 0 0;
}
.big_arrow{
    position: absolute;
    filter: drop-shadow(0 8px 5px rgba(0, 62, 124, 0.3));
    width:100%;
}
/* .bg_arrow::before {
    position: absolute;
    z-index: 0;
    content: '';
    display: inline-block;
    background: url(../img/worries_bottom_pc.png) no-repeat;
    background-size: contain;
    width:100%;
    height: 30%;
    top: 113%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    filter: drop-shadow(0 8px 5px rgba(0, 62, 124, 0.3));
} */
.worries .content_m img{
    text-align: center;
    margin: 0 auto;
    width: 85%;
}
.worries .text img{
    position: relative;
    z-index: 2;
}
.achievements{
    margin-top: 5%;
}
.case_ttl{
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 1%;
    margin-top: 4%;
    padding: 0 2%;
}
.case_inner{
    max-width: 1000px;
    padding: 2%;
    margin: 0 auto;
    width: 100%;
}
@media screen and (max-width:1200px) {
    .worries{
        padding: 3% 0 0;
    }
}
@media screen and (max-width:768px) {
    .worries .ttl img{
        width: 90%;
    }
    .worries{
        margin: auto 0;
        background-image: url(../img/worries_bg_sp.jpg);
    }
    .worries::before {
        top:114%;
    }
    .worries .content_m{
        width: 95%;
        padding: 0 0 6%;
        z-index: 1;
    }
    .worries .content_m img{
        margin-bottom: 20px;
    }
    .case_ttl{
        width: 82%;
        margin-bottom: 4%;
    }
    .case_inner{
        width: 95%;
        margin-bottom: 10%;
    }
}
@media (min-width: 376px) and (max-width: 767px) {
    .worries{
        margin: -10% 0 0;
        padding: 9% 0 0% 0;
    }
}


/*offer*/
.offer{
    display: block;
    text-align: center;
    background-image: url(../img/offer_bg_pc.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    width:100%;
    padding: 12% 0 1%;
}
@media screen and (max-width:768px) {
    .offer .content_m{
        width: 100%;
        padding: 9% 2% 30px;
    }
    .offer_cta{
        margin-top: 15px;
    }
}

/*flow*/
.flow{
    display: block;
    background-image: url(../img/price_bg_pc.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    width:100%;
    text-align: center;
    padding: 3% 0 0;
    z-index: 5;
}
/* .flow:before {
    position: absolute;
    content: '';
    display: inline-block;
    background: url(../img/flow_top.png) no-repeat;
    background-size: contain;
    width: 150px;
    height: 150px;
    top:4%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
} */

/*price～reason*/
.content_bg{
    display: block;
    text-align: center;
    background-image: url(../img/reason_bg_pc.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    width:100%;
}

@media screen and (max-width:1500px) {
    /* .flow:before {
        width: 100px;
        height: 100px;
        top:10%;
    } */
    .flow .content_l{
        width: 90%;
        padding: 2% 0;
    }
}
@media screen and (max-width:768px) {
    /* .flow:before {
        width: 100px;
        height: 100px;
        top:2%;
    } */
    .flow{
        background-image: url(../img/price_bg_sp.png);

    }
    .flow .ttl img{
        width: 90%;
    }
    .flow .content_l{
        width: 90%;
        padding: 3% 0 8%;
    }
    .flow p{
        font-size: 12px;
    }
}
/* voice */
.voice{
    background-image: url(../img/voice_bg_pc.jpg);
    background-repeat: no-repeat;
    background-position: bottom;
    margin-top: 6%;
}
.voice_ttl{
    margin: 0 auto;
    margin-bottom: 2%;
}
.slider {
    /*横幅94%で左右に余白を持たせて中央寄せ*/
    margin: 0 auto;
    width: 90%;
    padding-bottom: 10%;
}

.slider img {
    height: auto;
}

.slider .slick-slide {
    transform: scale(0.8);
    /*左右の画像のサイズを80%に*/
    transition: all .5s;
    /*拡大や透過のアニメーションを0.5秒で行う*/
    opacity: 0.5;
    /*透過50%*/
}

.slider .slick-slide.slick-center {
    transform: scale(0.9);
    /*中央の画像のサイズだけ等倍に*/
    opacity: 1;
    /*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev {
    position: absolute;
    content: '';
    display: inline-block;
    background-image: url(../img/arrow02.png);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    top: 33%;
    cursor: pointer;
    height: 50px;
    width: 50px;
    z-index: 2;
    left: 200px;
}

.slick-next {
    position: absolute;
    content: '';
    display: inline-block;
    background-image: url(../img/arrow01.png);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    top: 33%;
    right: 200px;
    cursor: pointer;
    height: 50px;
    width: 50px;
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align: center;
    margin: 20px 0 0 0;
}

.slick-dots li {
    display: inline-block;
    margin: 0 10px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width: 14px;
    /*ドットボタンのサイズ*/
    height: 14px;
    /*ドットボタンのサイズ*/
    display: block;
    padding: 0;
    border-radius: 50%;
    border: none;
    background: #ccc;
    /*ドットボタンの色*/
}

.slick-dots .slick-active button {
    background: #333;
    /*ドットボタンの現在地表示の色*/
}
/*price*/
.price .ttl img{
    width: 50%;
}
.price{
    position: relative;
    display: block;
    text-align: center;
    background-image: url(../img/flow_bg_pc.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    width:100%;
    padding: 5% 0 0;
}
.price .content_s {
    padding: 0 0 13%;
}
@media screen and (max-width:768px) {
    .voice {
        margin-top: 11%;
        padding-bottom: 15%;
    }
    .voice_ttl{
        width: 85%;
        margin-bottom: 6%;
    }
    .slider img {
       margin: 0 2%;
    }
    .slider2{
        margin: 0 auto 20px;
    }
    .slick-slide img {
        padding: 0 6%!important;
    }
    .slick-prev {
        top: 42%;
        height: 40px;
        width: 40px;
        left: 7px;
    }
    .slick-next {
        top: 42%;
        height: 40px;
        width: 40px;
        right: 7px;
    }
    .price .ttl img{
        width: 80%;
    }
    .price .content_s{
        padding: 3% 0 30%;
    }
    .price{
        background-image: url(../img/flow_bg_sp.jpg);
    }
}


/*reason*/
.reason{
    padding: 0;
}
.reason .ttl{
    padding: 4% 2% 0 2%;
}
.reason .content_l{
    padding: 0 0 8%;
}
.reason .ttl img{
    width: 45%;
}
.list {
    display: flex;
    justify-content: center;
    align-items: start;
    margin: 0 auto;
}
.list img {
    padding: 0 5px 0;
    width: 36%;
}
@media screen and (max-width:768px) {
    .content_bg{
        background-image: url(../img/reason_bg_sp.jpg);
    }
    .reason .ttl img{
        width: 90%;
    }
    .reason .content_l{
        width: 90%;
        padding: 0 0 15%;
    }
}


/*area*/
.area{
    position: relative;
    display: block;
    text-align: center;
    background-image: url(../img/area_bg_pc.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    text-align: center;
    padding: 0;
}
.area:before {
    position: absolute;
    content: '';
    display: inline-block;
    background: url(../img/area_top_pc.png) no-repeat;
    background-size: contain;
    width:100%;
    height: 100%;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.area .ttl img{
    width: 65%;
}
@media screen and (max-width:1450px) {
    .area:before{
        top: 43%;
    }
}
@media screen and (max-width:768px) {
    .area:before {
        background: url(../img/area_top_sp.png) no-repeat;
        background-position: center;
        background-size: contain;
        width: 100%;
        top: -3%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }
    .area:before img{
        width: 50%;
    }
    .area .ttl img{
        width: 100%;
    }
    .area{
        background-image: url(../img/area_bg_sp.jpg);
    }
    .area .content_m{
        width: 95%;
        padding: 0 0 8%;
    }

}

/*qa*/
.qa .ttl img{
    width: 20%;
}

/*accordion*/
.accordion {
    max-width: 900px;
    margin: 40px auto 0;
    width: 90%;
}
.accordion .toggle {
    display: none;
}
.accordion .Label {
    /*タイトル*/
    padding: 10px;
    display: block;
    color: #fff;
    background: #0cb4c4;
    text-align: left;
    font-weight: 500;
    font-size: 21px;
    border-radius: 8px;

}
.accordion .Label::before {
    content: "";
    display: inline-block;
    /*background-color: #fff;
    border-radius: 30px;
    color: #0cb4c4;*/
    background-image: url(../img/q_icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    cursor: pointer;
    height: 40px;
    width: 40px;
    margin-right: 20px;
}

.accordion .Label::after {
    /*タイトル横の矢印*/
    content: "";
    width:15px;
    height: 15px;
    border-top: 4px solid #fff;
    border-right: 4px solid #fff;
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 8px);
    right: 25px;
    transform: rotate(135deg);
}
.accordion .Label,
.accordion .content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
}
.accordion .content {
    /*本文*/
    height: 0;
    margin-bottom: 17px;
    padding: 0 20px;
    overflow: hidden;
    text-align: left;
}
.toggle:checked+.Label+.content {
    /*開閉時*/
    height: auto;
    padding: 20px;
    transition: all .3s;
}
.toggle:checked+.Label::after {
    transform: rotate(-45deg) !important;
}
@media screen and (max-width:640px) {
    .accordion .Label::before {
        height: 20px;
        width: 20px;
        margin-right: 8px;
    }
    .accordion .Label::after {
        width:10px;
        height: 10px;
        right: 16px;
    }
    .accordion .Label {
    padding: 13px 35px 13px 42px;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 1px;
    text-indent: -27px;
    }
    .toggle:checked+.Label+.content {
    padding: 13px;
    }
    .toggle:checked+.Label+.content p{
    font-size: 16px;
    line-height: 1.4;
    }
    .accordion .content {
    margin-bottom: 10px;
    }
    .qa_title {
    padding: 40px 0 10px;
    width: 35%;
    }
    .accordion {
    margin: 20px auto 0;
    }
}

@media screen and (max-width:768px) {
    .qa .ttl img{
        width: 50%;
    }
}



/*プライバシーポリシー*/
.fs_ss {
    font-size: min(12px,14px);
}
.privacy .content_s  {
    border: 1px solid #b3b3b3;
    border-radius: 10px;
    font-size: clamp(13px, 1.7vw, 13px);
    margin: 5% auto 4%;
    padding: 3%;
}
.scroll02{
    height: 300px;
    overflow: auto;
    padding: 0 10px 0 0;
    text-align:justify;
    overflow-y: scroll;
}
@media screen and (max-width:768px){
    .privacy .content_s{
        padding: 4% 6% 4% 4%;
        margin: 0 auto 6%;
    }
}


footer{
    display: block;
    text-align: center;
    background-image: url(../img/footer_bg_pc.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    width: 100%;
    padding: 8% 0 3%;
    background-color: #dcf5fa;
}
footer img{
    margin: 0 auto;
    width: 100%;
}
footer .content_l{
    padding: 0;
}
footer p, footer a{
    color: #fff;
    font-size:min(4vw,16px);
}
@media screen and (max-width:768px){
    footer{
        padding: 12% 0 8%;
        background-image: url(../img/footer_bg_sp.png);
    }
}


/*追従*/
/* #follow_cta {
    background-color: #00aeff;
    bottom: 0;
    position: fixed;
    width: 100%;
    z-index: 999;
}
.follow_inner {
    display: flex;
    max-width: 800px;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin: auto;
}
#follow_cta p {
    color: #fff;
    margin-right: 20px;
    width: 55%;
    font-size: 1.2rem;
    width: 100%;
}
#follow_cta img {
    padding: 4% 0;
} */
 .tui {
    position: fixed;
    bottom: 0;
    text-align: center;
    z-index: 1000 !important;
    width: 100%;
    background-image: url(../img/flowting_pc.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    padding: 6% 0 0;
    margin: 0 auto 1%;
}
.tui div {
    max-width:400px;
    width: 100%;
    margin: 0 auto;

}
.tui .cta{
    padding: 0 0 5%;
}

.tui .cta a::before, .tui .cta a::after {
    content: "";
    position: absolute;
    z-index: -10;
    width: 97%;
    height: 61%;
    top: 11%;
    left: 1%;
    border-radius: 50px;
    transform: translate3d(0, 0, 0);
}
.btn-tui{
    position: relative;
    /*margin-top: 50px;*/
 }
.po_r{
    position: relative;
}
.po_a{
    position: absolute;
    bottom: 98%;
    right: 0;
    left: 0;
}
.po_a img{
    max-width:470px;
    width:90%;
}
.tui img{
    vertical-align: bottom;
    margin-bottom: 2%;
}
.tui .cta a{
    width: 91%;
    margin:  0 auto;
}
.pagetop.DownMove{
    animation: DownAnime 0.5s forwards;
}
.pagetop.UpMove {
    animation: UpAnime 0.5s forwards;
}
.footer {
    transition: 0.5s;
}
.is-hidden {
    visibility: hidden;
    opacity: 0;
    transition: .5s;
}
.tui_link{
    display:flex;
    justify-content: space-between;
}
.tui_link a{
    width:48%;
}
.btn-tui .hour-all{
    top: -56%;
    left: -19%;
}
.btn-tui .hour-all .hour p {
    font-size: clamp(13px, 2vw, 20px);
    color: #fff;
}
@media screen and (max-width:1500px) {
    .btn-tui .hour-all{
        top: -50%;
        left: 0%;
    }
}


@media screen and (max-width:1200px) {
    .tui div {
        width: 85%;
    }
    .btn-tui .hour-all{
        top: -48%;
        left: -14%;
    }
    .btn-tui .hour-all .hour p {
        font-size: 14px;
    }

}
@media screen and (max-width:1000px) {
    .btn-tui .cta{
        max-width: 460px;
    }
    .tui .cta{
        padding: 2% 0 4%;
    }
    .btn-tui .hour-all{
        top: -32%;
    }
}
@media screen and (max-width:768px) {
    .tui {
        background-image: url(../img/flowting_sp.png);
        padding: 60px 0 0;
    }
    .tui div {
        padding: 5px;
        width:100%;
    }
    .tui img {
        margin-bottom: -1%;
    }
    .po_a {
        bottom: 80%;
    }
    .tui_link a {
        width: 49%;
    }
    .btn-tui .hour-all {
        line-height: 0.5;
    }
    .btn-tui .hour-all .hour p{
        font-size: 13px;
        line-height: 1.3;
        margin-top: 5%;
    }
    .tui .cta {
        padding: 0 0 3%;
        width: 90%;
    }
    .tui .cta a::before, .tui .cta a::after {
        width: 82%;
        height: 67%;
        left: 0%;
    }
}
@media (min-width: 376px) and (max-width: 767px) {
    .btn-tui .cta{
        max-width: 400px;
    }
    .btn-tui .hour-all{
        top: -103%;
        left: 19%;
    }
    .tui .cta {
        width: 70%;
    }
}
@media screen and (max-width:375px) {
    .btn-tui .hour-all{
        top: -91%;
        left: 12%;
    }
}
.warning{
    display: block;
    text-align: center;
    background-image: url(../img/warning_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    width:100%;
    max-height: 550px;
    margin: 0 auto;
    position: relative;
}
.warning_pc_text {
    position: relative;
    text-align: center;
    max-width: 1295px;
    margin: 0 auto;
}

.container {
    width: 100%;
    max-width: 1000px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 5%;
}
.d_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 20px;
}
.service_box {
    width: 32%;
    margin-bottom: 20px;
    cursor: pointer;
}

.modal-container.active {
    opacity: 1;
    visibility: visible;
}
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 50%);
    padding: 40px 20px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-sizing: border-box;
    z-index: 10000;
}

.modal{
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 1em;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    z-index: 2;
  }
  .modal_area{
    display: flex;
    background-color: #ecf7ff;
  }
  .modal_area p{
    margin-top:auto;
    margin-bottom: auto;
    padding-left:10px;
  }
  .modal_area img{
    width: 100%;
    max-width: 200px;
  }
  .modalgroup img:nth-last-child(1){
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
    padding: 15px;
}
.modal_area_cta{
    padding: 0 49px 20px;
}
  @media screen and (max-width: 767px) {
    .modal_area{
        display:block;
      }
      .modal_area p{
        margin-top:auto;
        margin-bottom: auto;
        padding: 15px 0;
        padding-left:10px;
      }
    .modal_area img{
        max-width: 1000px;
    }
    .modal_area_cta{
        padding: 0 5px 10px;
    }
}
@media screen and (max-width:375px) {
    .modalgroup img:nth-last-child(1){
        width: 100%;
        max-width: 300px;
    }
}
  .modal-open:target {
    display: block;
  }
  #info{
	display: none;
}

/*モーダルの横幅を変更したい場合*/
.modal-container{
    max-width: 600px;
}

/*モーダルのボタンの色を変更したい場合*/
.modal-close:after,
.modal-close:before{
	background:#ccc;
}

.modal-close:focus:after,
.modal-close:focus:before,
.modal-close:hover:after,
.modal-close:hover:before{
	background:#666;
}
.modaal-container{
    max-width: 650px;
}
.modaal-content-container{
    padding: 0;
}
.floating{
    z-index:999;
}

/* 二次代理店募集 */
.boshu_ttl{
    max-width: 500px;
    margin: 0 auto;
    margin-bottom: 1.5%;
    margin-top: 4%;
    padding: 0 2%;
}

.boshu p{
    text-align: center;
    font-size: 22px;
    margin-bottom: 40px;
}

@media screen and (max-width:768px){
    .boshu_ttl{
        width: 85%;
        margin: 10% auto 3%;
    }
    .boshu p{
        font-size: 17px;
        margin-bottom: 50px;
    }
}

/* ここからフォーム */


.otoiawase_naiyou {
    max-width: 900px;
    margin: 40px auto;
    background-color: #fff;
    border-radius: 15px;
    padding: 5%;
    box-sizing: border-box;
}

.taC {
    text-align: center;
}
h2 {
    color: #071F37;
}
.step__bar {
    width: 80%;
    margin: 40px auto;
}

.step__bar ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding-inline-start: 0px;
    color: #071F37;
    font-weight: 600;
    margin-block-end: 0em;
}

.step__bar ul li {
    font-size: 1.5rem;
}
.step__bar p.bar {
    height: 10px;
    background-color: #dadada;
    position: relative;
    border-radius: 5px;
    margin-top: 5px;
}
.step__bar p.bar:after {
    position: absolute;
    content: " ";
    display: block;
    height: 10px;
    background-color: #0fb5c5;
    border-radius: 5px;
    bottom: 0px;
    width: 33.3%;
}
.form_tbl table {
    width: 100%;
    border: none;
}
.form_tbl th {
    display: block;
    width: 100%;
    border: none !important;
    color: #071F37;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    padding: 10px;
    padding: 20px 0 15px;
}

label span.must {
    font-size: 70%;
    margin-left: 10px;
    color: #fff;
    background: #e70014;
    padding: 2px 10px 2px;
    font-size: 13px;
    margin-bottom: 2px;
}
.form_tbl td {
    display: block;
    width: 100%;
    margin-bottom: 13px;
    font-size: 19px;
}

.form_tbl td input, .form_tbl td textarea, .form_tbl td select {
    text-indent: 1em;
}

.form_tbl input, select, textarea {
    background-color: #E9EDEF;
    border: none;
}
.form_tbl input, select, textarea {
    padding: 15px 0;
    font-size: 18px;
    width: 100%;
}

.submitbtn {
    text-align: center;
    margin-top: 30px;
}

input[type=submit] {
    width: 33%;
    padding: 10px 0px;
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #FFF;
    background: #e50f29;
    border-radius: 10px;
    box-shadow: 0px 10px 0px #bd000b;
    font-size: 30px;
    font-weight: bold;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
}

div#toiawase {
    background-color: #dcf5fa;
    padding: 3%;
}
.toiawaseTtl {
    font-size: 1.5em;
    font-weight: bold;
}
.h-adr input, .h-adr select {
    margin-bottom: 10px;
}
.yubin {
    display: inline-block;
    width: 40% !important;
    margin-left: 2%;
}