@charset "UTF-8";

html,
body {
    font-family: dnp-shuei-shogomincho-std, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 62.5%;
    background: #000;
    color: #fff;
}

.c-sp {
    display: none;
}

/* fadeUp */
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeUpTrigger {
    opacity: 0;
}

/* fadeLeft */
.fadeLeft {
    animation-name: fadeLeftAnime;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeLeftAnime {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeLeftTrigger {
    opacity: 0;
}

/* fadeRight */
.fadeRight {
    animation-name: fadeRightAnime;
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeRightAnime {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeRightTrigger {
    opacity: 0;
}

/* Delay */
.delay-1 {
    animation-delay: 0.3s;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeUpTrigger {
    opacity: 0;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    padding: 0 3vw;
    position: relative;
    z-index: 9998;
}

header h1 {
    margin: 2vw 0 0;
    width: max(25vw, 35rem);
}

header h1 img {
    width: 100%;
}

/* Navigation */
.head-nav {
    font-size: max(1vw, 1.4rem);
    color: #fff;
    line-height: 1.3;
    display: inline-block;
    margin: 2vw 0 0;
}

.head-nav-menu {
    display: flex;
    gap: 2.5vw;
}

.head-nav-menu li {
    text-align: center;
}

.head-nav-menu li:last-child {
    display: flex;
    align-items: center;
}

.head-nav-menu li span {
    font-family: "Book Antiqua", sans-serif;
    display: block;
    font-size: max(1vw, 1.4rem);
    color: #82000a;
}

.head-nav-menu li a {
    position: relative;
    padding: 0 0 8px;
}

.head-nav-menu > li:not(:last-child) a::before {
    position: absolute;
    content: "";
    width: 3rem;
    height: 3px;
    background-color: #82000a;
    bottom: -1rem;
    left: 0;
    transform: translateX(-50%);
    opacity: 0;
    transition: 0.3s;
}

.head-nav-menu li a:hover::before {
    opacity: 1;
}

/* SNS */
.sns {
    display: flex;
    gap: 2vw;
}

/* Toggle */
.nav-toggle {
    display: none;
}

.sub-nav {
    display: none;
}

.sp-on {
    height: 100%;
    overflow: hidden;
}

/* Floating */
.fix-nav {
    position: fixed;
    right: 3vw;
    bottom: 3vw;
    z-index: 1000;
    opacity: 0;
    transition: 0.5s;
}

.active {
    opacity: 1;
}

/* contact */
.contact {
    padding: 7vw 0;
    background: url(../images/bg-top-contact.png) no-repeat center / cover;
}

.contact h2 {
    font-size: max(1.2vw, 2rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 0 0 5vw;
}

.contact h2 span {
    font-size: max(2.5vw, 4rem);
    font-family: "Book Antiqua", sans-serif;
    font-style: italic;
}

.contact p {
    font-size: max(1vw, 1.6rem);
    text-align: center;
    margin: 0 0 5vw;
}

.contact-list {
    display: flex;
    width: 70rem;
    max-width: 90%;
    margin: auto;
    font-size: 2.5rem;
    justify-content: space-between;
}

.contact-list li {
    width: 45%;
}

.contact-list li a {
    background: #fff;
    display: block;
    color: #82000a;
    text-align: center;
    border-radius: 5rem;
    padding: 2rem 2rem 2rem 5rem;
    position: relative;
}

.contact-list li:nth-of-type(1) a::after {
    position: absolute;
    content: "";
    background: url(../images/icon-tel.png) no-repeat;
    width: 2.5rem;
    height: 2.5rem;
    top: 50%;
    left: 4rem;
    transform: translateY(-50%);
}

.contact-list li:nth-of-type(2) a::after {
    position: absolute;
    content: "";
    background: url(../images/icon-mail.png) no-repeat;
    width: 2.7rem;
    height: 2rem;
    top: 50%;
    left: 6rem;
    transform: translateY(-50%);
}

/* access */
.access {
    padding: 7vw 0 3vw;
}

.access-inner {
    width: 120rem;
    max-width: 90%;
    margin: auto;
}

.access-list {
    display: flex;
    font-size: max(1vw, 1.5rem);
    align-items: end;
    gap: 4vw;
}

.access-list h2 {
    font-size: max(1.2vw, 1.8rem);
    display: flex;
    flex-direction: column;
    width: 20rem;
    text-align: right;
}

.access-list h2 span {
    font-size: max(2.5vw, 4rem);
    font-family: "Book Antiqua", sans-serif;
    font-style: italic;
}

/* footer */
.f-nav {
    display: flex;
    padding: 5vw 0;
    width: 150rem;
    max-width: 90%;
    margin: auto;
    gap: 5vw;
}

.f-nav-l {
    width: 30%;
}

.f-nav-l img {
    width: 100%;
    margin: 0 0 2rem;
}

.f-nav-l span {
    font-size: max(1vw, 1.3rem);
    line-height: 1.5;
    display: block;
    width: 35rem;
    max-width: 90%;
    margin: auto;
}

.f-nav-r {
    width: 75%;
    padding: 1vw 0 0;
}

.f-sns-list {
    display: flex;
    gap: 3vw;
    justify-content: center;
    margin: 0 0 4vw;
}

.f-nav-list {
    display: flex;
    justify-content: space-between;
    font-size: max(1vw, 1.4rem);
}

.f-nav-list li a {
    padding: 1rem;
    position: relative;
}

.f-nav-list li a::after {
    position: absolute;
    content: "";
    background: #82000a;
    width: 3rem;
    height: 3px;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: 0.3s;
}

.f-nav-list li a:hover::after {
    opacity: 1;
}

.copy {
    font-size: 1.6rem;
    line-height: 8rem;
    text-align: center;
}

/* Map */
footer iframe {
    width: 100%;
    min-width: initial;
    height: 48rem;
    aspect-ratio: 16/9;
}

@media screen and (max-width: 968px) {
    .c-sp {
        display: block;
    }

    /* Header */
    header {
        display: flex;
        justify-content: space-between;
        padding: 0 2rem;
        position: relative;
        z-index: 9998;
    }

    header h1 {
        margin: 2rem 0 0;
        width: max(30vw, 20rem);
    }

    header h1 img {
        width: 100%;
    }

    /* Navigation */
    .head-nav {
        display: none;
    }

    /* Toggle */
    .nav-toggle {
        width: 8rem;
        height: 8rem;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 9999;
        display: block;
    }

    .nav-toggle span {
        position: absolute;
        font-size: 0.9em;
        color: #fff;
        bottom: 5px;
        left: 13px;
    }

    .nav-toggle ul {
        display: flex;
    }

    .nav-toggle ul li {
        position: relative;
        width: 100%;
    }

    .nav-toggle ul li span {
        display: inline-block;
        position: absolute;
        height: 2px;
        background: #fff;
        width: 50%;
        left: 2rem;
        transition: all 0.4s;
    }
    .nav-toggle ul li span:nth-child(1) {
        top: 2.5rem;
    }
    .nav-toggle ul li span:nth-child(2) {
        top: 4rem;
    }
    .nav-toggle ul li span:nth-child(3) {
        top: 5.5rem;
    }

    .sp-active span:nth-child(1) {
        transform: translateY(1.5rem) rotate(-45deg);
    }
    .sp-active span:nth-child(2) {
        opacity: 0;
    }
    .sp-active span:nth-child(3) {
        transform: translateY(-1.5rem) rotate(45deg);
    }

    .head-l-sp {
        width: 50px;
        height: 8rem;
    }

    .sub-nav {
        background: rgba(0, 0, 0, 0.9);
        width: 100vw;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 998;
        opacity: 0;
        transition: all 0.4s;
        display: flex;
        align-items: center;
        visibility: hidden;
    }

    .sub-disp {
        opacity: 1;
        visibility: visible;
    }

    .sp-menu {
        width: 80%;
        margin: auto;
        font-size: 1.8rem;
        font-weight: 500;
        font-style: normal;
        color: #fff;
    }

    .sp-menu li {
        width: 100%;
        text-align: center;
        margin: 0 0 5px;
    }

    .sp-menu li a {
        padding: 1.5rem 0;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .sp-menu li a span {
        position: relative;
        color: #82000a;
        font-family: "Book Antiqua", sans-serif;
    }

    .sp-on {
        height: 100%;
        overflow: hidden;
    }

    .sub-sns {
        display: flex;
        width: 15rem;
        margin: auto;
    }

    /* SNS */
    .sns {
        display: flex;
        gap: 2vw;
    }

    /* Floating */
    .fix-nav {
        position: fixed;
        right: 3vw;
        bottom: 3vw;
        z-index: 1000;
        opacity: 0;
        transition: 0.5s;
    }

    .active {
        opacity: 1;
    }

    /* contact */
    .contact {
        padding: 5rem 0;
        background: url(../images/bg-top-contact.png) no-repeat center / cover;
    }

    .contact h2 {
        font-size: max(1.2vw, 2rem);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin: 0 0 5rem;
    }

    .contact h2 span {
        font-size: max(2.5vw, 4rem);
        font-family: "Book Antiqua", sans-serif;
        font-style: italic;
    }

    .contact p {
        font-size: max(1vw, 1.6rem);
        text-align: left;
        margin: 0 auto 5rem;
        width: 55rem;
        max-width: 90%;
        line-height: 1.5;
    }

    .contact-list {
        display: flex;
        width: 30rem;
        max-width: 80%;
        margin: auto;
        font-size: 2.5rem;
        flex-direction: column;
        justify-content: space-between;
        gap: 2rem;
    }

    .contact-list li {
        width: 100%;
    }

    .contact-list li a {
        background: #fff;
        display: block;
        color: #82000a;
        text-align: center;
        border-radius: 5rem;
        padding: 2rem 2rem 2rem 5rem;
        position: relative;
    }

    .contact-list li:nth-of-type(1) a::after {
        position: absolute;
        content: "";
        background: url(../images/icon-tel.png) no-repeat;
        width: 2.5rem;
        height: 2.5rem;
        top: 50%;
        left: 4rem;
        transform: translateY(-50%);
    }

    .contact-list li:nth-of-type(2) a::after {
        position: absolute;
        content: "";
        background: url(../images/icon-mail.png) no-repeat;
        width: 2.7rem;
        height: 2rem;
        top: 50%;
        left: 6rem;
        transform: translateY(-50%);
    }

    /* access */
    .access {
        padding: 5rem 0 3rem;
    }

    .access-inner {
        width: 120rem;
        max-width: 90%;
        margin: auto;
    }

    .access-list {
        display: flex;
        font-size: max(1vw, 1.5rem);
        align-items: flex-start;
        gap: 4vw;
        flex-direction: column;
    }

    .access-list h2 {
        font-size: max(1.2vw, 1.8rem);
        display: flex;
        flex-direction: column;
        width: 16rem;
        text-align: right;
    }

    .access-list h2 span {
        font-size: max(2.5vw, 4rem);
        font-family: "Book Antiqua", sans-serif;
        font-style: italic;
    }

    /* footer */
    .f-nav {
        display: flex;
        padding: 5rem 0;
        width: 150rem;
        max-width: 90%;
        margin: auto;
        gap: 5rem;
        flex-direction: column;
    }

    .f-nav-l {
        width: 100%;
        text-align: center;
    }

    .f-nav-l img {
        width: 35rem;
        margin: 0 0 2rem;
    }

    .f-nav-l span {
        font-size: 1.6rem;
        line-height: 1.5;
        display: block;
        width: 35rem;
        max-width: 90%;
        margin: auto;
        text-align: left;
    }

    .f-nav-r {
        width: 100%;
        padding: 1vw 0 0;
    }

    .f-sns-list {
        display: flex;
        gap: 3vw;
        justify-content: center;
        margin: 0 0 5rem;
    }

    .f-nav-list {
        display: flex;
        justify-content: space-between;
        font-size: 1.8rem;
        flex-direction: column;
        gap: 2rem;
    }

    .f-nav-list li a {
        padding: 1rem;
        position: relative;
    }

    .f-nav-list li a::after {
        position: absolute;
        content: "";
        background: #82000a;
        width: 3rem;
        height: 3px;
        bottom: -1rem;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
        transition: 0.3s;
    }

    .f-nav-list li a:hover::after {
        opacity: 1;
    }

    .copy {
        font-size: 1.6rem;
        line-height: 8rem;
        text-align: center;
    }
}
