/* ==============================
   基本リセット
============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #38c1ac;
    background-image: radial-gradient(rgba(255,255,255,0.15) 15%, transparent 16%);
    background-size: 40px 40px;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Noto Serif JP', serif;
    color: #222;
}

a {
    text-decoration: none;
    color: #007bff;
}

ul {
    list-style: none;
}

/* ==============================
   LP全体のコンテナ
============================== */
.lp-container {
    max-width: 768px;
    margin: 0 auto;
    padding: 0px;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    border-bottom-left-radius: 50px;  /* 左下角 */
    border-bottom-right-radius: 50px; /* 右下角 */
}

/* ==============================
   ヒーローヘッダー
============================== */
.hero-header {
    text-align: center;
    padding: 0;
    margin: 0;
}

.hero-header img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    display: block;
}

.hero-header .section-title {
    font-size: 2em;
    margin: 15px 0 10px;
    color: #222;
}

.hero-header p {
    font-size: 1.2em;
    margin: 15px;
}

.hero-header .btn {
    display: inline-block;
    margin-top: 10px;
}

.btn.primary-btn {
    background: linear-gradient(45deg, #38c1ac, #A08860);
    color: #fff;
    border: none;
    font-size: 1.2em;
    padding: 15px 30px;
    border-radius: 50px; /* 丸めて可愛く */
    font-weight: bold;
}


/* ==============================
   セクション共通
============================== */
.section {
    padding: 30px 20px;
    text-align: center;
}

.section img {
    width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 8px;
}

.section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.hero-header {
    padding: 0; /* 上下左右の余白を消す */
    margin: 0;  /* 念のため外側もリセット */
    text-align: center;
}

/* ==============================
   概要
============================== */

/* ハイライト部分 */
.highlight {
    color: #38c1ac; /* ブランドの緑 */
    font-weight: bold;
}

/* 画像を横並びに */
.overview-images {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}
.overview-images img {
    width: 48%;
    border-radius: 8px;
}

.model-images {
    display: flex;
    gap: 10px; /* 画像の間隔 */
    justify-content: center;
    flex-wrap: wrap; /* スマホで折り返し */
}

.model-images img {
    width: 48%; /* 横並びで2枚 */
    max-width: 300px; /* 画像が大きすぎないように制限 */
    height: auto;
    border-radius: 8px; /* 角丸でおしゃれ */
    object-fit: cover; /* 画像の比率維持 */
}




/* ==============================
   応募方法リスト
============================== */
/* 応募方法リスト全体 */
#howto ul {
    text-align: left;
    margin-top: 20px;
    padding-left: 0;
}

/* 各ステップ */
#howto li {
    margin-bottom: 15px;
    font-size: 1em;
    padding: 10px 15px;
    background-color: #fff8e1; /* ほんのり黄色で明るく */
    border-radius: 12px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

/* STEP番号の丸アイコン風 */
#howto li strong {
    background-color: #38c1ac; /* ブランド緑 */
    color: #fff;
    padding: 5px 10px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.9em;
}

/* メモ部分 */
.step-note {
    font-size: 0.9em;
    color: #555;
    margin-top: 10px;
    padding: 12px;
    background-color: #fff0f5; /* ほんのりピンク */
    border-left: 4px solid #A08860;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}


/* ==============================
   FAQ
============================== */
.faq {
    background-color: #f9f9f9;
    padding: 30px 20px;
    text-align: center;
}
.faq-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    background: #fff;
}
.faq-item summary {
    font-weight: bold;
    cursor: pointer;
    font-size: 1em;
}
.faq-answer {
    margin-top: 8px;
    font-size: 0.95em;
    color: #444;
}

/* ==============================
   画像エリア（フッター上）
============================== */
.bye img {
    width: 100%;
    display: block;
}

/* ==============================
   店舗情報
============================== */




.shop-info h3 {
    margin: 0 0 15px 0; /* 上0、下15pxの余白 */
    font-size: 1.5em;
    color: #333;
    text-align: center;
}

.shop-text {
    padding: 15px; /* コンテナ内側に余白 */
    background-color: #f0f8f5; /* 薄い色で背景をつけると見やすい */
    border-radius: 8px;
    text-align: center;
}

.shop-text p {
    margin-bottom: 10px; /* 下の余白を少し追加 */
    line-height: 1.5; /* 行間を広げて読みやすく */
}



/* ==============================
   くま
   ============================== */
.bye {
    margin-top: 10px; /* 上の余白を減らす */
    text-align: center;
}

.bye img {
    width: 90%;       /* 少し小さく */
    max-width: 700px; /* 最大幅を設定して大きすぎないように */
    height: auto;
    display: block;
    margin: 0 auto;   /* 中央に配置 */
}



/* ==============================
   フッター
============================== */
.site-footer {
    background-color: #38c1ac3;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    font-size: 0.9em;
}
.footer-nav ul {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}
.footer-nav a {
    color: #fff;
    font-size: 0.9em;
}
.footer-nav a:hover {
    text-decoration: underline;
}
