/* リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 本文フォント */
body {
    font-family: 'Hiragino Maru Gothic Pro', 'メイリオ', sans-serif;
    background-color: #f2f7f0;
    color: #333;
    line-height: 1.6;
}

/* ヘッダー */
header {
    background-color: #4a7c59;
    padding: 10px 20px;
    color: #fff;
    font-weight: bold;
    font-size: 1.5em;
    display: flex;
    justify-content: center; /* ロゴ+リンク中央 */
    position: relative;
}



/* SNSリンクを右上に配置 */
.header-sns {
    position: absolute;
    top: 10px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.header-sns img {
    width: 30px;
    height: 30px;
}

/* Home/Price/Flow ボタン */
.link-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.link-buttons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    border-radius: 6px;
    background-color: #a6d0a8;
    color: #2e5d3c;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s;
}

.link-buttons a:hover {
    background-color: #8bc190;
}

/* コンテナ */
.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffffcc;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

h1, h2, h3 {
    margin-bottom: 10px;
    color: #2e5d3c;
}

p {
    margin-bottom: 10px;
}

ul, ol {
    margin-bottom: 15px;
    padding-left: 20px;
}

/* Mix依頼ボタン */
.button {
    display: inline-block;
    background-color: #4a7c59;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    margin: 10px 0;
    transition: 0.2s;
    text-decoration: none;
}

.button:hover {
    background-color: #3b6045;
}

/* レスポンシブ */
@media (max-width: 600px) {
    .container {
        margin: 10px;
        padding: 15px;
    }
    .header-sns {
        flex-direction: row;
        top: 5px;
        right: 10px;
    }
}

.left-text {
  text-align: left;
  list-style-position: inside; /* 箇条書きマークを内側に */
  margin-left: 0;
  padding-left: 0;
}
.left-text li {
  margin-bottom: 5px;
}
