@charset "utf-8";

/* ---------------------------------------------------- */
/* 変数 */
/* ---------------------------------------------------- */
:root {
    --co_1: #000;
    --co_2: #fff;
    --co_3: #00a0e9;
    --co_4: #d3a243;
}

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

body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    color: var(--co_2);
    line-height: 1.5;
    font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: 400;
    background-color: var(--co_1);
    overflow: hidden;
}

@media (min-width: 1000px) {
    body {
        min-width: 1100px;
        font-size: 14px;
    }
}

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

/* ---------------------------------------------------- */
/* img */
/* ---------------------------------------------------- */
.body_wrap img {
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
}

/* ---------------------------------------------------- */
/* a */
/* ---------------------------------------------------- */
a {
    color: var(--co_2);
    text-decoration: none;
    outline: none;
    transition: 0.3s ease-in-out;
}

a:hover {
    text-decoration: none;
}

/* ---------------------------------------------------- */
/* body_wrap */
/* ---------------------------------------------------- */
.body_wrap {
    position: relative;
    max-height: 999999px;
    opacity: 0;
    /* android chrome フォントサイズバグ回避 */
}
.body_wrap::before,
.body_wrap::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    z-index: -1;
}
.body_wrap::before {
    top: 0;
    height: 250px;
    background: linear-gradient(180deg, rgba(154, 102, 27, 1) 0%, rgba(0, 0, 0, 1) 100%);
}
.body_wrap::after {
    bottom: 0;
    height: 350px;
    background: linear-gradient(0deg, rgba(154, 102, 27, 1) 0%, rgba(0, 0, 0, 1) 100%);
}
@media (max-width: 999px) {
    .body_wrap::before {
        top: 0;
        height: 200px;
    }
    .body_wrap::after {
        height: 250px;
    }
}
/* ---------------------------------------------------- */
/* contents_wrap */
/* ---------------------------------------------------- */
.contents_wrap {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: url(../img/bg/1.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 1607px auto;
}
.contents_wrap::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 300px;
    background-image: url(../img/bg/2.png);
    background-position: center bottom -140px;
    background-repeat: no-repeat;
    background-size: 1788px auto;
}
.contents_wrap::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/bg/3.png), url(../img/bg/4.png);
    background-position: top left -50px, top right -50px;
    background-repeat: repeat-y;
    background-size: 184px auto;
    pointer-events: none;
    z-index: -1;
}
@media (max-width: 999px) {
    .contents_wrap {
        padding-top: 50px;
        padding-bottom: 50px;
        background-size: 1000px auto;
    }
    .contents_wrap::before {
        height: 100px;
        background-position: center bottom -80px;
        background-size: 1000px auto;
    }
    .contents_wrap::after {
        display: none;
    }
}

/* ---------------------------------------------------- */
/* header_1 */
/* ---------------------------------------------------- */
@media (min-width: 1000px) {
    .header_1 {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        min-width: 1100px;
        z-index: 100;
        background: linear-gradient(
            -110deg,
            rgba(185, 128, 27, 1) 10%,
            rgba(208, 151, 27, 1) 20%,
            rgba(154, 102, 27, 1) 30%,
            rgba(185, 128, 27, 1) 40%,
            rgba(185, 128, 27, 1) 60%,
            rgba(154, 102, 27, 1) 70%,
            rgba(208, 151, 27, 1) 80%,
            rgba(185, 128, 27, 1) 90%
        );
        border: 2px solid #85512d;
    }

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

    .header_1 .site_ttl_1 {
        position: absolute;
        left: 50px;
        top: 50%;
        transform: translateY(-50%);
        width: 170px;
        filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.9)) drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.9));
        z-index: 110;
    }

    .header_1 .site_ttl_1 a {
        position: relative;
        display: block;
    }

    .header_1 .btn_1 {
        display: none;
    }

    .header_1 .nav_1 {
        position: absolute;
        right: 50px;
        top: 50%;
        transform: translateY(-50%);
    }
    .header_1 .nav_1 > ul {
        display: flex;
        align-items: center;
    }
    .header_1 .nav_1 > ul > li + li::before {
        content: "│";
        padding: 0 20px;
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 1), 0px 0px 10px rgba(0, 0, 0, 1);
    }
    .header_1 .nav_1 a {
        font-size: 15px;
        font-weight: 500;
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 1), 0px 0px 10px rgba(0, 0, 0, 1);
    }
}

