@charset "UTF-8";
@keyframes twinkle {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
[data-animation] {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    transition-duration: 1s;
    transition-delay: .2s;
    transition-property: transform, opacity;
}
[data-animation="after"] {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.gBody {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.gFooter {
    /* margin-top: 73px; */
    padding-bottom: 30px;
    position: relative;
    z-index: 2;
    -webkit-transform: none;
    transform: none;
    background-color: #d60000;
}
.gFooter_inner {}
.gFooter_inner::before {
    content: "";
    display: block;
    height: 1px;
    width: 180px;
    background: #ccc;
    margin: 0 auto 40px;
}
.gFooter_title {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.gFooter_title > a {
    display: block;
    text-decoration: none;
}
.gFooter_title > a::before {
    content: "";
}
.gFooter_title > a::after {
    content: "";
}
.gFooter_title > a > img {
    display: block;
}
.gFooter_copyright {
    text-align: center;
    margin-top: 14px;
}
.gFooter_copyright > small {
    display: block;
    font-size: 12px;
    color: #fff;
}
.gPageTop {
    position: absolute;
    z-index: 1000;
    right: 36px;
    bottom: 424px;
}
.gPageTop_button {
    width: 44px;
    height: 44px;
    border: 3px solid #fff;
    transition-duration: .3s;
    transition-property: transform;
    display: block;
}
.gPageTop_button::after {
    content: "";
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0;
    border: 4px solid #fff;
    width: 14px;
    height: 14px;
    -webkit-transform: translateY(4px) rotate(-45deg);
    transform: translateY(4px) rotate(-45deg);
    border-bottom: none;
    border-left: none;
    left: 0;
    margin: auto;
}
@media screen and (min-width:1000px) {
    .gFooter_title > a:hover {}
    .gPageTop_button:hover {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}
@media screen and (max-width:999px) {
    [data-animation] {}
    [data-animation="after"] {}
    .gBody {}
    .gFooter {margin-top: 0;}
    .gFooter_inner {}
    .gFooter_inner::before {}
    .gFooter_title {}
    .gFooter_title > a {}
    .gFooter_title > a::before {}
    .gFooter_title > a::after {}
    .gFooter_title > a > img {}
    .gFooter_copyright {}
    .gFooter_copyright > small {}
    .gPageTop {
        position: fixed;
        right: 2%;
        bottom: 25px;
        opacity: 0;
        transition-duration: .3s;
        transition-property: opacity;
    }
    .gPageTop.isFixed {
        opacity: 1;
    }
    .gPageTop_button {
        border-color: #101c3b;
        background: #fff;
        opacity: .7;
    }
    .gPageTop_button::after {
        border-color: #101c3b;
    }
}
@media screen and (max-width:699px) {
    [data-animation] {}
    [data-animation="after"] {}
    .gBody {}
    .gFooter {
        margin: 0;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .gFooter_inner {}
    .gFooter_inner::before {
        display: none;
    }
    .gFooter_title {}
    .gFooter_title > a {
        width: 150px;
    }
    .gFooter_title > a::before {}
    .gFooter_title > a::after {}
    .gFooter_title > a > img {}
    .gFooter_copyright {}
    .gFooter_copyright > small {
        font-size: 10px;
    }
    .gPageTop {
        right: 10px;
        bottom: 10px;
    }
    .gPageTop_button {
        border-width: 2px;
        width: 36px;
        height: 36px;
    }
    .gPageTop_button::after {
        width: 10px;
        height: 10px;
        border-width: 2px;
    }
}

.imgBg {
    display: block;
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.imgBg2 {
    display: block;
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* 共通アニメーション
========================= */
/* fade in ----------------------------------------*/
.fadein01 {
    opacity : 0.0;
    transform : translate(0, 50px);
    transition : 1000ms;
}

.fadein01.activein {
    opacity : 1;
    transform : translate(0, 0px);
}

.fadein02 {
    opacity : 0.0;
    transform : translate(0, 50px);
    transition : 1300ms;
}

.fadein02.activein {
    opacity : 1;
    transform : translate(0, 0px);
}

.fadein03 {
    opacity : 0.0;
    transform : translate(0, 50px);
    transition : 1600ms;
}

.fadein03.activein {
    opacity : 1;
    transform : translate(0, 0px);
}

/* fade in R ----------------------------------------*/
.fadeinR {
    opacity : 0.0;
    transform : translate(50px,0);
    transition : 1300ms;
}

.fadeinR.activein {
    opacity : 1;
    transform : translate(0, 0px);
}

/* fade in L ----------------------------------------*/
.fadeinL {
    opacity : 0.0;
    transform : translate(-50px,0);
    transition : 1300ms;
}

.fadeinL.activein {
    opacity : 1;
    transform : translate(0, 0px);
}

/* show order ----------------------------------------*/
#showOrder01 .order-box {
    transform: translateX(-10%);
    opacity: 0;
    transition : 100ms;
}
