/* ========================================
   基本スタイル
   ======================================== */

/* 背景色をアースグリーンに設定 */
body {
    background-color: #e8f0e2 !important; /* 淡いアースグリーン（元のカード色） */
}

/* ========================================
   レイアウト・コンテナ
   ======================================== */

/* レスポンシブコンテナ */
.custom-container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}

/* カード */
.card {
    background-color: #f4f8f1 !important; /* より淡いアースグリーン */
}

/* ========================================
   共通コンポーネント
   ======================================== */

/* プロフィール画像 */
.profile-img {
    width: 150px !important;
    height: 150px !important;
    object-fit: cover;
    border-color: #000 !important;
}

.rounded-circle {
    background-color: #f4f8f1 !important; /* カードと同じ色 */
}

/* ナビゲーションボタン */
#nav .btn {
    background-color: #ffffff !important; /* 白背景 */
    transition: all 0.3s ease; /* スムーズなトランジション */
}

#nav .btn:hover {
    background-color: #000000 !important; /* 黒背景 */
    color: #ffffff !important; /* 白文字 */
    border-color: #000000 !important; /* 黒枠線 */
    transform: translateY(-2px); /* 少し浮き上がる効果 */
}

/* SNSボタン */
.social-btn {
    background-color: transparent !important;
    border: none !important;
    color: #6c757d !important;
    transition: all 0.3s ease;
    width: 42px !important;
    height: 42px !important;
    font-size: 1.1rem !important;
}

.social-btn:hover {
    background-color: #000 !important;
    color: #fff !important;
    transform: translateY(-2px);
}

/* ========================================
   ページ固有のスタイル
   ======================================== */

/* プロフィールセクション */
#profile p {
    text-indent: 1.5em;
}

/* セクションブロック（Private Room等） */
.section-block {
    margin-bottom: 2rem;
}

.section-block h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    border-left: 4px solid #6c757d;
    background-color: #eef4ea;
    color: #333;
}

.section-block h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    margin-left: 0.75rem;
    padding-left: 1.5rem;
    background-color: #eef4ea;
    color: #495057;
    border-left: 3px solid #adb5bd;
}

.section-block h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    margin-left: 1.5rem;
    padding-left: 1.5rem;
    background-color: #eef4ea;
    color: #6c757d;
    border-left: 2px solid #ced4da;
}

.section-block p {
    margin-left: 4.5rem;
}

.section-block dl {
    margin-left: 4.5rem;
}

/* トピックセクション（Studio等） */
.topic-title {
    border-bottom: 3px solid #333 !important;
}

h2.topic-title {
    border-bottom: 3px solid #333 !important;
}

.topic-image {
    width: 80% !important;
    max-width: 100% !important;
}

/* ========================================
   レスポンシブデザイン
   ======================================== */

/* タブレット: iPad等 (768px~1199px) */
@media (min-width: 768px) and (max-width: 1199.98px) {
    .custom-container {
        max-width: 720px;
    }
}

/* PC: デスクトップ (1200px~) */
@media (min-width: 1200px) {
    .custom-container {
        max-width: 960px;
    }
}

/* モバイル: ~768px */
@media (max-width: 768px) {
    .topic-section .ms-3 {
        margin-left: 1rem;
    }

    .topic-section .ps-5 {
        padding-left: 2rem;
    }
}

/* モバイル: ~767.98px */
@media (max-width: 767.98px) {
    .custom-container {
        max-width: none;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .card-body {
        padding: 2rem 1.5rem !important;
    }

    #profile p {
        text-indent: 1em;
        font-size: 0.95rem;
    }

    .social-btn {
        width: 38px !important;
        height: 38px !important;
        font-size: 1rem !important;
    }

    /* セクションブロック */
    .section-block h2 {
        padding-left: 1rem;
        border-left-width: 3px;
    }

    .section-block h3 {
        font-size: 1.1rem;
        margin-left: 0.5rem;
        padding-left: 1rem;
        border-left-width: 2px;
    }

    .section-block h4 {
        font-size: 1rem;
        margin-left: 1rem;
        padding-left: 1rem;
        border-left-width: 2px;
    }

    .section-block p,
    .section-block dl {
        margin-left: 3rem;
    }

    /* トピックセクション */
    .topic-section {
        margin-left: 0.5rem !important;
    }

    .topic-section .ps-5 {
        padding-left: 1.5rem !important;
    }

    .topic-image {
        width: 95% !important;
    }
}

/* モバイル: ~576px */
@media (max-width: 576px) {
    .container {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }

    .card-body {
        padding: 2rem 1.5rem !important;
    }

    #profile p {
        text-indent: 1em;
        font-size: 0.95rem;
    }

    .social-btn {
        width: 38px !important;
        height: 38px !important;
        font-size: 1rem !important;
    }

    .topic-section .ms-3 {
        margin-left: 0.5rem;
    }

    .topic-section .ps-5 {
        padding-left: 1rem;
    }

    .topic-image {
        width: 90%;
    }
}
