@charset "UTF-8";

/*--------------------------------------------------------
  共通レイアウトパーツ設定
--------------------------------------------------------*/

/* 囲み */

.kakomi {
    border-width: 1px;
    border-style: solid;
    border-color: #000000;
    padding: 2%;
    margin: 0.5%;
}

.usutya {
    background-color: #f4f0ea;
    padding: 1em;
}

/* 横長 */

.yokonaga {
    padding: 5%;
    margin-bottom: 5%;
    background-color: #809c8125;

}

.yokonaga2 {
    padding: 5%;
    margin-bottom: 5%;
    background-color: #809c8125;
    display: flex;
    width: auto;
    justify-content: space-between;

}

.yokonaga img {
    max-width: 70%;
}

.yokonagaitem {
    max-width: 45%;
}

/* 横ならび */


.yoko {
    display: flex;
    flex-wrap: wrap;
    /* 横並び → 折り返し許可 */
    align-items: flex-start;
    gap: 1em;
    /* 画像と文章の間に余白 */
}

.profile-box {
    display: flex;
    align-items: flex-start;
    border-radius: 8px;
    padding: 1em;
    gap: 1em;
    background-color: #f9f9f9;
}

.profile-box img {
    width: 120px;
    height: auto;
    border-radius: 8px;
    flex-shrink: 0;
}

.profile-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.profile-text p {
    margin: 0 0 0.5em 0;
    line-height: 1.5;
}

.profile-text .more a {
    text-decoration: none;
    font-size: 0.7rem;
}



.insta {
    display: flex;
    justify-content: center
}

/* ヘッダー内パーツ */


#hpb-headerLogo {
    width: 239px;


}

#hpb-headerLogo a {
    display: block;
    margin-top: 0px;
    margin-right: 0;
    margin-bottom: 10px;
    margin-left: 10px;
    padding: 10px 0 0px 0px;


}

#hpb-headerExtra1 {
    width: 50px;
    position: absolute;
    top: 10px;
    right: 60px;
    margin-bottom: 10px;
}

#hpb-headerExtra1 a {
    display: block;
    color: #333333;
}


#hpb-headerExtra3 {
    width: 50px;
    position: absolute;
    top: 20px;
    right: 0px;
    display: none;

}

/* フッター内パーツ */
#hpb-footerMain {
    background-color: #6c390b;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-around;
}

#hpb-footerMain p {
    /* コピーライト文字設定 */
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 3px;
    padding-bottom: 3px;
    font-size: 0.9rem;
    text-align: left;
    color: #ffffff;
}

#hpb-footerMain p.large {
    display: block;
    width: 100%;
    border-bottom-style: solid;
    border-width: thin;
    border-bottom-color: #fae3cf;
    margin-bottom: 10px;
}

.menu-left {
    width: 25%;
}

.menu-center {
    width: 25%;
}

.menu-right {
    width: 25%;
}

#hpb-footerLogo {
    background-color: #ffffff margin-bottom 30px;
}

/*--------------------------------------------------------
  ナビゲーションデザイン設定
--------------------------------------------------------*/


#size ul {
    display: flex;
    flex-wrap: wrap;

    padding: 0;

}

.size li {

    display: block;


    margin: 0;
    padding: 0.5em;

}

.size li a {
    background-color: #f9f4f0;
    display: block;

    margin: 0;
    padding: 0.6em;
    border-radius: 5%;

}


/*--------------------------------------------------------
  基本パーツデザイン設定
--------------------------------------------------------*/

/* リンク文字色 */
a:link {
    color: #333333;
    text-decoration: none;
}

a:visited {
    color: #333333;
    text-decoration: none;
}

a:hover {
    color: #999999;
    text-decoration: none;
}

a:active {
    color: #999999;
    text-decoration: none;
}

#hpb-skip {
    /* ヘッダースキップの非表示 */
    height: 1px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}

p {
    margin-top: 0.5em;
    margin-bottom: 1.5em;
    padding-right: 0.5em;
    padding-left: 0.5em;
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
}

p.large {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.4em;
    color: #9AC001;
}

p.indent {
    padding-left: 15px;
}

p.price {
    color: #000000;
    text-align: center;
    font-size: 1.1rem;
}


p.more a {
    display: block;
    position: relative;
    text-align: center;
    border-width: 1px;
    border-style: solid;
    border-color: #00000064;
    padding: 2%;
    margin: 0 auto;
    max-width: 300px;
}

p.more a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent #333;
}

p.more a:hover {
    background-color: #0a3e29;
    border: 1px solid #cbc8b0;
}

