@charset "UTF-8";

@font-face {
    font-family: "UDShinMGoPro";
    src: url("../fonts/A-OTF-UDShinMGoPro-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "UDShinMGoPro";
    src: url("../fonts/A-OTF-UDShinMGoPro-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-size: 1.6rem;
    font-family: "UDShinMGoPro", "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    text-align: justify;
    margin: 0 auto;
    text-align: left;
    word-break: break-word;
    letter-spacing: 0;
}

img {
    display: block;
    width: 100%;
}

a {
    display: inline-block;
    cursor: pointer;
}

section {
    position: relative;
}

/* ローディング全体 */
#loading {
    position: fixed;
    inset: 0;
    background: #fff7d9;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* 非表示 */
#loading.hide {
    opacity: 0;
    visibility: hidden;
}

/* ロゴ */
.loading-logo img {
    width: min(80vw, 420px);
    opacity: 0;
    transform: scale(0.85) translateY(20px);
    animation: logoFade 1.2s ease forwards;
}

/* ふわっと */
@keyframes logoFade {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.bg {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-image: url(../img/bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border: 24px solid #E66A07;
    z-index: -1;
}

.main-contents {
    max-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 33px;
}

.main-wrapper {
    width: 100%;
    max-width: 470px;
    box-shadow:
    7px 3px 6px rgba(0,0,0,.25),   /* 右下 */
   -7px 3px 6px rgba(0,0,0,.25);   /* 左下 */
}

.wrapper {
    padding: 0 40px;
}

.fv {
    z-index: 2;
}

.campaign-btn,
.btn {
    position: absolute;
    width: 255px;
    right: 40px;
}

.campaign-btn:hover,
.btn:hover {
    opacity: 0.7;
}

.campaign-btn {
    top: 410px;
    right: 40px;
}

.btn {
    bottom: 60px;
}

.about {
    background-color: #FFF;
    z-index: 1;
    margin-top: -60px;
}

.campaign {
    background-color: #fff4c5;
    padding: 1px 0;
}

.campaign img {
    margin: 28px auto;
}

.campaign_img01 {
    width: 90%;
    margin: auto;
}

.shop {
    background-color: #FFF;
    padding: 22px;
    border-radius: 6px;
}

.shop-title {
    margin-top: 6px!important;
}

.shop-lists li {
    padding-left: 25px;
    position: relative;
}

.shop-lists li a {
    font-family: "UDShinMGoPro", "Noto Sans JP", sans-serif;
    font-size: 17.5px;
    font-weight: bold;
    line-height: 2;
}

.shop-lists li a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.shop-lists li::before {
    position: absolute;
    content: "・";
    top: 5px;
    left: 0;
    line-height: 1;
}

.fair {
    background-color: #e7ffef;
    padding: 30px 0;
}

.fair-experience01,
.fair-experience02,
.fair-experience03 {
    width: calc(100% + 80px);
    margin-left: -40px;
    margin-top: 18px;
}

.fair-experience03 {
    margin-top: 44px;
    margin-bottom: 20px;
}

.fair-experience01-menu img {
    margin: 30px 0 20px 0;
}

.menu-note {
    font-size: 14px;
    margin-bottom: 70px;
}

.faq {
    background-color: #e46207;
    padding: 56px 0;
}

.faq-title {
    width: 70%;
    margin: 0 auto 38px auto;
}

.faq-contents {
    background-color: #FFF;
    padding: 38px 10px;
    border-radius: 6px;
}

.faq-lists {
    margin-bottom: 50px;
}

.faq-lists:last-child {
    margin-bottom: 0;
}

.faq-lists li {
    margin-top: 22px;
}

.faq-q {
    display: flex;
    align-items: baseline;
    gap: 18.8px;
}

.faq-q span,
.faq-q p {
    font-size: 16.3px;
    color: #e46207;
    font-weight: 700;
}

.faq-a {
    width: 105%;
    font-size: 15.1px;
    margin-top: 12.5px;
    font-weight: 500;
    line-height: 1.25;
}

.faq-lists ul li {
    list-style: outside;
    margin-left: 30px;
    font-size: 15.1px;
    font-weight: 500;
    line-height: 1.25;
}

footer {
    background-color: #fff4c5;
    padding: 47px 0 28px 0;
    text-align: center;
}

footer h2 {
    width: 110%;
    font-size: 17.5px;
    font-weight: 700;
    margin-left: -5%;
    line-height: 1.5;
}

footer p {
    font-size: 15px;
    line-height: 1.5;
    margin: 44px 0;
}

.footer-sns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.footer-sns a {
    width: 65.8px;
    transition: all 0.5s;
}

.footer-sns a:hover {
    scale: 1.1;
    transition: all 0.5s;
}

.email {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.email:hover {
    opacity: 0.7;
}

.copyright {
    font-size: 10px;
    line-height: 2.2;
    margin-bottom: 0;
    text-align: center;
}

.main-nav {
    width: 325px;
}

.main-nav-wrapper {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFF;
    border-radius: 20px;
    padding: 10px 19px 16px 19px;
}

.main-nav ul li {
    padding: 17px 0;
    text-align: center;
    border-bottom: 1px solid #e46207;
}

.main-nav ul li:last-child {
    border-bottom: 0;
}

.main-nav ul li a {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    color: #e46207;
}

.main-nav ul li a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

.top-sns {
    margin: 27px 0 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.top-sns a {
    width: 52px;
    transition: all 0.5s;
}

.top-sns a:hover {
    scale: 1.1;
    transition: all 0.5s;
}

/* =====================
    ハンバーガー
===================== */

.hamburger {
    display: none;
    position: fixed;
    top: 40px;
    right: 40px;
    width: 60px;
    height: 50px;
    background: none;
    border: none;
    z-index: 9999;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #E66A07;
    margin: 7px 0;
    transition: .3s;
}

@media  (max-width: 915px) {
    .hamburger {
        display: block;
        border: 2px solid #E66A07;
        padding: 5px 10px;
        background-color: #FFF;
    }

    .main-nav-wrapper {
        position: fixed;
        top: 0;
        transform: initial;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        transition: .4s;
        z-index: 999;
        overflow-y: auto;
        border-radius: 0;
        padding: 100px 20px 0 20px;
    }

    .main-nav-wrapper.open {
        right: 0;
    }

    body.menu-open {
        overflow: hidden;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
    
    .main-contents {
        gap: 0;
    }

    .main-nav {
        width: 0;
    }
}

@media  (max-width: 600px) {
    .hamburger {
        top: 15px;
        right: 15px;
    }
}

@media  (max-width: 470px) {
    .bg {
        display: none;
    }
    .hamburger {
        width: 50px;
        height: 45px;
        padding: 0px 10px;
        top: 10px;
        right: 10px;
    }
    .wrapper {
        padding: 0 8.5vw;
    }

    .campaign-btn, .btn {
        width: 55vw;
    }

    .campaign-btn {
        top: 87vw;
        right: 8vw;
    }

    .btn {
        bottom: 13vw;
        right: 8vw;
    }

    .about {
        margin-top: -12.765vw;
    }

    .shop {
        padding: 4.68vw;
    }

    .shop-lists li {
        padding-left: 5.319vw;
        line-height: 1;
    }

    .shop-lists li::before {
        font-size: 3.7234vw;
        line-height: 2;
        top: 0.5vw;
        left: 1.5vw;
        font-weight: bold;
    }

    .shop-lists li a {
        font-size: 3.7234vw;
    }

    .campaign img {
        margin: 5.9574vw auto;
    }

    .fair-experience01, .fair-experience02, .fair-experience03 {
        width: calc(100% + 17vw);
        margin-left: -8.5vw;
    }

    .fair-experience01-menu img {
        margin: 6.3829vw 0 5vw 0;
    }

    .menu-note {
        font-size: 3vw;
        margin-bottom: 14vw;
    }

    .faq {
        padding: 11.914vw 0;
    }

    .faq-contents {
        padding: 8.0851vw 2.1276vw;
    }

    .faq-lists {
        margin-bottom: 10.6382vw;
    }

    .faq-lists li {
        margin-top: 4.6808vw;
    }

    .faq-lists ul li {
        margin-top: 4.6808vw;
        margin-left: 6.3829vw;
    }

    .faq-q {
        gap: 4vw;
    }

    .faq-q span, .faq-q p {
        font-size: 3.468vw;
    }

    .faq-a,
    .faq-lists ul li {
        font-size: 3.2127vw;
    }

    footer {
        padding: 10vw 0 5.9574vw 0;
    }

    footer h2 {
        font-size: 3.7234vw;
    }

    footer p {
        font-size: 3.1914vw;
        margin: 9.3617vw 0;
    }

    .footer-sns {
        gap: 4.6808vw;
    }

    .footer-sns a {
        width: 14vw;
    }
}

.fadeUpTrigger {
    opacity: 0;
}

.delay-time06 {
    animation-delay: 0.6s;
}
.delay-time08 {
    animation-delay: 0.8s;
}
.delay-time10 {
    animation-delay: 1s;
}

/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/
    
.fade {
    opacity: 0;
}
    
/*==================================================
動き自体の指定：今回は「ふわっ」
===================================*/
    
.fadeUp {
    animation-name:fadeUpAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity: 0;
    }
    @keyframes fadeUpAnime{
        from {
        opacity: 0;
        transform: translateY(100px);
        }
    
        to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 768px) {
    .delay-time06 {
        animation-delay: 0.6s;
    }
    .delay-time08 {
        animation-delay: 0.6s;
    }
    .delay-time10 {
        animation-delay: 0.6s;
    }
}