/* CSS Document */

/* 基本指定 */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
    line-height: 1.8;
    color: #555;
    background-color: #FFF8E1; /* 温かみのあるクリーム色 */
    text-align: center;
    font-size: 16px;
}

a {
    color: #FFA726; /* 温かみのあるオレンジ系 */
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #FB8C00; /* ホバー時少し濃く */
    text-decoration: underline;
}

img {
    border: none;
    max-width: 100%;
    height: auto;
}

/* 文字装飾 */
.yline {
    background: linear-gradient(transparent 60%, #FFD180 60%); /* マーカー風のライン */
    font-weight: bold;
}

strong {
    color: #D84315; /* 強調色の深いオレンジ */
}


/* 全体ラッパー */
#wrapper {
    width: 90%;
    max-width: 960px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden; /*
    for border-radius */
    border-radius: 12px;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* ヘッダー */
#header {
    width: 100%;
}
#head_img {
    height: 350px;
    background: url(img/top.jpg) no-repeat center center;
    background-size: cover;
}
#head_img img {
    display: none;
}

h1 {
    font-size: 24px;
    font-weight: bold;
    color: #BF360C;
    line-height: 1.5;
    text-align: center;
    margin: 30px 20px 10px 20px; /* 上下のマージン調整 */
}

/* メインコンテンツ */
#content {
    padding: 10px 30px 30px;
    text-align: left;
}

.inner {
    margin: 30px 0;
    padding: 25px 30px;
    border: 1px solid #FFE0B2;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

h2 {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    color: #BF360C;
    padding: 15px;
    margin-bottom: 25px;
    border-bottom: 3px solid #FFD180;
    line-height: 1.4;
}

h3 {
    font-size: 22px;
    font-weight: bold;
    color: #FFA726;
    margin-top: 15px;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 5px solid #FFB74D;
    line-height: 1.3;
}

.inner p {
    text-align: justify;
    color: #444;
}

.img_r {
    float: right;
    margin: 0 0 15px 20px;
}

.link_r {
    text-align: right;
    margin-top: 20px;
    font-weight: bold;
}
.link_r img {
    vertical-align: middle;
    margin-right: 5px;
}

/* ボタン */
.bt_c {
    text-align: center;
    margin: 30px 0 15px;
}
.bt_c a img {
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    max-width: 300px;
}
.bt_c a:hover img {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 15px rgba(255, 138, 101, 0.4);
}

/* まとめセクション */
#space {
    margin: 30px 0;
    padding: 25px 30px;
    background-color: #FFF3E0; /* 薄いオレンジ背景 */
    border: 2px dashed #FFB74D;
    border-radius: 10px;
    text-align: left;
}
#space h4 {
    font-size: 20px;
    color: #D84315;
    text-align: center;
    margin-bottom: 20px;
}
#space .sp-icon {
    font-size: 24px;
    vertical-align: middle;
}
#space p {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 15px;
}
#space .peach-info {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #F48FB1; /* ピーチ色 */
}
#space .peach-highlight {
    color: #EC407A;
    font-weight: bold;
}
#space .shipping-info {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    color: #4CAF50;
    background-color: #E8F5E9;
    padding: 10px;
    border-radius: 5px;
}


/* フッター */
#footer {
    background-color: #6D4C41; /* ブラウン系 */
    color: #EFEBE9;
    padding: 20px;
    font-size: 13px;
    line-height: 1.6;
}
#footer p {
    margin: 0 15px;
    text-align: center;
}
#footer a {
    color: #FFCC80;
}
#footer a:hover {
    color: #fff;
}

address {
    font-style: normal;
    color: #fff;
    text-align: center;
    background: #A1887F; /* フッターより少し明るいブラウン */
    font-size: 12px;
    padding: 8px 0px;
    width: 100%;
}


/* レスポンシブ (スマートフォン向け) */
@media screen and (max-width: 768px) {
    body {
        font-size: 15px;
    }
    #wrapper {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }
    #head_img {
        height: 250px;
    }
    h1 {
        font-size: 20px;
        margin: 20px 15px 10px 15px;
    }
    #content {
        padding: 10px 15px 20px;
    }
    .inner {
        padding: 20px 15px;
    }
    .img_r {
        float: none;
        display: block;
        margin: 15px auto;
    }
    .link_r {
        display: none; /* スマホでは非表示 */
    }

    h2 {
        font-size: 22px;
    }
    h3 {
        font-size: 20px;
    }

    /* まとめセクション */
    #space {
        padding: 20px 15px;
    }
    #space h4 {
        font-size: 18px;
    }

    /*フッター*/
    #footer p {
        font-size: 11px;
    }
}