@charset "UTF-8";

/* ==================================================================================
# 共通
================================================================================== */

body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'Noto Sans JP', "Montserrat", sans-serif;
    font-style: normal;
    line-height: 1.5;
    color: #333333;
}

.pc-none {
    display: none;
}

.flex {
    display: flex;
    justify-content: space-between;
}

.inner-1100 {
    width: 1100px;
    margin: auto;
    max-width: 100%;
}

.inner-1000 {
    width: 1000px;
    margin: auto;
    max-width: 100%;
}

.section-title {
    font-size: 60px;
    color: #888888;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
}

.section-subtitle {
    font-size: 39px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
}

.btn {
    position: relative;
    display: block;
    font-size: 18px;
    font-weight: bold;
    width: 275px;
    text-align: center;
    padding: 25px 0;
    border-radius: 40px;
    transition: .3s;
    letter-spacing: 0.08em;
}

.btn-b {
    color: #ffffff;
    background-color: #267dba;
    border: 1px solid #267dba;
}

.btn-b:hover {
    color: #267dba;
    background-color: #ffffff;
}

.btn-w {
    color: #267dba;
    background-color: #ffffff;
    border: 1px solid #267dba;
}

.btn-w:hover {
    color: #ffffff;
    background-color: #267dba;
}

.fw-b {
    font-weight: bold;
}

.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

.web_font {
    font-family: 'Roboto', sans-serif;
}

.order1 {
    order: 1;
}

.order2 {
    order: 2;
}

.order3 {
    order: 3;
}

.order4 {
    order: 4;
}

.order5 {
    order: 5;
}

.order6 {
    order: 6;
}

.order7 {
    order: 7;
}

.order8 {
    order: 8;
}

a[href^="tel:"] {
    pointer-events: none;
}

.br-sp {
    display: none;
}

@media screen and (max-width: 1100px) {

    .inner-1100 {
        padding: 0 3%;
    }

}

@media screen and (max-width: 1000px) {

    .inner-1000 {
        padding: 0 3%;
    }

}

@media screen and (max-width: 767px) {

    .br-pc {
        display: none;
    }

    .br-sp {
        display: inline-block;
    }

}

@media screen and (max-width: 480px) {

    .pc-none {
        display: block;
    }

    .sp-none {
        display: none;
    }

    .btn {
        width: 300px;
        max-width: 100%;
        padding: 20px 0;
    }

    body {
        min-width: 320px;
    }

    .section-title {
        font-size: 30px;
    }

    a[href^="tel:"] {
        pointer-events: auto;
    }

}