p.more a:hover::after {
    border-color: transparent transparent transparent #fff;
}



.left {
    float: left;
}

.right {
    float: right;
}

hr {
    width: 100%;
    height: 1px;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    clear: both;
    border-top-width: 1px;
    border-top-style: none;
    border-right-width: 1px;
    border-right-style: none;
    border-left-width: 1px;
    border-left-style: none;
    color: #ffffff;
    border-bottom-width: 1px;
    border-bottom-style: none;
}


h3.hpb-c-index {
    height: 1px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    text-indent: -9999px;
    background: none;
}

#hpb-main h3 img {
    margin-top: 0;
    margin-bottom: 0;

    vertical-align: middle;
}

#hpb-main h3 {
    display: block;
    width: auto;

    color: #448fbd;
    font-size: 1rem;
    text-align: left;
    line-height: 1.7;
    font-weight: lighter;
    margin-bottom: 0;

    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;

}

h4 {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    padding-top: 5px;
    padding-right: 10px;
    padding-bottom: 0;
    padding-left: 0;
    text-align: left;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: normal;
    color: #9AC001;
}

h4 img {
    margin-left: 15px;
}

h5 {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 5px;
    text-align: left;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: bold;
}

table {
    margin-top: 5px;
    margin-right: 0;
    margin-bottom: 5px;
    margin-left: 0;
    border-collapse: collapse;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: #000000;
}

table th {
    padding-top: 5px;
    padding-right: 10px;
    padding-bottom: 5px;
    padding-left: 10px;
    text-align: left;
    background-color: #fffdf7;
    color: #ffffff;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #000000;
    white-space: nowrap;
}

table td {
    padding-top: 5px;
    padding-right: 10px;
    padding-bottom: 5px;
    padding-left: 10px;
    text-align: left;
    background-color: #fffdf7;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #000000;
}

/* フォームパーツ設定 */
input.button {
    margin-top: 10px;
    margin-bottom: 15px;
}

textarea {
    width: 380px;
    height: 200px;
}

input.l {
    width: 380px;
}

input.m {
    width: 250px;
}

input.s {
    width: 50px;
}


/* メインコンテンツ内基本パーツ */

#breadcrumb {

    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: none;

}

.breadcrumb {
    display: flex;
    flex-wrap: nowrap;
    list-style: none;
}

.breadcrumb li:not(:last-of-type)::after {
    content: "＞";
    margin: 0 .6em;
    /* 記号の左右の余白 */
    color: #777;
    /* 記号の色 */
}

#breadcrumb ol {
    padding-left: 7px;
}



#hpb-main ul {
    margin-top: 5px;
    margin-right: 0;
    margin-bottom: 5px;
    margin-left: 0;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    list-style-type: none;
}

#hpb-main ul li {
    text-align: left;
    line-height: 1.4;
    padding-top: 5px;
    padding-right: 15px;
    padding-bottom: 5px;
    padding-left: 15px;

    background-position: 5px 10px;
    background-repeat: no-repeat;
    font-size: 1rem;
}

#hpb-main dl {
    margin-top: 5px;
    margin-right: 0;
    margin-bottom: 20px;
    margin-left: 0;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
}

#hpb-main dt {
    float: left;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    text-align: left;
    line-height: 1.4;
    font-weight: normal;
    width: 9em !important;
    padding-top: 5px;
    padding-right: 0;
    padding-bottom: 5px;
    padding-left: 2px;
    color: #9AC001;
    font-weight: bold;
}

#hpb-main dd {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    padding-top: 5px;
    padding-right: 0;
    padding-bottom: 5px;
    text-align: left;
    line-height: 1.4;
    padding-left: 10em;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #000000;
}

* html #hpb-main dd {
    height: 1%;
    /* for IE6 */
}

#hpb-main dl::after {
    content: ".";
    clear: both;
    height: 0;
    display: block;
    visibility: hidden;
}


#hpb-main img.left {
    margin-top: 5px;
    margin-right: 20px;
    margin-bottom: 10px;
    float: left;
}

#hpb-main img.right {
    margin-top: 5px;
    margin-bottom: 10px;
    margin-left: 20px;
    float: right;
}

#pagetop {
    margin-top: 50px;
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
    text-align: right;

}

#pagetop a {
    /* ページの先頭へのリンク設定 */
    display: block;
    width: 120px;
    height: 20px;
    text-align: left;
    overflow: hidden;

    margin-left: auto;
    margin-right: 0;

    color: #0d6a9d;
}


/*--------------------------------------------------------
  丸いリンク画像
--------------------------------------------------------*/
#gabbeh {
    display: flex;
    position: relative;
    width: auto;
    height: auto;
    margin-top: 2%;


}

