* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'メイリオ', sans-serif;
}

body {
    background-color: #fff;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: none;
}

h1 {
    text-align: center;
    margin: 80px auto 40px;
    color: #333;
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 0.05em;
    font-family: 'Hiragino Kaku Gothic Pro', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'メイリオ', sans-serif;
    width: 100%;
    max-width: 900px;
}

.p-page_header__inner_title {
    text-align: center;
    padding: 0;
    margin: 80px auto 40px;
    font-weight: normal;
    display: block;
    position: relative;
}

.u-text--head {
    font-family: 'Hiragino Kaku Gothic Pro', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ Pro', 'メイリオ', Meiryo, 'MS Pゴシック', sans-serif;
    color: #333;
}

/* 追加のユーティリティクラス */
.u-margin__top--60 {
    margin-top: 10px;
}

.l-container__row {
    display: block;
    width: 100%;
}

.step {
    margin-bottom: 50px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    background-color: #fff;
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #80b745;
    padding-bottom: 10px;
}

.step-number {
    background-color: #80b745;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    margin-right: 15px;
}

.step-title {
    font-size: 20px;
    font-weight: bold;
}

.step-description {
    margin-bottom: 20px;
    font-size: 16px;
}

.image-container {
    text-align: center;
    margin-bottom: 20px;
}

.step-image {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.highlight {
    background-color: #FFF9E6;
    padding: 15px 15px 15px 25px;
    border-radius: 5px;
    margin-top: 20px;
    position: relative;
}

.highlight:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background-color: #FFC107;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.highlight-title {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.procedure-content {
    color: #333;
    font-size: 15px;
}

.procedure-steps {
    list-style-type: none;
    margin-left: 5px;
}

.procedure-steps li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.procedure-steps li {
    margin-bottom: 5px;
}

/* 注意事項セクション */
.notes-section {
    background-color: #F8F9FA;
    border: 2px solid #E9ECEF;
    border-radius: 10px;
    padding: 25px;
    margin-top: 5px;
}

/* 注意事項セクション内のstep-title用の追加スタイル - 高優先度 */
.notes-section h2.step-title {
    font-family: 'Hiragino Kaku Gothic Pro', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'メイリオ', sans-serif !important;
    font-size: 20px !important;
    font-weight: bold !important;
    color: #333 !important;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #80b745;
    padding-bottom: 10px;
}

.notes-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #FF6B6B;
}

.notes-list {
    list-style-type: none;
    margin-left: 0;
}

.notes-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    font-size: 15px;
    line-height: 1.6;
}

.notes-list li:before {
    content: "⚠";
    color: #FF6B6B;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.note {
    font-size: 14px;
    color: #666;
    background-color: #F2F7EC;
    border-radius: 4px;
    padding: 10px;
    margin: 15px 0;
    text-align: center;
}

.action-point {
    color: #E85C00;
    font-weight: bold;
    display: inline-block;
    margin: 10px 0;
}

.completion-message {
    background-color: #e8f5e9;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    margin: 20px 0 5px;
    font-size: 16px;
    color: #333;
}

.procedure-header {
    background-color: #FFF9E6;
    padding: 15px 15px 15px 25px;
    border-radius: 5px;
    margin-bottom: 30px;
    position: relative;
}

.procedure-header:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background-color: #FFC107;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.procedure-title {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.procedure-steps {
    list-style-type: none;
    margin-left: 5px;
}

.procedure-steps li {
    margin-bottom: 5px;
}
