/**
 * Access Page Styles
 *
 * @package NONKE_SPA
 * @since 1.0.0
 */

/* ==========================================================================
   アクセスページ
   ========================================================================== */
.p-accessPage {
    padding: 0 0 60px 0;
}

.p-accessPage__content {
    max-width: 800px;
    margin: 0 auto;
}

/* WordPressエディタ内のスタイル調整 */
.p-accessPage__content h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #d9d9d9;
}

.p-accessPage__content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: #d9d9d9;
}

.p-accessPage__content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #d9d9d9;
}

.p-accessPage__content ul,
.p-accessPage__content ol {
    margin: 0 0 20px 20px;
    color: #d9d9d9;
}

.p-accessPage__content li {
    margin-bottom: 10px;
}

.p-accessPage__content strong {
    font-weight: 700;
    color: #303c09;
}

.p-accessPage__content a {
    color: #303c09;
    text-decoration: underline;
}

.p-accessPage__content a:hover {
    opacity: 0.7;
}

/* Google Maps iframe */
.p-accessPage__content iframe {
    width: 100%;
    height: 450px;
    margin: 20px 0;
    border-radius: 8px;
}

/* テーブル */
.p-accessPage__content table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

.p-accessPage__content th,
.p-accessPage__content td {
    padding: 12px;
    border: 1px solid #e0e0e0;
    color: #d9d9d9;
}

.p-accessPage__content th {
    background: #f8f8f8;
    font-weight: 700;
    color: #333;
}

/* 画像 */
.p-accessPage__content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

/* Warningボックス */
.p-accessPage__content .warning {
    background: #fff5b8;
    border: 2px solid #303c09;
    border-radius: 8px;
    padding: 40px;
    margin: 40px 0;
    position: relative;
}

.p-accessPage__content .warning h2 {
    color: #303c09;
    font-size: 28px;
    margin-top: 0;
    text-align: center;
}

.p-accessPage__content .warning p {
    color: #303c09;
    font-size: 16px;
    line-height: 1.8;
}

.p-accessPage__content .warning strong {
    color: #ff0000;
    font-weight: 700;
}

.p-accessPage__content .warning hr {
    border: none;
    border-top: 1px solid #303c09;
    margin: 30px 0;
    opacity: 0.3;
}

/* Guideセクション */
.p-accessPage__content .guide {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.p-accessPage__content .guide h2 {
    color: #d9d9d9;
    font-size: 24px;
    border-bottom: 2px solid #d9d9d9;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.p-accessPage__content .guide h3 {
    color: #d9d9d9;
    font-size: 20px;
    margin-top: 30px;
}

/* Roomセクション */
.p-accessPage__content .room {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.p-accessPage__content .room h3 {
    color: #d9d9d9;
    margin-top: 0;
}

.p-accessPage__content .room ul {
    list-style: none;
    padding-left: 0;
}

.p-accessPage__content .room ul li {
    position: relative;
    padding-left: 20px;
    color: #d9d9d9;
}

.p-accessPage__content .room ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d9d9d9;
}

/* WordPressブロックカラム */
.p-accessPage__content .wp-block-columns {
    margin: 30px 0;
}

.p-accessPage__content .wp-block-column {
    padding: 0 10px;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .p-accessPage {
        padding: 0 0 40px 0;
    }
    
    .p-accessPage__content .warning {
        padding: 20px;
        margin: 20px 0;
    }
    
    .p-accessPage__content .warning h2 {
        font-size: 22px;
    }
    
    .p-accessPage__content h2 {
        font-size: 20px;
    }
    
    .p-accessPage__content h3 {
        font-size: 18px;
    }
    
    .p-accessPage__content iframe {
        height: 300px;
    }
}