@charset "UTF-8";

/* 共通
--------------------------------------------------------------------- */
.container {
    max-width: 600px;
    margin: 0 auto;
    background: #FFF1F1;
}

.container img {
    width: 100%;
}

.container h1 {
    margin: 20px 0 0;
}

/* ボタンエリア
---------------------------------------------*/
.container .btn_wrap {
    padding: 20px 0 40px;
}

.container .btn_wrap:last-child {
    background: #fff;
}

/* 電話 */
.btn_wrap .tel_head {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
    margin: 0 0 15px;
}

.btn_wrap .tel_btn {
    max-width: 600px;
    width: calc(100% - 40px);
    margin: 0 auto;
}

.btn_wrap .tel_btn > p {
    font-size: 13px;
    line-height: 1;
    text-align: center;
    display: block;
    width: fit-content;
    position: relative;
    padding: 0 10px;
    margin: 0 auto 5px;
}

.btn_wrap .tel_btn > p::before,
.btn_wrap .tel_btn > p::after {
    content: "";
    width: 2px;
    height: 100%;
    background: #FF5757;
    position: absolute;
    bottom: 0;
}

.btn_wrap .tel_btn > p::before {
    left: 0;
    transform: rotate(-20deg);
}

.btn_wrap .tel_btn > p::after {
    right: 0;
    transform: rotate(20deg);
}

.btn_wrap .tel_btn > p strong {
    font-weight: bold;
}

.btn_wrap .tel_btn a {
    text-decoration: none;
    text-align: center;
    line-height: 1;
    background: #FFF;
    display: block;
    position: relative;
    margin: 0 auto;
    border: 2px solid #FF5757;
    border-bottom-width: 6px;
    border-radius: 100px;
    padding: 5px 10px;
}

.btn_wrap .tel_btn a::before {
    content: '';
    right: 15px;
    width: 12px;
    height: 12px;
    position: absolute;
    top: calc(50% - 6px);
    transform: rotate(45deg);
    border-top: 3px solid #FF5757;
    border-right: 3px solid #FF5757;
}

.btn_wrap .tel_btn a p {
    display: inline-block;
    background: url(images/ico_tel.webp) no-repeat center left;
    background-size: 36px 36px;
    padding: 0 0 0 46px;
}

.btn_wrap .tel_btn a p strong {
    font-size: 28px;
    line-height: 1;
    font-weight: bold;
    color: #FF5757;
    display: block;
}

.btn_wrap .tel_btn a p small {
    font-size: 12px;
    display: block;
    margin: 5px 0 0;
}

/* 画面サイズ別調整
------------------------------------------- */
@media screen and (min-width:768px) {
    /* 共通
    --------------------------------------------------------------------- */
    /* ボタンエリア
    ---------------------------------------------*/
    /* 電話 */
    .btn_wrap .tel_head {
        font-size: 30px;
    }

    .btn_wrap .tel_btn > p {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .btn_wrap .tel_btn a {
        pointer-events: none;
        padding: 10px;
    }
}