@charset "UTF-8";
/* ##################################################

■basic settings
■flexbox layout
	- base
	- 水平揃え
	- 垂直揃え
	- RWD：OOO = PC/TAB/SP
■float layout
	- base
	- devide
■layout
	- float
	- clearfix
	- overflow
■width
■margin
■padding
■text
	- color
	- font-family
	- font-size
	- font-weight
	- text-align
	- text-decoration
	- vertical-align
	- text-indent
	- blank text
	- link
■image
	- hover fade
■icon
	- zoom

################################################## */
/* ==================================================
	■basic settings
================================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}

/* title font-weight */
h1, h2, h3, h4, h5, h6, li, pre, td, th, dt, dd {
    line-height: 1.5;
}

/* basic line-height */
h1, h2, h3, h4, h5, h6, li, pre, td, th, dt, dd, div {
    word-wrap: break-word;
    word-break: break-all;
}

p {
    line-height: 1.8;
}

/* text line-height */
em {
    font-style: normal;
}

img {
    max-width: 100%;
}

iframe {
    vertical-align: top;
}

/* ==================================================
	■flexbox layout
================================================== */
/* base
-------------------------------------------------- */
.flex-sys-wrap {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 640px) {
    .flex-sys-wrap > .col-2, .flex-sys-wrap > .col-3, .flex-sys-wrap > .col-4 {
        margin-bottom: 5%;
    }
}
/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 641px) {
    .flex-sys-wrap > .col-2 {
        width: 48%;
    }
    .flex-sys-wrap > .col-3 {
        width: 31%;
    }
    .flex-sys-wrap > .col-4 {
        width: 23%;
    }
}
/* ========== end △ */
/* SP時 無効 */
/* ▽ SP layout ========== */
@media only screen and (max-width: 640px) {
    .flex-sys-wrap.disp-oox {
        display: block;
    }
}
/* ========== end △ */
/* TAB時 無効 */
/* ▽ TAB layout ========== */
@media only screen and (min-width: 641px) and (max-width: 1024px) {
    .flex-sys-wrap.disp-oxo {
        display: block;
    }
}
/* ========== end △ */
/* PC時 無効 */
/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
    .flex-sys-wrap.disp-xoo {
        display: block;
    }
}
/* ========== end △ */
/* SP/TAB 無効（PCのみ有効） */
/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 1024px) {
    .flex-sys-wrap.disp-oxx {
        display: block;
    }
}
/* ========== end △ */
/* TAB/PC 無効 */
/* ▽ PC-TAB layout ========== */
@media print, screen and (min-width: 641px) {
    .flex-sys-wrap.disp-xxo {
        display: block;
    }
}
/* ========== end △ */
/* 水平揃え
-------------------------------------------------- */
/* 全デバイス左揃え */
.flex-sys-wrap.jfy-l {
    justify-content: flex-start;
}

/* 全デバイス右揃え */
.flex-sys-wrap.jfy-r {
    justify-content: flex-end;
}

/* 全デバイス中央揃え */
.flex-sys-wrap.jfy-c {
    justify-content: center;
}

.flex-sys-wrap.jfy-sa {
    justify-content: space-around;
}

/* 垂直揃え
-------------------------------------------------- */
/* 全デバイス中央揃え */
.flex-sys-wrap.item-c {
    align-items: center;
}

/* 全デバイス高さ揃え */
.flex-sys-wrap.item-str {
    align-items: stretch;
}

/* ==================================================
	■float layout
================================================== */
/* base
-------------------------------------------------- */
.float_layout {
    overflow: hidden;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 640px) {
    .float_layout > .right_col, .float_layout > .left_col {
        margin-bottom: 5%;
    }
}
/* ========== end △ */
/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
    .float_layout::after {
        content: "";
        display: block;
        clear: both;
    }
    .float_layout > .right_col {
        float: right;
    }
    .float_layout > .left_col {
        float: left;
    }
}
/* ========== end △ */
/* devide
-------------------------------------------------- */
/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
    /* 2カラム */
    /* 2:8 */
    .float_layout.divide_2-8 .left_col {
        width: 20%;
    }
    .float_layout.divide_2-8 .right_col {
        width: 78%;
    }

    /* 3:7 */
    .float_layout.divide_3-7 .left_col {
        width: 30%;
    }
    .float_layout.divide_3-7 .right_col {
        width: 68%;
    }

    /* 4:6 */
    .float_layout.divide_4-6 .left_col {
        width: 40%;
    }
    .float_layout.divide_4-6 .right_col {
        width: 58%;
    }

    /* 5:5 */
    .float_layout.divide_5-5 .left_col {
        width: 48%;
    }
    .float_layout.divide_5-5 .right_col {
        width: 48%;
    }

    /* 6:4 */
    .float_layout.divide_6-4 .left_col {
        width: 58%;
    }
    .float_layout.divide_6-4 .right_col {
        width: 40%;
    }

    /* 7:3 */
    .float_layout.divide_7-3 .left_col {
        width: 68%;
    }
    .float_layout.divide_7-3 .right_col {
        width: 30%;
    }

    /* 8:2 */
    .float_layout.divide_8-2 .left_col {
        width: 78%;
    }
    .float_layout.divide_8-2 .right_col {
        width: 20%;
    }

    /* 3カラム */
    .float_layout > .col-3 {
        float: left;
        width: 32%;
        margin-left: 2%;
    }
    .float_layout > .col-3:nth-of-type(3n+1) {
        margin-left: 0;
        clear: both;
    }

    /* 4カラム */
    .float_layout > .col-4 {
        float: left;
        width: 22%;
        margin-left: 4%;
    }
    .float_layout > .col-4:nth-of-type(4n+1) {
        margin-left: 0;
        clear: both;
    }
}
/* ========== end △ */
/* ==================================================
	■layout
================================================== */
/* float
-------------------------------------------------- */
.fln {
    float: none !important;
}

