/* 上野クリニック紹介部分のみに影響するよう限定的なセレクタを使用 */
.section_00 .box01 {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px 30px;
    max-width: 580px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* 見出しのスタイリング */
.section_00 .box01 h2 {
    color: #2155c4;
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

/* リストのスタイリング - 左揃えを維持 */
.section_00 .box01 ul {
    list-style: none;
    padding: 0;
    margin: 0 auto 20px;
    width: fit-content;
}

/* リスト項目のスタイリング */
.section_00 .box01 ul li {
    position: relative;
    padding: 10px 5px 5px 40px;
    margin-bottom: 0px;
    font-size: 18px;
    line-height: 1.5;
}

/* チェックマークの円形背景 */
.section_00 .box01 ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: #2861e1;
    border-radius: 50%;
}

/* チェックマークの✓記号 */
.section_00 .box01 ul li:after {
    content: "✓";
    position: absolute;
    left: 9px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 16px;
    font-weight: bold;
}

/* 全国15院の部分 */
.section_00 .box01 .pgh_00 {
    text-align: center;
    margin: 25px 0;
    font-size: 18px;
}

/* 無料相談ボタン */
.section_00 .box01 .pgh_00 a {
    display: block;
    background-color: #f9d100;
    color: #000000;
    text-decoration: none;
    padding: 18px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 20px;
    transition: background-color 0.3s;
}

/* 注釈部分 */
.section_00 .box01 .pgh_00:last-child {
    font-size: 14px;
    color: #666;
    margin-top: 25px;
}

.section_00 {
    text-align: center;
    margin: 20px auto;
    max-width: 580px;
}

/* リスト項目のテキストを左揃えに戻す */
.section_00 .box01 ul li {
    text-align: left;
}

/* チェックマークの絵文字を削除するためのリセット */
.section_00 .box01 ul li {
    position: relative;
}

/* 無料相談ボタンをコンパクトに、立体感を出す */
.section_00 .box01 .pgh_00 a {
    display: inline-block;
    width: 80%;
    max-width: 400px;
    background: linear-gradient(to bottom, #ffde59, #f9d100);
    color: #9c2392;
    text-decoration: none;
    padding: 16px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 20px;
    transition: all 0.3s;
    box-shadow: 0 4px 0 #d9b500, 0 5px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* ホバー時のエフェクト */
.section_00 .box01 .pgh_00 a:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #d9b500, 0 3px 3px rgba(0, 0, 0, 0.2);
}

/* キラキラアニメーション */
@keyframes shine {
    0% {
        left: -50%;
        top: -50%;
    }

    25% {
        left: 120%;
        top: -50%;
    }

    50% {
        left: 120%;
        top: 120%;
    }

    75% {
        left: -50%;
        top: 120%;
    }

    100% {
        left: -50%;
        top: -50%;
    }
}

/* ボタンにアクセント - 強調するテキストカラー */
.section_00 .box01 .pgh_00 a {
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
}

.hero-image-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero-image {
    display: block;
    width: 130%;
    /* 両端15%ずつ広げる */
    max-width: 130%;
    
    /* 左側を15%ずらす */
    height: auto;
    /* 縦横比を維持 */
}

/* 段落のマージン設定 */
div#ContentsBody p.content_paragraph {
    margin: 10px 20px 0px 20px !important;
}

/* 段落のマージン設定 */
div#ContentsBody p.pgh_00 {
    margin: 10px 20px 0px 20px !important;
}

/* 手術料金表のスタイル */
.price_table {
    /* 固定レイアウトにして列幅をコントロール */
    table-layout: fixed !important;
    width: 100%;
    border-collapse: collapse;
}

.price_table th,
.price_table td {
    /* テーブルセル表示を強制 */
    display: table-cell !important;
    border: 1px solid #ccc;
    padding: 8px;
}

.price_table th {
    /* ヘッダーは中央揃え */
    text-align: center !important;
}

.price_table td:nth-child(1) {
    /* １列目は左揃え */
    text-align: left !important;
}

.price_table td:nth-child(2) {
    /* ２列目は中央揃え */
    text-align: center !important;
}

/* １列目を70%、２列目を30%に */
.price_table th:nth-child(1),
.price_table td:nth-child(1) {
    width: 70% !important;
}

.price_table th:nth-child(2),
.price_table td:nth-child(2) {
    width: 30% !important;
}

/* セクションと見出しのスタイル */
.section_01 {
    margin-bottom: 30px;
}

.title-01 {
    margin-bottom: 15px;
}

.title-01 h2 {
    font-size: 1.5em;
    border-bottom: 2px solid #333;
    padding-bottom: 5px;
}