/* サロンオーナー紹介 */
.owner {
    padding: 140px 0;
    background-color: #faf9f6;
    /* ごく薄いベージュで温かみを */
    position: relative;
    overflow: hidden;
}

/* 背景のあしらい（光のような柔らかい円） */
.owner::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 220, 210, 0.4) 0%, rgba(250, 249, 246, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.owner::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 220, 210, 0.4) 0%, rgba(250, 249, 246, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.owner .container {
    position: relative;
    z-index: 1;
}

.owner-content {
    display: flex;
    align-items: center;
    gap: 100px;
    /* 余白を広げてゆったりと */
    max-width: 1000px;
    margin: 0 auto;
}

.owner-image {
    flex: 1;
    position: relative;
}

/* 画像の装飾枠 */
.owner-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 1px solid #d5d0c8;
    z-index: -1;
    transition: transform 0.5s ease;
}

.owner:hover .owner-image::before {
    transform: translate(5px, 5px);
}

.owner-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* 柔らかい影 */
}

.owner-text {
    flex: 1.2;
}

.owner-name {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 40px;
    letter-spacing: 0.15em;
    color: #4a3f35;
    display: inline-block;
    position: relative;
}

/* 名前の横の装飾線 */
.owner-name::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: #8c7b6c;
}

.owner-text p {
    font-size: 1.05rem;
    line-height: 2.4;
    /* 行間を少し広げて読みやすく */
    margin-bottom: 30px;
    letter-spacing: 0.08em;
    color: #5a5a5a;
}

.owner-text p:last-child {
    margin-bottom: 0;
}

/* 経歴・資格のスタイル */
.owner-career {
    font-size: 0.85rem !important;
    /* 小さく */
    color: #888 !important;
    margin-top: 40px;
    line-height: 1.8 !important;
    letter-spacing: 0.05em;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .owner {
        padding: 100px 0;
    }

    .owner-content {
        flex-direction: column;
        gap: 60px;
    }

    .owner-image {
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

    .owner-image::before {
        top: 15px;
        left: 15px;
    }

    .owner-text {
        text-align: left;
        /* スマホでも左揃えの方が落ち着く場合が多いが、中央揃えにするか？一旦左で */
        padding: 0 20px;
    }

    .owner-name {
        font-size: 1.4rem;
        margin-bottom: 30px;
        display: block;
    }
}