html {
    scroll-behavior: smooth;
}

#header {
    position: relative;
}

.header-wrapper {
    position: relative;
}

/*-----------------
scroll
------------------*/

.scroll-down {
    position: absolute;
    width: 100%;
    height: 100vh;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}

.scroll-down::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 80%;
}

.scroll-down a {
    display: inline-block;
    position: absolute;
    right: 150px;
    bottom: 0px;
    z-index: 2;
    width: 29px;
    padding: 10px 10px 110px;
    color: rgb(0, 0, 0);
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    writing-mode: vertical-lr;
    transition: 0.2s;
    overflow: hidden;
    margin: auto;
}

.scroll-down a::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 2px;
    height: 100px;
    background: rgb(221, 221, 221);
}

.scroll-down a::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 2px;
    height: 100px;
    background: rgb(0, 0, 0);
}

.scroll-down a:hover {
    opacity: 0.5;
}

#type01 a::after {
    animation: 1.5s cubic-bezier(1, 0, 0, 1) 0s infinite normal none running sdl01;
}

@keyframes sdl01 {
    0% {
        transform: scale(1, 0);
        transform-origin: 0px 0px;
    }

    50% {
        transform: scale(1, 1);
        transform-origin: 0px 0px;
    }

    50.1% {
        transform: scale(1, 1);
        transform-origin: 0px 100%;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: 0px 100%;
    }
}

@media (max-width: 499px) {
    .scroll-down a {
        right: 20px;
    }
}

/*--------------------
logo
-----------------------*/

.logo-container {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 9999;
}

.logo-back {
    transform: rotate(180deg);
    width: 100%;
    position: absolute;
    top: -5px;
    right: 0px;
    z-index: -1;
}

.logo-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-title a {
    display: flex;
    align-items: center;
    padding: 30px 50px;
    text-decoration: none;
}

.logo-title img {
    width: 87px;
    margin: 0px 40px 0px 0px;
}

@media (max-width: 499px) {
    .logo-title {
        padding: 20px;
    }

    .logo-title img {
        width: 60px;
    }

    .logo-title a {
        padding: 0;
    }
}

/*----------------
site title
-------------------*/

.site-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
}

.site-title-wrapper {
    text-align: center;
}

.site-title h1 {
    padding: 20px;
    color: rgb(255, 252, 243);
}

.site-title p {
    font-size: 2rem;
    color: #fff;
}

.site-title h3 {
    margin: 25px 0px 0px;
    color: rgb(255, 252, 243);
    text-align: center;
}

.top-container {
    align-items: center;
}

/*------------------
slider
---------------------*/

.slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: -9999;
}

.slide {
    position: absolute;
    inset: 0px;
    opacity: 0;
    transition: opacity 0.8s;
    z-index: 0;
}

.slide::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    opacity: 0.3;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.top-text {
    background: rgba(255, 246, 217, 0.46);
    padding: 80px;
    text-align: center;
    box-shadow: 0 3px 20px rgba(255, 246, 217, 0.46);
}

.top-text p {
    margin: 30px 0px 0px;
}

@media (max-width: 499px) {
    .top-text {
        padding: 20px;
    }
}

/*-----------------
fixed menu
-------------------*/

.fixed {
    position: fixed;
    bottom: 0px;
    left: 0px;
    height: 430px;
    display: block;
    z-index: 9999;
}

.fixed-img img {
    position: relative;
    height: 511px;
    z-index: 98;
    max-width: 90%;
}

.radial-menu {
    position: relative;
    width: 200px;
    height: 200px;
    top: -264px;
    z-index: 1000;
    left: 83px;
}

#center-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 80px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-family: "Cherry Bomb One", system-ui;
    font-size: 2.5rem;
    color: rgb(87, 84, 77);
}

#center-btn:hover {
    color: rgb(34, 34, 34);
    transition: 0.2s;
}

.item {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(calc(var(--i) * 90deg)) translate(0) rotate(calc(var(--i) * -90deg));
    opacity: 0;
    transition: 0.8s;
    text-align: center;
}

.radial-menu.open .item {
    transform: translate(-50%, -50%) rotate(calc(var(--i) * 90deg - 180deg)) translate(119px) rotate(calc(180deg - var(--i) * 90deg));
    opacity: 1;
}

.item a {
    text-decoration: none;
}

.item img {
    width: 70px;
    height: 70px;
    display: block;
    margin: 0px auto;
}

