/*  ==== ==== ==== ==== ==== ==== ==== ==== ==== ====
    トップビュー
==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== */
/*  ==== 小分類 ==== ==== ==== */

/*  ==== パソコン特大（1501以上） ==== ==== ==== */
@media screen and (min-width:1501px) {
}
/*  ==== パソコン（1500以下） ==== ==== ==== */
@media screen and (max-width:1500px) {
}
/*  ==== タブレット（1024以下） ==== ==== ==== */
@media screen and (max-width:1024px) {
}
/*  ==== スマホ（600以下） ==== ==== ==== */
@media screen and (max-width:600px) {
}




/*  ==== ==== ==== ==== ==== ==== ==== ==== ==== ====
    共通パーツ：トップビュー
==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== */
.top_view_wrap{
    position: relative;
    width: 100%;
}
.top_view_wrap .layout_pc{
    display: unset;
}
.top_view_wrap .layout_sp{
    display: none;
}
.top_view_title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #FFFFFF;
    text-align: center;
    white-space: nowrap;
}
.top_view_title h1{
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2em;
}
.top_view_title p{
    margin-top: 1em;
    font-size: 18px;
    line-height: 1.2em;
}

/*  ==== タブレット（1024以下） ==== ==== ==== */
@media screen and (max-width:1024px) {
    .top_view_wrap .layout_pc{
        display: none;
    }
    .top_view_wrap .layout_sp{
        display: unset;
    }
}
/*  ==== スマホ（600以下） ==== ==== ==== */
@media screen and (max-width:600px) {
    .top_view_title h1{
        font-size: 32px;
    }
    .top_view_title p{
        font-size: 16px;
    }
}


/*  ==== ==== ==== ==== ==== ==== ==== ==== ==== ====
    共通パーツ：パンクズリスト
==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== */
.breadcrumb_wrap{
    margin: 10px auto 100px;
    width: 90%;
    max-width: 1500px;
}
/*  ==== 小さめのスマホ（ 349以下） ==== ==== ==== */
@media screen and (max-width: 349px) {
    .breadcrumb_wrap{
        margin-bottom: 60px;
        font-size: 4vw;
    }
}