#gabbeh img.maru {

    width: 180px;
    hight: auto;
    border-radius: 50%;
    margin-right: 10px;
}

#gabbeh p {
    position: absolute;
    top: 30%;
    left: 3%;
    color: #ffffff;
    font-weight: bold;
}

#gabbeh2 {
    display: none
}




/* ===== ヒーロー領域の基本 ===== */
#hpb-title {
    position: relative;
    width: auto;
    margin: 0;
}

#hpb-title .hero-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 8;
    /* デスクトップで横長 */
    object-fit: cover;
    display: block;
}

/* ===== 中央の大見出し（旧 #hpb-title h1 の見た目を p に移植） ===== */
#hpb-title .hero-catch {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
    box-sizing: border-box;

    color: #fafbfc;
    font-size: 2rem;
    line-height: 1.2;
    padding: 0.5em 1.5em;
    background-color: rgba(46, 46, 44, 0.306);
    text-align: left;
    font-family: "Times New Roman", 游明朝, serif;
    margin: 0;
    z-index: 2;
}

/* ===== 下端の店名帯（要素に依存しない：h1でもpでもこの見た目） ===== */
#hpb-title .store-tagline {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    box-sizing: border-box;

    color: #fff;
    font-weight: normal;
    font-size: 1.5rem;
    line-height: 1.3;
    padding: 0.5em 1.5em;
    background-color: rgba(53, 33, 11, 0.606);
    text-align: left;
    margin: 0;
    z-index: 2;
}

#hpb-title .store-tagline .loc {
    margin-left: .6em;
    font-size: .9em;
    opacity: .9;
    white-space: nowrap;
}

@media (max-width: 768px) {
    #hpb-title .store-tagline .loc {
        display: block;
        /* スマホでは次行に回して崩れ防止 */
        margin: .2em 0 0;
        font-size: .85em;
        opacity: 1;
    }
}

/* ヒーロー一式は画像の上に出すが、ナビよりは下に */
#hpb-title {
    position: relative;
    z-index: 1;
}

#hpb-title .hero-catch,
#hpb-title .store-tagline {
    position: absolute;
    z-index: 10;
}

/* 開閉式サイズ一覧（後述） */
.size-disclosure {
    margin: 1.5rem 0;
}

.size-disclosure summary {
    font-weight: 300;
    cursor: pointer;
    list-style: none;
    text-decoration: underline;
}

.size-disclosure summary::-webkit-details-marker {
    display: none;
}

.size-disclosure .size {
    margin-top: .75rem;
}



/*--------------------------------------------------------
　棚ページタイトル部分
--------------------------------------------------------*/



#tana-title {
    position: relative;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    overflow: hidden;
    background-color: #c3b88836;

}

#tana-title h1 {
    display: block;
    width: 100%;
    /* 背景を画像いっぱいに */

    color: #fafbfc;
    font-size: 1.5rem;
    text-align: center;
    /* テキスト中央揃え */
    line-height: 1.2;
    padding: 0.5em 1.5em;
    /* 左右に余白。1.5emなどで左端に余白感 */

    background-color: rgba(46, 46, 44, 0.306);

    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* 要素全体を中央に */

    font-family: "Times New Roman", 游明朝, serif;
    box-sizing: border-box;
    /* padding含めた幅計算 */
}

#tana-title h2 {
    text-align: left;
    padding: 0.5em 1.5em;
    /* 上下左右に余白。左に1.5emで視覚的に余白が出ます */
    margin: 0;
    font-size: 1rem;
    color: #fff;
    font-weight: normal;
    box-sizing: border-box;
    /* パディング込みで幅計算 */
    width: 100%;
    /* 背景や配置の安定化に役立つ */
    position: absolute;
    bottom: 0;
    background-color: rgba(53, 33, 11, 0.606);
}


#tana-title .hero-img {
    width: 100%;
    height: auto;
    max-height: 45vh;
    /* デスクトップで横長に */
    object-fit: cover;
    display: block;
}



/* ここからチャッティー先生 */
#whatsnew {
    background-color: #fbf8f6a1;
    padding: 2%;
    border: 1px solid #000;
    margin: 5%;
    text-align: left;
}

#whatsnew .header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1em;
    margin-bottom: 0.5em;
}

/* 左側：タイトルと日付を縦並び */
#whatsnew .meta {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
}

/* タイトルと日付 */
#whatsnew .title {
    font-size: 1rem;
    font-weight: normal;
}

#whatsnew .last-update {
    color: #666;
    font-size: 1rem;
}

