:root {
    --bg-color: #fcf8ee;
    --main-text: #4a321b;
    --accent-red: #c0392b;
    --gold-btn: #d4a757;
    --white: #ffffff;
}

html{
    background-color: var(--bg-color);
}

#body {
    margin: 0;
    padding: 0 1em;
    background-color: var(--bg-color);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: var(--main-text);
    line-height: 1.8;
}

.lp-container {
    max-width: 780px; /* スマホ・タブレット閲覧を想定した幅 */
    margin: 0 auto;
    background-color: var(--bg-color);
    text-align: center;
    overflow: hidden;
}

.text-block {
    line-height: 2.5;
}

.point500 {
    background-color: #ffffff ;
    padding: 5px 0;
    border-radius: 15px;
    width: 80%;
    margin: 0 auto;
}

.point500 ul li {
    font-size: 1.5em;
    font-weight: bold;
    list-style-position: inside;
    text-align: right;
    display: grid;
    grid-template-columns: 40% 1fr;

}

.point500 ul {
    list-style-type: none;
    padding-left: 0;

}
.point-s {
    font-size: 0.7em;
}

.point-value {
    text-align: left;
}

.highlight-text {
    line-height: 2.5;
}
/* ヒーローセクション */
.hero {
    position: relative;
    padding-bottom: 20px;
}

.hero-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.hero-placeholder img {
    max-width: 100%;
    height: auto;
}

.crown-icon img {
width: 70px;
vertical-align: bottom;
}

.main-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 3.5rem;
    margin: 10px 0;
    line-height: 0.9;
    letter-spacing: 2px;
}

.main-title span {
    font-size: 2.8rem;
}



/* セクション共通 */
.section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 20px;
    margin-top: 0;
    display: inline-block;
    border-bottom: 1px dotted var(--main-text);
}

.section-title-sub p {
    display: inline-block;
    font-family: 'Noto Serif JP', serif;
    font-size: 2.2rem;
    font-weight: 600;

    margin-top: 20;
    border-bottom: 1px dotted var(--main-text);
}

/* ステップ表示 */
.steps-grid {
    display: flex;
    justify-content: space-around;
    padding: 0 10px;
    margin-bottom: 40px;
}

.step-item {
    flex: 1;
    position: relative;
}

.step-item img{
    width: 100px;
}

.step-num {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.5rem;
    font-weight: 900;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
    font-size: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.step-item p {
    font-size: 0.75rem;
    font-weight: bold;
}

.br{
    display: block;
}

/* ボタン */
.cta-button {
    display: inline-block;
    background-color: var(--gold-btn);
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 2.4rem;
    margin: 30px 0;
    box-shadow: 0 4px 0 #b38a42;
    transition: 0.2s;
}

.cta-button:active {
    transform: translateY(3px);
    box-shadow: none;
}


.voice-box {
    margin: 40px 20px;
    /* opacity: 0.8; */
    position: relative; /* 子要素（::before）の基準にする */
    z-index: 1;         /* 重なりの順序を整える */
    padding: 10px 20px; /* 画像と重なってもいいように上下余白を多めに */
}

.voice-a {
    font-family: 'FOT-筑紫A丸ゴシック Std',"Zen Maru Gothic","Hiragino Maru Gothic ProN","HG丸ｺﾞｼｯｸM-PRO","sans-serif";
    font-style: italic;
}

.footer-notes {
    padding: 20px 20px;
    border-top: 1px solid #ddd;
}

