@charset "UTF-8";
/* CSS Document */
/* screen transition */
.move .transition-bg {
    background: #A51A1A;
    display: block;
    content: "";
    position: fixed;
    z-index: 50;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    top: 0;
    left: 0;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}
.ttb .transition-bg {
    animation-name: PageAnime-ttb;
}
@keyframes PageAnime-ttb {
    0% {
        transform-origin: bottom;
        transform: scaleY(1);
    }
    40% {
        transform-origin: bottom;
        transform: scaleY(1);
    }
    40.001% {
        transform-origin: top;
    }
    100% {
        transform-origin: top;
        transform: scaleY(0);
    }
}
/* body common */
.h3 {
    margin-bottom: 32px;
    width: auto;
    height: 36px;
}
.text_small {
    font-size: 1rem;
}
.underline a {
    text-decoration: underline;
}
.material-icons {
    color: #ffffff;
}
.contents-top {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -20;
}
.contents-top-brank {
    width: 100vw;
    height: 100vh;
    display: block;
}
.contents {
    width: 100vw;
    max-width: 1400px;
    margin: 40px auto;
    height: auto;
    padding: 40px 0;
    background: url("../images/bg.jpg") center;
    position: relative;
    z-index: 10;
}
.contents::before {
    content: "";
    width: 100vw;
    max-width: 1400px;
    margin: 0 auto;
    height: 41px;
    background: url("../images/bg.jpg") center;
    border-radius: 40px 40px 0 0;
    display: inline-block;
    position: absolute;
    top: -40px;
    left: 0;
}
.contents::after {
    content: "";
    width: 100vw;
    max-width: 1400px;
    margin: 0 auto;
    height: 41px;
    background: url("../images/bg.jpg") center;
    border-radius: 0 0 40px 40px;
    display: inline-block;
    position: absolute;
    bottom: -40px;
    left: 0;
}
@media screen and (min-width: 767px) {
    .contents {
        padding: 60px 0 60px 120px;
    }
}
@media screen and (min-width: 1400px) {
    .contents {
        padding: 60px 0;
    }
}
/* header */
.mini img {
    z-index: 50;
    width: auto;
    height: 47px;
    position: fixed;
    bottom: 60px;
    left: -150px;
    animation: miniMove 15s linear infinite backwards;
}
@keyframes miniMove {
    0% {
        left: -150px;
    }
    30% {
        left: -150px;
    }
    100% {
        left: 100%;
    }
}
.to-top {
    width: 50px;
    height: 20px;
    text-align: center;
    position: fixed;
    bottom: 80px;
    right: 0;
    color: #634E42;
    z-index: 50;
}
.to-top a::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 1px solid #634E42;
    border-top: 1px solid #634E42;
    display: inline-block;
    transform: rotate(-45deg);
    position: absolute;
    top: -14px;
    left: 20px;
}
.to-top a::before {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 1px solid #634E42;
    border-top: 1px solid #634E42;
    display: inline-block;
    transform: rotate(-45deg);
    position: absolute;
    top: -19px;
    left: 20px;
}
.scroll {
    display: none;
}
@media screen and (min-width: 767px) {
    .mini img {
        bottom: 0;
        animation: miniMove 20s linear infinite backwards;
    }
    .to-top {
        bottom: 40px;
    }
    .scroll {
        display: block;
        position: fixed;
        top: 200px;
        right: -36px;
        transform: rotate(90deg);
        z-index: 50;
    }
    .scroll span {
        width: 100px;
        height: 20px;
        color: #634E42;
        display: block;
        position: relative;
    }
    .scroll span::after {
        content: "";
        width: 60px;
        height: 1px;
        background-color: #634E42;
        position: absolute;
        bottom: 0;
        right: 0;
        animation: ScrollArrow 2s ease-in-out infinite;
        ;
    }
    .scroll span::before {
        content: "";
        width: 8px;
        height: 8px;
        border-right: 1px solid #634E42;
        border-bottom: 1px solid #634E42;
        display: inline-block;
        transform: rotate(-45deg);
        position: absolute;
        bottom: -4px;
        right: 0;
        animation: ScrollArrow 2s ease-in-out infinite;
        ;
    }
    @keyframes ScrollArrow {
        0% {
            right: 0;
        }
        50% {
            right: 10px;
        }
        100% {
            right: 0;
        }
    }
}
.nav {
    width: 100vw;
    height: 60px;
    border-radius: 40px 40px 0 0;
    padding: 12px 24px 0;
    background-color: #A51A1A;
    color: #ffffff;
    text-align: center;
    z-index: 50;
    position: fixed;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 16px;
}
.nav_icon {
    width: 20%;
    max-width: 90px;
}
.nav_icon span {
    display: block;
    margin-bottom: 2px;
}
.nav_icon p {
    font-size: 0.8rem;
}
@media screen and (min-width: 767px) {
    .nav {
        width: 100px;
        height: 84%;
        max-height: 540px;
        border-radius: 0 64px 64px 0;
        padding: 16px 0 16px 3px;
        left: 0;
        bottom: 60px;
        display: block;
    }
    .nav_icon {
        width: 90px;
        height: 20%;
        padding-top: 25%;
    }
}
/* footer */
.footer {
    padding-top: 1px;
    background-color: #fff;
    position: relative;
    z-index: 9;
}
.footer::before {
    content: "";
    width: 100%;
    height: 51px;
    background-color: #ffffff;
    position: absolute;
    top: -50px;
    left: 0;
}
.footer_h3 {
    width: 92%;
    max-width: 480px;
    margin: 80px auto 0;
}
.footer_h3 .h3 {
    margin-bottom: 16px;
}
.info, .contact, .sitemap {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}
.info-box, .contact-box {
    width: 100%;
    padding-left: 64px;
    padding-top: 16px;
    position: relative;
}
.info-box::before, .contact-box::before {
    content: "";
    width: 2px;
    height: 100%;
    border-radius: 2px;
    background-color: #333333;
    position: absolute;
    top: 0;
    left: 8%;
}
.info ul li {
    margin-bottom: 16px;
}
.info ul li:last-child {
    margin-bottom: 0;
}
iframe {
    width: 100%;
    border-radius: 24px 0 0 24px;
    aspect-ratio: 4/3;
}
.contact_link, .sitemap_nav {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    column-gap: 8px;
    margin-top: 16px;
    padding: 8px 0 0 10px;
    border-radius: 40px 0 0 40px;
    background-color: #fff;
    transition: all .6s ease;
}
.contact_link p, .sitemap_nav p {
    padding-top: 4px;
}
.contact_link:hover, .sitemap_nav:hover {
    background-color: #A51A1A;
    color: #fff;
    transition: all .6s ease;
}
.contact_link .icon_red, .sitemap_nav .icon_red {
    color: #A51A1A;
}
.contact_link:hover .material-icons.icon_red, .sitemap_nav:hover .material-icons.icon_red {
    color: #fff;
    transition: all .6s ease;
}
.sitemap {
    margin-top: 80px;
}
.sitemap_img {
    width: 40vw;
    max-width: 300px;
    margin: 0 auto;
}
.copyright {
    width: 100%;
    display: block;
    text-align: center;
    margin: auto;
    padding: 60px 0;
    color: #634E42;
}
@media screen and (min-width: 521px) {
    iframe {
        max-width: 440px;
        border-radius: 24px;
    }
    .contact_link, .sitemap_nav {
        border-radius: 40px;
    }
}
@media screen and (min-width: 767px) {
    .copyright {
        padding: 80px 0 8px;
    }
}
@media screen and (min-width: 1080px) {
    .footer-box1 {
        width: 92%;
        max-width: 1080px;
        margin: 0 auto;
        padding-left: 120px;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        column-gap: 80px;
    }
    .info {
        flex: 1;
    }
    .footer-box2 {
        flex: 1;
    }
    .sitemap {
        margin-top: 80px;
    }
    .sitemap_img {
        display: none;
    }
}
@media screen and (min-width: 1400px) {
    .footer-box1 {
        padding-left: 0;
    }
}