@charset "utf-8";

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

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

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

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

.cs_ff_go {
    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;
    background-color: #000;
}

/* ---------------------------------------------------- */
/* 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 */
/* ---------------------------------------------------- */
.cs_e_zm {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.cs_e_zm>span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: translate(-50%, -50%) scale(1.005);
    transition: 0.3s 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_bn {
        transition: filter 0.3s ease-in-out;
    }

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

    a:hover .cs_e_zm>span {
        transform: translate(-50%, -50%) scale(1.08);
        filter: brightness(50%);
    }
}

/* ---------------------------------------------------- */
/* 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 {
        display: none !important;
    }
}

/* ---------------------------------------------------- */
/* cs_w_full */
/* ---------------------------------------------------- */
.cs_w_full {
    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 {
        /* marginを（bodymin-width - cs_sec_inner / 2） */
        margin-left: -60px;
        margin-right: -60px
    }
}

/* ---------------------------------------------------- */
/* 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 {
    margin-left: 1.5em;
    list-style: disc;
    line-height: 2.0;
}

.cs_ul_1 li+li {
    margin-top: 0;
}

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

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

@media (min-width: 768px) {
    .cs_sec_wrap {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .cs_sec_inner {
        width: 1080px;
    }

    .cs_sec_inner_pc_w1 {
        width: 100%;
    }

    .cs_sec_inner_pc_w2 {
        width: 800px;
    }
}

@media (max-width: 767px) {
    .cs_sec_wrap {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .cs_sec_inner {
        width: calc(100% - 50px);
    }

    .cs_sec_inner_sp_w1 {
        width: 100%;
    }
}

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

.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-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 1px;
    line-height: 1.2;
    border-bottom: 3px solid #000;
}

.cs_ttl_1 .en {
    font-size: 5.0rem;
    font-weight: 200;
}

@media (max-width: 767px) {
    .cs_ttl_1 {
        padding-left: 25px;
        padding-right: 25px;
        padding-bottom: 3px;
    }

    .cs_ttl_1 .en {
        font-size: 2.5rem;
    }
}

/* ---------------------------------------------------- */
/* cs_ttl_2 */
/* ---------------------------------------------------- */
.cs_ttl_2 {
    display: table;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 1px;
    line-height: 1.2;
    border-bottom: 3px solid #000;
}

.cs_ttl_2 .en {
    font-size: 3.4rem;
    font-weight: 200;
    letter-spacing: 0.05em;
}

@media (max-width: 767px) {
    .cs_ttl_2 {
        padding-bottom: 3px;
    }

    .cs_ttl_2 .en {
        font-size: 2.2rem;
    }

}

/* ---------------------------------------------------- */
/* cs_ttl_3 */
/* ---------------------------------------------------- */
.cs_ttl_3 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cs_ttl_3 .ico {
    margin-right: 15px;
    width: 40px;
}

.cs_ttl_3 .ttl {
    line-height: 1.4;
    letter-spacing: 0.05em;
}

.cs_ttl_3 .en {
    display: block;
    font-size: 2.2rem;
}

.cs_ttl_3 .ja {
    display: block;
    font-size: 1.4rem;
}

@media (max-width: 767px) {
    .cs_ttl_3 .ico {
        margin-right: 10px;
        width: 32px;
    }

    .cs_ttl_3 .en {
        font-size: 1.7rem;
    }

    .cs_ttl_3 .ja {
        font-size: 1.1rem;
    }
}

/* ---------------------------------------------------- */
/* cs_ttl_4 */
/* ---------------------------------------------------- */
.cs_ttl_4 {
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.1em;
}

.cs_ttl_4 .en {
    display: block;
    font-size: 3.0rem;
}

.cs_ttl_4 .ja {
    display: block;
    font-size: 1.8rem;
}

@media (max-width: 767px) {
    .cs_ttl_4 .en {
        font-size: 1.8rem;
    }

    .cs_ttl_4 .ja {
        font-size: 1.1rem;
    }
}

/* ---------------------------------------------------- */
/* cs_ttl_5 */
/* ---------------------------------------------------- */
.cs_ttl_5 {
    font-size: 2.6rem;
    text-align: center;
    letter-spacing: 0.15em;
}