/* 右側：内容リスト */
#whatsnew ul {
    padding: 0;
    margin: 0;
    list-style: none;
    flex: 1;
    min-width: 200px;
    /* スマホでも潰れないように */
}

#whatsnew li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5em;
}

/* ▼ スマホなど幅狭のときは縦並びに */
@media (max-width: 768px) {
    #whatsnew .header {
        flex-direction: column;
        align-items: flex-start;
    }

    #whatsnew .meta {
        flex-direction: row;
        gap: 1em;
        white-space: normal;
    }

    #whatsnew .title,
    #whatsnew .last-update {
        font-size: 1rem;
    }
}


#newitem {
    display: flex;
    overflow-x: auto;
    padding: 1%;
    gap: 30px;
    width: auto;
    scroll-behavior: smooth;
    justify-content: space-evenly;
    margin-top: 5%;
    margin-left: 5%;
}

#newitem::-webkit-scrollbar {
    display: none;
}

.itemnew {
    flex-shrink: 0;
    width: 180px;
    /* 表示サイズを統一（任意の幅） */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 中央揃え */
    text-align: center;
}

.itemnew img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.itemnew p {
    margin-top: 0.5em;
    font-size: 0.9rem;
}

.itemnew h2 {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.title-left {
    color: #043c5e;
    /* 色 */
    font-size: 1.2rem;
    /* 小さめ */
    /* 細字 */
    text-align: left;
    /* 左ぞろえ */



}

.center {
    color: #9d0d23;
    /* 色 */
    font-size: 1rem;
    /* 小さめ */
    font-weight: normal;
    /* 細字 */
    text-align: center;
    /* 中央ぞろえ */
    text-decoration: underline;
    /* 下線 */
}


/* ここまでチャッティー先生 */





/* PC・共通スタイル */
#top-kodawari {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1em;
    padding: 20px 0;
}

.kodawari {
    width: 32%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.kodawari-visual {
    position: relative;
}

.kodawariimg {
    width: 100%;
    max-height: 250px;
    height: auto;
    display: block;
    object-fit: cover;
}

/* h3: 画像中央に配置、背景で視認性アップ */
#contents .kodawari h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.15rem;
    font-weight: normal;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    /* 上品な半透明背景 */
    padding: 0.6em 1.1em;
    white-space: nowrap;
    font-family: "Times New Roman", 游明朝, serif;

}

/* p: 画像の下に配置 */
.kodawari p {
    margin: 0;

    padding: 1em;
    font-size: 1rem;
    color: #333;
    background-color: #f4f0ea;
    position: static;
    text-align: left;
    box-sizing: border-box;
}

/* カテゴリー　*/

#top-category {
    width: auto;

    display: flex;
    flex-wrap: wrap;

    justify-content: space-between;
    margin-top: 0;
    margin-bottom: 10px;

    padding-top: 10px;
    padding-bottom: 20px;



}

.category {

    width: 48%;
    background-color: #f4f0ea;
    padding: 5px 5px;
    margin: 5px 5px;
    position: relative;
}

.top-categoryimg {
    width: auto;
    height: auto;
    padding-top: 0;
    padding-bottom: 0;

}

#contents .category h3 {

    position: absolute;
    font-size: 1.5rem;
    color: #fff;
    font-weight: normal;
    width: auto;
    font-family: "Times New Roman", 游明朝, serif;
    padding: 0.5em 1.5em;
    /* 左右に余白。1.5emなどで左端に余白感 */

    background-color: rgba(46, 46, 44, 0.306);

    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}


.category p {
    color: #ffffff;
    text-align: left;
    padding-top: 0;
    padding: 0em 1.5em;
    margin-top: 0;
    margin-bottom: 0px;
    font-size: 1rem;
    position: absolute;
    bottom: 0;
    background-color: rgba(53, 33, 11, 0.606);
}

#top-category h2 {
    color: #0d6a9d;
    text-align: center;
    padding-top: 0;
    padding-left: 1%;
    padding-right: 1%;
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.19rem;


}

/* 店舗情報　*/





/* カテゴリー1 */


/* セクションカテゴリー別　*/

#section-category {
    width: auto;
    background-color: #ffffff;
    display: flex;
    flex-wrap: wrap;

    justify-content: space-around;
    margin-top: 0;
    margin-bottom: 10px;

    padding-top: 10px;
    padding-bottom: 20px;

}

.category {

    width: 48%;
    background-color: #f4f0ea;
    padding: 5px 5px;
    margin: 5px 2px;
}

.category img.categoryimg {
    width: auto;
    height: 300px;
    padding-top: 0;

}


