.page-profile {
    padding: 60px 0;
}

.profile-container,
.profile-body,
.profile-lifestyle,
.profile-country,
.profile-request {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

.profile-container {
    top: 120px;
    background: #fff;
}

.profile-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

.profile-title::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #e60012;
    position: absolute;
    bottom: -8px;
    left: 0;
}

.profile-top {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.profile-image img {
    width: 260px;
    height: 340px;
    object-fit: cover;
    border-radius: 12px;
}

.profile-info {
    flex: 1;
}

.profile-role {
    font-size: 14px;
    color: #888;
    margin-bottom: 6px;
}

.profile-name {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.profile-message {
    background: #FEF2F2;
    padding: 20px 24px;
    border-left: 3px solid #e60012;
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 17px;
    color: #314158;
}

.profile-meta {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.meta-row {
    display: flex;
    margin-bottom: 10px;
    font-size: 14px;
}

.meta-label {
    width: 80px;
    color: #45556C;
}

.meta-value {
    flex: 1;
}

.highlight {
    color: #ff0015;
    font-weight: bold;
}

.big {
    font-size: 30px;
}

.profile-body {
    max-width: 720px;
    margin: 120px auto;
    padding: 0 40px;
    position: relative;
    letter-spacing: 5px;
}

.story-block {
    font-size: 20px;

    opacity: 0;
    transform: translateY(40px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;

    margin: 120px 0;

}

.story-block.is-active {

    opacity: 1;
    transform: none;

}

.profile-section {
    padding: 50px 0;
    border-top: 1px solid #eaeaea;
}

.profile-section:first-child {
    border-top: none;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 600;
}

.section-title img {
    width: 22px;
    height: 22px;
}

.section-title.red {
    color: #e60012;
}

.profile-section p {
    line-height: 2;
    margin-bottom: 20px;
    font-size: 14px;
    color: #444;
}

.profile-lifestyle {
    margin-top: 100px;
}

.life-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.life-row:nth-child(even) {
    flex-direction: row-reverse;
}

.life-row.reverse {
    flex-direction: row-reverse;
}

.life-text {
    flex: 1;
}

.life-text h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.life-text p {
    line-height: 1.9;
    color: #555;
}

.life-image {
    flex: 1;
}

.life-image img {
    width: 100%;
    border-radius: 16px;
}

.profile-country {
    margin-top: 120px;
    padding-top: 60px;
    border-top: 1px solid #eee;
}

.country-tags {
    margin-top: 30px;
}

.country-tags span {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid #ddd;
    border-radius: 30px;
    margin: 8px 10px 0 0;
    font-size: 14px;
}

.profile-request {
    margin-top: 120px;
    padding-top: 60px;
    border-top: 1px solid #eee;
}

.request-card {
    background: linear-gradient(135deg,
            #fdeded 0%,
            #fff8f8 100%);
    border: 1px solid #f4caca;
    padding: 22px 26px;
    border-radius: 14px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: 0.3s;
}

.request-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(230, 0, 18, 0.08);
}

.request-card .num {
    background: #e60012;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* ===============================
スマホ対応
=============================== */

@media screen and (max-width:768px) {
    .profile-container,
    .profile-body,
    .profile-lifestyle,
    .profile-country,
    .profile-request {
        padding: 0 20px;
    }

    .profile-top {
        flex-direction: column;
        gap: 25px;
        align-items: center;
        text-align: center;
    }

    .profile-image img {
        width: 180px;
        height: 230px;
    }

    .profile-name {
        font-size: 22px;
    }

    .profile-message {
        font-size: 15px;
        padding: 18px;
    }

    .meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .meta-label {
        width: auto;
        font-weight: 600;
    }

    .profile-body {
        margin: 80px auto;
        letter-spacing: 2px;
    }

    .story-block {
        margin: 80px 0;
        font-size: 15px;
    }

    .big {
        font-size: 20px;
    }

    .section-title {
        font-size: 18px;
    }

    .life-row {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 60px;
    }

    .life-row:nth-child(even) {
        flex-direction: column;
    }

    .life-image img {
        border-radius: 12px;
    }

    .country-tags span {
        font-size: 13px;
        padding: 6px 14px;
    }

    .request-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 18px;
    }

    .request-card .num {
        width: 24px;
        height: 24px;
        font-size: 13px;
    }
}