body {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
}

.max-w-800 {
    max-width: 800px;
}

.max-w-1000 {
    max-width: 1000px;
}

.max-w-1280 {
    max-width: 1280px;
}

.break-spaces {
    white-space: break-spaces;
}

.main,
.header_main {
    max-width: 1280px;
}

.footer_business {
    display: block;
}

.button-reserve {
    background-color: #e55e24;
    color: white;
    padding: 8px 10px;
    text-decoration: none;
    width: 170px;
    height: 39px;
    border-radius: 20px;
    font-size: 16px;
    text-align: center;
    display: inline-block;
}

a.button-reserve {
    color: #ffffff;
}

footer {
    padding: 10px;
    background: #f3f3f3;
    text-align: center;
    height: 80px;
    color: #000000;
    font-size: 13px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer_business a {
    color: #000000;
}

ul.links {
    display: flex;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
}

.links li {
    margin: 0 18px;
    padding: 6px 18px;
    line-height: 24px;
}

.links a:hover .icon-map {
    content: url("../../images/icons/ic-maps-hover.svg");
}

.links a:hover .icon-store {
    content: url("../../images/icons/ic-store-hover.svg");
}

.links a:hover .icon-intro {
    content: url("../../images/icons/ic-product-hover.svg");
}

.links a:hover .icon-calendar {
    content: url("../../images/icons/ic-calendar-hover.svg");
}

.links a:hover .icon-question {
    content: url("../../images/icons/icon-question-hover.svg");
}

.links a:hover .icon-reservation {
    content: url("../../images/icons/icon-reservation-hover.svg");
}

.session-items {
    text-align: center;
}

.links li a {
    color: #1e1e1e;
    line-height: 24px;
    display: inline-block;
}

.links li p {
    margin-top: 5px;
}

.img-top {
    width: 21px;
    height: 21px;
    margin-right: 10px;
}

.btn-top {
    display: flex;
    align-items: center;
    color: #f24822;
    height: 55px;
    background-color: #fff1ee;
    padding: 16px 10px;
    border-radius: 20px;
    font-size: 16px;
    line-height: 23px;
}

.btn-top-left {
    width: 120px;
}

.btn-top-right {
    width: 166px;
}

.btn-top a {
    color: #f24822;
}

ul {
    list-style: none;
}

.header_inner {
    position: relative;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 79px;
    font-size: 16px;
}
.header_inner a {
    text-decoration: none;
    font-weight: 500;
}

.logo-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 40px;
}

.nav-btn {
    flex: 3;
    display: flex;
}

.nav-links {
    flex: 3;
}

.nav-link:hover a {
    color: #f24822;
}

.nav-link:hover {
    background: #fff1ee;
    border-radius: 20px;
}

.log-sign {
    display: flex;
    justify-content: end;
    align-items: center;
    flex: 1;
}

.logo {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 3rem;
}

.logo span {
    font-weight: 300;
}

.nav-links > ul {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.nav-link {
    position: relative;
}

.nav-link > a {
    color: #1e1e1e;
    padding: 0 0.8rem;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.5s;
}

li.nav-link {
    padding: 8px 8px;
}

.nav-link > a > i {
    margin-left: 0.2rem;
}

/* .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 10rem;
    transform: translateY(10px);
    opacity: 0;
    pointer-events: none;
    transition: .5s;
}

.dropdown ul {
    position: relative;
}

.dropdown-link i {
    transform: rotate(-90deg);
}

.dropdown-link {
    position: relative;
}

.dropdown.second {
    top: 0;
    left: 100%;
    padding-left: .8rem;
    cursor: pointer;
    transform: translateX(10px);
}

.dropdown.second .arrow {
    top: 10px;
    left: -5.5px;
}

.nav-link:hover > .dropdown,
.dropdown-link:hover>.dropdown {
    transform: translate(0, 0);
    opacity: 1;
    pointer-events: auto;
} */

.hamburger-menu-container {
    flex: 0.4;
    display: none;
    align-items: center;
    justify-content: flex-start;
}

.hamburger-menu {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hamburger-menu div {
    width: 1.6rem;
    height: 3px;
    border-radius: 3px;
    position: relative;
    z-index: 1001;
    transition: 0.5s;
    background-color: #000;
}

.hamburger-menu div:before,
.hamburger-menu div:after {
    content: "";
    position: absolute;
    width: inherit;
    height: inherit;
    border-radius: 3px;
    transition: 0.5s;
    background-color: #000;
}

.hamburger-menu div:before {
    transform: translateY(-7px);
}

.hamburger-menu div:after {
    transform: translateY(7px);
}

#check {
    position: absolute;
    top: 50%;
    left: 0;
    margin-left: 20px;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    z-index: 90000;
    cursor: pointer;
    opacity: 0;
    display: none;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div {
    background-color: transparent;
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:before {
    transform: translateY(0) rotate(-45deg);
}

#check:checked ~ .hamburger-menu-container .hamburger-menu div:after {
    transform: translateY(0) rotate(45deg);
}

.to_top_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.to_top_item a {
    text-decoration: none;
}

.transport-item {
    padding: 20px 0;
}

.btn-transpot {
    border: solid #EDEDED 1px;
    padding: 5px 10px;
}

@keyframes animation {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

@media (max-width: 920px) {
    #check:checked ~ .hamburger-menu-container .hamburger-menu div {
        background-color: transparent;
    }

    .hamburger-menu-container {
        display: flex;
    }

    .log-sign-mb {
        display: block !important;
    }

    .nav-link-mb {
        display: block !important;
    }

    .log-sign {
        display: none;
    }

    .transport-item{
        display: none;
    }

    .logo-container {
        margin-left: 0;
        justify-content: flex-start;
    }

    #check {
        display: block;
    }

    .nav-btn {
        position: fixed;
        height: calc(100vh);
        top: 0;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        overflow-x: hidden;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: 0.65s;
    }

    #check:checked ~ .nav-btn {
        transform: translateX(0);
    }

    #check:checked ~ .nav-btn .nav-link,
    #check:checked ~ .nav-btn .log-sign {
        animation: animation 0.5s ease forwards var(--i);
    }

    .nav-links {
        flex: initial;
        width: 100%;
    }

    .nav-links > ul {
        flex-direction: column;
    }

    .nav-links > ul {
        padding-top: 65px;
    }

    .nav-link {
        width: 100%;
        opacity: 0;
        transform: translateY(15px);
    }

    li.nav-link {
        margin: 0;
        text-align: center;
    }

    .nav-link > a {
        line-height: 1;
        padding: 20px 26px;
        margin: 0 auto;
        justify-content: center;
        display: inline-flex;
        min-width: 200px;
    }

    .nav-link:hover {
        border-radius: 0;
        background-color: #fff;
    }

    .nav-link:hover a {
        border-radius: 40px;
        background: #fff1ee;
    }

    .nav-link a.active {
        background-color: #f24822 !important;
        border-radius: 40px;
        color: #fff;
    }

    .nav-link:hover > .dropdown,
    .dropdown-link:hover > .dropdown {
        display: block;
    }

    .nav-link > a > i {
        font-size: 1.1rem;
        transform: rotate(-90deg);
        transition: 0.7s;
    }

    .dropdown i {
        font-size: 1rem;
        transition: 0.7s;
    }

    .log-sign {
        flex: initial;
        width: 100%;
        padding: 1.5rem 1.9rem;
        justify-content: flex-start;
        opacity: 0;
        transform: translateY(15px);
    }
}

@media (max-width: 350px) {
    .button-reserve {
        padding: 6px 10px;
    }
}
