@charset "UTF-8";

/* common
------------------------------------*/
.sessionLayout .non_access {
    display: none;
}



        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 1200px) {
        }



/* c01
------------------------------------*/
.sessionLayout #c01 .inner {
    max-width: 980px;
}
.sessionLayout #c01 .w_box {
    border-radius: 20px;
    background-color: #fff;
    padding: 30px 20px;
}



        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
            .sessionLayout #c01 .w_box {
                padding: 30px 60px;
            }
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 1200px) {
        }
        


 /* c02
------------------------------------*/
.sessionLayout #c02 {
    padding-top: 0;
}
.sessionLayout #c02 .inner {
    max-width: 900px;
}
.sessionLayout #c02 .flex:not(:last-child) {
    margin-bottom: 30px;
}
.sessionLayout #c02 .flex {
    gap: 10px 4%;
}
.sessionLayout #c02 .flex .img {
    border-radius: 50%;
    overflow: hidden;
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height: 100px;
}
.sessionLayout #c02 .rev .img {
    margin-left: auto;
}
.sessionLayout #c02 .text {
    position: relative;
    background-color: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    line-height: 1.8;
}
.sessionLayout #c02 .text::before {
    position: absolute;
    content: "";
    top: -20px;
    left: 90px;
    width: 25px;
    height: 20px;
    background-color: #fff;
    clip-path: polygon(0% 0%, 0 100%, 100% 100%);
}
.sessionLayout #c02 .rev .text::before {
    left: auto;
    right: 90px;
    clip-path: polygon(100% 0%, 0 100%, 100% 100%);
}
.sessionLayout #c02 .text span {
    font-weight: bold;
    font-size: 1.1rem;
    color: #57b9f7;
}
.sessionLayout #c02 .se_t {
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 60px;
}
.sessionLayout #c02 .btn01 {
    font-size: 1.1rem;
    max-width: 500px;
}
.non_contact .sessionLayout .non_access {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 0.8rem;
}


        /* 【タブレット用のスタイル記述】 */
        @media screen and (min-width: 760px) {
            .sessionLayout #c02 .text {
                padding: 30px;
                margin-right: auto;
            }
            .sessionLayout #c02 .rev .text {
                margin-left: auto;
                margin-right: 0;
            }
            .sessionLayout #c02 .rev .img {
                margin-left: 0;
            }
            .sessionLayout #c02 .text::before {
                top: 40px;
                left: -20px;
                clip-path: polygon(100% 0, 100% 100%, 0 50%);
            }
            .sessionLayout #c02 .rev .text::before {
                left: auto;
                right: -20px;
                clip-path: polygon(0 0, 0 100%, 100% 50%);
            }
            .sessionLayout #c02 .btn01 {
                font-size: 1.4rem;
            }
        }

        /* 【PC用のスタイル記述】 */
        @media screen and (min-width: 1200px) {
        }

