@charset "UTF-8";

html,
body {
    font-size: 62.5%;
    font-family: zen-old-mincho, sans-serif;
    font-weight: 700;
    font-style: normal;
}

.btn a {
    font-size: max(1.7vw,2.3rem);
    margin: auto;
    width: max(20vw,25rem);
    display: block;
    padding: 2rem 0 2rem 5vw;
    border-radius: 5rem;
    position: relative;
    transition: .3s;
    background: #3b7aaf;
    color: #fff;
}

.btn a::after {
    position: absolute;
    content: "";
    background: url(../images/icon-f-mobile.png) no-repeat;
    width: 1.7vw;
    height: 2.4vw;
    background-size: 1.7vw;
    top: 50%;
    transform: translateY(-50%);
    left: 2.5vw;
}

.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;
}

/* Header */
header {
    height: 15rem;
    background: url(../images/bg-header.png) no-repeat center / cover;
    display: flex;
    justify-content: space-between;
    padding: 0 5vw 0 2vw;
    position: relative;
    z-index: 9998;
}

header h1 {
    width: 35rem;
    max-width: 25%;
    margin: 1vw 0 0;
    position: relative;
}

header h1::after{
    display: none;
}

header h1 img {
    width: 100%;
}

.nav-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    gap: 1vw;
}

.head-contact {
    display: flex;
    align-items: center;
    gap: max(2vw, 2rem);
}

.head-contact li:nth-of-type(1) {
    font-size: max(1vw, 1.4rem);
}

.head-contact li:nth-of-type(2) {
    font-size: max(2vw, 3rem);
}

.head-contact li:nth-of-type(2) a {
    display: inline-block;
    position: relative;
    padding: 0 0 0 max(2.5vw, 3rem);
}

.head-contact li:nth-of-type(2) a::after {
    position: absolute;
    content: "";
    width: max(1.719vw, 2.5rem);
    height: max(2.396vw, 3.5rem);
    top: 0;
    left: 0;
    background: url(../images/icon-h-mobile.png) no-repeat;
    background-size: max(1.719vw, 2.5rem);
}



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

.head-nav-menu {
    display: flex;
    align-items: baseline;
    width: 90rem;
    max-width: 60vw;
    justify-content: space-between;
}

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

.head-nav-menu li a {
    position: relative;
    padding: 1rem 0;
}

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

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

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

/* Floating 画像なし*/
.fix-nav {
    position: fixed;
    right: 2vw;
    bottom: 5vw;
    z-index: 9997;
    opacity: 0;
    transition: 0.5s;
    width: 70px;
    height: 70px;
    background-color: #3b7aaf;
    border-radius: 50%;
}

.fix-nav a {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
}

.fix-nav a::after {
    content: "";
    width: 20px;
    height: 20px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotate(-45deg) translate(-20%, -50%);
}

.active {
    opacity: 1;
}

/************************
Footer
************************/
.f-list {
    display: flex;
}

.f-list li {
    width: 50%;
}

.f-list li:nth-of-type(2){
    background: url(../images/bg-f-list.png) no-repeat center / cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4vw;
    align-items: center;
}

.f-list li h2{
    font-size: max(3vw,4rem);
    font-family: kokuryu, sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
}

.f-list li p{
    font-size: max(1vw, 1.4rem);
}

/* Map */
.f-list iframe {
    width: 100%;
    min-width: initial;
    height: 46rem;
    aspect-ratio: 16/9;
}

.f-box{
    background: url(../images/bg-f-box.png) no-repeat center / cover;
    display: flex;
    padding: 3vw 0;
}

.f-box-l{
    width: 25%;
    text-align: center;
}

.f-box-l img{
    width: 35rem;
    max-width: 80%;
}

.f-box-r{
    width: 110rem;
    max-width: 65%;
    text-align: center;
    position: relative;
}

.f-box-r h2{
    font-size: max(3vw,4rem);
    font-family: kokuryu, sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0 0 2vw;
}

.f-box-r p{
    font-size: max(1vw, 1.4rem);
    margin: 0 0 2vw;
}

.f-box-r h3{
    font-size: max(2vw,2.5rem);
    margin: 0 0 2vw;
}

.f-box-r h3 a{
    position: relative;
}

.f-box-r h3 a::after{
    position: absolute;
    content: "";
    background: url(../images/icon-f-mobile-b.png) no-repeat;
    width: 1.7vw;
    height: 2.4vw;
    background-size: 1.7vw;
    top: 55%;
    transform: translateY(-50%);
    left: -3vw;
}

.f-box-r > a img{
    position: absolute;
    right: 3vw;
    top: 0;
    left: unset;
    width: max(3vw,4rem);
    transform: translateX(-50%);
}

/* footer nav */
.f-nav {
    display: flex;
    font-size: max(1vw, 1.4rem);
    width: 93rem;
    max-width: 90%;
    justify-content: space-between;
    margin: auto;
}

.f-nav li {
    text-align: center;
}

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

.f-nav > li a::before {
    position: absolute;
    content: "";
    width: 2rem;
    height: 3px;
    background-color: #3b7aaf;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: 0.3s;
}

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

.copy {
    background: #3b7aaf;
    font-size: max(0.9vw, 1.4rem);
    line-height: 4vw;
    color: #fff;
    text-align: center;
}