.cs_ttl_5::after {
    content: "";
    display: block;
    margin: 20px auto 0;
    width: 25px;
    height: 3px;
    background-color: #000;
}

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

    .cs_ttl_5::after {
        content: "";
        display: block;
        margin: 15px auto 0;
        width: 25px;
        height: 3px;
        background-color: #000;
    }
}

/* ---------------------------------------------------- */
/* cs_btn_wrap */
/* ---------------------------------------------------- */
.cs_btn_wrap {
    display: flex;
    justify-content: center;
}

/* ---------------------------------------------------- */
/* cs_btn_1 */
/* ---------------------------------------------------- */
.cs_btn_1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 10px;
    width: 240px;
    max-width: 100%;
    color: #FFF;
    background-color: #000;
    border: 1px solid #000;
    border-radius: 12px;
}

.cs_btn_1 span {
    position: relative;
    font-size: 1.6rem;
    line-height: 1.4;
    text-align: center;
}

/* arrow */
.cs_btn_1.cs_btn_arrow_l span::before,
.cs_btn_1.cs_btn_arrow_r span::after,
.cs_btn_1.cs_btn_arrow_d span::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    transition: 0.3s ease-in-out;
}

.cs_btn_1.cs_btn_arrow_l span::before {
    left: -20px;
    transform: translateY(-50%) rotate(-135deg);
}

.cs_btn_1.cs_btn_arrow_r span::after {
    right: -20px;
    transform: translateY(-50%) rotate(45deg);
}

.cs_btn_1.cs_btn_arrow_d span::after {
    right: -20px;
    transform: translateY(-50%) rotate(135deg);
}

/* color */
.cs_btn_1.cs_btn_co_1 {
    color: #FFF;
    background-color: #000;
    border-color: #000;
}

.cs_btn_1.cs_btn_co_1.cs_btn_arrow_l span::before,
.cs_btn_1.cs_btn_co_1.cs_btn_arrow_r span::after,
.cs_btn_1.cs_btn_co_1.cs_btn_arrow_d span::after {
    border-color: #FFF;
}

.cs_btn_1.cs_btn_co_2 {
    color: #000 !important;
    background-color: #dcdcdc;
    border-color: #dcdcdc;
}

.cs_btn_1.cs_btn_co_2.cs_btn_arrow_l span::before,
.cs_btn_1.cs_btn_co_2.cs_btn_arrow_r span::after,
.cs_btn_1.cs_btn_co_2.cs_btn_arrow_d span::after {
    border-color: #000;
}

.cs_btn_1.cs_btn_co_3 {
    color: #FFF !important;
    background-color: transparent;
    border-color: #b4b4b4;
}

.cs_btn_1.cs_btn_co_3.cs_btn_arrow_l span::before,
.cs_btn_1.cs_btn_co_3.cs_btn_arrow_r span::after,
.cs_btn_1.cs_btn_co_3.cs_btn_arrow_d span::after {
    border-color: #FFF;
}

.cs_btn_1.cs_btn_co_4 {
    color: #000 !important;
    background-color: #FFF;
    border-color: #FFF;
}

.cs_btn_1.cs_btn_co_4.cs_btn_arrow_l span::before,
.cs_btn_1.cs_btn_co_4.cs_btn_arrow_r span::after,
.cs_btn_1.cs_btn_co_4.cs_btn_arrow_d span::after {
    border-color: #000;
}

@media (min-width: 768px) {

    /* arrow */
    .cs_btn_1.cs_btn_arrow_l:hover span::before {
        left: -25px;
    }

    .cs_btn_1.cs_btn_arrow_r:hover span::after {
        right: -25px;
    }

    .cs_btn_1.cs_btn_arrow_d:hover span::after {
        top: 60%;
    }

    /* color */
    .cs_btn_1.cs_btn_co_1:hover {
        background-color: #5e5e5e;
        border-color: #5e5e5e;
    }

    .cs_btn_1.cs_btn_co_2:hover {
        background-color: #b4b4b4;
        border-color: #b4b4b4;
    }

    .cs_btn_1.cs_btn_co_3:hover {
        background-color: #b4b4b4;
        border-color: #b4b4b4;
    }

    .cs_btn_1.cs_btn_co_4:hover {
        background-color: #b4b4b4;
        border-color: #b4b4b4;
    }

    /* size */
    .cs_btn_1.cs_btn_si_1 {
        padding: 30px 10px;
        width: 470px;
    }

    .cs_btn_1.cs_btn_si_1 span {
        font-size: 2.0rem;
    }
}

