/* aboutページ共通スタイル */
body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #f8fafc;
    margin: 0;
    padding: 40px 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #fdeefb;
}

header h1 {
    color: #000000;
    font-size: 1.6rem;
    text-align: center;
    border-bottom: 2px solid #fdeefb;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

main section {
    margin-bottom: 30px;
}

main h2 {
    font-size: 1.2rem;
    color: #333;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

main h2::before {
    content: "";
    width: 5px;
    height: 1.2em;
    background: #f10ae6;
    margin-right: 12px;
    border-radius: 3px;
}

main p {
    font-size: 0.95rem;
    color: #475569;
    margin: 0 0 15px 0;
}

footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px dashed #fdeefb;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.back-button {
    display: inline-block;
    color: #f10ae6;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #f10ae6;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: #f10ae6;
    color: #ffffff;
    transform: translateY(-2px);
}

/* お問い合わせ等のリンク用（囲いを削除） */
.info-box {
    background: none;
    /* 背景色を消す */
    padding: 0;
    /* 余白をリセット */
    border-radius: 0;
    /* 角丸をリセット */
    text-align: center;
    /* ボタンを中央に置く */
    border: none;
    /* 枠線を消す */
}