@charset "utf-8";
/* ***************** */
#loading {
    position: fixed;
    inset: 0;
    background: #fa9b4ea2;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999999999999999999999;
}

.loading-text span {
    display: inline-block;
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    animation: wave 1.5s ease-in-out infinite;
    text-shadow: #ffe8c7 4px 4px 5px;
    font-family: "Amatic SC", cursive;
}

@media (min-width: 768px) {
  #loading {
    position: fixed;
    inset: 0;
    background: #fca55f6e;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999999999999999999999;
}

.loading-text span {
    display: inline-block;
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    animation: wave 1.5s ease-in-out infinite;
    text-shadow: #ffe8c7  4px 4px 4px;
    font-family: "Amatic SC", cursive;
}
}





.loading-text span:nth-child(n) {
    animation-delay: calc(0.1s * var(--i));
}

.loading-text span:nth-child(1) {
    animation-delay: 0s;
}
.loading-text span:nth-child(2) {
    animation-delay: 0.1s;
}
.loading-text span:nth-child(3) {
    animation-delay: 0.2s;
}
.loading-text span:nth-child(4) {
    animation-delay: 0.3s;
}
.loading-text span:nth-child(5) {
    animation-delay: 0.4s;
}
.loading-text span:nth-child(6) {
    animation-delay: 0.5s;
}
.loading-text span:nth-child(7) {
    animation-delay: 0.6s;
}
.loading-text span:nth-child(8) {
    animation-delay: 0.7s;
}
.loading-text span:nth-child(9) {
    animation-delay: 0.8s;
}
.loading-text span:nth-child(10) {
    animation-delay: 0.9s;
}
.loading-text span:nth-child(11) {
    animation-delay: 1s;
}

@keyframes wave {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

/* ***************** */

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

img {
    width: 100%;
    vertical-align: bottom;
}
main {
    overflow-x: hidden;
}
p {
    font-family: Meiryo;
}

@import url("https://fonts.googleapis.com/css2?family=Caveat&display=swap");
.font-1 {
    font-family: "Caveat", cursive;
    text-align: center;
    color: #716a63;
    font-size: 0.8em;
}

h2 {
    font-family: "Kosugi Maru", sans-serif;
    font-size: 2em;
    color: #716a63;
}

@media (min-width: 768px) {
    .font-1 {
        font-size: 1.5em;
    }
}

/* header */

main .hero-sp {
    width: 100%;
    object-fit: cover;
    padding-top: 75px;
    height: 90vh;
}

.sp-header .naminami {
    position: absolute;
    top: 62px;
}

.sp-nav {
    background-image: url(../img/3x/scooooon@3x.png);
    width: 150px;
    aspect-ratio: 12/4;
    background-size: cover;
    position: relative;
    left: 10px;
}

.sp-header {
    padding: 15px 0 0;
    width: 100%;
    /* background-color: #faedb774; */
    background: #f2be7f;
    position: fixed;
    z-index: 111111111111111111;
}
.pc-header {
    display: none;
}

@media (min-width: 768px) {
    .sp-header {
        display: none;
    }

    .pc-header {
        display: block;
    }

    .pc-header {
        position: fixed;
        width: 100%;
        z-index: 111111111111111111;
    }

    .pc-header .pc-nav {
        display: flex;
        background-color: #f2be7f;
        justify-content: space-between;
        align-items: center;
    }

    .pc-header .pc-nav img {
        width: 250px;
        padding: 15px;
    }

    .pc-header .pc-nav img:hover {
        transform: scale(1.1);
        transition: 0.5s;
    }

    .pc-header .pc-nav ul {
        display: flex;
    }

    .pc-header .pc-nav ul li {
        text-align: center;
    }

    .pc-header .pc-nav ul a {
        color: #ffffff;
        width: 150px;
        display: block;
        font-size: 1.5em;
        font-family: "Caveat", cursive;
    }

    .pc-header .pc-nav ul a:hover {
        font-weight: bolder;
        color: #795537;
    }

    .hero-pc img {
        height: 90vh;
        object-fit: cover;
        display: block;
        margin: 0 auto;
        margin-top: 220px;
    }
}

.hamburger-overlay {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.hamburger-overlay__line {
    position: absolute;
    left: 11px;
    width: 26px;
    height: 2px;
    background-color: #333;
    transition: all 0.6s;
}

.hamburger-overlay__line:nth-of-type(1) {
    top: 14px;
}
.hamburger-overlay__line:nth-of-type(2) {
    top: 23px;
}
.hamburger-overlay__line:nth-of-type(3) {
    top: 32px;
}

.hamburger-overlay.active .hamburger-overlay__line {
    background-color: #fff;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
    opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(175, 164, 145, 0.752);
    visibility: hidden;
    opacity: 0;
    transition: all 0.6s;
    z-index: 900;
}

.nav-overlay.active {
    visibility: visible;
    opacity: 1;
}

.nav-overlay__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.nav-overlay__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-overlay__item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s;
}

.nav-overlay.active .nav-overlay__item {
    opacity: 1;
    transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) {
    transition-delay: 0.1s;
}
.nav-overlay.active .nav-overlay__item:nth-child(2) {
    transition-delay: 0.2s;
}
.nav-overlay.active .nav-overlay__item:nth-child(3) {
    transition-delay: 0.3s;
}
.nav-overlay.active .nav-overlay__item:nth-child(4) {
    transition-delay: 0.4s;
}

.nav-overlay__link {
    display: inline-block;
    padding: 20px;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s;
    font-family: "Caveat", cursive;
}

.nav-overlay__link:hover {
    color: #4a90e2;
}

/* main */

/* adout */

main #about {
    margin: 100px auto 0;

    line-height: 1.7em;
    width: 90%;
}

