@charset "utf-8";

/* =====================================================
   UTA TO SAKE - index-sp.css 
  
===================================================== */

@media screen and (max-width: 767px) {

    /* --- base --- */
    body, p, li, dt, dd, .about-body p, .info-block p, .price-notes p, .menu-name, .menu-desc {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.8;
        letter-spacing: 0.05em;
    }

/* =====================================================
   Animation
===================================================== */

@keyframes logo-on-fast-sp {
    0% { opacity: 0; filter: none; }
    15% { opacity: 1; filter: drop-shadow(0 0 15px rgba(255, 46, 138, 0.8)); }
    20%, 30%, 40%, 50%, 60%, 70% { opacity: 0.3; filter: none; } 
    25%, 35%, 45%, 55%, 65%, 75% { opacity: 1; filter: drop-shadow(0 0 15px rgba(255, 46, 138, 0.8)); }
    85%, 100% { 
        opacity: 1; 
        filter: drop-shadow(0 0 15px rgba(255, 46, 138, 0.8)) 
                drop-shadow(0 0 30px rgba(255, 46, 138, 0.4)); 
    }
}


@keyframes ribbon-fade-up-sp {
    0% {
        opacity: 0;
        transform: translateY(20px) rotate(-2deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(-2deg);
    }
}

@keyframes catch-fade-up-long-sp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

/* =====================================================
   Others
===================================================== */

    .section-title { font-size: 34px; margin-bottom: 5px; }
    #about { padding-top: 100px; } 
    .about-lead .shop-name-large { font-size: 28px; line-height: 1.4; display: block; white-space: normal; }
    .drink-category h4 { width: 100%; font-size: 18px; }
    .recommend-menu { padding: 30px 15px; }
		
	
	
/* =====================================================
   layout
===================================================== */

#top {
    position: relative;
    height: 100vh;
    width: 100%;
    background: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
   align-items: stretch;
    padding: 0; 
    margin: 0;
}
	

#top .hero-flex .hero-branding {
    flex: none; 
    width: 85%;
    max-width: 300px; 
    margin: 0 auto;
    padding-left: 0;
    text-align: center;
}

#top .hero-branding .hero-logo {
    width: 100%;
    height: auto;
    max-width: none;
    margin: 0 auto 10px;
}

#top .hero-branding .hero-ribbon {
    width: 100%;
    height: auto;
    max-width: none;
    margin: 0 auto 20px;
}

#top .hero-branding .hero-catchphrase {
    font-size: 13px;
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.hero-photo {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    clip-path: none;
    margin: 0;
}


.hero-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
	object-position: center top;
    filter: brightness(0.3);
}

.hero-bg-lines {
    display: none; 
	}

.hero-flex {
	flex: 1;
   width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-branding {
    position: relative;
    z-index: 20;
    width: 100%;
    text-align: center;
    padding-left: 0;
}
	

.hero-photo::after {
    display: none;
}
	
.hero-logo {
    width: 70%;
    max-width: 280px;
    margin: 0 auto 10px;
    display: block;
    opacity: 0;
    animation: logo-on-fast-sp 1.8s ease-out forwards;
}

.hero-ribbon {
    width: 85% !important;
    max-width: 320px;
    margin: 0 auto 20px !important;
    transform: rotate(-2deg);
    display: block;
    opacity: 0;
    animation: ribbon-fade-up-sp 1.8s cubic-bezier(0.23, 1, 0.32, 1) 0.3s forwards !important;
}

.hero-catchphrase {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 14px;
    color: #fff;
    text-align: center;
    letter-spacing: 0.15em;
    line-height: 1.6;
    margin: 0 auto;
    opacity: 0;
    animation: catch-fade-up-long-sp 1.2s ease-out 0.6s forwards !important;
}

#top .scroll-down.sp-view {
    display: block; 
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30; 
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
    padding-top: 50px; 
}

#top .scroll-down.sp-view::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2); 
}

#top .scroll-down.sp-view::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 15px;
    background: #FF2E8A;
    box-shadow: 0 0 10px #FF2E8A;
    animation: scroll-anim 2s cubic-bezier(0.7, 0, 0.3, 1) infinite;
}


