@charset "UTF-8";


/* -------------------------------------------
   Page Specific Styles
------------------------------------------- */

/* Page Header */
.page-header {
    background-color: #fdf2f0;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 60px;
}
.page-header h1 {
    font-size: 1.8rem;
    color: #5a4a42;
    margin-bottom: 10px;
}
.page-header span {
    color: #e8a798;
    font-size: 1rem;
    font-weight: normal;
    letter-spacing: 0.1em;
}

/* Flow Section */
.flow-container {
    max-width: 800px;
    margin: 0 auto 80px;
}
.flow-title {
    font-size: 1.5rem;
    color: #5a4a42;
    margin-bottom: 30px;
    border-left: 5px solid #e8a798;
    padding-left: 15px;
}
.flow-list {
    position: relative;
    padding-left: 20px;
}
.flow-list::before {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 29px; /* 丸の中心を通る線 */
    width: 2px;
    background-color: #eaddd3;
    z-index: 0;
}
.flow-step {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    z-index: 1;
}
.step-number {
    position: absolute;
    top: -15px;
    left: -35px;
    width: 50px;
    height: 50px;
    background-color: #e8a798;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    border: 4px solid #fcf9f4; /* 背景色と同じ枠線で浮き上がらせる */
}
.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #e8a798;
}
.step-content p {
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    background-color: #fff;
    padding: 60px 20px;
    border-radius: 50px 50px 0 0;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px dashed #eaddd3;
    padding: 25px 0;
}
.faq-question {
    font-weight: bold;
    color: #5a4a42;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.faq-question::before {
    content: "Q";
    position: absolute;
    left: 0;
    color: #e8a798;
    font-size: 1.2rem;
    font-weight: bold;
}
.faq-answer {
    padding-left: 30px;
    position: relative;
    color: #666;
}
.faq-answer::before {
    content: "A";
    position: absolute;
    left: 0;
    color: #99cc99; /* やさしい緑 */
    font-weight: bold;
}