main #about h2 {
    font-size: 2em;
    text-align: center;
}

main #about .about-item {
    margin-top: 20px;
}

main #about .about-item img {
    width: 300px;
    margin: 0 auto;
    display: block;
}

main #about .about-item p {
    padding: 10px 20px;
}

main #about span {
    font-weight: bolder;
    color: #a86c33;
    font-size: 1.1em;
}

#about img {
    width: 70%;
    margin: 50px auto 0;
    display: block;
}

.hero-sp {
    display: block;
}

.hero-pc {
    display: none;
}

main #about .font-1 {
    padding: 0 0 20px;
}

@media (min-width: 768px) {
    .hero-sp {
        display: none;
    }

    .hero-pc {
        display: block;
        position: relative;
        top: -105px;
        z-index: -111111;
    }

    main #about h2 {
        font-size: 3em;
    }

    main #about span {
        font-weight: bolder;
        font-size: 1.4em;
    }

    main #about {
        margin: 0 auto;
    }

    main #about .font-1 {
        padding: 10px 0 20px;
    }
}

@media (min-width: 768px) {
    main #about .about-box {
        display: flex;
        width: 100%;
        justify-content: space-evenly;
        align-items: center;
        margin: 70px auto 0;
        flex-wrap: wrap;
    }

    main #about .about-item {
        width: 600px;
    }

    main #about .about-item img {
        width: 100%;
    }
    main #about h2 {
        margin-top: 0px;
    }

    #about img {
        width: 500px;
        margin: 100px auto 50px;
    }
}

/* menu */

main #Menu img {
    object-fit: cover;
}

main #Menu {
    background-color: #bfb0a529;
    padding: 20px 20px 50px;
    margin-top: 100px;
}

main #Menu h2 {
    text-align: center;
    font-size: 2em;
    margin-top: 50px;
}

main #Menu .scoone-box .scoone-item h3 {
    margin: 10px 0 20px;
}

main #Menu .scoone-box .scoone-item {
    background-color: #ffffffba;
    padding: 10px 20px;
    margin: 30px 0;
}

main #Menu .desert-box .desert-item {
    background-color: #ffffffba;
    padding: 10px 20px;
    margin: 30px 0;
}

h3 {
    border-bottom: solid 5px #e8cbcb;
    position: relative;
    padding: 0;
    font-family: "Nico Moji";
    font-style: italic;
    font-size: 1.8em;
    color: #bb5454;
}

h3:after {
    position: absolute;
    content: " ";
    display: block;
    border-bottom: solid 5px #774e53;
    bottom: -5px;
    width: 20%;
}

main #Menu .scoone-box .scoone-item p {
    padding: 20px;
}

main #Menu .scoone-box .scoone-item span {
    background: linear-gradient(transparent 70%, #ff892989 70%);
    padding: 0 5px;
}

main #Menu .desert-box .desert-item h3 {
    margin: 20px 0;
}

main #Menu .desert-box .desert-item p {
    padding: 20px;
}

main #Menu .desert-box .desert-item span {
    background: linear-gradient(transparent 70%, #f1ff5889 70%);
    padding: 0 5px;
}

#Menu .menu-Site {
    background-color: #f2be7f;
    padding: 15px 0;
    width: 300px;
    border-radius: 50px;
    color: #ffffff;
    box-shadow: #665252 2px 2px 2px;
    margin: 50px auto;
    display: block;
    text-align: center;
}

#Menu a:hover {
    opacity: 0.7;
}

.banner-box img {
    width: 100%;
    margin: 0 auto;
    display: block;
    padding: 10px 0;
}

.banner-box {
    margin: 150px auto 50px;
}

@media (min-width: 768px) {
    main #Menu h2 {
        font-size: 3em;
        margin-top: 100px;
    }

    main #Menu .scoone-box {
        display: flex;
        margin: 50px auto 0;
        width: 100%;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
    }

    main #Menu .scoone-box .scoone-item {
        width: 450px;
        padding: 10px;
    }

    main #Menu {
        padding: 20px 0;
    }

    main #Menu .scoone-box .scoone-item .item-scn {
        display: flex;
        justify-content: space-evenly;
    }

    main #Menu .scoone-box .scoone-item .item-scn img {
        width: 30%;
        object-fit: contain;
    }

    main #Menu .scoone-box .scoone-item .item-scn p {
        width: 65%;
    }

    main #Menu .desert-box {
        margin-top: 100px;
        display: flex;
        margin: 0 auto;
        width: 100%;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
    }

    main #Menu .desert-box .desert-item {
        width: 450px;
        padding: 10px;
    }

    main #Menu .desert-box .desert-item .item-des {
        display: flex;
        justify-content: space-evenly;
    }

    main #Menu .desert-box .desert-item .item-des img {
        width: 30%;
        object-fit: contain;
    }

    main #Menu .desert-box .desert-item .item-des p {
        width: 65%;
    }

    #Menu .menu-Site {
        padding: 30px 0;
        width: 500px;
        margin: 100px auto 200px;
    }
}

