@charset "UTF-8";

body {
    min-width: 320px;
    background-color: #fff;
    color: #000;
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', Meiryo UI, 'Meiryo', sans-serif;

    -webkit-font-smoothing: antialiased;
    -webkit-print-color-adjust: exact;
}

h1 {
    margin: 0;
    padding: 0;
}


/* link */

a {
    color: #000;
}

a:link {
    overflow: hidden;
    outline: none;
    color: #000;
    text-decoration: none;
}

a:visited {
    overflow: hidden;
    outline: none;
    color: #000;
    text-decoration: none;
}

a:hover {
    overflow: hidden;
    outline: none;
    color: #000;
    text-decoration: none;
    opacity: 0.7;
}

a:active {
    overflow: hidden;
    outline: none;
    color: #000;
    text-decoration: none;
    opacity: 0.7;
}


/*noscript*/

noscript {
    display: block;
    background: #000;
    color: #fff;
    text-align: center;
}

.break-before {
    page-break-before: always;
}


/*マウスオーバー*/

.mouse-over:hover,
.btn:hover {
    opacity: 0.7;
}


/*フォーム要素にズームインするのを回避*/

input[type="text"],
input[type="number"],
select,
textarea {
    font-size: 16px;
}


/*文字関係*/

.red {
    color: #F02828;
}

.light-blue {
    color: #28A0DC;
}

.orange {
    color: #e27d14;
}

.tx-bold {
    font-weight: bold;
}

.ico-font {
    font-family: Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
}


/*1文字インデント*/

.attention-txt,
.reference-txt,
.list-txt {
    margin-left: 1em;
    text-indent: -1em;
}


/*width*/

.w-20 {
    width: 20%;
}

/*パディング設定*/

.px-xs-md-0 {
    padding-right: 0;
    padding-left: 0;
}

.pl-xs-sm-10 {
    padding-left: 10px;
}

.pr-xs-sm-10 {
    padding-right: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

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

.plr-5 {
    padding-right: 5px;
    padding-left: 5px;
}

.plr-10 {
    padding-right: 10px;
    padding-left: 10px;
}

.plr-0 {
    padding-right: 0;
    padding-left: 0;
}

/*高さをそろえる*/

.row-eq-height {
    display: flex;

    flex-wrap: wrap;
}

/*改行*/

.br-br-sp {
    display: black;
}

.br-md-xl {
    display: none;
}

/*ボタンリセット*/
button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

.hr-line {
    border-top: 1px solid #CACACA;
}

.mark-font{
    font-family: Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
}



@media (min-width: 576px) {

    .plr-sm-5 {
        padding-right: 5px;
        padding-left: 5px;
    }

    .plr-sm-10 {
        padding-right: 10px;
        padding-left: 10px;
    }

}

@media (min-width: 768px) {
    /*改行*/

    .br-br-sp {
        display: none;
    }

    .br-md-xl {
        display: block;
    }

}

@media (min-width: 992px) {

    /*パディング設定*/
    .px-xs-md-0 {
        padding-right: 15px;
        padding-left: 15px;
    }

    .plr-lg-15 {
        padding-right: 15px;
        padding-left: 15px;
    }
}

@media (min-width: 1200px) {}