@CHARSET "UTF-8";

img {
    width: 100%;
}

a img:hover {
    opacity: 0.8;
}

.tC {
    text-align: center!important;
}

/* 追加Margin */
.mT0 {
    margin-top: 0px!important;
}
.mT5 {
    margin-top: 5px!important;
}
.mT10 {
    margin-top: 10px!important;
}
.mT15 {
    margin-top: 15px!important;
}
.mT20 {
    margin-top: 20px!important;
}
.mT50 {
    margin-top: 50px!important;
}

.mB0 {
    margin-bottom: 0px!important;
}
.mB5 {
    margin-bottom: 5px!important;
}
.mB10 {
    margin-bottom: 10px!important;
}
.mB15 {
    margin-bottom: 15px!important;
}
.mB20 {
    margin-bottom: 20px!important;
}
.mB50 {
    margin-bottom: 50px!important;
}

.mL0 {
    margin-left: 0px!important;
}

span.back-yellow {
    background: yellow;
}

/* 追加Width */
.w50 {
    width: 50%!important;
}

/* グリッド高さを揃える */
.row-eq-height {
    display: flex;
    flex-wrap: wrap;
}

/* グリッドiPad対応 */
.flex{
    display: flex;
    flex-wrap: wrap;
}

/* グリッドシステム追加 */
@media screen and (max-width: 480px){
    .col-xxs-6 {
        width: 50%;
    }
    .col-xxs-12 {
        width: 100%;
    }
    .col-xxs-offset-3 {
        margin-left: 25%;
    }
}

/* グリッドシステム追加 5分割用 */
.col-xs-1-5, .col-sm-1-5, .col-md-1-5, .col-lg-1-5,
.col-xs-2-5, .col-sm-2-5, .col-md-2-5, .col-lg-2-5,
.col-xs-3-5, .col-sm-3-5, .col-md-3-5, .col-lg-3-5,
.col-xs-4-5, .col-sm-4-5, .col-md-4-5, .col-lg-4-5 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}
.col-xs-1-5 {
    width: 20%;
    float: left;
}
.col-xs-2-5 {
    width: 40%;
    float: left;
}

.col-xs-3-5 {
    width: 60%;
    float: left;
}

.col-xs-4-5 {
    width: 80%;
    float: left;
}
@media (min-width: 768px) {
    .col-sm-1-5 {
        width: 20%;
        float: left;
    }
    .col-sm-2-5 {
        width: 40%;
        float: left;
    }
    .col-sm-3-5 {
        width: 60%;
        float: left;
    }
    .col-sm-4-5 {
        width: 80%;
        float: left;
    }
}
@media (min-width: 992px) {
    .col-md-1-5 {
        width: 20%;
        float: left;
    }
    .col-md-2-5 {
        width: 40%;
        float: left;
    }
    .col-md-3-5 {
        width: 60%;
        float: left;
    }
    .col-md-4-5 {
        width: 80%;
        float: left;
    }
}
@media (min-width: 1200px) {
    .col-lg-1-5 {
        width: 20%;
        float: left;
    }
    .col-lg-2-5 {
        width: 40%;
        float: left;
    }
    .col-lg-3-5 {
        width: 60%;
        float: left;
    }
    .col-lg-4-5 {
        width: 80%;
        float: left;
    }
}

/* 表示・非表示スマホ対応 */
.hidden-xxs {
    display: block;
}
.visible-xxs {
    display: none;
}
@media (max-width: 480px) {
    .hidden-xxs {
        display: none;
    }
    .visible-xxs {
        display: block;
    }
}

/* その他共通CSS */
.spacer-100 {
    height: 100px;
}
.spacer-200 {
    height: 200px;
}

.flip-y {
    transform: scale(1, -1);
}

.flex{
    display: flex;
    flex-wrap: wrap;
}

a.no-link {
    color: #000!important;
    text-decoration: none;
    cursor: initial;
}

.spacer {
    width: 100%;
    height: 50px;
}

.btn-gray {
    background: #B5B6B6;
    color: #fff;
    border: #B5B6B6;
    cursor: default;
}
.btn-gray:hover {
    background: #B5B6B6;
    color: #fff;
    border: #B5B6B6;
}

/* 途中からナビゲーションを固定にするCSS */
.is-fixed {
    position: fixed!important;
    top: 0!important;
    left: 0!important;
    z-index: 11!important;
    width: 100%!important;
}

/* トップに戻る */
.pagetop {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 15px;
}
.pagetop a {
    display: block;
    background-color: #ccc;
    text-align: center;
    color: #222;
    font-size: 0.857em;
    text-decoration: none;
    padding: 5px 10px;
    filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}
.pagetop a:hover {
    display: block;
    background-color: #b2d1fb;
    text-align: center;
    color: #fff;
    font-size: 0.857em;
    text-decoration: none;
    padding:5px 10px;
    filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}

/* GoogleMap */
.ggmap {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    margin-top: 20px;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ブラウザ別の処理 */
@media all and (-ms-high-contrast: none) {
    .ms-hidden {
        display:none;
    }
}