@media (max-width: 767px) {
    .cs_btn_1 {
        width: 230px;
    }

    .cs_btn_1 span {
        font-size: 1.3rem;
    }

    /* size */
    .cs_btn_1.cs_btn_si_1 {
        padding: 20px 10px;
    }

    .cs_btn_1.cs_btn_si_1 span {
        font-size: 1.5rem;
    }
}

/* ---------------------------------------------------- */
/* cs_btn_2 */
/* ---------------------------------------------------- */
.cs_btn_2 {
    display: inline-block;
}

.cs_btn_2 span {
    position: relative;
    display: block;
    padding-right: 27px;
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 0.1em;
}

.cs_btn_2 span i {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 22px;
    height: 22px;
    background-color: #000;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}

.cs_btn_2 span i::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    transform: translate(-65%, -50%) rotate(45deg);
    transition: 0.3s ease-in-out;
}

/* color */
.cs_btn_2.cs_btn_co_1 span {
    color: #FFF;
}

.cs_btn_2.cs_btn_co_1 span i {
    background-color: #FFF;
}

.cs_btn_2.cs_btn_co_1 span i::after {
    border-color: #000;
}

@media (min-width: 768px) {
    .cs_btn_2:hover {
        color: #5e5e5e;
    }

    .cs_btn_2:hover span i {
        right: -5px;
    }
}

@media (max-width: 767px) {
    .cs_btn_2 {
        display: inline-block;
    }

    .cs_btn_2 span {
        padding-right: 20px;
        font-size: 1.2rem;
    }

    .cs_btn_2 span i {
        width: 16px;
        height: 16px;
    }

    .cs_btn_2 span i::after {
        width: 6px;
        height: 6px;
    }
}

/* ---------------------------------------------------- */
/* cs_effect */
/* ---------------------------------------------------- */
@keyframes cs_effect_1 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.cs_effect {
    animation-duration: 1s;
    animation-delay: 0s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-play-state: paused;
}

.cs_effect.is_start {
    animation-play-state: running;
}

.cs_effect_1 {
    animation-name: cs_effect_1;
}

/* ---------------------------------------------------- */
/* cs_sec_mv_wrap_1 */
/* ---------------------------------------------------- */
.cs_sec_mv_wrap_1 {
    padding-top: 0;
    padding-bottom: 0;
    background-position: center;
    background-size: cover;
}

.cs_sec_mv_wrap_1 .sec_inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
}

.cs_sec_mv_wrap_1 .page_ttl {
    color: #FFF;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.cs_sec_mv_wrap_1 .page_ttl .en {
    display: block;
    font-size: 3.8rem;
    font-weight: 200;
}

.cs_sec_mv_wrap_1 .page_ttl .ja {
    display: block;
    margin-top: 5px;
    font-size: 1.6rem;
}

@media (max-width: 767px) {
    .cs_sec_mv_wrap_1 .sec_inner {
        height: 110px;
    }

    .cs_sec_mv_wrap_1 .page_ttl .en {
        font-size: 2.0rem;
    }

    .cs_sec_mv_wrap_1 .page_ttl .ja {
        font-size: 1.1rem;
    }
}

/* ---------------------------------------------------- */
/* cs_sec_widget_wrap_1 */
/* ---------------------------------------------------- */
.cs_sec_widget_wrap_1 {
    padding-top: 110px;
    padding-bottom: 110px;
}

.cs_sec_widget_wrap_1 .sec_ttl {
    margin-bottom: 40px;
}

.cs_sec_widget_wrap_1 *+.sec_ttl {
    margin-top: 100px;
}

.cs_sec_widget_wrap_1 .list_othercontents>ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: -20px;
}

.cs_sec_widget_wrap_1 .list_othercontents>ul>li {
    margin-bottom: 20px;
    width: 25%;
}

.cs_sec_widget_wrap_1 .list_othercontents a {
    display: block;
    text-align: right;
}

.cs_sec_widget_wrap_1 .list_othercontents .img {
    margin-bottom: 10px;
}