@media (max-width: 999px) {
    .header_1 {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 100;
        background: linear-gradient(
            -110deg,
            rgba(185, 128, 27, 1) 10%,
            rgba(208, 151, 27, 1) 20%,
            rgba(154, 102, 27, 1) 30%,
            rgba(185, 128, 27, 1) 40%,
            rgba(185, 128, 27, 1) 60%,
            rgba(154, 102, 27, 1) 70%,
            rgba(208, 151, 27, 1) 80%,
            rgba(185, 128, 27, 1) 90%
        );
        border: 1px solid #85512d;
    }

    .header_1 .header_inner {
        position: relative;
        height: 50px;
    }
    .header_1 .site_ttl_1 {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 100px;
        filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.9)) drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.9));
        z-index: 110;
    }

    .header_1 .site_ttl_1 a {
        position: relative;
        display: block;
    }

    .header_1 .btn_1 {
        display: none;
        position: absolute;
        right: 75px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        padding: 6px 10px;
        font-size: 12px;
        line-height: 1;
        background-color: var(--co_1);
        border: 1px solid #85512d;
        /* z-index: 110; */
    }
    .header_1 .nav_1 > ul > li + li {
        margin-top: 20px;
    }
    .header_1 .nav_1 > ul > li::before {
        content: "│";
        padding-right: 20px;
        font-size: 20px;
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 1), 0px 0px 10px rgba(0, 0, 0, 1);
    }
    .header_1 .nav_1 a {
        font-size: 20px;
        font-weight: 500;
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 1), 0px 0px 10px rgba(0, 0, 0, 1);
    }
    .header_1 .btn_toggle_megamenu {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 40px;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
        z-index: 110;
    }

    .header_1 .btn_toggle_megamenu div {
        position: relative;
        width: 30px;
        height: 5px;
    }

    .header_1 .btn_toggle_megamenu div > span span,
    .header_1 .btn_toggle_megamenu div > span:before,
    .header_1 .btn_toggle_megamenu div > span:after {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--co_2);
        transform-origin: center center;
        box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.6);
        transition: 0.3s ease-in-out;
    }

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

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

    .header_1 .btn_toggle_megamenu div > span:after {
        transform: translateY(8px);
    }

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

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

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

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

    .header_1 .toggle_megamenu_wrap {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            -110deg,
            rgba(185, 128, 27, 1) 10%,
            rgba(208, 151, 27, 1) 20%,
            rgba(154, 102, 27, 1) 30%,
            rgba(185, 128, 27, 1) 40%,
            rgba(185, 128, 27, 1) 60%,
            rgba(154, 102, 27, 1) 70%,
            rgba(208, 151, 27, 1) 80%,
            rgba(185, 128, 27, 1) 90%
        );
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 100;
    }

    .header_1 .toggle_megamenu_wrap .toggle_inner {
        display: flex;
        justify-content: center;
        align-items: center;
        align-content: center;
        flex-wrap: wrap;
        padding: 80px 80px;
        height: 100%;
    }
}
/* ---------------------------------------------------- */
/* footer_1 */
/* ---------------------------------------------------- */
.footer_1 {
    padding-top: 20px;
    padding-bottom: 20px;
    background: linear-gradient(
        -110deg,
        rgba(185, 128, 27, 1) 10%,
        rgba(208, 151, 27, 1) 20%,
        rgba(154, 102, 27, 1) 30%,
        rgba(185, 128, 27, 1) 40%,
        rgba(185, 128, 27, 1) 60%,
        rgba(154, 102, 27, 1) 70%,
        rgba(208, 151, 27, 1) 80%,
        rgba(185, 128, 27, 1) 90%
    );
}
.footer_1 .copyright_1 {
    font-size: 12px;
    text-align: center;
}
@media (max-width: 999px) {
    .footer_1 .copyright_1 {
        font-size: 11px;
    }
}
