@charset "UTF-8";
body{
    font-family: 'Noto Sans JP', sans-serif;
    width: 100%;
    margin: auto;
    background-color:#ffffff;
    color: #555555;
}
img{
    vertical-align:top;
}

/* ボタンデザイン */
.btn-examination, input[type=submit]{
    background-color: #fd5300;
    border-bottom: 3px solid #aa3a0e;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: bold;
}
.btn-examination{
    padding: 5px 15px;
}
input[type=submit]{
    padding: 10px;
    margin-top: 15px;
}


/* ヘッダー */
header{
    position: fixed;
    max-width: 750px;
    width: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    box-shadow: 0px 1px 5px 0px #8e8e8e;
    padding: 15px;
    z-index: 999;
}
.header-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
h1{
    width: 135px;
    line-height: 0;
}

/* メイン */
.fv{
    padding-top: 90px;
}
.text-turquoise{
    font-size: 20px;
    color: #4ba7bc;
}
.fv h2{
    font-size: 35px;
    text-align: center;
    line-height: 1.3;
}
.accent{
    color: #333333;
    position: relative;
    display: inline-block;
    background: linear-gradient(transparent 60%, #ffed00 60%);
    line-height: 1.3;
    padding: 0 5px;
}
.trouble{
    background-color: #999999;
    color: #231815;
    padding: 15px;
}
.trouble .item{
    font-size: 20px;
    font-weight: bold;
    border-radius: 50px;
    background-color: #ffffff;
    width: 90%;
    padding: 5px 0 5px 10%;
    margin: 10px auto;
}
.freecta{
    background-image: url(../../assets/img/lp_b/back_graph.png);
    background-repeat: repeat;
    padding: 30px 15px;
}
.freecta h2{
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
}
.slash{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.slash::before, .slash::after{
    content: "";
    width: 25px;
    height: 2px;
    background-color: #000000;
    margin: 0;
}
.slash::before{
    transform: rotate(65deg)
}
.slash::after{
    transform: rotate(-65deg)
}
.autoloan-item{
    background-color: #ffffff;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
    padding: 20px;
}
.autoloan-item li{
    position:relative;
    list-style: none;
    font-size: 14px;
    font-weight: bold;
    padding-left: 25px;
}
.autoloan-item li::before{
    position: absolute;
    font-family: "Font Awesome 5 Free";
    content: '\f14a';
    top: 0px;
    left: 0px;
}
.fas{
    padding-right: 10px;
}

/* 店舗情報デザイン */
.section-inner{
    padding: 15px;
}
h3{
    font-size: 18px;
}
.infomation-table{
    font-size:15px;
    border: 0px;
    margin: 10px 0;
}
.infomation-table tr,
table tr:nth-child(2n),
table tr:nth-child(2n+1){
    background-color: transparent;
}
.infomation-table th{
    background-color: transparent;
    vertical-align: text-top;
    border:0px;
    font-size: 15px;
    width: 100px;
}
.infomation-table th span{
    background-color: #ffffff;
    border-radius: 12px;
    font-weight: 600;
    color: #555555;
    width: 80px;
    display: block;
}
.infomation-table td{
    text-align: left;
    border:0px;
    font-size: 15px;
}
.infomation{
    background-color: #dfebef;
}
.balloon-title{
    position: relative;
    background-color: #0075a6;
    padding: 30px;
    color: #333;
    text-align: center;
    line-height: 0;
}
.balloon-title::before{
    content: "";
    position: absolute;
    border: 12px solid transparent;
    border-top: 12px solid #0075a6;
    top: 100%;
    left: 50%;
    margin-left: -6px;
}
iframe{
    max-height: 200px;
    padding: 5px 0;
}


/* フッター */
footer{
    background-color: #555555;
    padding: 5px 0;
}
footer p{
    text-align: center;
    color: #ffffff;
    font-size: 10px;
}

/*iPhone14 Pro Max以下*/
@media screen and (max-width:430px){
    .fv{
        padding-top: 70px;
    }
    .fv h2{
        font-size: 30px;
    }
    .text-turquoise{
        font-size: 14px;
    }
    .trouble .item{
        font-size: 14px;
    }
    .freecta h2{
        font-size: 15px;
    }
}

/*GalaxyA8+以下*/
@media screen and (max-width:360px){
    .fv h2{
        font-size: 28px;
    }
    .freecta h2{
        font-size: 14px;
    }
}

/*iphoneMini以上*/
@media screen and (min-width:750px){
    body{
        max-width: 750px;
    }
    h1{
        width: 250px;
    }
    .btn-examination{
        padding: 10px 30px;
        font-size: 20px;
    }
    .text-turquoise{
        font-size: 25px;
    }
    .fv h2{
        font-size: 55px;
    }
    .trouble .item{
        font-size: 25px;
        width: 80%;
        margin: 15px auto;
    }
    .freecta{
        padding: 50px;
    }
    .freecta h2{
        font-size: 30px;
    }
    .slash::before, .slash::after{
        width: 40px;
        height: 3px;
    }
    .autoloan-item{
        padding: 30px;
    }
    .autoloan-item li{
        font-size: 20px;
    }
    h3{
        font-size: 26px;
    }
}