#section-category p {
    color: #000000;
    text-align: left;
    padding-top: 0;
    padding-left: 1%;
    padding-right: 1%;
    margin-top: 0;
    margin-bottom: 0px;
    font-size: 1rem;
}

#section-category h2 {
    color: #0d6a9d;
    text-align: center;
    padding-top: 0;
    padding-left: 1%;
    padding-right: 1%;
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.rem;


}



#category-1 {
    width: 335px;
    float: right;
}

#category-1 a {
    height: 80px;
    background-image: url(carpet/specialBanner_8Ab_05.png);
    background-position: top left;
    background-repeat: no-repeat;
}


/* 商品一覧ページ デザイン定義 */

#itemlist-title {
    position: relative;

}

#itemlist-title h1 {
    color: #0d6a9d;
    font-size: 1.2rem;
    text-align: left;
    padding-left: 1em;
    position: absolute;
    left: 2%;
    top: 30%;
    background: #fff;
    opacity: 0.6;

}

#itemlist-title h2 {
    color: #333333;
    text-align: left;
    padding-left: 0.6em;
    position: absolute;
    top: 50%;
    left: 3%;
    background: #fff;
    opacity: 0.6;
}

#itemlist-title p {
    text-align: left;
    padding-left: 1em;
    position: absolute;
    top: 60%;
    left: 3%;
    background: #fff;
    opacity: 0.6;
}

#itemlist {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}





.item {
    width: 30%;

    margin-right: 0px;
    margin-bottom: 20px;
    position: relative;
}

.new {
    color: #ffffff;
    background-color: #083b4a8d;
    position: absolute;
    top: 0;
    left: 0;


}


.itemimg {
    width: auto;
    max-width: 200px;
    margin-top: 0px;
    margin-bottom: 0;
    padding-bottom: 5px;
}

#itemlist h2 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.2;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    color: #0d6a9d;
}


#itemlist h3 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1rem;

    line-height: 1.7;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 2px;

    font-weight: lighter;
}

#itemlist h4 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.2;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 2px;
    color: #000000;
}

#itemlist p {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 7%;
    padding-right: 7%;
    font-size: 1rem;
}

#item p.icon {
    height: 15px;
    line-height: 15px;
    padding-left: 5px;
    padding-right: 5px;
}




p.more a {
    padding-right: 1.2em;
    padding-left: 1.2em;

}

/* 種類別説明ページ デザイン定義 */

#contents {
    max-width: auto;
    padding-left: 5%;
    padding-right: 5%;
    margin: auto;
}


#contents h1 {
    text-align: left;
    color: #0d6a9d;
    overflow: hidden;
    clear: both;

}



#contents h2 {
    padding-top: 0px;
    padding-left: 5px;
    text-align: left;
    color: #0d6a9d;
    font-size: 1.19rem;
    line-height: 1.5rem;



    clear: both;

    /*左線*/

}


#contents p {
    padding-left: 5px;

    overflow: hidden;
}

/* 説明ページ　画像リスト */

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



.contents {
    width: 50%;
    margin-right: 0px;
    margin-bottom: 40px;


}

.contentsimg {
    width: auto;
    max-width: 45%;
    margin: auto 20px auto 10px;
    border-radius: 50%;
    float: left;

}




/* よくあるご質問 */
.faq {
    border-radius: 1em;
    text-align: left;
    margin: 5%
}

.faq h3 {
    padding-bottom: 5px;
    margin-bottom: 5px;
    font-weight: bold;



}

.faq h3:before {
    content: "Q.";
    font-weight: bold;
    color: #d57b14ce;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.6;
    margin-right: .5em;
}

.faq p {
    padding: 10px;
    margin-bottom: 5px;


}

.faq p:before {
    content: "A.";
    font-weight: bold;
    color: #d57b14ce;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.6;
    margin-right: .5em;
}


/* 商品詳細ページ デザイン定義 */

#detail {
    max-width: auto;
    padding-top: 10px;
}


#detail h1 {


    width: 100%;
    margin-top: 20px;
    margin-right: 10px;
    margin-bottom: 5px;
    margin-left: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 5px;

    padding-right: 0px;
    text-align: left;
    color: #474747;
    font-size: 1.19rem;
    line-height: 2;
    overflow: hidden;
    clear: both;
}



h2.underline {
    display: block;
    width: 85%;
    margin-top: 2em;
    margin-left: 1.2em;
    margin-bottom: 2em;
    padding-left: 0.2em;
    padding-bottom: 0.2em;
    border-bottom: solid 1px;
    border-color: #cccccc;
    text-align: left;
    color: #474747;

}