@media screen and (max-width:968px ) {
    .btn a {
        font-size: max(1.7vw,2.3rem);
        margin: auto;
        width: 30rem;
        display: block;
        padding: 2rem 0 2rem 7.5rem;
        border-radius: 5rem;
        position: relative;
        transition: .3s;
        background: #3b7aaf;
        color: #fff;
    }
    
    .btn a::after {
        position: absolute;
        content: "";
        background: url(../images/icon-f-mobile.png) no-repeat;
        width: 2rem;
        height: 3rem;
        background-size: 2rem;
        top: 50%;
        transform: translateY(-50%);
        left: 4rem;
    }

    .c-sp {
        display: block;
    }

    /* fadeUp */
    .fadeUp {
        animation: none;
    }

    .fadeUpTrigger {
        opacity: 1;
    }

    /* fadeLeft */
    .fadeLeft {
        animation: none;
    }

    .fadeLeftTrigger {
        opacity: 1;
    }

    /* fadeRight */
    .fadeRight {
        animation: none;
    }

    .fadeRightTrigger {
        opacity: 1;
    }

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

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

    /* Header */
    header {
        height: 8rem;
        background: url(../images/bg-header.png) no-repeat center / cover;
        display: flex;
        justify-content: space-between;
        padding: 0 0 0 1rem;
        position: relative;
        z-index: 9998;
    }

    header h1 {
        width: 15rem;
        max-width: unset;
        margin: .5rem 0 0;
        position: relative;
    }

    header h1::after{
        display: block;
        position: absolute;
        content: "とろろ居酒屋八丁堀";
        width: 13rem;
        font-size: 2.0rem;
        font-family: kokuryu, sans-serif;
        font-weight: 400;
        font-style: normal;
        text-align: right;
        top: 14px;
        right: -11rem;
    }

    header h1 img {
        width: 100%;
    }

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

    .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-nav-group{
    width: 30rem;
    margin: 2rem auto 0;
    font-size: 2.8rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

    .sp-nav-group li:nth-of-type(1) a{
        position: relative;
        padding: 1.5rem 0 1.5rem 4rem;
    }

    .sp-nav-group li:nth-of-type(1) a::after{
        position: absolute;
        content: "";
        background: url(../images/icon-f-mobile.png) no-repeat;
        width: 2.5rem;
        height: 3.5rem;
        background-size: 2.5rem;
        top: 50%;
        left: 2.5rem;
        transform: translateY(-50%);
    }

    .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;
    }

    /* Floating 画像なし*/
    .fix-nav {
        position: fixed;
        right: 15px;
        bottom: 20px;
        z-index: 9997;
        opacity: 0;
        transition: 0.5s;
        width: 50px;
        height: 50px;
        background-color: #3b7aaf;
        border-radius: 50%;
    }

    .fix-nav a {
        width: 100%;
        height: 100%;
        display: block;
        border-radius: 50%;
    }

    .fix-nav a::after {
        content: "";
        width: 20px;
        height: 20px;
        border: 0;
        border-top: solid 2px #fff;
        border-right: solid 2px #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: rotate(-45deg) translate(-20%, -50%);
    }

    .active {
        opacity: 1;
    }

    /************************
    Footer
    ************************/
    .f-list {
        display: flex;
        flex-direction: column-reverse;
    }

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

    .f-list li:nth-of-type(2){
        background: url(../images/bg-f-list.png) no-repeat center / cover;
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5rem;
        align-items: center;
        padding: 5rem 0;
    }

    .f-list li h2{
        font-size: 4rem;
        font-family: kokuryu, sans-serif;
        font-weight: 400;
        font-style: normal;
        text-align: center;
    }

    .f-list li p{
        font-size: 1.5rem;
    }

    /* Map */
    .f-list iframe {
        width: 100%;
        min-width: initial;
        height: 40rem;
        aspect-ratio: 16/9;
    }

    .f-box{
        background: url(../images/bg-f-box.png) no-repeat center / cover;
        display: flex;
        padding: 5rem 0;
        flex-direction: column;
        gap: 5rem;
    }

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

    .f-box-l img{
        width: 30rem;
        max-width: unset;
    }

    .f-box-r{
        width: 110rem;
        max-width: 90%;
        text-align: center;
        margin: auto;
    }

    .f-box-r h2{
        font-size: 3.5rem;
        font-family: kokuryu, sans-serif;
        font-weight: 400;
        font-style: normal;
        margin: 0 0 2rem;
    }

    .f-box-r p{
        font-size: 1.5rem;
        margin: 0 0 2rem;
    }

    .f-box-r h3{
        font-size: 3rem;
        margin: 0 0 10rem;
    }

    .f-box-r h3 a{
        position: relative;
    }

    .f-box-r h3 a::after{
        position: absolute;
        content: "";
        background: url(../images/icon-f-mobile-b.png) no-repeat;
        width: 2rem;
        height: 3rem;
        background-size: 2rem;
        top: 55%;
        transform: translateY(-50%);
        left: -3rem;
    }

    .f-box-r > a img{
        position: absolute;
        right: unset;
        top: 16rem;
        left: 50%;
        width: 5rem;
        transform: translateX(-50%);
    }

    /* footer nav */
    .f-nav {
        display: flex;
        font-size: 2rem;
        width: 35rem;
        max-width: 90%;
        justify-content: space-between;
        margin: auto;
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }

    .f-nav li {
        text-align: center;
    }

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

    .f-nav > li a::before {
        position: absolute;
        content: "";
        width: 2rem;
        height: 3px;
        background-color: #3b7aaf;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        opacity: 0;
        transition: 0.3s;
    }

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

    .copy {
        background: #3b7aaf;
        font-size: max(0.9vw, 1.4rem);
        line-height: 5rem;
        color: #fff;
        text-align: center;
    }
}