@media (min-width: 768px) {
    .banner-box img {
        width: 400px;
        display: block;
    }

    .banner-box {
        display: flex;
        width: 100%;
        justify-content: center;
        gap: 50px;
        flex-wrap: wrap;
    }
}

/* access */

#access {
    width: 90%;
    margin: 100px auto;
}

#access .info-item {
    text-align: center;
    margin-bottom: 50px;
}

.map-item img {
    margin-bottom: 30px;
}

#access .map-box .map-item dl dt {
    border-bottom: 1px solid #665252;
}

#access .map-box .map-item dl {
    margin-bottom: 20px;
    padding: 0 20px;
}

#access .banner-box {
    margin-top: 100px;
}

#access .banner-box a:hover {
    opacity: 0.7;
}

@media (min-width: 768px) {
    #access .banner-box {
        margin-top: 200px;
    }
    #access .banner-box img {
        width: 500px;
    }

    #access .info-item h2 {
        font-size: 3em;
    }

    #access .map-box {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        margin-top: 100px;
    }

    #access .map-box .map-item {
        width: 40%;
    }
}

/* footer */

footer {
    text-align: center;
    background-color: #f2be7f;
    color: #ffffff;
    padding-bottom: 10px;
}

footer p {
    border-top: 1px solid #ffffff;
    width: 95%;
    margin: 0 auto;
    font-size: 0.8em;
    padding-top: 5px;
}

footer img {
    width: 100px;
    padding: 10px;
}

footer a {
    display: block;
    padding: 5px 0 0;
    color: #ffffff;
    font-family: "Caveat", cursive;
}

footer a:hover {
    opacity: 0.7;
}

/* footer a:first-child {
    padding-top: 90px;
} */

footer .sns-box {
    display: flex;
    justify-content: space-between;
    width: 200px;
    font-size: 2.5em;
    margin: 0 auto 30px;
    padding-top: 30px;
    color: #ffffff;
}


footer .footer-box{
    display: flex;
    width: 300px;
    margin: 0 auto 30px;
    justify-content: space-between;
}
footer .footer-box a{
        border-bottom: #ffebed 4px dotted;

}



@media (min-width: 768px) {
    footer .sns-box {
        width: 500px;
        font-size: 4em;
        margin: 0 auto 60px;
        padding-top: 40px;
    }

    footer img {
        width: 200px;
        margin: 50px 0 20px;
    }

    footer a {
        padding: 5px 0;
        font-size: 2em;
    }

    footer p {
        font-size: 1em;
    }


    footer .footer-box{
    display: flex;
    width: 700px;
    margin: 0 auto;
    justify-content: space-between;
}
footer .footer-box a{
        border-bottom: #ffebed 4px dotted;

}
}

/* fade */

.fade {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 1.5s,
        transform 1s;
}
.fade.active {
    opacity: 1;
    transform: translateY(0px);
}

/* ぶるぶる */
.body {
    position: relative;
}
.top-box {
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 11111111111111111111;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.top-box p {
    text-align: center;
    color: #462d19;
    text-shadow: #ffffff 1px 1px 1px;
    font-weight: bolder;
    font-size: 1.5em;
    font-family: "Nikukyu";
}

.buruburu {
    width: 100px;
}
.buruburu:hover {
    display: inline-block;
    animation: hurueru 0.4s infinite;
}

@keyframes hurueru {
    0% {
        transform: rotateZ(0deg);
    }
    25% {
        transform: rotateZ(2deg);
    }
    50% {
        transform: rotateZ(0deg);
    }
    75% {
        transform: rotateZ(-2deg);
    }
    100% {
        transform: rotateZ(0deg);
    }
}

@media (min-width: 768px) {
    .top-box p {
        font-size: 2em;
    }

    .buruburu {
        width: 170px;
    }
}

/* moji */

.top-ttl {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    top: -375px;
    text-shadow: #855917 2px 2px 8px;
}

.textanimation {
    font-size: 3em;
    color: #fff;
    font-family: "Amatic SC", cursive;
}
@keyframes showTextFromBottom {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0px);
    }
}
.textanimation span {
    animation: showText 3s backwards;
    display: inline-block;
}
.textanimation > span {
    overflow: hidden;
}
.textanimation > span > span {
    animation: showTextFromBottom 0.5s backwards;
}

@media (min-width: 768px) {
    .top-ttl {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        top: -525px;
        text-shadow: #855917 2px 2px 8px;
    }

    .textanimation {
        font-size: 5em;
        color: #fff;
        font-family: "Amatic SC", cursive;
    }
}
