@charset "utf-8";

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

/* ---------------------------------------------------- */
/* html body */
/* ---------------------------------------------------- */
html {
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    /* iPhone */
    overflow-y: scroll;
    font-size: 62.5%;
}

body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    color: #000;
    line-height: 1.5;
    font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-weight: 400;
    background-color: #dfdfcf;
    overflow: hidden;
}

@media (min-width: 768px) {
    body {
        min-width: 1200px;
        font-size: 1.4rem;
    }
}

@media (max-width: 767px) {
    body {
        min-width: 320px;
        font-size: 1.4rem;
    }
}

/* ---------------------------------------------------- */
/* img */
/* ---------------------------------------------------- */
img {
    display: block;
    width: 100%;
    height: auto;
}

/* ---------------------------------------------------- */
/* a */
/* ---------------------------------------------------- */
a {
    color: #000;
    text-decoration: none;
    outline: none;
    transition: 0.3s ease-in-out;
}

a:hover {
    text-decoration: none;
}

/* ---------------------------------------------------- */
/* body_wrap */
/* ---------------------------------------------------- */
.body_wrap {
    max-height: 999999px;
    /* android chrome フォントサイズバグ回避 */
    opacity: 0;
}

/* ---------------------------------------------------- */
/* contents_wrap */
/* ---------------------------------------------------- */
.contents_wrap {
    padding-top: 0;
}

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

/* ---------------------------------------------------- */
/* .header_1 */
/* ---------------------------------------------------- */
@media (min-width: 768px) {
    .header_1 {
        width: 100%;
        background-color: #000;
        z-index: 100;
    }

    .header_1 .header_inner {
        position: relative;
        height: 70px;
    }

    .header_1 .site_logo {
        display: none;
    }

    .header_1 .btn_toggle_menu {
        display: none;
    }

    .header_1 .toggle_wrap {
        display: block !important;
        opacity: 1 !important;
    }

    .header_1 .toggle_wrap .logo {
        display: none;
    }

    .header_1 .nav_h_wrap {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .header_1 .nav_h_wrap > ul {
        display: flex;
        justify-content: center;
    }

    .header_1 .nav_h_wrap > ul > li + li {
        margin-left: 35px;
    }

    .header_1 .nav_h_wrap > ul > li > a {
        display: block;
        height: 100%;
        color: #e4e2dc;
        font-size: 2.4rem;
        font-weight: 500;
        line-height: 1;
        letter-spacing: 0.05em;
        text-decoration: none;
    }
}

@media (max-width: 767px) {
    .header_1 {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        background-color: #000;
        z-index: 100;
    }

    .header_1 .header_inner {
        position: relative;
        height: 40px;
    }

    .header_1 .site_logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: block;
        width: 110px;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
    }

    .header_1 .btn_toggle_menu {
        position: absolute;
        right: 0;
        top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 55px;
        height: 100%;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
        z-index: 110;
    }

    .header_1 .btn_toggle_menu div {
        position: relative;
        width: 28px;
        height: 20px;
    }

    .header_1 .btn_toggle_menu div > span span,
    .header_1 .btn_toggle_menu div > span:before,
    .header_1 .btn_toggle_menu div > span:after {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        display: block;
        width: 100%;
        height: 2px;
        background-color: #e7e5df;
        transform-origin: center center;
        transition: 0.3s ease-in-out;
    }

    .header_1 .btn_toggle_menu div > span span {
        transform: translateY(-1px);
    }

    .header_1 .btn_toggle_menu div > span:before {
        transform: translateY(-9px);
    }

    .header_1 .btn_toggle_menu div > span:after {
        transform: translateY(7px);
    }

    .header_1 .btn_toggle_menu.is_show div > span span,
    .header_1 .btn_toggle_menu.is_show div > span:before,
    .header_1 .btn_toggle_menu.is_show div > span:after {
        width: 100% !important;
    }

    .header_1 .btn_toggle_menu.is_show div > span span {
        opacity: 0;
    }

    .header_1 .btn_toggle_menu.is_show div > span:before {
        transform: translateY(-50%) rotate(-45deg);
    }

    .header_1 .btn_toggle_menu.is_show div > span:after {
        bottom: 0;
        transform: translateY(-50%) rotate(45deg);
    }

    .header_1 .toggle_wrap {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: calc(100%);
        background-color: #000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 100;
    }

    .header_1 .toggle_wrap .toggle_inner {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 40px 0;
        height: 100%;
    }

    .header_1 .nav_h_wrap {
        padding: 20px 0;
    }

    .header_1 .nav_h_wrap > ul > li + li {
        margin-top: 40px;
    }

    .header_1 .nav_h_wrap > ul > li > a {
        display: block;
        color: #fff;
        font-size: 3rem;
        font-weight: 500;
        line-height: 1;
        letter-spacing: 0.1em;
        text-decoration: none;
        text-align: center;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
    }
}

/* ---------------------------------------------------- */
/* .footer_1 */
/* ---------------------------------------------------- */
.footer_1 {
    position: relative;
    padding: 60px 0;
    color: #fff;
    background-color: #000;
    background-image: url(../img/bg/1.svg);
    background-size: 2520px auto;
    background-position: center -350px;
}

.footer_1 .footer_inner {
    margin: 0 auto;
    width: 1000px;
}

.footer_1 .logo_1 {
    display: block;
    margin: 0 auto 40px;
    width: 400px;
}

.footer_1 .year_1 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.footer_1 .year_1 a {
    display: block;
    width: max-content;
}

.footer_1 .year_1 a + a {
    margin-left: 40px;
}

.footer_1 .year_1 .y19 {
    width: 130px;
}

.footer_1 .year_1 .y21,
.footer_1 .year_1 .y22 {
    width: 230px;
}

.footer_1 .logo_2 {
    display: block;
    margin: 0 auto 20px;
    width: 127px;
}

.footer_1 .sponsor_1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 1.1rem;
    text-align: center;
}

.footer_1 .sponsor_1 > div + div {
    margin-left: 1em;
}

@media (max-width: 767px) {
    .footer_1 {
        padding: 30px 0;
        background-image: url(../img/bg/1_sp.svg);
        background-size: 100% auto;
        background-position: center -150px;
    }

    .footer_1 .footer_inner {
        width: calc(100% - 40px);
    }

    .footer_1 .logo_1 {
        display: block;
        margin: 0 auto 30px;
        width: 250px;
    }

    .footer_1 .year_1 {
        display: block;
        margin-bottom: 30px;
    }

    .footer_1 .year_1 a {
        margin-left: auto;
        margin-right: auto;
    }

    .footer_1 .year_1 a + a {
        margin-left: auto;
        margin-top: 20px;
    }

    .footer_1 .year_1 .y19 {
        width: 100px;
    }

    .footer_1 .year_1 .y21,
    .footer_1 .year_1 .y22 {
        width: 150px;
    }
    .footer_1 .logo_2 {
        width: 100px;
    }
    .footer_1 .sponsor_1 {
        display: block;
    }

    .footer_1 .sponsor_1 > div + div {
        margin-left: 0;
        margin-top: 1em;
    }
}
