@charset "utf-8";

/* ========== ベーススタイル ========== */

html, body {
    margin: 0;
    padding: 0;
    font-family: "メイリオ","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

a img:hover { opacity: 0.70; }

h1 {
    margin: 0;
    padding: 10px;
    font-size: 24px;
    color: #690101;
    text-align: center;
    background-color: #f7ebcb;
}

header, footer {
    overflow: hidden;
    background-color: #fff;
}

footer {
    width: 100%;
}

/* ========== ress.css 対策 ========== */

input[type=text],
input[type="submit"] {
    background: #fff;
}
input[type="submit"] {
    border: 1px solid #666;
}

/* ========== スマホメニュー (楽天spmenu) ========== */

b > b > table a {
    display: inline-block;
    width: 100%;
    font-size: 9px;
    font-weight: normal;
    line-height: 11px;
    color: #fff !important;
    vertical-align: -30px !important;
}
b > b > table label {
    display: inline-block;
    width: 100%;
    font-size: 9px;
    font-weight: normal;
    line-height: 11px;
    color: #fff !important;
    vertical-align: -30px !important;
}

/* ========== レイアウト / レスポンシブ ========== */

@media screen and (min-width: 1000px) {
    #mainwrap {
        width: 1000px;   /* 幅を固定 */
        min-height: 100vh;
        margin: 0 auto;  /* 中央寄せ */
    }
}

@media screen and (max-width: 999px) {
    #mainwrap { margin: 0; width: 100%; }
}

@media screen and (min-width: 700px) {
    #spmenu { display: none; }
}

@media screen and (max-width: 699px) {
    header, footer { display: none; }
    #top { display: none; }
    /*#mainwrap{margin-top:55px;}上部固定header用のmargin*/
}

/* ========== セクション背景 ========== */

.section-fullbg {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.section-wrap {
    --bg-image: url(../img/back-section.jpg);
}

.section-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #fbfdff;
    background-image:
        radial-gradient(at 20% 10%, rgba(227, 255, 247, 0.7), transparent 60%),
        radial-gradient(at 80% 15%, rgba(250, 255, 228, 0.2), transparent 55%);
}

.section-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.5), rgba(255,255,255,0.5)),
        var(--bg-image);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    mask-image: linear-gradient(
        to bottom,
        rgba(0,0,0,1) 80%,
        rgba(0,0,0,0) 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        rgba(0,0,0,1) 80%,
        rgba(0,0,0,0) 100%
    );
}

@media screen and (max-width: 699px) {
    .section-bg::before {
        height: 145px;
        background-size: auto 260px;
        background-position: center top;
        mask-image: linear-gradient(
            to bottom,
            rgba(0,0,0,1) 62%,
            rgba(0,0,0,0) 100%
        );
        -webkit-mask-image: linear-gradient(
            to bottom,
            rgba(0,0,0,1) 62%,
            rgba(0,0,0,0) 100%
        );
    }
}

.section-inner {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 0; /* 上部余白は基本なし */
}

/* ========== 共通ユーティリティ ========== */