@keyframes scroll-anim {
    0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
    30% { transform: scaleY(1); transform-origin: top; opacity: 1; }
    60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

    .flex-row, .access-flex, .standard-menu, .recommend-list, .info-grid, .price-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    .img-box, .text-box, .map-outer, .access-info-card, .price-card, .info-card, .drink-category {
        width: 92%!important;
        max-width: none;
        flex: none !important;
		margin: 0 auto;
    }

    .price-lead {
        display: flex !important;   
        align-items: center;        
        justify-content: center;    
        gap: 10px;
        font-size: 20px;            
        text-align: center;
        margin-bottom: 40px;
        text-shadow: 0 0 10px rgba(156, 255, 46, 0.6);
    }

    .price-lead::before, .price-lead::after {
        content: ""; flex-shrink: 0; width: 20px; height: 40px;
        background-size: contain; background-repeat: no-repeat;
    }

    .price-card { padding: 40px 20px; }
    .price-card__amount { font-size: 40px; display: flex; align-items: baseline; justify-content: center; }
    .price-card__symbol { font-size: 22px; margin-right: 4px; }
    .price-card__unit { font-size: 13px; margin-left: 4px; }
    .price-notes { margin-top: 25px; text-align: center; }
	
	
/* =====================================================
   Drink Section
===================================================== */
	.menu-name {
		font-size: 15px;
	}
	
	.modal-content {
        padding: 50px 20px 30px; 
        width: 90%;
        height: 90vh;
    }

    .modal-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .modal .menu-row dt {
        font-size: 14px; 
    }

    .menu-open-btn {
        width: 80%; 
		top:45px;
        padding: 15px 0;
    }
	
	.modal-close-btn-bottom {
        width: 80%; 
        padding: 15px 0;
    }
	
	


    .party-container {
        padding: 40px 15px;
        margin-top: 30px; /* PCの40pxに合わせて少し調整 */
    }

    p.party-lead {
        font-size: 17px; /* PC版22pxに合わせて少しアップ */
        padding-bottom: 15px;
        line-height: 1.6;
    }

    .party-main-row {
        margin-bottom: 20px;
    }

    .party-label {
        font-size: 15px; 
        margin-bottom: 10px;
    }

    .party-amount {
        font-size: 48px; 
    }

    .party-unit {
        font-size: 15px; 
        margin-left: 6px;
    }

    .party-sub-row {
        padding: 12px 15px;
        width: 100%;
        border-radius: 10px; 
    }

    .party-sub-text {
        font-size: 14px; 
        color: #fff; 
        line-height: 1.5;
    }

    .party-sub-price {
        font-size: 16px; 
    }

    .party-footer p {
        font-size: 14px;
        line-height: 1.6;
        text-align: center;
    }
	
/* =====================================================
   Information
===================================================== */
	.payment-intro {
    font-size: 14px;
}
	
	.payment-list-custom {
    font-ize: 13px;
}

	
/* =====================================================
   Access Section
===================================================== */

    #access .map-outer { display: block !important; border-radius: 15px; }
    #access .map-inner {
        height: 450px !important;  
        width: 100% !important;
        display: block !important;
    }
    #access .map-inner iframe { width: 100% !important; height: 100% !important; }
    .access-shop-name { font-size: 22px; margin-bottom: 25px; }
	
/* =====================================================
   SNS Section
===================================================== */

    #sns { padding: 40px 0 30px; }
    .sns-links { display: flex; gap: 10px; margin-top: 30px; padding: 0; }
    .sns-btn { 
        flex: 1; height: 50px; border-radius: 30px; 
        display: flex; align-items: center; justify-content: center; 
        font-size: 14px; padding: 0 !important; white-space: nowrap; 
    }

    /* copylight */
    #footer { padding: 10px 0 85px; text-align: center; }
    .copyright { font-size: 10px; color: rgba(255, 255, 255, 0.6); }
	
	.sp-view {
    display: inline !important; 
}
	

    .contact-container {
        padding: 40px 20px;
    }

    .radio-group {
        flex-direction: column;
        gap: 15px;
    }

  .submit-btn {
        width: 100%;
        padding: 15px;
        font-size: 16px;
        text-shadow: none; 
    }

    .radio-label {
        font-size: 16px; 
        padding: 5px 0;
    }
	
	

    .confirm-btn-group {
        display: flex;
        flex-direction: row; 
        gap: 10px; 
        width: 100%;
        margin-top: 30px;
    }

    .confirm-btn-group .back-btn,
    .confirm-btn-group .submit-btn {
        flex: 1; 
        width: 50%; 
        padding: 15px 0; 
        font-size: 15px; 
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap; 
        margin: 0;
    }

    /* 「送信する」ボタンは今の色設定を維持 */
    .confirm-btn-group .submit-btn {
        background: var(--neon-yellow);
        color: #000;
        border: none;
    }

    /* 「修正する」ボタンの微調整 */
    .confirm-btn-group .back-btn {
        border: 1px solid rgba(255, 255, 255, 0.4);
        color: #fff;
    }
	
	
	
body {
    background-attachment: scroll !important;
}


.section::before,
.section::after,
.contact-zone::before,
.contact-zone::after {
    display: none !important;
}


.hero-photo img, 
.img-box img {
    will-change: transform;
}	
	
	
	
	
	
	
	
	

}
