@charset "UTF-8";

/* 全体のリセットスタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
}

/* レスポンシブを考慮しない基本レイアウト */
.container {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

.header {
    text-align: center;
    padding: 20px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    line-height: 1.5;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

/* ボタンスタイル */
.btn {
    display: inline-block;
    padding: 12px 20px;
    background-color: #F087A9;
    color: white;
    text-align: center;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    margin-top: 10px;
}

.btn:hover {
    background-color: #d76a89;
}

/* セクションのスタイル */
.section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 22px;
    font-weight: 600;
    color: #8A616F;
    margin-bottom: 10px;
}

.section-content {
    font-size