.full, .full > img { width: 100%; max-width: 1000px; background-color: #fff; }

.inner {
    max-width: 1000px;
    margin: 0 auto;  /* これで中央寄せ */
}

.img04,
.intro img,
.giftmenu img {
    display: block;
    width: 100%;
    height: auto;
}

/* ========== メインビジュアル (画像+文字乗せ) ========== */

.photo-container04 {
    position: relative;
    display: block;
    margin-inline: auto;
    line-height: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    font-family: serif;
    font-size: clamp(22px, 5vw, 48px);
    font-weight: bold;
    color: white;
    /*background: linear-gradient( 135deg, rgba(125, 207, 255, 0.425), #3a06276b);*/
    background-size: cover;
}

.overlay h1 {
    margin: 0;
    padding: 0;
    font-size: inherit !important;
    font-weight: inherit;
    color: inherit;
    background: none;
}

/* ========== ナビゲーションメニュー (ページ内リンク) ========== */

.giftmenu_wrap {
    margin-bottom: 50px;
}

.giftmenu-title {
    margin: 10px auto 0;
    font-size: 24px;
    color: #242424;
    text-align: center;
}

.giftmenu-title-main {
    margin: 50px auto 0;
}

.giftmenu {
    display: flex;
    justify-content: space-between;
}

.giftmenu a {
    width: 23%;   /* 4列想定 */
}

.giftmenu-main {
    width: 90%;
    margin: 0 auto;
}

@media screen and (max-width: 699px) {
    .giftmenu_wrap {
        margin-bottom: 20px;
    }

    .giftmenu {
        flex-wrap: wrap;   /* ここで初めて折り返す */
        gap: 12px; /* 横も縦も同じ間隔 */
    }

    .giftmenu a {
        width: 48%;
    }

    .giftmenu-title {
        margin: 5px auto 15px;
        font-size: 18px;
    }

    .giftmenu-title-main {
        margin: 30px auto 10px;
    }
}

/* ========== アイテム ========== */

.intro {
    margin-bottom: 30px;
    padding: 40px 20px 0;
    font-size: 18px;
    color: #4e3e33;
    text-align: center;
}

@media screen and (min-width: 700px) {
    .intro img { width: 80%; margin: 0 auto; }
}

@media screen and (max-width: 699px) {
    html, body { background: none !important; /*font-size:14px !important;*/ }
    h1 { font-size: 15px !important; }
    h2 { font-size: 18px !important; /*margin:60px 0 0 0 !important;*/ }
    .box-2 .saletag { height: 30px !important; line-height: 31px; font-size: 18px !important; }
    .intro { margin-bottom: 10px !important; padding: 5px; font-size: 14px !important; font-weight: normal !important; /*background:none !important;text-align:justify !important;*/ }
}

/* ========== アイテム別の見出し H2 ========== */

/* 共通H2スタイル */
.h2-cat-title {
    position: relative;
    width: 80%;
    margin: 50px auto 20px;
    padding-top: 30px;
    font-size: 32px !important;
    font-weight: bold;
    line-height: 32px;
    letter-spacing: 2px;
    text-align: center;
}

/* 共通サブ見出し(日本語部分) */
.h2-cat-title .section__heading--sub {
    margin-top: 10px;
    margin-bottom: -5px !important;
    line-height: 2.0rem;
    color: rgba(34, 58, 68, 0.904);
}

/* 下線のグラデーション */
.section-wrap .h2-cat-title {
    color: #057d92;
    background: linear-gradient(to right, transparent 35%, #85b9c9 45%, #85b9c9 55%, transparent 65%);
    background-repeat: no-repeat;
    background-size: 100% 7px;
    background-position: bottom;
}

/* ========== アイテムカード ========== */

.item__img img {
    max-width: 100%;
}

.item__comment {
    font-size: 13px;
}

.item__price {
    margin-top: 0;
}

/* 2アイテム並列 */
.box-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2列に固定 */
    gap: 20px; /* アイテム間の隙間 */
}

.box-2 .item {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
}

.desc__wrap {
    display: flex;/* 直下の要素を並列に */
    flex-direction: column; /* 直下の要素を縦積みに */
    justify-content: space-between;
}

.box-2 .item__comment { flex: 1; }

.box-2 a:hover {
    transition: all 0.3s;
    opacity: 0.7;
}

@media screen and (max-width: 699px) {
    .box-2 {
        padding: 0 10px;
        margin-bottom: 50px;
        border: 0;
        gap: 14px 10px;
    }
    .box-2 .item {
        padding: 8px 6px 12px;
    }
    .box-2 .item__name { font-size: 12px; }
    .item__comment {
        display: block;
        margin-top: 0;
        line-height: 1.55;
    }
    .item__price {
        color: #000;
        font-weight: bold;
    }
}

/* ========== 商品ラベル ========== */

.item-labels,
.item_btn-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 26px;
    margin: 10px 0 6px;
    align-items: center;
}

.item-label,
.item_btn {
    display: inline-flex;
    height: 30px;
    padding: 0 11px;
    align-items: center;
    justify-content: center;
    font-family: "Noto Sans JP", "Noto Sans Japanese", "Meiryo", "メイリオ", sans-serif;
    font-size: 14px;
    font-weight: bold;
    line-height: 32px;
    color: #43352f;
    letter-spacing: 0;
    white-space: nowrap;
    background: #f5f0e8;
    border: 0;
    border-radius: 4px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), 0 1px 2px rgba(33, 68, 72, 0.16);
    transform: translateY(0);
}

@media screen and (max-width: 699px) {
    .item-labels,
    .item_btn-wrap {
        gap: 5px;
        min-height: 26px;
        margin: 8px 0 7px;
    }

    .item-label,
    .item_btn {
        height: 29px;
        padding: 0 8px;
        font-size: 13px;
        line-height: 32px;
    }
}

.label-exclusive,
.label-limited,
.btn_pink {
    color: #fff;
    background:
        linear-gradient(135deg, #7e2232 0%, #b43f51 34%, #d97765 52%, #a93449 72%, #6e1c2d 100%);
    text-shadow: 0 1px 2px rgba(62, 18, 25, 0.72);
}

.label-shipping,
.btn_blue {
    color: #fff;
    background:
        linear-gradient(135deg, #0d5874 0%, #168cae 34%, #4db8c8 52%, #13799d 72%, #094963 100%);
    text-shadow: 0 1px 2px rgba(3, 45, 62, 0.7);
}

.label-engraving,
.btn_yellow {
    color: #fff;
    background:
        linear-gradient(135deg, #8b5b12 0%, #c98a1d 34%, #e5b747 52%, #b77715 72%, #71470b 100%);
    text-shadow: 0 1px 2px rgba(73, 43, 4, 0.72);
}

.item_btn {
    width: fit-content;
    align-self: flex-start;
}

/* ========== ページトップへ戻るボタン ========== */

#fixedTop {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 9999;
    display: none;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.70);
    border-radius: 5px;
    transform: translateZ(0);
}
#fixedTop:hover {
    transition: all 0.3s;
    opacity: 0.7;
}

#multi-fl { top: 38px !important; }
