@charset "UTF-8";

/* ==========================================================================
   Guide Page Styles
   撮影機材・衣装・ペット同伴に関するお願い
   ========================================================================== */

/* -----------------------------------------------------------------------
   Shared Section Layout
   ----------------------------------------------------------------------- */

.guide-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.guide-section--alt {
    background-color: #fcfaf7;
}

/* -----------------------------------------------------------------------
   Intro Section
   ----------------------------------------------------------------------- */

.guide-intro {
    background-color: #fff;
    padding-top: 100px;
    padding-bottom: 80px;
    text-align: center;
}

.guide-main-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    color: #333;
}

.guide-main-title::before,
.guide-main-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    background-color: #333;
}

.guide-main-title .ja {
    font-size: 2.0rem;
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
    color: #333;
}

.guide-intro-text {
    font-size: 1rem;
    line-height: 2.0;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

/* -----------------------------------------------------------------------
   Section Titles (〔 〕スタイル)
   ----------------------------------------------------------------------- */

.guide-section-title {
    font-size: 1.8rem;
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
    color: #333;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 1px solid #c9b77a;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

/* -----------------------------------------------------------------------
   Guide List (ルール箇条書き)
   ----------------------------------------------------------------------- */

.guide-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
    max-width: 860px;
}

.guide-list li {
    position: relative;
    padding-left: 1.6em;
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.9;
    color: #333;
}

.guide-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #997c22;
    font-size: 0.75em;
    top: 0.25em;
}

.guide-list__note {
    font-size: 0.9em;
    color: #666;
}

/* -----------------------------------------------------------------------
   Notice Box (※注意書き)
   ----------------------------------------------------------------------- */

.guide-notice-box {
    max-width: 860px;
    margin: 30px auto 0;
    padding: 20px 25px;
    border-left: 3px solid #c9b77a;
    background-color: #faf7ef;
}

.guide-notice-box p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin: 0 0 8px;
}

.guide-notice-box p:last-child {
    margin-bottom: 0;
}

/* -----------------------------------------------------------------------
   Dress Section Table
   ----------------------------------------------------------------------- */

.guide-dress-lead {
    font-family: "Zen Old Mincho", serif;
    font-size: 1.1rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.guide-dress-table-wrapper {
    max-width: 500px;
    margin: 0 auto 30px;
}

.guide-dress-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #333;
    font-family: "Zen Old Mincho", serif;
}

.guide-dress-table th,
.guide-dress-table td {
    border: 1px solid #333;
    padding: 18px 24px;
    text-align: center;
    vertical-align: middle;
}

.guide-dress-table th {
    background-color: #997c22;
    color: #fff;
    font-weight: 500;
    width: 45%;
    font-size: 1.2rem;
}

.guide-dress-table td {
    background-color: #fff;
    color: #333;
    font-size: 1.4rem;
    font-weight: 500;
}

/* -----------------------------------------------------------------------
   Prohibited Section
   ----------------------------------------------------------------------- */

.guide-prohibited {
    background-color: #fff;
}

.guide-prohibited-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
    max-width: 860px;
}

.guide-prohibited-list li {
    position: relative;
    padding: 14px 14px 14px 50px;
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.7;
    font-family: "Zen Old Mincho", serif;
    background-color: #faf7ef;
    border-left: 4px solid #997c22;
}

.guide-prohibited-list li::before {
    content: "×";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #997c22;
    font-size: 1.1em;
    font-weight: bold;
}

.guide-prohibited-note {
    max-width: 860px;
    margin: 0 auto;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
}

/* -----------------------------------------------------------------------
   Procedure Section
   ----------------------------------------------------------------------- */

.guide-procedure-text {
    font-size: 1rem;
    line-height: 2.0;
    color: #333;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

/* -----------------------------------------------------------------------
   Closing Section
   ----------------------------------------------------------------------- */

.guide-closing {
    background-color: #f5f0e6;
    padding-top: 100px;
    padding-bottom: 120px;
    text-align: center;
}

.guide-closing-text {
    font-family: "Zen Old Mincho", serif;
    font-size: 1.1rem;
    line-height: 2.2;
    color: #444;
    margin-bottom: 50px;
}

/* -----------------------------------------------------------------------
   Responsive
   ----------------------------------------------------------------------- */

@media (max-width: 768px) {
    .guide-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .guide-intro {
        padding-top: 70px;
        padding-bottom: 60px;
    }

    .guide-main-title .ja {
        font-size: 1.5rem;
    }

    .guide-main-title::before,
    .guide-main-title::after {
        width: 30px;
    }

    .guide-section-title {
        font-size: 1.4rem;
    }

    .guide-dress-table th,
    .guide-dress-table td {
        display: block;
        width: 100%;
    }

    .guide-dress-table th {
        font-size: 1rem;
    }

    .guide-dress-table td {
        font-size: 1.2rem;
    }

    .guide-closing {
        padding-top: 70px;
        padding-bottom: 80px;
    }

    .guide-closing-text {
        font-size: 1rem;
    }
}
