/* リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基本スタイル */
body {
    width: 100%;
    overflow-x: hidden;
    font-family: "Noto Sans JP", sans-serif;

}

.lp-container {
    width: 100%;
    display: block;
}

/* 画像共通 */
picture {
    width: 100%;
    display: block;
}

.lp-image {
    width: 100%;
    height: auto;
    display: block;
}

/* PC版: 769px以上 */
.lp-picture-pc {
    width: 100%;
    display: none;
}

@media (min-width: 769px) {
    .lp-picture-pc {
        display: block;
    }

    .lp-sp-wrapper {
        display: none !important;
    }
}

/* スマホ版: 768px以下 */
.lp-sp-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

@media (min-width: 769px) {
    .lp-sp-wrapper {
        display: none;
    }
}

/* 電話リンク */
.lp-tel-link {
    width: 100%;
    max-width: 87%;
    display: block;
    text-decoration: none;
    cursor: pointer;
    margin: 20px 40px;
    margin: 0 auto;
    margin-top: 25px;
    margin-bottom: 50px;
}

.lp-tel-image {
    display: block;
}

.lp-tel-link-pc{
    width: 80%;
    max-width: 1000px;
        display: block;
    margin: 0 auto;
}

/* 問い合わせフォームボタン */
.lp-form-button-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 30px 20px;
}

.lp-form-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 30px 40px;
    background-color: #004f9c;
    color: white;
    text-decoration: none;
    border-radius: 50vh;
    font-weight: bold;
    font-size: 26px;
    transition: background-color 0.3s ease;
    text-align: center;
}

.lp-form-button:hover {
    background-color: #004080;
}

/* スマホ版ボタンスタイル */
@media (max-width: 768px) {
    .lp-form-button {
        width: 90%;
        /* max-width: 300px; */
        padding: 20px 30px;
        font-size: 16px;
    }

    .lp-form-button-wrapper {
        padding: 0;
        margin-bottom: 4rem;
    }

    .lp-tel-link {
        margin-bottom: 2rem;
    }
    .lp-pc-only{
        display: none!important;
    }
}


/* 利用規約リンク */
.lp-terms-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 15px 20px 20px;
    /* background-color: #f5f5f5; */
}

.lp-terms-link {
    font-size: 20px;
    color: #004f9c;
    text-decoration: none;
    transition: color 0.3s ease;
    text-decoration: underline;
            font-weight: bold;

}

.lp-terms-link:hover {
    color: #333;
    text-decoration: underline;
}

a.lp-terms-link[href$=".pdf"]:before {
    content: "\f1c1";
    color: #ff2116;
    font-weight: bold;
    font-size: 1rem;
    font-family: "Font Awesome 5 Free";
    margin-right: 5px;
}

a.lp-terms-link[target="_blank"]:after {
    content: "\f35d";
    /* color: #aaa; */
    font-weight: bold;
    font-size: .7rem;
    font-family: "Font Awesome 5 Free";
    margin-left: 5px;
}

.lp-form-button-wrapper.lp-form-button-wrapper_btm {
    margin-bottom: 2rem;
}

/* スマホ版利用規約リンク */
@media (max-width: 768px) {
    .lp-terms-link {
        font-size: 18px;
        font-weight: bold;
    }
}


/* フォームボタンアイコン */
.lp-form-button-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
}

@media (max-width: 768px) {
    .lp-form-button-icon {
        width: 20px;
        height: 20px;
    }
    /* 利用規約リンク */
.lp-terms-wrapper {
    padding: 15px 20px 0px;
}
}