@charset "utf-8";

/* -------------------------------- */
/* web font */
/* -------------------------------- */
/* Google font */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300..900&display=swap");

/* FontAwesome */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css");

/* -------------------------------- */
/* cs_ff */
/* -------------------------------- */
.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_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: 768px) {
    .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) {
    .sp {
        display: none !important;
    }
}

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

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

@media (min-width: 901px) {
    .cs_event_none_pc {
        pointer-events: none;
    }
}

@media (max-width: 900px) {
    .cs_event_none_sp {
        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: 901px) {
    .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 {
    counter-reset: ol_li;
}

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

.cs_ul_3 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_inner {
    position: relative;
}

@media (min-width: 901px) {
    .cs_sec_wrap {
        display: flex;
        align-items: center;
        min-height: 100vh;
    }

    .cs_sec_wrap::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        display: block;
        width: 1000px;
        height: 100%;
    }

    .cs_sec_inner {
        padding: 80px 55px 80px 100px;
        width: 900px;
        background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    }

    .cs_sec_inner_pc_w1 {
        width: 1100px;
    }
}

@media (max-width: 900px) {
    .cs_sec_wrap {
        padding-top: 40px;
        padding-bottom: 40px;
        min-height: auto !important;
    }

    .cs_sec_inner {
        margin-left: auto;
        margin-right: auto;
        width: calc(100% - 40px);
        background: none;
    }
}

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

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

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

/* -------------------------------- */
/* cs_ttl_1 */
/* -------------------------------- */
.cs_ttl_1 {
    margin-bottom: 60px;
}

.cs_ttl_1 img {
    width: auto;
    height: 45px;
}

@media (max-width: 900px) {
    .cs_ttl_1 {
        margin-bottom: 40px;
    }

    .cs_ttl_1 img {
        margin: 0 auto;
        height: 34px;
    }
}

/* -------------------------------- */
/* cs_modal_wrap_1 */
/* -------------------------------- */

.fancybox-slide--html .fancybox-close-small {
    position: fixed;
    right: 6px !important;
    top: 6px !important;
    background-color: var(--co_1);
}

.fancybox-slide--html .fancybox-close-small svg path {
    fill: #000 !important;
}

.cs_modal_wrap_1.fancybox-content {
    padding: 0;
    max-height: 100%;
}

.cs_modal_wrap_1 .img_1 {
    position: relative;
    display: block;
    width: 900px;
    max-width: 100%;
}

.cs_modal_wrap_1 .img_1 a {
    position: absolute;
    display: block;
    width: 10%;
    height: 10%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
    /* background-color: rgba(240, 150, 0, 0.5); */
}

.cs_modal_wrap_1 .img_1 .link_dummy {
    left: 0;
    top: 0;
    width: 0;
    height: 1px;
}

.cs_modal_wrap_1 .img_1 .link_1 {
    left: 10%;
    bottom: 5%;
    width: 80%;
    height: 2.5%;
}

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

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