@charset "utf-8";

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

/* ---------------------------------------------------- */
/* web font */
/* ---------------------------------------------------- */
/* Google font */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Arsenal:wght@400;700&display=swap");

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

/* ---------------------------------------------------- */
/* cs_ff */
/* ---------------------------------------------------- */
.cs_ff_en_1 {
    font-family: "Arsenal", "Zen Old Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", 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_ff_mi_1 {
    font-family: "Zen Old Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

/* ---------------------------------------------------- */
/* cs_fc */
/* ---------------------------------------------------- */
.cs_fc_6,
.cs_fc_6 a,
a.cs_fc_6 {
    color: var(--co_6);
}

/* ---------------------------------------------------- */
/* cs_link_img */
/* ---------------------------------------------------- */
.cs_link_img {
    display: block;
}

/* ---------------------------------------------------- */
/* cs_bg_img_1 */
/* ---------------------------------------------------- */
.cs_bg_img_1 > span {
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ---------------------------------------------------- */
/* cs_bg */
/* ---------------------------------------------------- */
.cs_bg_1 {
    background-image: url(../img/bg/1.png);
    background-size: 100% auto;
    background-position: center top;
}
@media (max-width: 999px) {
    .cs_bg_1 {
        background-size: 150% auto;
    }
}
/* ---------------------------------------------------- */
/* cs_fd */
/* ---------------------------------------------------- */
.cs_fd_b,
b {
    font-weight: 700;
}

.cs_fd_u {
    text-decoration: underline;
}

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

/* ---------------------------------------------------- */
/* cs_e */
/* ---------------------------------------------------- */
.cs_e_zm {
    overflow: hidden;
}

.cs_e_zm > span {
    transform-origin: center;
    transform: scale(1.005);
    transition: 0.5s ease-in-out;
}

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

    .cs_e_op:hover,
    a:hover .cs_e_op {
        opacity: 0.6;
    }

    .cs_e_gr,
    .cs_e_bn,
    .cs_e_in {
        transition: filter 0.3s ease-in-out;
    }

    .cs_e_gr:hover,
    a:hover .cs_e_gr {
        filter: grayscale(100%);
    }

    .cs_e_bn:hover,
    a:hover .cs_e_bn {
        filter: brightness(70%);
    }

    .cs_e_in:hover,
    a:hover .cs_e_in {
        filter: invert(100%);
    }

    a:hover .cs_e_zm > span {
        transform: scale(1.1);
        filter: brightness(70%);
    }
}

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

.cf {
    display: block;
}

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

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

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

/* ---------------------------------------------------- */
/* cs_event_none */
/* ---------------------------------------------------- */
.cs_event_none {
    pointer-events: none;
    text-decoration: none !important;
    filter: grayscale(100%) brightness(50%);
}

/* ---------------------------------------------------- */
/* 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: 1000px) {
    .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 {
    position: relative;
    padding-left: 1.5em;
}

.cs_ul_1 > li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0;
}

.cs_ul_2 > li {
    position: relative;
    padding-left: 1.5em;
}

.cs_ul_2 li::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
}

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

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

/* ---------------------------------------------------- */
/* OL */
/* ---------------------------------------------------- */
.cs_ul_4 {
    padding: 0;
    list-style: none;
    counter-reset: ol_li;
}

.cs_ul_4 > li {
    position: relative;
    padding-left: 1.5em;
}

.cs_ul_4 > li:before {
    counter-increment: ol_li;
    content: counter(ol_li) ".";
    position: absolute;
    left: 0;
    top: 0;
}

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

.cs_sec_wrap .sec_inner {
    margin-left: auto;
    margin-right: auto;
    width: auto;
    z-index: 2;
}

@media (min-width: 1000px) {
    .cs_sec_wrap .sec_inner {
        width: 700px;
    }

    .cs_sec_wrap .sec_inner.w1_pc {
        width: 100%;
    }
    .cs_sec_wrap .sec_inner.w2_pc {
        width: 500px;
    }
}

@media (max-width: 999px) {
    .cs_sec_wrap .sec_inner {
        width: calc(100% - 40px);
    }

    .cs_sec_wrap .sec_inner.w1_sp {
        width: 100%;
    }
}

/* ---------------------------------------------------- */
/* cs_desc */
/* ---------------------------------------------------- */
.cs_desc_1 {
    text-align: justify;
    word-break: break-all;
    text-justify: inter-ideograph;
    text-justify: inter-character;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.8;
}

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

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

/* ---------------------------------------------------- */
/* cs_ttl_1 */
/* ---------------------------------------------------- */
.cs_ttl_1 > span {
    display: block;
    text-align: center;
}
.cs_ttl_1 .en {
    font-size: 44px;
    letter-spacing: 0.1em;
}
.cs_ttl_1 .ja {
    font-size: 16px;
}
@media (max-width: 999px) {
    .cs_ttl_1 .en {
        font-size: 38px;
        letter-spacing: 0.05em;
    }
    .cs_ttl_1 .ja {
        font-size: 14px;
    }
}
/* ---------------------------------------------------- */
/* cs_modal_wrap_1 */
/* ---------------------------------------------------- */

.fancybox-slide--html .fancybox-close-small {
    position: fixed;
    background-color: var(--co_3);
}

.cs_modal_wrap_1.fancybox-content {
    padding: 40px;
    max-width: 400px;
    max-height: 90%;
    color: var(--co_1);
    background-color: var(--co_3);
}
.cs_modal_wrap_1 img {
    width: 100%;
    height: auto;
}
.cs_modal_wrap_1 .dummy_link {
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
}
.cs_modal_wrap_1 .name {
    margin-top: 20px;
}
.cs_modal_wrap_1 .name > span {
    display: block;
    color: var(--co_1);
    text-align: center;
}

.cs_modal_wrap_1 .name .ja {
    font-size: 20px;
    letter-spacing: 0.05em;
}
.cs_modal_wrap_1 .name .en {
    font-size: 12px;
    letter-spacing: 0.3em;
}

.cs_modal_wrap_1 .name .pos {
    font-size: 11px;
}
.cs_modal_wrap_1 .nav {
    margin-top: 20px;
}
.cs_modal_wrap_1 .nav > ul {
    display: flex;
    justify-content: center;
}
.cs_modal_wrap_1 .nav > ul > li {
    width: 35px;
}
.cs_modal_wrap_1 .nav > ul > li + li {
    margin-left: 20px;
}
.cs_modal_wrap_1 .nav a {
    display: block;
}
.cs_modal_wrap_1 .desc {
    margin-top: 20px;
    font-size: 13px;
}
@media (max-width: 999px) {
    .cs_modal_wrap_1.fancybox-content {
        padding: 20px;
        max-width: 100%;
        max-height: calc(100% - 90px);
    }
}