.flr {
    float: right !important;
}

.fll {
    float: left !important;
}

/* clearfix
-------------------------------------------------- */
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

/* overflow
-------------------------------------------------- */
.ofh {
    overflow: hidden;
}

/* ==================================================
	■width
================================================== */
.w10p {
    width: 10% !important;
}

.w15p {
    width: 15% !important;
}

.w20p {
    width: 20% !important;
}

.w25p {
    width: 25% !important;
}

.w30p {
    width: 30% !important;
}

.w35p {
    width: 35% !important;
}

.w40p {
    width: 40% !important;
}

.w45p {
    width: 45% !important;
}

.w50p {
    width: 50% !important;
}

.w55p {
    width: 55% !important;
}

.w60p {
    width: 60% !important;
}

.w65p {
    width: 65% !important;
}

.w70p {
    width: 70% !important;
}

.w75p {
    width: 75% !important;
}

.w80p {
    width: 80% !important;
}

.w85p {
    width: 85% !important;
}

.w90p {
    width: 90% !important;
}

.w95p {
    width: 95% !important;
}

.w100p {
    width: 100% !important;
}

/* ==================================================
	■margin
================================================== */
/* margin-top */
.mt00 {
    margin-top: 0 !important;
}

.mt05 {
    margin-top: 5px !important;
}

.mt10 {
    margin-top: 10px !important;
}

