@charset "utf-8";

/* ---------------------------------------------------- */
/* html body */
/* ---------------------------------------------------- */
html {
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    /* iPhone */
}

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: #fff;
}

@media (min-width: 768px) {
    body::before {
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-image: url(../img/bg_1.jpg);
        width: 1920px auto;
        background-position: center;
    }
}

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

/* ---------------------------------------------------- */
/* 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;
}

/* ---------------------------------------------------- */
/* contents */
/* ---------------------------------------------------- */
.contents {
    position: relative;
    margin: 0 auto;
    opacity: 0;
}
.contents > * {
    position: relative;
}

@media (min-width: 768px) {
    .contents {
        width: 500px;
        box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.8);
    }
}

@media (max-width: 767px) {
    /* .page_cp .contents_wrap {
        padding-top: 50px;
    } */
}
/* ---------------------------------------------------- */
/* intro_1 */
/* ---------------------------------------------------- */
.intro_1 .btn_1 {
    position: absolute;
    left: 8%;
    bottom: 4%;
    display: block;
    width: 84%;
}

/* ---------------------------------------------------- */
/* outro_1 */
/* ---------------------------------------------------- */
.outro_1 .btn_1 {
    position: absolute;
    left: 8%;
    bottom: 15%;
    display: block;
    width: 84%;
}

.outro_1 .btn_2 {
    position: absolute;
    left: 8%;
    bottom: 6%;
    display: block;
    width: 84%;
}
/* ---------------------------------------------------- */
/* footer_1 */
/* ---------------------------------------------------- */
.footer_1 .nav_1 {
    position: fixed;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) translateY(100%);
    display: flex;
    width: 500px;
    transition: 0.3s ease-in-out;
}
.is_page_scr .footer_1 .nav_1 {
    transform: translateX(-50%) translateY(0);
}

.footer_1 .nav_1 > a {
    display: block;
    width: calc(100% / 2);
}
@media (max-width: 767px) {
    .footer_1 .nav_1 {
        width: 100%;
    }
}
