/*
Theme Name: A151 Showa Retro
Author: A151 Project
Description: 昭和懐メロバー A151用オリジナルテーマ
Version: 1.1
*/

/* ----------------------------------------------------------------
   基本スタイル
---------------------------------------------------------------- */
body {
    background-color: #6a006a; /* テーマカラー：紫 */
    color: #ffffff;
    font-family: 'Noto Serif JP', serif; /* 昭和風明朝体 */
    margin: 0;
    padding: 0;
    line-height: 2.0;
    -webkit-font-smoothing: antialiased;
}

/* 共通レイアウト */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* セクション共通 */
section {
    margin-bottom: 80px;
    padding-top: 20px;
}

h2 {
    font-size: 24px;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
    letter-spacing: 0.1em;
}

/* ----------------------------------------------------------------
   ヘッダー・ロゴ
---------------------------------------------------------------- */
.hero-logo, .custom-logo {
    margin: 40px 0;
    max-width: 250px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

.custom-logo-link {
    display: inline-block;
}

/* ----------------------------------------------------------------
   コンセプト（トップページ）
---------------------------------------------------------------- */
.concept-text {
    margin-bottom: 40px;
}

/* 店内写真グリッド */
.concept-images-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.concept-img-item {
    width: 30%;
    min-width: 150px;
}

.concept-img-item img {
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s;
}

.concept-img-item img:hover {
    transform: scale(1.05);
}

/* ----------------------------------------------------------------
   料金システム（トップページ）
---------------------------------------------------------------- */
.system-title {
    font-size: 28px;
    color: #ffd700; /* 金色 */
    border-bottom: 1px solid #ffd700;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 10px;
    font-style: italic;
    font-family: serif;
}

.system-sub {
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 18px;
}

.price-table {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-collapse: collapse;
    border: 2px solid #ffffff;
}

.price-table th, .price-table td {
    border: 1px solid #ffffff;
    padding: 15px;
    font-size: 18px;
}

.price-table th {
    background-color: rgba(255,255,255,0.1);
    text-align: left;
    width: 50%;
}

.price-table td {
    text-align: right;
    font-weight: bold;
}

.tax-note {
    font-size: 14px;
    margin-top: 15px;
    opacity: 0.9;
}

/* ----------------------------------------------------------------
   TikTokエリア
---------------------------------------------------------------- */
.tiktok-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.tiktok-item {
    width: 320px;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    background: #000;
}

.tiktok-item iframe, 
.tiktok-item blockquote {
    width: 100% !important;
    margin: 0 !important;
    border: none !important;
}

/* ----------------------------------------------------------------
   ACCESSエリア（最終調整版）
---------------------------------------------------------------- */
.access-container {
    max-width: 600px;
    margin: 0 auto;
}

.access-map {
    margin-bottom: 30px;
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
}

.access-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

.access-info {
    text-align: left;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;          /* 行間はここで20pxに統一 */
    padding: 40px 30px; /* 上下左右の余白を固定 */
}

.access-item {
    margin: 0; /* 【修正】デフォルトのマージンを全て削除 */
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    line-height: 1.6;
}

.access-item .dashicons {
    color: #ffd700;
    font-size: 22px;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* ----------------------------------------------------------------
   求人ボタン
---------------------------------------------------------------- */
.recruit-btn {
    color: #ffd700;
    border: 1px solid #ffd700;
    padding: 15px 40px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-size: 18px;
    letter-spacing: 0.1em;
}

.recruit-btn:hover {
    background-color: #ffd700;
    color: #6a006a;
}

/* ----------------------------------------------------------------
   フッター
---------------------------------------------------------------- */
footer {
    padding: 40px 0;
    font-size: 14px;
    opacity: 0.7;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* ----------------------------------------------------------------
   求人ページ用スタイル
---------------------------------------------------------------- */
.recruit-hero {
    margin-bottom: 50px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.recruit-title {
    font-size: 36px;
    color: #ffd700;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.recruit-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.recruit-message-box {
    background-color: rgba(255,255,255,0.05);
    padding: 40px;
    margin-bottom: 60px;
    border-radius: 8px;
    line-height: 2.2;
}

.recruit-message-box h3 {
    color: #eab8e2;
    font-size: 22px;
    margin-bottom: 30px;
}

/* 募集要項テーブル */
.recruit-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    text-align: left;
}

.recruit-table th, .recruit-table td {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    vertical-align: top;
}

.recruit-table th {
    width: 30%;
    color: #eab8e2;
    font-weight: bold;
}

/* LINEボタン */
.line-btn {
    background-color: #06c755;
    color: #fff;
    padding: 15px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.4);
    transition: transform 0.2s;
}

.line-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.6);
}