.mt15 {
    margin-top: 15px !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mt25 {
    margin-top: 25px !important;
}

.mt30 {
    margin-top: 30px !important;
}

.mt40 {
    margin-top: 40px !important;
}

.mt50 {
    margin-top: 50px !important;
}

.mt60 {
    margin-top: 60px !important;
}

.mt70 {
    margin-top: 70px !important;
}

.mt80 {
    margin-top: 80px !important;
}

.mt90 {
    margin-top: 90px !important;
}

.mt100 {
    margin-top: 100px !important;
}

.mt3p {
    margin-top: 3% !important;
}

.mt5p {
    margin-top: 5% !important;
}

.mt8p {
    margin-top: 8% !important;
}

.mt10p {
    margin-top: 10% !important;
}

/* SP */
/* ▽ SP layout ========== */
@media only screen and (max-width: 640px) {
    .mt3p_sp {
        margin-top: 3% !important;
    }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 640px) {
    .mt5p_sp {
        margin-top: 5% !important;
    }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 640px) {
    .mt8p_sp {
        margin-top: 8% !important;
    }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 640px) {
    .mt10p_sp {
        margin-top: 10% !important;
    }
}
/* ========== end △ */
/* margin-bottom */
.mb00 {
    margin-bottom: 0 !important;
}

.mb05 {
    margin-bottom: 5px !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

.mb15 {
    margin-bottom: 15px !important;
}

.mb20 {
    margin-bottom: 20px !important;
}

.mb25 {
    margin-bottom: 25px !important;
}

.mb30 {
    margin-bottom: 30px !important;
}

.mb40 {
    margin-bottom: 40px !important;
}

.mb50 {
    margin-bottom: 50px !important;
}

.mb60 {
    margin-bottom: 60px !important;
}

.mb70 {
    margin-bottom: 70px !important;
}

.mb80 {
    margin-bottom: 80px !important;
}

.mb90 {
    margin-bottom: 90px !important;
}

.mb100 {
    margin-bottom: 100px !important;
}

.mb3p {
    margin-bottom: 3% !important;
}

.mb5p {
    margin-bottom: 5% !important;
}

.mb8p {
    margin-bottom: 8% !important;
}

.mb10p {
    margin-bottom: 10% !important;
}

/* margin-right */
.mr00 {
    margin-right: 0 !important;
}

.mr05 {
    margin-right: 5px !important;
}

.mr10 {
    margin-right: 10px !important;
}

.mr15 {
    margin-right: 15px !important;
}

.mr20 {
    margin-right: 20px !important;
}

.mr25 {
    margin-right: 25px !important;
}

.mr30 {
    margin-right: 30px !important;
}

.mr35 {
    margin-right: 35px !important;
}

.mr40 {
    margin-right: 40px !important;
}

.mr45 {
    margin-right: 45px !important;
}

.mr50 {
    margin-right: 50px !important;
}

.mr3p {
    margin-right: 3% !important;
}

.mr5p {
    margin-right: 5% !important;
}

.mr8p {
    margin-right: 8% !important;
}

.mr10p {
    margin-right: 10% !important;
}

/* margin-left */
.ml00 {
    margin-left: 0 !important;
}

.ml05 {
    margin-left: 5px !important;
}

.ml10 {
    margin-left: 10px !important;
}

.ml15 {
    margin-left: 15px !important;
}

.ml20 {
    margin-left: 20px !important;
}

.ml25 {
    margin-left: 25px !important;
}

.ml30 {
    margin-left: 30px !important;
}

.ml35 {
    margin-left: 35px !important;
}

.ml40 {
    margin-left: 40px !important;
}

.ml45 {
    margin-left: 45px !important;
}

.ml50 {
    margin-left: 50px !important;
}

.ml3p {
    margin-left: 3% !important;
}

.ml5p {
    margin-left: 5% !important;
}

.ml8p {
    margin-left: 8% !important;
}

.ml10p {
    margin-left: 10% !important;
}

/* ==================================================
	■padding
================================================== */
/* padding-top */
.pt10 {
    padding-top: 10px !important;
}

.pt20 {
    padding-top: 20px !important;
}

.pt30 {
    padding-top: 30px !important;
}

/* ==================================================
	■text
================================================== */
/* color
-------------------------------------------------- */
.c_bk {
    color: #000;
}

.c_red {
    color: #ff3f3f;
}

.c_blue {
    color: #187fc4;
}

/* font-family
-------------------------------------------------- */
.font_basic {
    font-family: "メイリオ", meiryo, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", sans-serif ;
}

.font_yugo {
    font-family: "游ゴシック Medium", "Yu Gothic", YuGothic, sans-serif ;
}

/* font-size
-------------------------------------------------- */
.fz12 {
    font-size: 12px;
}

.fz13 {
    font-size: 13px;
}

.fz14 {
    font-size: 14px;
}

.fz15 {
    font-size: 15px;
}

.fz16 {
    font-size: 16px;
}

.fz17 {
    font-size: 17px;
}

.fz18 {
    font-size: 18px;
}

.fz20 {
    font-size: 20px;
}

.fz22 {
    font-size: 22px;
}

.fz24 {
    font-size: 24px;
}

/* font-weight
-------------------------------------------------- */
.fwn {
    font-weight: normal !important;
}

.fwb {
    font-weight: bold !important;
}

/* text-align
-------------------------------------------------- */
.tac {
    text-align: center !important;
}

.tar {
    text-align: right !important;
}

.tal {
    text-align: left !important;
}

/* text-decoration
-------------------------------------------------- */
a.tdn {
    text-decoration: none;
}
a.tdn:hover {
    text-decoration: underline;
}

/* vertical-align
-------------------------------------------------- */
.vat {
    vertical-align: top !important;
}

.vam {
    vertical-align: middle !important;
}

.vab {
    vertical-align: bottom !important;
}

.vabl {
    vertical-align: baseline !important;
}

/* text-indent
-------------------------------------------------- */
.txt_indent {
    display: block;
    padding-left: 1em !important;
    text-indent: -1em !important;
}

/* blank text
-------------------------------------------------- */
.blank_txt {
    margin-top: 8%;
    margin-bottom: 8%;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 640px) {
    .blank_txt {
        margin-top: 200px;
        margin-bottom: 200px;
    }
}
/* ========== end △ */
/* link
-------------------------------------------------- */
/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
    .link_tap {
        color: inherit;
        text-decoration: none;
        cursor: text;
    }
}
/* ========== end △ */
/* ==================================================
	■image
================================================== */
/* hover fade
-------------------------------------------------- */
/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
    .fadeout {
        transition: all 0.2s ease;
    }
    .fadeout:hover {
        opacity: 0.6;
    }
}
/* ========== end △ */
/* ==================================================
	■icon
================================================== */
/* zoom
-------------------------------------------------- */
.ico_zoom a {
    display: inline-block;
    position: relative;
}
.ico_zoom a:before {
    box-sizing: border-box;
    content: "";
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 34px;
    height: 34px;
    padding-top: 5px;
    border-radius: 17px;
    background: url(../common_img/ico_zoom.png) #187fc4 50% 50% no-repeat;
    text-align: center;
}
