@charset "UTF-8";
/* =========================================
   ベース設定 (guidelines専用)
   ========================================= */

/* =========================================
   コンテンツ
   ========================================= */
/* Hero Section */
.page-hero {
    padding-top: 200px;
    padding-bottom: 80px;
    text-align: center;
}

.hero-label {
    display: block;
    font-family: var(--font-gothic);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-title {
    font-family: var(--font-mincho);
    font-size: 3rem;
    line-height: 1.4;
    color: var(--text-color);
    margin-bottom: 40px;
}

/* Anchor Buttons */
.anchor-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.anchor-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    padding: 12px 0;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.anchor-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--text-color);
    z-index: -1;
    transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.anchor-btn:hover {
    color: #fff;
}

.anchor-btn:hover::after {
    width: 100%;
}

.anchor-btn i {
    margin-left: 8px;
    font-size: 0.8em;
}

.section-header-lg {
    text-align: center;
    margin-bottom: 80px;
    font-family: var(--font-mincho);
    font-size: 2rem;
    color: var(--accent-main);
    position: relative;
}

/* Flow Section (Timeline) */
.flow-section {
    margin-bottom: 150px;
}

.flow-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.flow-line {
    position: absolute;
    left: 15px;
    top: 20px;
    bottom: 50px;
    width: 1px;
    background: var(--accent-sub);
    z-index: 0;
}

.flow-step {
    position: relative;
    margin-bottom: 80px;
}

.step-marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 30px;
    height: 30px;
    background: #fff;
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--accent-gold);
    z-index: 1;
    font-family: var(--font-gothic);
}

.step-content {
    padding-left: 20px;
}

.step-date {
    display: inline-block;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    font-family: var(--font-gothic);
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 2px;
}

.step-title {
    font-family: var(--font-mincho);
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.step-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 2;
    background: #fafafa;
    padding: 25px;
    border-left: 3px solid var(--accent-sub);
}

.step-note {
    font-size: 0.85rem;
    color: #888;
    margin-top: 10px;
    display: block;
}

/* Requirements Table */
.req-section {
    margin-bottom: 150px;
}

.guideline-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.guideline-table th,
.guideline-table td {
    border-top: 1px solid var(--accent-sub);
    padding: 35px 20px;
    text-align: left;
    vertical-align: top;
}

.guideline-table tr:last-child {
    border-bottom: 1px solid var(--accent-sub);
}

.guideline-table th {
    width: 30%;
    color: var(--accent-main);
    font-family: var(--font-mincho);
    font-weight: 500;
    font-size: 1.1rem;
}

.guideline-table td {
    width: 70%;
    color: #444;
}

.guideline-list {
    padding-left: 0;
}

.guideline-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.guideline-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.address-box {
    margin-bottom: 20px;
}

.address-name {
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    color: #111;
}

.address-access {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

/* Entry Button Area */
.entry-area {
    text-align: center;
    padding: 80px 0;
    background: #fafafa;
}

.btn-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
}

@media (max-width: 768px) {
    .btn-wrap {
        justify-content: center;
        flex-direction: column;
        gap: 1em;
    }
}

.entry-btn {
    display: inline-block;
    width: 100%;
    height: 100%;
    background: var(--accent-main);
    color: #fff;
    padding: 20px 80px;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    transition: 0.4s;
    border: 1px solid var(--accent-main);
    position: relative;
    overflow: hidden;
}

.entry-btn strong {
    font-size: 1.3rem;
    font-weight: normal;
}

.entry-btn span {
    pointer-events: none;
}

.entry-btn:hover {
    background: #fff;
    color: var(--accent-main);
}

.entry-btn:nth-child(2) {
    background: var(--accent-darkgold);
    border: 1px solid var(--accent-darkgold);
}

.entry-btn:nth-child(2):hover {
    background: #fff;
    color: var(--accent-darkgold);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .flow-container {
        padding-left: 20px;
        margin-left: 10px;
    }

    .flow-line {
        left: 5px;
    }

    .step-marker {
        left: -10px;
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }

    .step-content {
        padding-left: 40px;
    }

    .step-title {
        font-size: 1.3rem;
    }

    .guideline-table th,
    .guideline-table td {
        display: block;
        width: 100%;
        padding: 15px 0;
        border: none;
    }

    .guideline-table th {
        padding-top: 30px;
        border-top: 1px solid var(--accent-sub);
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .guideline-table td {
        padding-bottom: 30px;
    }

    .entry-btn {
        width: 90%;
        padding: 20px 0;
    }
}