.item span {
    margin-top: 5px;
    display: block;
    font-size: 2rem;
    font-family: "Cherry Bomb One", system-ui;
    color: rgb(87, 84, 77);
}

/*--------------
hamburger menu
-----------------*/

.header {
    position: relative;
    padding: 20px;
}

.hamburger {
    display: none;
}

.nav {
    display: block;
    position: static;
    transform: none;
    height: auto;
    width: auto;
    box-shadow: none;
}

.nav__list {
    display: flex;
    align-items: center;
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.nav__item {
    padding: 0px 15px;
}

.nav__link {
    display: block;
    padding: 10px 0px;
    color: rgb(51, 51, 51);
    text-decoration: none;
    border-bottom: none;
}

.header-menu {
    display: none;
}

@media (max-width: 899px) {
    .fixed {
        display: none;
    }

    .header-menu {
        position: relative;
        padding: 20px;
        display: block;
        z-index: 9999;
    }

    .hamburger {
        display: block;
        position: fixed;
        bottom: 20px;
        left: 20px;
        z-index: 9999;
        width: 48px;
        height: 48px;
        border: none;
        background: rgb(254, 236, 178);
        cursor: pointer;
        border-radius: 50%;
    }

    .hamburger-line {
        position: absolute;
        left: 11px;
        width: 26px;
        height: 3px;
        background: rgb(87, 84, 77);
        transition: 0.4s;
        border-radius: 9999px;
    }

    .hamburger-line:nth-of-type(1) {
        bottom: 14px;
    }

    .hamburger-line:nth-of-type(2) {
        bottom: 23px;
    }

    .hamburger-line:nth-of-type(3) {
        bottom: 32px;
    }

    .hamburger.active .hamburger-line:nth-of-type(1) {
        transform: translateY(-9px) rotate(45deg);
    }

    .hamburger.active .hamburger-line:nth-of-type(2) {
        opacity: 0;
    }

    .hamburger.active .hamburger-line:nth-of-type(3) {
        transform: translateY(9px) rotate(-45deg);
    }

    .nav {
        position: fixed;
        bottom: 0px;
        left: 0px;
        width: 300px;
        height: 100vh;
        background: rgb(254, 236, 178);
        transform: translateX(-100%);
        transition: transform 0.4s;
        z-index: -100;
    }

    .nav.active {
        transform: translate(0px);
    }

    .nav-list {
        display: block;
        padding: 100px 0px 0px;
    }

    .nav-item {
        padding: 0px 40px;
    }

    .nav-item a {
        display: flex;
    }

    .nav-item:hover {
        color: rgb(34, 34, 34);
    }

    .nav-item img {
        width: 50px;
        height: 50px;
        margin-right: 20px;
    }

    .nav-link {
        display: block;
        padding: 15px 0px;
        color: rgb(51, 51, 51);
        text-decoration: none;
        border-bottom: 2px dashed rgb(141, 110, 108);
    }
}

/*--------------------
menu
---------------------*/
.menu-container {
    padding: 100px 30px;
    max-width: 100%;
}

.menu-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 50px;
}

.menu-img img {
    width: 100%;
    height: 80%;
    object-fit: cover;
}

.menu-inner-wrapper {
    background: #ffffff4f;
    margin: 70px 40px 0;
}

.menu-title-en h4 {
    color: #feecb2;
}

.menu-title-en {
    position: absolute;
    left: 30%;
}

.menu-title h6 {
    font-size: 2.2rem;
}

.menu-text p {
    margin-bottom: 20px;
}

.menu-text {
    padding: 40px 20px 0;
}




.menu-wrapper2 {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 50px;
}

.menu-img2 {
    order: 2;
}

.menu-img2 img {
    width: 100%;
    height: 80%;
    object-fit: cover;
}

.menu-inner-wrapper2 {
    background: #ffffff4f;
    margin: 70px 40px 0;
}

.menu-title-en2 h4 {
    color: #dca5a3;
}

.menu-title-en2 {
    position: absolute;
    left: 50%;
}

.menu-title2 h6 {
    font-size: 2.2rem;
}

.menu-text2 p {
    margin-bottom: 20px;
}

.menu-text2 {
    padding: 40px 20px 0;
}