#detail h2 {
    height: 25px;
    margin-top: 10px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    padding-top: 0px;
    padding-bottom: 5px;
    padding-left: 10px;
    text-align: left;
    color: #0d6a9d;
    font-size: 1rem;
    line-height: 27px;
    overflow: hidden;
    clear: both;
    border-left: solid 5px #7db4e6;
    /*左線*/

}

#detail h3 {
    display: block;
    width: auto;

    color: #5c9dc5;
    font-size: 1rem;
    text-align: left;
    line-height: 1.2;


    padding-top: 10px;
    padding-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px;

}



#detail .price {
    font-size: 1.1rem;
    margin-bottom: 0;
    padding-top: 5px;
}


/* 注文方法ページ デザイン定義 */


/* キャンペーンページ デザイン定義 */

/* =======================================================
  レスポンシブ設定
======================================================= */
@media screen and (max-width: 768px) {


    #contents h2 {

        font-size: 1rem;
        line-height: 27px;



        clear: both;

        /*左線*/

    }


    /*--------------------------------------------------------
	  共通レイアウトパーツ設定
	--------------------------------------------------------*/
    /* ヘッダー内パーツ */
    #hpb-headerMain {
        width: 100%;

    }



    #hpb-headerLogo {
        width: 70%;


    }

    #hpb-headerLogo a {
        width: 60%;



    }

    #hpb-headerExtra3 {
        display: block;

    }



    #hpb-headerExtra2 {
        height: auto;
        position: relative;
        width: 98%;
        margin-right: auto;
        margin-left: auto;
        float: none;
    }

    /* フッター内パーツ */
    #hpb-footerMain {
        margin-top: 0;
        flex-direction: column;
        align-items: center;
    }

    .menu-left {
        width: 90%;
    }

    .menu-center {
        width: 90%;
    }

    .menu-right {
        width: 90%;
    }

    #hpb-footerMain p {
        /* コピーライト文字設定 */
        word-break: break-all;
        padding-top: 10px;
        padding-right: 5px;
        padding-bottom: 10px;
        padding-left: 5px;
    }

    #hpb-footerLogo p {

        margin-bottom: 30px;
    }

    #hpb-footerExtra1 {
        margin-top: 0;
        width: 98%;
        margin-right: auto;
        margin-left: auto;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    #hpb-footerExtra1 ul {
        /* フッターサブメニュー設定 */
        border-left-width: 0;
    }

    #hpb-footerExtra1 li {
        display: inline-block;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    #hpb-footerExtra1 li a {
        display: inline-block;
    }







    /*--------------------------------------------------------
	  ナビゲーションデザイン設定
	--------------------------------------------------------*/

    .size li {


        padding: 0.5em;

    }

    .size li a {


        padding: 0.5em;


    }

    /*--------------------------------------------------------
	  基本パーツデザイン設定
	--------------------------------------------------------*/

    p {
        padding-left: 7;
        padding-right: 7;
    }

    .hpb-layoutset-02 h2 {
        background-size: contain;
        height: auto;
        line-height: 1.4;
        margin-top: 20px;
        padding-top: 10px;
        padding-right:
            10px;
        padding-bottom: 10px;
        word-break: break-all;
    }





    #hpb-wrapper h4 {
        padding-right: 0;
    }

    h5 {
        padding-right: 5px;
    }

    table {
        margin-right: auto;
        margin-left: auto;
        width: 100%;
        box-sizing: border-box;
    }

    /* フォームパーツ設定 */
    textarea {
        width: 96%;
    }

    input.l {
        width: 96%;
    }

    input.m {
        width: 60%;
    }

    input.s {
        width: 30%;
    }


    /* メインコンテンツ内基本パーツ */


    #breadcrumb {

        padding-top: 0.07rem;
        padding-bottom: 0.07rem;
        background-color: #f7f1ea;

    }

    #breadcrumb ol li {

        font-size: 0.63rem;

    }


    #hpb-main ul {
        margin-right: 0;
        margin-left: 0;
    }

    #hpb-main ul li {
        padding-right: 0;
    }

    #hpb-main dt {
        float: none;
        max-width: 100%;
        padding-left: 0;
        box-sizing: border-box;
    }

    #hpb-main dd {
        padding-left: 0;
    }

    #hpb-main img.left {
        margin-right: 0;
        float: none;
    }

    #hpb-main img.right {
        margin-left: 0;
        float: none;
    }

    #pagetop a {
        /* ページの先頭へのリンク設定 */
        display: block;
    }


    /* トップページ デザイン定義 */


    #whatsnew p {
        font-size: 1rem;
    }

    #newitem p {
        font-size: 1rem;
    }

    /* ? スマホ向け：右端がチラ見えするように余白を追加 */
    @media (max-width: 768px) {
        #newitem {
            padding-right: 60px;
            /* 右端に余白＝スクロールを促す */
        }

        .itemnew:last-child {
            margin-right: -40px;
            /* 最後の画像を少し右にはみ出させる */
        }
    }

    #top-kodawari {
        flex-direction: column;
        align-items: center;
    }

    .kodawari {
        width: 100%;
        display: block;
        /* ← rowをやめて縦積みに */
        margin-bottom: 1em;
    }

    /* 画像枠：ほどよい高さで固定（長すぎ防止） */
    .kodawari-visual {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: clamp(160px, 45vw, 260px);
        /* 端末幅に応じて高さを自動調整 */
        margin-right: 0;
    }

    /* 画像は枠いっぱい、歪みなし */
    .kodawariimg {
        width: 100%;
        height: 100%;
        /* ←枠の高さにフィット */
        object-fit: cover;
        /* ←トリミングで対応、歪まない */
        max-height: none;
        padding-right: 0;
    }

    /* H3は中央固定（PCと同じ指定のままでOK） */

    /* 本文：自然な高さに戻す（横並び時の伸張指定を解除） */
    .kodawari p {
        display: block;
        /* ← flexを解除 */
        width: 100%;
        margin: 0;
        padding: 1em;
        line-height: 1.7;
        font-size: 0.98rem;
        overflow: visible;
        /* ← 内部スクロールを解除 */
    }

    /* TOPカテゴリー */

    #top-category {}

    #top-category h2 {
        font-size: 1.05rem;
    }

    #top-category p {}

    .category {

        width: auto;

    }

    .category img.categoryimg {
        width: auto;
        height: auto;

    }

    /* TOPカテゴリー ここまで*/

    #section-category {
        flex-direction: column;
        width: auto;

    }

    #section-category h2 {
        font-size: 1.05rem;
    }

    #section-category p {}


    /* 新商品情報 */
    #toppage-item div.item {
        width: 100%;
        float: none;
        padding-bottom: 20px;
    }

    #toppage-item img.newimg {
        float: none;
        margin-left: 0;
        margin-right: 0;
    }

    #toppage-item h4 {
        width: auto;
        float: none;
    }

    #toppage-item p.price {
        margin-top: 10px;
    }


    /* 店舗情報　*/

    #shop-info {
        width: auto;

        display: flex;
        flex-direction: column;



        margin-top: 0;
        margin-bottom: 10px;

        padding-top: 0px;
        padding-bottom: 0px;

    }

    .information {

        width: 100%;
        background-color: #fcfafa;
        padding: 5px 5px;
        margin: 0px 0px;
    }

    .information h2 {

        color: #0d6a9d;
        text-align: left;
        padding-top: 0;
        padding-left: 1%;
        padding-right: 1%;
        margin-top: 0;
        margin-bottom: 5px;
        font-size: 1.05em;
    }

    .info {

        width: auto;
        background-color: #fcfafa;
        padding: 5px 5px;
        margin: 0px 0px;
    }

    .info h2 {

        color: #0d6a9d;
        text-align: left;
        padding-top: 0;
        padding-left: 1%;
        padding-right: 1%;
        margin-top: 0;
        margin-bottom: 5px;
        font-size: 1.05rem;
    }

    .info img.shopimg {
        width: auto;
        height: auto;
        padding-top: 0;

    }

    .information p {
        color: #000000;
        text-align: left;
        padding-top: 0;
        padding-left: 5px;
        padding-right: 0;
        margin-top: 0;
        margin-bottom: 0px;
    }

    #shop-info p {
        color: #000000;
        text-align: left;
        padding-top: 0;
        padding-left: 5px;
        padding-right: 0;
        margin-top: 0;
        margin-bottom: 0px;
    }

    #shop-info h2 {
        display: block;
        width: 100%;
        color: #0d6a9d;
        text-align: center;
        padding-top: 0;
        padding-left: 1%;
        padding-right: 1%;
        margin-top: 0;
        margin-bottom: 5px;
        font-size: 1rem;


    }

    #shop-info h3 {

        margin-top: 20px;
        margin-right: 0px;
        margin-bottom: 10px;




        text-align: left;
        color: #0d6a9d;
        font-size: 1rem;

        overflow: hidden;
        clear: both;
        border-left: solid 5px #7db4e6;
        /*左線*/

    }

    #shop-info img.left {
        float: left;
        margin-right: 10px;
    }

    /* カテゴリー1 */
    #category-1 {
        max-width: 100%;
        float: none;
    }

    #category-1 a {
        background-size: contain;
        background-position: top center;
    }

    /* 商品一覧ページ デザイン定義 */


    #itemlist-title h1 {

        font-size: 1rem;
        text-align: left;
        padding-left: 0;
        top: 0;

    }

    #itemlist-title h2 {

        padding-left: 0;
        font-size: 1rem;
        top: 20%;
    }

    #itemlist-title p {
        font-size: 1rem;
        top: 40%;
    }

    .item {
        width: 47%;

    }

    #itemlist h3 {
        font-size: 1rem;

    }

    #itemlist p {
        font-size: 1rem;

    }

    .itemimg {

        max-width: 100%;

    }


    /* 種類別説明ページ デザイン定義 */

    #contents {
        padding: 0px;
    }

    #contents p {}

    .contents {
        width: 100%;

    }

    .contentsimg {

        max-width: 45%;

    }


    /* 商品詳細ページ デザイン定義 */
    #hpb-wrapper #detail h3 {
        background-color: #ffffff;
        padding-right: 5px;
    }

    #detail {
        padding: 0px;
    }

    #detail p {}

    /* 注文方法ページ デザイン定義 */
    #flow {
        margin-left: 0;
        margin-right: 0;
    }



    /*--------------------------------------------------------
  丸いリンク画像
--------------------------------------------------------*/
    #gabbeh {
        display: none;
        position: relative;

    }

    #gabbeh img.maru {

        width: 180px;
        hight: auto;
        border-radius: 50%;

    }

    #gabbeh2 {
        display: block;
        position: relative;
        margin-top: 0;
        float: right;

    }

    #gabbeh2 img.maru {

        width: 80px;
        hight: 80px;
        border-radius: 50%;
        margin-top: 15%;
    }

    #gabbeh2 p {
        position: absolute;
        display: block;
        top: 40%;
        left: 10%;
        color: #ffffff;
        font-weight: bold;
        font-size: 1rem;
    }

    /* 横ならび */

    .yoko {
        display: flex;
    }

    /* タイトル部分 */


    /* スマホ用に調整（最小差し替え版） */
    @media (max-width: 768px) {

        /* 画像は従来どおり正方形寄り */
        #hpb-title .hero-img {
            aspect-ratio: 4 / 4;
            /* スマホで縦長に */
        }

        /* 旧: #hpb-title h1 → 新: 中央の大きいコピー .hero-catch */
        #hpb-title .hero-catch {
            font-size: 1.2rem;
            padding: 0.4em 1em;
        }

        /* 旧: #hpb-title h2 → 新: 下帯の店名 .store-tagline */
        #hpb-title .store-tagline {
            font-size: 0.7rem;
            padding: 0.4rem 1rem;
        }

        /* そのまま残してOK（必要なら効く） */
        #hpb-title .title-overlay {
            padding: 0 1em;
        }
    }

    /* スマホ用に調整 */

    @media (max-width: 768px) {
        #tana-title .hero-img {
            max-height: 30vh;
            /* スマホで縦長に */
        }

        #tana-title h1 {
            font-size: 1.2rem;
            padding: 0.4em 1em;
        }

        #tana-title h2 {
            font-size: 0.9rem;
            padding: 0.4em 1em;
            gap: 0.5em;
        }

        #tana-title .title-overlay {
            padding: 0 1em;
        }
    }



    /* 横長 */


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

    .profile-box {
        flex-direction: column;
        align-items: center;
    }

    .profile-box img {
        width: 100px;
    }

    .profile-text {
        justify-content: center;
    }
}

/* --- サイズ一覧（共通化版）--- */
/* 既存の #size ラッパー前提を残しつつ、単体の <ul class="size"> でも適用させる */
#size ul.size,
ul.size {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    /* カード間隔 */
    margin: 12px 0 24px;
    padding: 0;
    list-style: none;
    /* 黒丸を消す */
}

#size ul.size li,
ul.size li {
    margin: 0;
}

#size ul.size li a,
ul.size li a {
    display: block;
    padding: 0.6rem 0.9rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    background: #fff;
    line-height: 1;
    white-space: nowrap;
}

#size ul.size li a:hover,
ul.size li a:hover {
    border-color: #999;
    background: #f7f7f7;
}

/* スマホ微調整 */
@media (max-width: 600px) {

    #size ul.size,
    ul.size {
        gap: 8px;
    }

    #size ul.size li a,
    ul.size li a {
        padding: 0.5rem 0.6rem;
        font-size: 0.8rem;
    }
}