@charset "UTF-8";

/* ********************************************
// --- リセット ---
// ※ブラウザのデフォルトCSSをリセット
// ***************************************** */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: #333;
    font-family: 'Noto Sans JP', sans-serif;
}

body {
    font-family: Verdana, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}


ul,
ol {
    list-style: none;
}

table {
    border-collapse: collapse;
}

img {
    vertical-align: bottom;
    height: auto!important;
}
a{
    text-decoration: none;
}

a img {
    border: none;
}

strong {
    font-weight: normal;
}

i {
    font-style: normal;
}



/* 共通部分 */
main{
    overflow: hidden;
}
p{
    font-size: 1rem;
    color: #333;
}
section h2{
    color: #333;
    font-family: serif;
    position: relative;
    padding-left: 40px;
    font-size: 2.95rem;
    font-weight: normal;
    letter-spacing: 3px;
    line-height: 1.0;
}
section h2 span{
    font-size: 15px;
    padding-left: 0px;
    font-family: serif;
    letter-spacing: normal;
}
section h2::before{
    content: "";
    position: absolute;
    background: url(../images/svg/favicon.svg);
    background-size: cover;
    top: 6px;
    left: 0;
    width: 40px;
    height: 40px;
}
.section_inner{
    width: 1100px;
    margin: 0 auto;
}


/* パンくず */
.breadcrumb-list{
    display: flex;
}
.breadcrumb-list li span{
    padding: 0 10px;
}
.breadcrumb-list li a,.breadcrumb-list li{
    font-size: 0.7rem;
}


/* タイトルのSP時のみ<br>タグ出力 */
.pc_br{
    display: block;
}
.sp_br{
    display: none;
}
/* スマホ */
@media screen and (max-width: 767px){
    section h2 span {
        font-size: 13px;
    }
    .pc_br{
        display: none;
    }
    .sp_br{
        display: block;
    }
    section h2 span .sp_br span{
        padding-left: 0;
    }
}