@media (max-width: 899px) {
    .menu-wrapper {
        display: block;
        max-width: 100%;
        margin-bottom: 80px;
    }

    .menu-img {
        width: 70%;
        margin: 0 auto;
        height: 400px;
    }

    .menu-img img {
        width: 100%;
        height: 100%;
    }

    .menu-title-en {
        position: unset;
        text-align: center;
        padding: 20px 0 0;
    }

    .menu-title-en h4 {
        font-size: 4rem;
    }

    .menu-title {
        text-align: center;
    }

    .menu-wrapper2 {
        display: block;
        max-width: 100%;
    }

    .menu-img2 {
        width: 70%;
        margin: 0 auto;
        height: 400px;
    }

    .menu-img2 img {
        width: 100%;
        height: 100%;
    }

    .menu-title-en2 {
        position: unset;
        text-align: center;
        padding: 20px 0 0;
    }

    .menu-title-en2 h4 {
        font-size: 4rem;
    }

    .menu-title2 {
        text-align: center;
    }

    .menu-inner-wrapper {
        margin: 30px 40px 0;
    }

    .menu-inner-wrapper2 {
        margin: 30px 40px 0;
    }
}

@media (max-width: 599px) {
    .menu-title-en h4 {
        font-size: 3rem;
    }

    .menu-title-en2 h4 {
        font-size: 3rem;
    }

    .menu-inner-wrapper {
        margin: 30px 0 0;
    }

    .menu-inner-wrapper2 {
        margin: 30px 0 0;
    }

    .scroll-down a {
        right: 40px;
    }
}

@media (max-width: 499px) {
    .menu-img {
        width: 90%;
        height: 280px;
    }

    .menu-img2 {
        width: 90%;
        height: 280px;
    }
}

@media (max-width: 399px) {
    .menu-container {
        padding: 50px 0;
    }
}

/*--------------
info
-----------------*/

.info-wrapper p {
    text-align: center;
}

.info-wrapper .target {
    animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}

@keyframes floating-y {
    0% {
        transform: translateY(-10%);
    }

    100% {
        transform: translateY(10%);
    }
}

.info-tel {
    border-radius: 100px;
    background: rgb(254, 236, 178);
    display: flex;
    align-items: center;
    height: 70px;
    width: 406px;
    justify-content: center;
    margin: 30px auto 70px;
    padding: 35px;
    box-shadow: rgb(213, 207, 185) 0px 4px 0px;
    border: 2px solid rgb(87, 84, 77);
    max-width: 100%;
}

.info-tel img {
    width: 35px;
}

.info-tel p {
    margin-left: 50px;
    font-size: 2.4rem;
    color: rgb(34, 34, 34);
}

.info-tel:hover {
    transform: translateY(4px);
    box-shadow: none;
}

@media (max-width: 499px) {
    .info-tel p {
        font-size: 1.8rem;
    }

    .info-tel img {
        width: 30px;
    }

    .info-tel {
        width: 300px;
    }
}

/*---------------------
footer
-----------------------*/

#footer {
    background: rgb(254, 236, 178);
}

.footer-title a {
    display: flex;
    justify-content: center;
    padding: 80px 0px;
    gap: 30px;
    text-decoration: none;
}

.footer-title img {
    width: 65px;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    gap: 50px;
    align-items: center;
    padding: 0px 20px;
}

.footer-content-inner a {
    text-decoration: none;
}

.footer-content-inner h4 {
    color: rgb(87, 84, 77);
    font-weight: 500;
}

.footer-content-inner h4:hover {
    transition: 0.2s;
    color: rgb(34, 34, 34);
}

.footer-content-inner {
    position: relative;
    padding-left: 50px;
}

.footer-content-inner::before {
    content: "";
    position: absolute;
    top: 45%;
    left: 0px;
    border-width: 10px 10px 10px 15px;
    border-style: solid;
    border-color: transparent transparent transparent rgb(87, 84, 77);
    border-image: initial;
}

.footer-img {
    width: 300px;
}

.footer-img img {
    width: 100%;
}

.footer-tyuui {
    text-align: center;
    padding: 0 0 50px;
}

.footer-tyuui p {
    font-size: 2rem;
}

.footer-sns {
    display: flex;
    justify-content: center;
    padding: 0px 0px 30px;
    gap: 30px;
}

.footer-sns img {
    width: 50px;
}

.copy {
    text-align: center;
    padding-bottom: 10px;
}

.copy p {
    font-size: 1.3rem;
}

@media (max-width: 899px) {
    .footer-img {
        width: 200px;
    }
}

@media (max-width: 699px) {
    .footer-content {
        flex-direction: column;
        padding-bottom: 50px;
    }

    .footer-title {
        padding-bottom: 40px;
    }
}

@media (max-width: 499px) {
    .footer-img {
        width: 150px;
    }

    .footer-title {
        padding-bottom: 0;
    }
}