/* 電話番号の表示制御 */
.tel-container {
    margin-bottom: 40px;
    padding: 30px;
    border: 1px dashed rgba(255,255,255,0.3);
    display: inline-block;
    min-width: 300px;
}

.tel-label {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.tel-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Noto Serif JP', serif;
    line-height: 1.0;
    transition: opacity 0.3s;
}

.tel-icon {
    font-size: 1.0em;
    width: auto;
    height: auto;
    margin-top: 4px;
}

.tel-note {
    font-size: 13px;
    margin-top: 10px;
    opacity: 0.8;
    letter-spacing: 0.05em;
}

/* ----------------------------------------------------------------
   スマホ対応（レスポンシブ）
---------------------------------------------------------------- */
@media (max-width: 768px) {
    /* システム表 */
    .price-table th, .price-table td {
        font-size: 16px;
        padding: 10px;
    }
    
    /* 店内写真 */
    .concept-img-item {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    /* TikTok */
    .tiktok-grid {
        flex-direction: column;
        gap: 40px;
    }

    /* 募集要項 */
    .recruit-table th, .recruit-table td {
        display: block;
        width: 100%;
        padding: 10px 0;
    }
    .recruit-table th {
        border-bottom: none;
        margin-top: 15px;
        font-size: 14px;
        opacity: 0.8;
    }

    /* 電話番号リンク有効化 */
    .tel-link {
        color: #ffd700;
        cursor: pointer;
        font-size: 26px;
    }
    .tel-container {
        width: 90%;
        padding: 20px;
    }
}

/* PCのみのスタイル */
@media (min-width: 769px) {
    /* 電話番号クリック無効化 */
    .tel-link {
        pointer-events: none;
        cursor: default;
    }
}

/* ----------------------------------------------------------------
   フッター（修正版）
---------------------------------------------------------------- */
footer {
    padding: 60px 0 40px;
    font-size: 14px;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

/* SNSアイコンエリア */
.footer-sns-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.sns-icon {
    color: #fff;
    width: 32px;
    height: 32px;
    transition: transform 0.3s, color 0.3s;
    display: inline-block;
}

.sns-icon svg {
    width: 100%;
    height: 100%;
}

.sns-icon:hover {
    color: #ffd700; /* ホバー時に金色に */
    transform: scale(1.1);
}

/* コピーライト */
.footer-copyright {
    opacity: 0.7;
    margin: 0;
}

/* ----------------------------------------------------------------
   404ページ
---------------------------------------------------------------- */
.error-404-area {
    padding: 100px 0;
    min-height: 50vh; /* 画面の半分以上の高さを確保 */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.error-title {
    font-size: 100px;
    color: #ffd700;
    line-height: 1;
    margin: 0 0 20px 0;
    font-family: 'Noto Serif JP', serif;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    letter-spacing: 0.05em;
}

.error-message {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.8;
}

.error-sub {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 30px;
}

/* スマホ表示調整 */
@media (max-width: 768px) {
    .error-title {
        font-size: 80px;
    }
    .error-message {
        font-size: 18px;
    }
}