@charset "utf-8";

/* ------------------

base

------------------ */
html {
    font-size: 62.5%;
}

body,
p,
a,
h1,
h2,
h3,
h4,
h5,
h6 {
    /* 文字設定 */
    font-size: 1.6rem;
    line-height: 1.75;
    font-weight: normal;
    letter-spacing: 0;
    color: #333;
    font-family: "Helvetica Neue",
        Arial,
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        Meiryo,
        sans-serif;

}

body {
    /* 背景色 */
    background-color: #fff;
}

img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

button {
    cursor: pointer;
}

/* ------------------

extension

------------------ */
/* .font_lato { font-family: 'Lato', sans-serif;} */

.fw_400 {
    font-weight: 400;
}

.fw_500 {
    font-weight: 500;
}

.fw_700 {
    font-weight: 700;
}



.mb5 {
    margin-bottom: 5px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb15 {
    margin-bottom: 15px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb50 {
    margin-bottom: 50px;
}

.mb60 {
    margin-bottom: 60px;
}

.mb100 {
    margin-bottom: 100px;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mt50 {
    margin-top: 50px;
}

.mr5 {
    margin-right: 5px;
}

.mr10 {
    margin-right: 10px;
}

.mr20 {
    margin-right: 20px;
}

.mr40 {
    margin-right: 40px;
}

.mr60 {
    margin-right: 60px;
}

.ml165 {
    margin-left: 165px;
}

.pt10 {
    padding-top: 10px;
}

.pt20 {
    padding-top: 20px;
}

.pt30 {
    padding-top: 30px;
}

.pt40 {
    padding-top: 40px;
}

.pt50 {
    padding-top: 50px;
}

.pb10 {
    padding-bottom: 10px;
}

.pb20 {
    padding-bottom: 20px;
}

.pb30 {
    padding-bottom: 30px;
}

.pb40 {
    padding-bottom: 40px;
}

.pb50 {
    padding-bottom: 50px;
}

.align-l {
    text-align: left;
}

.align-c {
    text-align: center;
}

.align-r {
    text-align: right;
}


.flex {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.flex_start {
    display: flex;
    justify-content: flex-start;
}

.flex_end {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.d_column {
    flex-direction: column;
}

.ai_center {
    align-items: center;
}

.ai_start {
    align-items: start;
}

.ai_end {
    align-items: flex-end;
}

.reverse {
    flex-direction: row-reverse;
}

.gap_2 {
    gap: 2px;
}

.gap_4 {
    gap: 4px;
}

.gap_5 {
    gap: 5px;
}

.gap_8 {
    gap: 8px;
}

.gap_10 {
    gap: 10px;
}

.gap_15 {
    gap: 15px;
}

.gap_20 {
    gap: 20px;
}

.gap_25 {
    gap: 25px;
}

.gap_40 {
    gap: 40px;
}


.red_p {
    color: red;
}

.d_block {
    display: block;
}

.d_none {
    display: none;
}



.po_r {
    position: relative;
}

.po_a {
    position: absolute;
}


.pointer {
    cursor: pointer;
}


/* ------------------

text

------------------ */

.fw_bold {
    font-weight: bold;
}

.fw_normal {
    font-weight: normal;
}

.fs_12 {
    font-size: 12px;
}

.fs_13 {
    font-size: 13px;
}

.fs_14 {
    font-size: 14px;
}

.fs_15 {
    font-size: 15px;
}

.fs_16 {
    font-size: 16px;
}

.fs_18 {
    font-size: 18px;
}

.fs_20 {
    font-size: 20px;
}

.fs_24 {
    font-size:24px;
}

.fs_28 {
    font-size: 28px;
}

.fs_32 {
    font-size: 32px;
}

.fs_36 {
    font-size: 36px;
}

.fs_40 {
    font-size: 40px;
}