/* スマホ版CSS - Part 3: アクセス・フッター・電話ボタン */

/* アクセスセクション */
.access-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(2, 1, 1, 0.8), rgba(20, 20, 20, 0.9));
    border: 2px solid rgba(255, 0, 255, 0.933);
    border-radius: 15px;
    padding: 2rem 1.5rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(245, 230, 211, 0.1);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.info-label {
    font-weight: 600;
    color: #8b1538;
    font-size: 1rem;
}

.info-value {
    color: #f5e6d3;
    font-size: 1rem;
    text-align: right;
}

.info-value a {
    color: #d4af37;
    text-decoration: none;
}

h3 strong {
    display: block;
    font-size: 1.2rem;
    margin-top: -0.2rem;
}

.map-container-store iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
}

/* 予約セクション */
#reservation .showcase-container {
    padding: 2rem 1.5rem;
}

/* 電話予約案内 */
.phone-reservation {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(212, 175, 55, 0.1));
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 15px;
}

.phone-reservation h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.phone-reservation p {
    font-size: 1.8rem;
    margin: 1.5rem 0;
}

.phone-reservation a {
    text-decoration: none;
    font-weight: 700;
    color: #d4af37;
}

/* 電話ボタン - スマホ最適化 */
.phone-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #9d895e 0%, #b38e53 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: phoneFloat 3s ease-in-out infinite;
    text-decoration: none;
    border: none;
}

.phone-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(186, 156, 84, 0.6);
}

.phone-button::before {
    content: '📞';
    font-size: 1.6rem;
    color: white;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* 電話テキスト */
.phone-text {
    position: fixed;
    bottom: 30px;
    right: 15px;
    background: linear-gradient(15deg, rgba(140, 42, 137, 0.9), rgba(142, 0, 102, 0.57));
    color: #f5e6d3;
    padding: 10px 15px;
    font-size: 1.8rem;
    border-radius: 50%;
    font-weight: 500;
    z-index: 999;
    transition: all 0.5s ease;
    backdrop-filter: blur(5px);
    color: #fff;
    -webkit-text-stroke: 1px #453744e0;
    text-stroke: 1px #453744e0;
    text-shadow: -0.2px -0.4px 1px #f802ef;
    paint-order: stroke;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
}

/* フッター */
.footer {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(26, 5, 32, 0.8));
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    padding: 3rem 1rem 2rem;
    text-align: center;
}

.footer-logo {
    font-family: 'Crimson Text', serif;
    font-size: 2.5rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: -0.8rem;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-grid > div {
    padding: 1rem;
}

.footer-grid > div:last-child {
    border-bottom: none;
}

.footer-grid h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.footer-grid p {
    line-height: 1.6;
    font-size: 1rem;
}

.footer-grid a {
    color: #d4af37;
    text-decoration: none;
}

.local-keywords {
    text-align: center;
    margin-top: 40px;
    padding: 15px;
    background: rgba(62, 39, 35, 0.3);
    border-radius: 10px;
    font-size: 0.8rem;
    color: #ccc;
    line-height: 1.5;
}

/* アニメーション */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ユーティリティクラス */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* パフォーマンス最適化 */
* {
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.hero-main, 
.showcase-container {
    will-change: transform;
}


        .phone-reservation{
            text-align: center;
            padding: 2rem 1.5rem;
            background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(212, 175, 55, 0.1));
            border: 2px solid rgba(212, 175, 55, 0.4);
            border-radius: 15px;
        }
        .phone-reservation h3{
            font-size: 90%;
            margin-bottom: 1.5rem;
        }
        .phone-reservation p{
            font-size: 90%;
            margin: 1.5rem 0;
        }
        .reserve{
            color:#fff;
            text-decoration: none;
            font-weight: 700;
            font-size:150%;
        }
        .timeerea{
            color: #f5e6d3;
            font-size: 130%;
            margin-bottom: 1rem;
        }
        .timeerea span{
            display:block;
            font-size: 90%;
        }
        .jyokyo{
            font-size: 120%;
            color: #b4667dff;
            -webkit-text-stroke: 1px #ffb8e5c7;
            text-stroke: 1px #ffb8e5c7;
            paint-order: stroke;
        }
        .rese_messe{
            color: #f5e6d3;
            font-size: 0.9rem;
            margin-top: 1rem;
        }
        .phone-reservation p .time{
            display:inline-block;
        }

/* 小画面対応（iPhone SE等） */
@media (max-width: 375px) {
    .nav {
        width: 100%;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .hero-main {
        padding: 70px 0.5rem 1rem;
    }
    
    .hero-logo-main img {
        width: 90%;
        max-width: 250px;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .content-section {
        padding: 2rem 0.5rem;
    }
    
    .showcase-container {
        padding: 1.5rem 1rem;
    }
    
    .price-card {
        padding: 1.5rem 1rem;
    }
    
    .plan-price {
        font-size: 2rem;
    }
    
    .footer {
        padding: 2rem 0.5rem 1.5rem;
    }
    
    .footer-logo {
        font-size: 2rem;
    }
    
    .phone-button {
        width: 60px;
        height: 60px;
        bottom: 15px;
        right: 15px;
    }
    
    .phone-button::before {
        font-size: 1.4rem;
    }
    
    .phone-text {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        bottom: 25px;
        right: 10px;
    }
}

/* 横向き時の調整 */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-main {
        height: auto;
        min-height: 100vh;
        padding: 60px 1rem 1rem;
    }
    
    .news-ares::before {
        height: 40vh;
        min-height: 200px;
    }
    
    .news-section {
        max-height: 40vh;
        min-height: 200px;
    }
    
    #concept {
        height: 40vh;
    }
}

@media (max-height: 440px){
main{
    background: no-repeat center/100% url("/images/tennai_sp.jpg");
}
}

/* タッチデバイス用の調整 */
@media (hover: none) and (pointer: coarse) {
    .nav-menu a {
        padding: 1.5rem 2rem;
        font-size: 1.2rem;
    }
    
    .price-card:hover,
    .cast-card:hover,
    .op_col:hover,
    .osu:hover {
        transform: none;
    }
    
    .price-card:active,
    .cast-card:active,
    .op_col:active,
    .osu:active {
        transform: translateY(-3px);
    }
}