@charset "UTF-8";


/* -------------------------------------------
   Menu & Price Page 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;
}

/* Service Category Block */
.service-block {
    background-color: #fff;
    border-radius: 30px;
    padding: 50px 30px;
    margin-bottom: 60px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 2px solid #fff;
}
.service-block.city-support {
    border-color: #e8a798; /* ピンクの枠線で強調 */
    position: relative;
}
/* 公費マーク */
.official-mark {
    position: absolute;
    top: -15px;
    left: 30px;
    background-color: #e8a798;
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.block-title {
    font-size: 1.6rem;
    color: #5a4a42;
    margin-bottom: 30px;
    border-bottom: 2px dashed #eaddd3;
    padding-bottom: 10px;
    display: inline-block;
}

.service-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
@media (min-width: 768px) {
    .service-content { flex-direction: row; }
}

.service-desc { flex: 1; }
.service-desc h3 { font-size: 1.2rem; margin-bottom: 15px; color: #e8a798; }
.service-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}
.service-list li::before {
    content: "✔";
    color: #e8a798;
    position: absolute;
    left: 0;
}

/* Price Table */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #fcf9f4;
    border-radius: 10px;
    overflow: hidden;
}
.price-table th, .price-table td {
    padding: 15px;
    border-bottom: 1px solid #eaddd3;
    text-align: left;
}
.price-table th {
    background-color: #eaddd3;
    color: #5a4a42;
    font-weight: normal;
    width: 40%;
}
@media (max-width: 767px) {
    .price-table th {
        width: 56%;
    }
}


.price-table td { font-weight: bold; }
.note { font-size: 0.85rem; color: #888; margin-top: 10px; }

/* City Service Flow */
.city-flow {
    margin-top: 40px;
    padding: 30px;
    background-color: #fcf9f4;
    border-radius: 20px;
}
.city-flow h4 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.flow-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
@media (min-width: 768px) {
    .flow-steps { flex-direction: row; justify-content: space-between; }
}
.step-item {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    position: relative;
    border: 1px solid #eaddd3;
}
@media (min-width: 768px) {
    .step-item:not(:last-child)::after {
        content: "▶";
        position: absolute;
        right: -20px;
        top: 50%;
        transform: translateY(-50%);
        color: #e8a798;
    }
}
.step-num {
    display: block;
    font-weight: bold;
    color: #e8a798;
    margin-bottom: 5px;
}