body {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 14px;
    margin: 0;
    padding: 20px;
    background-color: #dde6ed;
    color: #526d82;
}
.container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.profile-header {
    text-align: center;
    margin-bottom: 20px;
}
.profile-header img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}
.profile-header h1 {
    margin: 10px 0;
    color: #9db2bf;
}
.social-link {
    text-align: center;
    margin-bottom: 20px;
}
.social-link a {
    display: inline-block;
    margin: 0 5px;
}
.intro {
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.8;
}
.section {
    margin-bottom: 40px;
}
.section h2 {
    color: #9db2bf;
    border-bottom: 2px solid #9db2bf;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 18px;
}
.section p {
    line-height: 1.8;
    margin: 10px 0;
}
.section ul {
    line-height: 1.8;
    padding-left: 20px;
}
.section ul li {
    margin: 8px 0;
}
.status-update {
    text-align: right;
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}
.status-list {
    background-color: #f9f9f9;
    padding: 15px 20px;
    border-radius: 15px;
    margin: 15px 0;
}
.status-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}
.status-table th,
.status-table td {
    padding: 10px 8px;
    text-align: center;
    border-bottom: 1px solid #dde6ed;
}
.status-table th {
    background-color: #f0f4f8;
    color: #9db2bf;
    font-weight: bold;
    white-space: nowrap;
    width: 70px;
}
.status-table tr:last-child td,
.status-table tr:last-child th {
    border-bottom: none;
}
.status-available {
    color: #e74c3c;
    font-weight: bold;
}
.status-unavailable {
    color: #27536b;
    font-weight: bold;
}
.status-pending {
    color: #f39c12;
    font-weight: bold;
}
.status-item {
    margin: 8px 0;
    display: flex;
    align-items: center;
}
.status-item span {
    margin-right: 10px;
    font-size: 18px;
}
.flow-step {
    background-color: #f9f9f9;
    padding: 20px 20px 20px 70px;
    border-radius: 15px;
    margin: 15px 0;
    position: relative;
}
.flow-step::before {
    content: attr(data-step);
    position: absolute;
    left: 20px;
    top: 20px;
    background: linear-gradient(135deg, #9db2bf 0%, #7a98a8 100%);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
.flow-step::after {
    content: '';
    position: absolute;
    left: 37px;
    top: 60px;
    width: 2px;
    height: calc(100% + 15px);
    background-color: #dde6ed;
}
.flow-step:last-of-type::after {
    display: none;
}
.flow-step-title {
    font-weight: bold;
    color: #526d82;
    margin-bottom: 10px;
    font-size: 16px;
}
.info-box {
    background-color: #f0f4f8;
    padding: 15px;
    border-radius: 15px;
    margin: 15px 0;
    border-left: 4px solid #9db2bf;
}
.note {
    font-size: 13px;
    color: #777;
    margin-top: 8px;
}
.important {
    background-color: #f5f5f5;
    border-left-color: #ccc;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}
.gallery img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}
.gallery img:hover {
    transform: scale(1.05);
    cursor: pointer;
}

/* モーダル（画像拡大表示用） */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.modal.active {
    opacity: 1;
}
.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transform: scale(0.5);
    transition: transform 0.4s ease;
}
.modal.active .modal-content {
    transform: scale(1);
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #9db2bf;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
}
.modal-close:hover {
    color: #526d82;
}

/* モバイル対応 */
@media screen and (max-width: 600px) {
    body {
        padding: 15px;
    }
    .container {
        padding: 25px 20px;
        border-radius: 20px;
    }
    .section {
        margin-bottom: 35px;
    }
    .flow-step {
        padding: 15px 15px 15px 60px;
    }
    .flow-step::before {
        left: 15px;
        width: 32px;
        height: 32px;
        font-size: 15px;
    }
    .flow-step::after {
        left: 31px;
    }
    .info-box {
        padding: 12px;
    }
    .profile-header img {
        width: 90px;
        height: 90px;
    }
}
