/*
    ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== 
        CSSのテンプレート
    ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== 
*/
/* ==== ==== ==== ==== ==== ==== 
        トップビュー
   ==== ==== ==== ==== ==== ==== */
/* ・・・・ ・・・・ ・・・・ 
        小分類
・・・・ ・・・・ ・・・・ */
/* ・・・・ ・・・・ ・・・・ 
    パソコン特大（1501以上）
・・・・ ・・・・ ・・・・ */
@media screen and (min-width:1501px) {
}
/* ・・・・ ・・・・ ・・・・ 
    パソコン大(1500以下）
・・・・ ・・・・ ・・・・ */
@media screen and (max-width:1500px) {
}
/* ・・・・ ・・・・ ・・・・ 
    パソコン(1200以下）
・・・・ ・・・・ ・・・・ */
@media screen and (max-width:1200px) {
}
/* ・・・・ ・・・・ ・・・・ 
    タブレット(900以下）
・・・・ ・・・・ ・・・・ */
@media screen and (max-width:900px) {
}
/* ・・・・ ・・・・ ・・・・ 
    スマホ(600以下）
・・・・ ・・・・ ・・・・ */
@media screen and (max-width:600px) {
}



.tanks_message_title{
    margin-top: 60px;
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: bold;
    color: #1D2382;
}
.tanks_message_title .disp_sp{
    display: none;
}

.tanks_message_text{
    line-height: 1.6em;
}

/* ・・・・ ・・・・ ・・・・ 
    スマホ(600以下）
・・・・ ・・・・ ・・・・ */
@media screen and (max-width:600px) {
    .tanks_message_title{
        font-size: 24px;
    }
    .tanks_message_title .disp_sp{
        display: unset;
    }
}