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: 599px) {
    .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 a {
        padding: 0;
    }

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

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

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

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

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

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

/*---------------
recomended
-----------------*/

.recomended-container {
    padding: 50px;
    max-width: 100%;
}

.section-title {
    background-image: url("img/textbackground.svg");
    background-size: cover;
    width: 400px;
    height: 350px;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title h4 {
    font-weight: 300;
}

.section-title-inner {
    margin: 0px 0px 80px;
    display: inline-block;
    text-align: center;
}

.section-title-inner p {
    color: rgb(255, 255, 255);
}

.recomended-flex {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin: 50px 0px;
}

.recomended-content img {
    width: 270px;
    height: 250px;
    object-fit: cover;
    padding: 20px;
}

.recomended-content p {
    font-size: 2rem;
    margin-top: 20px;
}

.recomended-content {
    background: rgb(255, 246, 217);
    width: 300px;
    height: 350px;
    text-align: center;
    box-shadow: rgb(213, 207, 185) 8px 8px 8px;
}

@media (max-width: 899px) {
    .recomended-flex {
        flex-direction: column;
        padding: 0px 50px;
    }

    .recomended-content {
        width: auto;
        height: auto;
        padding: 30px;
        display: flex;
        align-items: center;
    }

    .recomended-content img {
        width: 50%;
        height: 100%;
    }

    .recomended-content p {
        margin-top: 0px;
        margin-left: 20px;
    }
}

@media (max-width: 699px) {
    .recomended-content {
        flex-direction: column;
        padding: 20px 0px;
    }
}

@media (max-width: 499px) {
    .section-title {
        background-image: none;
        border-top: 2px dashed rgb(141, 110, 108);
        padding: 50px 0px;
        display: inline-block;
        width: 100%;
        height: 100%;
        text-align: center;
    }

    .section-title-inner {
        margin: 0px;
    }

    .section-title-inner h4,
    .section-title-inner p {
        color: rgb(87, 84, 77);
    }

    .recomended-flex {
        margin: 0px;
        padding-bottom: 50px;
    }

    .recomended-container {
        padding: 0px;
    }

    .recomended-content p {
        font-size: 1.6rem
    }
}

@media (max-width: 399px) {
    .recomended-flex {
        padding: 0 20px 50px;
        gap: 30px;
    }
}

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

.menu-container {
    position: relative;
}

.menu-flex1 {
    padding: 60px 20px;
}

.menu-inner1 {
    max-width: 1100px;
    margin: 0px auto;
    display: flex;
    gap: 40px;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s;
    padding: 50px 20px;
}

.menu-inner1 p {
    padding-top: 30px;
}

.menu-inner1.show {
    opacity: 1;
    transform: translateY(0px);
}

.menu-inner1-text {
    background: rgb(255, 243, 205);
    padding: 60px;
    border-radius: 20px;
    flex: 1 1 0%;
}

.menu-inner1-text .icon {
    display: inline-block;
    animation: 1.8s ease-in-out 0s infinite normal none running heartbeat;
}

@keyframes heartbeat {

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

    30% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(1);
    }
}

.menu-inner1-img img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    display: block;
    opacity: 0;
    transform: scale(0.9);
    transition: 0.8s 0.2s;
}

.menu-inner1.show .menu-inner1-img img {
    opacity: 1;
    transform: scale(1);
}

.menu-flex2 {
    padding: 60px 20px;
}

.menu-inner2 {
    max-width: 1100px;
    margin: 0px auto;
    display: flex;
    gap: 40px;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.5s;
    padding: 0px 20px;
}

.menu-inner2 p {
    padding-top: 30px;
}

.menu-inner2.show {
    opacity: 1;
    transform: translateY(0px);
}

.menu-inner2-text {
    background: rgb(255, 243, 205);
    padding: 60px;
    border-radius: 20px;
    flex: 1 1 0%;
}

.menu-inner2-text .icon {
    display: inline-block;
    animation: 1.8s ease-in-out 0s infinite normal none running heartbeat;
}

@keyframes heartbeat {

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

    30% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(1);
    }
}

.menu-inner2-img img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    display: block;
    opacity: 0;
    transform: scale(0.9);
    transition: 0.8s 0.2s;
}

.menu-inner2.show .menu-inner2-img img {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 899px) {
    .menu-inner1 {
        flex-direction: column;
    }

    .menu-inner1-img {
        order: -1;
        width: 45%;
    }

    .menu-inner1-img img {
        border-radius: 50%;
    }

    .menu-flex1 {
        padding-top: 0px;
    }

    .menu-inner2 {
        flex-direction: column;
    }

    .menu-inner2-img {
        order: -1;
        width: 45%;
    }

    .menu-inner2-img img {
        border-radius: 50%;
    }

    .menu-flex2 {
        padding-top: 0px;
    }
}

@media (max-width: 399px) {
    .menu-inner1 {
        padding: 20px;
        gap: 20px;
    }

    .menu-inner1-img {
        width: 60%;
    }

    .menu-flex1 {
        padding: 0 0 30px;
    }

    .menu-inner1-text {
        padding: 30px;
        line-height: 2;
    }

    .menu-inner2 {
        padding: 20px;
        gap: 20px;
    }

    .menu-inner2-img {
        width: 60%;
    }

    .menu-flex2 {
        padding: 0 0 30px;
    }

    .menu-inner2-text {
        padding: 30px;
        line-height: 2;
    }
}

/*------------------
viewmore
--------------------*/

.viewmore {
    width: 85%;
    margin: 100px 0px;
    display: flex;
    justify-content: right;
}

