@charset "UTF-8";
.greeting{
    margin: 0;
    padding: clamp(46px, calc(92/1920*100vw) , 92px) 0;
    @media screen and (max-width: 767px) {
        padding: clamp(30px, calc(60/750*100vw) , 60px)  clamp(15px, calc(15/750*100vw),30px) clamp(20px, calc(40/750*100vw) , 40px);
    }
    .box{
        display: flex;
        @media screen and (max-width: 767px) {
            flex-direction: column;
        }
        .txt{
            p{
                margin-bottom: 0;
            }
        }
    }
    .greeting_ttl{
        width: 25%;
        line-height: calc(50/24*1)!important;
        @media screen and (max-width: 767px) {
            width: 100%;
            line-height: 1 !important;
        }
    }
    .txt{
        width: 75%;
        @media screen and (max-width: 767px) {
            width: 100%;
        }

    }
}
.greeting:nth-of-type(odd){
    background-color: #ececec;
    .box{
        flex-direction: row-reverse;
        @media screen and (max-width: 767px) {
            flex-direction: column;
        }
    }
    .txt{
        padding-left: clamp(calc(132/2*1px), calc(132/1920*100vw), 132px)  ;
        @media screen and (max-width: 767px) {
           padding-left: 0;
        }
    }
}
.consultation{
    padding: clamp(27px, calc(54/1920*100vw) , 54px) 0 0;
    border-top: 1px solid #a5a5a5;
    @media screen and (max-width: 767px) {
        padding: clamp(20px, calc(40/750*100vw) , 40px) clamp(15px, calc(15/750*100vw),30px) 0;
    }
    p{
        text-align: center;
        @media screen and (max-width: 767px) {
            text-align: initial;
            font-size: clamp(15px, 4vw, 30px);
        }
    }
    .c-btn{
        max-width: clamp(164.5px, calc(329/1920*100vw) , 329px);
        width: 100%;
        margin: clamp(25px, calc(50/1920*100vw) , 50px) auto 0;
        @media screen and (max-width: 767px) {
            max-width: clamp(250px, calc(250/750*100vw) , 500px);
            margin:  clamp(25px, calc(50/1920*100vw) , 50px) auto 0;
        }
    }
    .c-btn a{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #565656;
        height: clamp(38px, calc(76/1920 * 100vw), 76px);
        font-size: clamp(9px, calc(18/1920* 100vw) , 18px);
        letter-spacing: 0.2em;
        @media screen and (max-width: 767px) {
            height: clamp(50px, calc(100/750 * 100vw), 100px);
            font-size: clamp(15px, 4vw, 30px);
        }
        
    }
    .c-btn a::before{
        display: inline-block;
        position: absolute;
        top: 50%;
        left: -1.813em;
        width: clamp(28px, calc(56/1920* 100vw) , 56px);
        height: 1px;
        background: #ff0000;
        content: "";
        @media screen and (max-width: 767px) {
            width: clamp(28px, calc(56/750* 100vw) , 56px);
            left: -1em;
        }
    }
}
