/*style.css*/
html,body{
    background:#121212;
}
body{
    font-family:"游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    color :#fff;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
.lp_main {
    margin: 0 auto;
    width: 750px;
}
.menu {
    margin: 0 auto;
    width: 600px;
}
.menu a {
    padding: 5px;
    color: #fff;
    line-height: 1;
}
.menu label {
    font-size: 18px;
    display: block;
    margin: 0 0 2px 0;
    padding :15px;
    line-height: 1;
    color :#fff;
    background :#5d5d5d;
    cursor :pointer;
    text-align:center;
}
.menu input {
    display: none;
}
.menu ul {
    margin: auto;
    background :#121212;
    color :#fff;
    list-style: none;
    padding: 0px;
    font-size: 14px;
}
.menu li {
    max-height: 0;
    margin: 5px;
    overflow-y: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    color :#fff;
}
.orange{
    color: #FF13FB;
    font-weight:700;
    border-left: 8px #FF13FB solid;
    font-size: 24px;
    padding-left: 10px;
}
#menu_bar01:checked ~ #links01 li,
#menu_bar02:checked ~ #links02 li,
#menu_bar03:checked ~ #links03 li{
    max-height: 500px;
    opacity: 1;
}
#menu_bar04 ~ #links04 li{
    max-height: 500px;
    opacity: 1;
}
footer {
    overflow-x: hidden;
    max-width:100%;
    font-size:11px;
    background :#121212;
    color: #fff;
    clear: both;
}
footer div {
    max-width:100%;
    margin: 0 auto 30px;
    color: #fff;
}
footer ul {
    margin: 0px auto;
    padding: 10px 0;
    text-align:center;
    color :#fff;
}
footer ul li {
    display:inline;
    margin: 0;
    padding: 0 1px 0 6px;
    border-left: 1px #fff solid;
    color :#fff;
}
footer a {
    color: #fff;
}
footer p {
    margin:0;
    text-align: center;
    padding: 5px 0;
    color: #fff;
}
footer div:after {
    content: "";
    color: #fff;
    display: block;
    clear: both;
}
.formError .formErrorContent {
  width: 60%;
  font-size: 100%;
  background: #ff7aff;
  opacity: 0.95;
  margin-left: 0px;
  position: relative;
  color: #fff;
  border: 2px solid #ddd;
  -webkit-box-shadow: 0 0 6px #000;
  padding: 4px 10px 4px 10px;
  -webkit-border-radius: 6px;
}

/* 汎用的な注意書き（念のため残す） */
.attention {
    width: 95%;
    margin: 5px auto 20px;
    border: 1px solid #ededed;
    font-size: 12px;
    padding: 2px 10px 6px;
}


/* == SP下部用（スマホでのレスポンシブ対応） == */
@media screen and (max-width: 740px) {
    .lp_main {
        margin: 0 auto;
        width: 100%; /* これがないとスマホで横幅がはみ出します */
    }
    .attention {
        width: 90%;
        font-size: 10px;  
    }
    .menu {
        margin: 0 auto;
        width: 100%;
    }
    .menu a {
        padding: 5px;
        color: #fff;
        line-height: 1;
    }
    .menu label {
        font-size: 18px;
        display: block;
        margin: 5px auto;
        padding: 15px;
        line-height: 1;
        color: #fff;
        background: #5d5d5d;
        cursor: pointer;
        text-align: center;
        width: 88%;
    }
    .menu input {
        display: none;
    }
    .menu ul {
        margin: 0 auto;
        background: #121212;
        color: #fff;
        list-style: none;
        font-size: 13px;
        width: 92%;
    }
    .menu li {
        max-height: 0;
        margin: 5px;
        overflow-y: hidden;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
        color :#fff;
        width: 95%;
    }
}

/* ====================
   Amazonリンクボタンのスタイル（PC版サイズ調整済み）
   ==================== */
.amazon-link-btn {
    display: block;
    /* width: 100% を維持しつつ、max-width を解除して親要素（.lp_main）いっぱいに広げる */
    width: 100%;
    max-width: none; /* ← ここを修正（以前の 400px から変更） */
    margin: 30px auto;
    text-align: center;
    transition: opacity 0.3s ease;
}

.amazon-link-btn img {
    /* 画像自体の幅を親要素（<a>タグ）の100%にする */
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

.amazon-link-btn:hover {
    opacity: 0.8;
}

/* SP（スマホ）表示用の微調整（こちらは変更なし） */
@media screen and (max-width: 740px) {
    .amazon-link-btn {
        width: 90%;
        margin: 20px auto;
    }
}