.viewmore h4 {
    background: rgb(254, 236, 178);
    color: rgb(87, 84, 77);
    font-size: 24px;
    width: 262px;
    padding: 15px 40px;
    text-align: center;
    transition: 0.4s;
    border-radius: 8px;
}

.viewmore a {
    text-decoration: none;
    cursor: pointer;
}

.viewmore h4:hover {
    letter-spacing: 0.2rem;
}

.viewmore h4:hover {
    color: rgb(254, 236, 178);
    background: rgb(87, 84, 77);
}

@media (max-width: 899px) {
    .viewmore {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 399px) {
    .viewmore {
        margin: 50px 0;
    }
}

/*------------------
news
--------------------*/

.news-inner {
    margin: 100px auto 0px;
    width: 648px;
    background: rgb(255, 255, 255);
}

.news-inner dl {
    display: flex;
    padding: 40px 0px;
    border-bottom: 2px dashed rgb(141, 110, 108);
}

.news-inner dl:first-child {
    border-top: 2px dashed rgb(141, 110, 108);
}

.news-inner dt {
    padding: 0px 70px;
}

.news-inner dd {
    padding-right: 70px;
}

@media (max-width: 899px) {
    .news-inner {
        width: 90%;
    }
}

@media (max-width: 499px) {
    .news-inner dl {
        display: block;
    }

    .news-inner {
        margin: 0px auto;
    }

    .news-inner dt,
    .news-inner dd {
        padding: 0px 0px 0px 30px;
    }
}

/*-----------------
about
------------------*/

.about-flex {
    justify-content: center;
    max-width: 100%;
    gap: 50px;
    width: 60%;
    margin: 0px auto;
}

.about-inner {
    /* position: relative; */
    background: rgb(255, 246, 217);
    border-radius: 119px;
    z-index: -1;
    max-width: 100%;
    height: 100%;
    padding: 10px 50px 30px;
    margin: 50px 0px;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: 0.8s;
}

.about-inner.show {
    opacity: 1;
    transform: translateY(0px) scale(1);
}

.about-inner.show {
    opacity: 1;
    transform: scale(1);
}

.about-img-ringo {
    width: 150px;
    position: absolute;
    top: -100px;
    left: 41px;
    transform: rotate(17deg);
}

.about-img-ringo img {
    width: 100%;
}

.about-img-nasi {
    width: 150px;
    position: absolute;
    top: -52px;
    left: -70px;
    transform: rotate(-30deg);
}

.about-img-nasi img {
    width: 100%;
}

.about-img-orengi {
    width: 150px;
    position: absolute;
    bottom: -42px;
    right: -28px;
}

.about-img-orengi img {
    width: 100%;
}

.about-inner-wrapper {
    padding: 30px;
    text-align: center;
}

.about-title p {
    font-size: 14px;
}

.about-text {
    padding: 50px 0px;
    line-height: 2;
}

.about-img-kuma {
    width: 330px;
    position: absolute;
    bottom: -142px;
    left: 50%;
    transform: translateX(-50%);
}

.about-img-kuma img {
    width: 100%;
    object-fit: contain;
}

.about-story-wrapper {
    position: relative;
    width: 70%;
    margin: 90px auto;
    z-index: -1;
    max-width: 100%;
    padding: 30px;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: 0.8s;
}

.about-story-wrapper.show {
    opacity: 1;
    transform: translateY(0px) scale(1);
}

.about-story-wrapper.show {
    opacity: 1;
    transform: scale(1);
}

.about-story-img {
    position: absolute;
    width: 300px;
    bottom: -42px;
    right: -127px;
}

.about-story-img img {
    width: 100%;
}

.about-story-inner {
    background: rgb(255, 246, 217);
    border-radius: 119px;
    padding: 10px 50px 30px;
}

.abot-story-title {
    text-align: center;
}

.about-story-text {
    padding: 50px;
    text-align: center;
    line-height: 2;
}

@media (max-width: 899px) {
    .about-flex {
        width: 80%;
    }

    .about-story-wrapper {
        width: 85%;
    }

    .about-story-img {
        display: none;
    }
}

@media (max-width: 499px) {
    .about-img-ringo {
        width: 100px;
        top: 0;
        left: 100px;
    }

    .about-img-nasi {
        width: 100px;
        top: 0;
        left: 3px;
    }

    .about-img-orengi {
        width: 100px;
        bottom: 0;
        right: 14px;
    }

    .about-img-kuma {
        width: 220px;
        top: 0;
        left: 105px;
    }

    .about-flex {
        width: 100%;
    }

    .about-inner {
        border-radius: 0;
        padding: 10px 20px;
    }

    .about-title {
        text-align: right;
    }

    .about-text {
        text-align: left;
    }

    .about-inner-wrapper {
        padding: 30px 0;
    }

    .about-story-wrapper {
        padding: 0;
        width: 100%;
        margin: 50px 0;
    }

    .about-story-inner {
        border-radius: 0;
        padding-top: 30px;
        padding-inline: 20px;
        padding-bottom: 10px;
    }

    .abot-story-title {
        text-align: right;
    }

    .about-story-text {
        padding: 50px 0;
    }


}

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

.info-inner-wrapper {
    width: 321px;
    margin: 50px auto;
    text-align: center;
    max-width: 100%;
}

.info-inner-wrapper ul {
    display: flex;
    flex-direction: column;
    margin: 50px 0;
}

.info-inner-wrapper li {
    list-style: none;
    font-size: 1.6rem;
}

.info-inner-wrapper .dt {
    padding-bottom: 20px;
    border-bottom: 2px dashed #8d6e6c;
}

.info-inner-wrapper .dd {
    padding-top: 20px;
}



.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-tyuui {
    text-align: center;
    padding: 0 0 50px;
}

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

.footer-img {
    width: 300px;
}

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

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