.cs_sec_widget_wrap_1 .list_othercontents .img span {
    display: block;
    padding-top: 54%;
    background-size: cover;
    background-position: center;
}

.cs_sec_widget_wrap_1 .list_bland>ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -40px;
}

.cs_sec_widget_wrap_1 .list_bland>ul>li {
    margin-bottom: 40px;
    width: 33.33%;
}

.cs_sec_widget_wrap_1 .list_bland a {
    display: block;
}

.cs_sec_widget_wrap_1 .list_bland .img {
    margin-bottom: 10px;
}

.cs_sec_widget_wrap_1 .list_bland .img span {
    display: block;
    padding-top: 54%;
    background-size: cover;
    background-position: center;
}

.cs_sec_widget_wrap_1 .list_bland .ttl {
    font-size: 1.8rem;
    text-align: center;
}

@media (max-width: 767px) {
    .cs_sec_widget_wrap_1 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .cs_sec_widget_wrap_1 .sec_ttl {
        margin-bottom: 20px;
    }

    .cs_sec_widget_wrap_1 *+.sec_ttl {
        margin-top: 50px;
    }

    .cs_sec_widget_wrap_1 .list_othercontents>ul>li {
        width: 50%;
    }

    .cs_sec_widget_wrap_1 .list_othercontents .img {
        margin-bottom: 5px;
    }

    .cs_sec_widget_wrap_1 .list_bland>ul {
        margin-bottom: -20px;
        justify-content: center;
    }

    .cs_sec_widget_wrap_1 .list_bland>ul>li {
        width: 50%;
        margin-bottom: 20px;
    }

    .cs_sec_widget_wrap_1 .list_bland a {
        display: block;
    }

    .cs_sec_widget_wrap_1 .list_bland .img {
        margin-bottom: 5px;
    }

    .cs_sec_widget_wrap_1 .list_bland .ttl {
        font-size: 1.4rem;
    }
}

/* ---------------------------------------------------- */
/* cs_sec_nav_wrap_1 */
/* ---------------------------------------------------- */
.cs_sec_nav_wrap_1 {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #d2d2d2;
}

.cs_sec_nav_wrap_1 .sec_ttl {
    margin-bottom: 30px;
    font-size: 2.0rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.1em;
}

.cs_sec_nav_wrap_1 .nav_page_wrap>ul {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.cs_sec_nav_wrap_1 .nav_page_wrap>ul>li {
    position: relative;
    padding: 15px 0;
    width: 25%;
    border-bottom: 1px solid #000;
}

.cs_sec_nav_wrap_1 .nav_page_wrap a {
    position: relative;
    display: block;
    padding-top: 10px;
    height: 50px;
    font-size: 1.8rem;
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 1;
}

.cs_sec_nav_wrap_1 .nav_page_wrap>ul>li+li>a {
    border-left: 1px solid #000;
}

.cs_sec_nav_wrap_1 .nav_page_wrap a:not(.n)::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: translateX(-50%) rotate(135deg);
    transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
    .cs_sec_nav_wrap_1 .nav_page_wrap a:hover {
        color: #225378;
    }

    .cs_sec_nav_wrap_1 .nav_page_wrap a:hover::before {
        bottom: 0px;
        border-color: #225378;
    }
}

@media (max-width: 767px) {
    .cs_sec_nav_wrap_1 {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .cs_sec_nav_wrap_1 .sec_ttl {
        padding-top: 5px;
        margin-bottom: 10px;
        font-size: 1.5rem;
    }

    .cs_sec_nav_wrap_1 .nav_page_wrap {
        margin: 0 -15px;
    }

    .cs_sec_nav_wrap_1 .nav_page_wrap>ul+ul {
        padding-top: 0;
        margin-top: 0;
        border-top: none;
    }

    .cs_sec_nav_wrap_1 .nav_page_wrap>ul>li {
        padding: 10px 0;
        width: 33.33%;
        border-bottom: 1px solid #000;
    }

    .cs_sec_nav_wrap_1 .nav_page_wrap a {
        padding-top: 10px;
        height: 40px;
        font-size: 1.1rem;
        white-space: nowrap;
    }

    .cs_sec_nav_wrap_1 .nav_page_wrap a::before {
        bottom: 2px;
    }
}
