@charset "utf-8";

/*********************************************************************
*
*  For ALL
*
*********************************************************************/

/* ---------------------------------------------------- */
/* web font */
/* ---------------------------------------------------- */
/* Google font */
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&display=swap&subset=japanese");

/* FontAwesome */
@import url("https://use.fontawesome.com/releases/v5.10.2/css/all.css");

/* ---------------------------------------------------- */
/* cs_ff */
/* ---------------------------------------------------- */
.cs_ff_en_1 {
    font-family: "Oswald", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
.cs_ff_go_1 {
    font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

/* ---------------------------------------------------- */
/* cs_fc */
/* ---------------------------------------------------- */
.cs_fc_1,
.cs_fc_1 a,
a.cs_fc_1 {
    color: #fff !important;
}

.cs_fc_2,
.cs_fc_2 a,
a.cs_fc_2 {
    color: #000 !important;
}

.cs_fc_3,
.cs_fc_3 a,
a.cs_fc_3 {
    color: #e85377 !important;
}

.cs_fc_4,
.cs_fc_4 a,
a.cs_fc_4 {
    color: #00a4e8 !important;
}

/* ---------------------------------------------------- */
/* cs_fs */
/* ---------------------------------------------------- */
.cs_fs_s {
    font-size: 1.4rem;
}

@media (max-width: 767px) {
    .cs_fs_s {
        font-size: 1.3rem;
    }
}

/* ---------------------------------------------------- */
/* cs_fd */
/* ---------------------------------------------------- */
.cs_fd_b,
b {
    font-weight: 700;
}

.cs_fd_u {
    text-decoration: underline;
}

.cs_fd_i,
em {
    font-style: italic;
}

/* ---------------------------------------------------- */
/* cs_e_op */
/* ---------------------------------------------------- */
@media (min-width: 768px) {
    .cs_e_op {
        transition: opacity 0.3s ease-in-out;
    }

    .cs_e_op:hover {
        opacity: 0.6;
    }
}

/* ---------------------------------------------------- */
/* cs_link_none */
/* ---------------------------------------------------- */
.cs_link_none {
    pointer-events: none;
}

/* ---------------------------------------------------- */
/* cf */
/* ---------------------------------------------------- */
.cf:after {
    content: ".";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
}

.cf {
    display: block;
}

/* ---------------------------------------------------- */
/* pc/sp */
/* ---------------------------------------------------- */
@media (min-width: 768px) {
    .cs_none_pc {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .cs_none_sp {
        display: none !important;
    }
}

@media (max-width: 374px) {
    .cs_none_sp_old {
        display: none !important;
    }
}

/* ---------------------------------------------------- */
/* pc/sp */
/* ---------------------------------------------------- */
.cs_link_none {
    pointer-events: none;
}

/* ---------------------------------------------------- */
/* cs_ta */
/* ---------------------------------------------------- */
.cs_ta_l {
    text-align: left !important;
}

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

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

@media (min-width: 768px) {
    .cs_ta_l_pc {
        text-align: left !important;
    }

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

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

/* ---------------------------------------------------- */
/* cs_ul_1 */
/* ---------------------------------------------------- */
.cs_ul_1 > li {
    margin-left: 1.5em;
    list-style: decimal;
    line-height: 1.8;
}

.cs_ul_2 > li {
    margin-left: 1.5em;
    list-style: disc;
    line-height: 1.8;
}

.cs_ul_3 > li {
    position: relative;
    padding-left: 1.5em;
    line-height: 1.8;
}

.cs_ul_3 li::before {
    content: "※";
    position: absolute;
    left: 0;
    top: 0;
}

/* ---------------------------------------------------- */
/* cs_w_full */
/* ---------------------------------------------------- */
@media (min-width: 768px) {
    .cs_w_full_pc {
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        overflow: hidden;
    }
}

/* max-widthをbodymin-widthに */
@media (min-width: 768px) and (max-width: 1200px) {
    .cs_w_full_pc {
        /* marginを（bodymin-width - cs_sec_inner / 2） */
        margin-left: -100px;
        margin-right: -100px;
    }
}

@media (max-width: 767px) {
    .cs_w_full_sp {
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        overflow: hidden;
    }
}

/* ---------------------------------------------------- */
/* cs_sec */
/* ---------------------------------------------------- */
.cs_sec_wrap {
    position: relative;
}

.cs_sec_inner {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    z-index: 2;
}

@media (min-width: 768px) {
    .cs_sec_inner {
        width: 1000px;
    }

    .cs_sec_inner_pc_w1 {
        width: 100%;
    }
    .cs_sec_inner_pc_w2 {
        width: 750px;
    }
    .cs_sec_inner_pc_w3 {
        width: 850px;
    }
}

@media (max-width: 767px) {
    .cs_sec_inner {
        width: calc(100% - 40px);
    }

    .cs_sec_inner_sp_w1 {
        width: 100%;
    }
}

/* ---------------------------------------------------- */
/* cs_desc */
/* ---------------------------------------------------- */
.cs_desc_1 {
    text-align: justify;
    line-height: 1.8;
}

.cs_desc_1 > * + * {
    margin-top: 1.5em;
}

@media (max-width: 767px) {
    .cs_desc_1 > * + * {
        margin-top: 1.5em;
    }
}

/* ---------------------------------------------------- */
/* cs_ttl_1 */
/* ---------------------------------------------------- */
.cs_ttl_1 {
    display: table;
    margin: 0 auto 50px;
    padding: 5px 10px;
    min-width: 200px;
    color: #dfdfcf;
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-align: center;
    background-color: #000;
    border-radius: 20px;
}

@media (max-width: 767px) {
    .cs_ttl_1 {
        margin: 0 auto 30px;
        min-width: 160px;
        font-size: 1.8rem;
    }
}

/* ---------------------------------------------------- */
/* cs_popup_wrap_2 */
/* ---------------------------------------------------- */

.fancybox-slide--html .fancybox-close-small {
    position: fixed;
    right: 6px !important;
    top: 6px !important;
    color: #fff !important;
    background-color: #000;
}
.cs_popup_wrap_2.fancybox-content {
    padding: 0;
    width: 100%;
    max-width: 900px;
    max-height: calc(100% - 4px);
}

.cs_popup_wrap_2 .img_1 {
    position: relative;
}

.cs_popup_wrap_2 .img_1 a {
    position: absolute;
    /* background-color: rgba(0,0,0,0.5); */
}
.cs_popup_wrap_2 .img_1 .img_link_dummy {
    /* safari不具合用 */
    left: 0%;
    top: 0%;
    width: 0%;
    height: 10%;
}
.cs_popup_wrap_2 .img_1 .img_link_1 {
    left: 11%;
    top: 53.5%;
    width: 31%;
    height: 1.5%;
}

.cs_popup_wrap_2 .img_1 .img_link_2 {
    left: 11%;
    top: 68.5%;
    width: 38%;
    height: 1.5%;
}

.cs_popup_wrap_2 .img_1 .img_link_3 {
    left: 11%;
    top: 84%;
    width: 40%;
    height: 1.5%;
}

.cs_popup_wrap_2 .img_1 .img_link_4 {
    left: 11%;
    top: 95%;
    width: 33%;
    height: 1.5%;
}

@media screen and (min-width: 768px) {
    .cs_popup_wrap_2.fancybox-content {
        max-width: 700px !important;
    }
}

@media screen and (max-width: 767px) {
}
