﻿@charset "UTF-8";

html,body,div,span,applet,object,iframe,
h1,h2,h3,h4,h5,h6,p,blockquote,pre,
a,abbr,acronym,address,big,cite,code,
del,dfn,em,font,img,ins,kbd,q,s,samp,
small,strike,strong,sub,sup,tt,var,
b,u,i,center,
dl,dt,dd,ol,ul,li,
fieldset,form,label,legend,
table,caption,tbody,tfoot,thead,tr,th,td{
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background : transparent;
}


ol,ul{
    list-style: none;
}
blockquote,q{
    quotes: none;
}

/*remember to define focus styles! */
:focus{
    outline: 0;
}

/*remember to highlight inserts somehow */
ins{
    text-decoration: none;
}
del{
    text-decoration: line-through;
}
/*tables still need 'cellspacing="0"' in the markup */
table{
    border-collapse: collapse;
    border-spacing: 0;
}


a {
color: #4a3f32;/* （リンク文字の設定） */
    text-decoration:none;
}
/* -------------------------------------------------(フォントファミリー)--- */
@font-face {
	font-family: "YuGothic-M";
	font-weight: normal;
	 src: local("YuGothic-Medium"),
		  local("Yu Gothic Medium"),
		  local("YuGothic-Regular");
}

@font-face {
	font-family: "YuGothic-M";
	font-weight: bold;
	 src: local("YoGothic-Bold"),
		  local("Yu Gothic");
}
html{
    font-size: 62.5%;/* 16px x 0.625 = 10px(=1rem) */
    height:100%;
}
body{ 
    line-height: 1;
    overflow-x: hidden;
    height:100%;
    text-align:center;	
    font-size: 1.6rem;/* 16px */
    font-family: -apple-system, blinkMacSystemFont, メイリオ, YuGothic-M, YuGothic, "Hiragino Kaku Gothic ProN", sans-serif;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt";
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
	::i-block-chrome, body {
		font-feature-settings: "pkna";
	}
}
/* ------------------------------------------------------------------------ */
body *,
body p{
}
* html div#container{
    height:100%;
}
div:after,
ul:after {
    content: "";
    display: block;
    clear: both;
}

/* ------------------------------------------------------------------------ */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■◆ ラッパー ◆ */
/* ------------------------------------------------------------------------ */

#wrap{
     width: 100%;
     max-width: 375px;
     position: relative;
     height:auto !important; /*IE6対策*/
     height: 100%; /*IE6対策*/
     min-height: 100%;
     overflow:hidden;
     margin:0 auto; /*中央配置*/
     background-color:#fafafa;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■ SP ■■■■■■■■■ ◆ トップページへ戻る◆*/
/* ------------------------------------------------------------------------- */

.gotop-all{
    position: fixed;
    right: 0%;
    bottom: 0px;
    width: 50px;
    height: 50px;
    display: block;
}
.gotop-all img{
    width: 50px;
    transition: 0.3s ;
}
.gotop-all img:hover {
    opacity: 0.7 ;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■ SP ■■■■■■■■■■■■◆ h1 / メニュー ◆ */
/* ------------------------------------------------------------------------- */
.h1-menu{
    width: 92%;
    height: auto;
    overflow: hidden; /*floatの解除*/ 
    margin: 0 auto;
    position: relative;
    border-bottom: 1px solid #e7e7e7;
    padding: 28px 4.5% 22px 3.5%;
     background-color:#ffffff;
}
/* --------------------------------------------------------------(ロゴ)---- */
h1 { /*（｢h1｣設定）*/
    float:left;
}
h1 img{
    width: 180.5px;
    height: 38px;
}
h1 img:active {
    transition: 0.3s;
    opacity: 0.7;
}

/* -------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■ PC ■■■■■■■■■■■◆ ハンバーグメニュー ◆ */
/* -------------------------------------------------------------------------- */

.pc-head-right{ /* 全体 */
    display: none;/* パソコンのみのメニュー */
}

/* ----------------------------------------------------------(メニュー)---- */
#nav-drawer { /* メニュー全体 */ 
    float:right;
    display:block;
}
.nav-unshown {/*チェックボックス等は非表示に*/
    display:none;
}
#nav-open {/*アイコンのスペース*/
    display: inline-block;
    width: 35px;
    height: 35px;
    cursor: pointer;
}
#nav-open img{
    width: 35px;
    height: 35px;
}
#nav-close {/*閉じる用の薄黒カバー*/
    display: none;/*はじめは隠しておく*/
    position: fixed;
    z-index: 99;
    top: 0;/*全体に広がるように*/
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
}
/* ------------------------------------------------------(メニュー中身)---- */
#nav-content {/*中身*/
    overflow: scroll;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;/*最前面に*/
    width: 85%;/*右側に隙間を作る（閉じるカバーを表示）*/
    max-width: 330px;/*最大幅（調整してください）*/
    height: 100%;
    background: #fff;/*背景色*/
    transition: .3s ease-in-out;/*滑らかに表示*/
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);/*左に隠しておく*/
}
#nav-content::-webkit-scrollbar{
    width: 4px;
}
#nav-content::-webkit-scrollbar-track{
    background: #fff;
    border: none;
    border-radius: 10px;
    box-shadow: inset 0 0 2px #777; 
}
#nav-content::-webkit-scrollbar-thumb{
    background: #aaa;
    border-radius: 10px;
    box-shadow: none;
}
/* ------------------------------------------------------(トップの画像)---- */
.menu-title{
    width:98%;
    height:auto;
    padding:14px 2% 20px 0;
    margin-bottom:3px;
    background-color:#4f3016;
}
.menu-title img{
    width:100%;
    max-width:60%;
    height:auto;
}
/* ----------------------------------------------------(メニューリスト)---- */
.menu-list{
    width:100%;
    height: auto;
    clear: both;/*（回り込みを防ぐ）*/
    position: relative; 
    float:left;/*（横配列に必要なフロート）*/
    background-color:#fff;
}
.menu-link { 
    width:96%;
    height: auto;
    padding: 10px 0 10px 4%;
    text-align:left;
    color:#4f3016;
    font-size:0.8em; 
    font-weight:bold;
    border-top:1px solid #d9d3c3;
}
.menu-link p { 
    vertical-align:middle;
    display:inline-block;
    transition: 0.3s;
}
.menu-link p a:hover {
    opacity: 0.7 ;
}
.menu-link p a:active {
    opacity: 0.7 ;
}
.menu-mark{
    width:8%;
    max-width:40px;
    height:auto;
    padding-right:4px;
}
.menu-mark img{
    max-width:100%;
    height:auto;
}
.btn-yajirushi-menu{/* 矢印 */
    float:right;
    cursor: pointer;
    font-size: 1em ;
    font-weight:normal;
    color: #7f7f7f;
    margin-right:3%;
    padding-top:5px;
}
/* ------------------------------------------------------(～探すリスト)---- */
.kagobag-category-title { /* ～探す タイトル */
    width:94.1%;
    height: auto;
    padding: 13px 0 13px 5.9%;
    text-align:left;
    color:#876347;
    font-size:0.8em; 
    font-weight:bold;
    background-color:#f5f4f1;
    border-top:1px solid #e3e0d5;
}
.kagobag-category-title p { 
    vertical-align:middle;
}
/* ------------------------------------------------------(ミニメニュー)---- */
.mini-menu{
    width:100%;
    height: auto;
    text-align:left;
}
.mini-menu-link { /* ～編み模様とかの2列リンク */
    width:45.4%;
    height: auto;
    padding: 12px 0 12px 4.2%;
    text-align:left;
    color:#4f3016;
    font-size:0.8em; 
    font-weight:normal;
    border-top:1px solid #e3e0d5;
    border-left:1px solid #e3e0d5;
    float:left;
}
.mini-menu-link p { 
    vertical-align:middle;
    display:inline-block;
    transition: 0.3s;
}
.mini-menu-link p a:hover {
    opacity: 0.7 ;
}
.mini-menu-link p a:active {
    opacity: 0.7 ;
}
.menu-mark-2{
    width:14.5%;
    max-width:30px;
    max-height:30px;
    padding-right:2px;
}
.menu-mark-2 img{
    max-width:100%;
    height:auto;
}
.btn-yajirushi-mini-menu{/* 矢印 */
    float:right;
    cursor: pointer;
    font-size: 1em ;
    font-weight:normal;
    color: #a7978a;
    margin-right:5%;
    padding-top:3px;
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
    display: block;/*カバーを表示*/
    opacity: .5;
}
#nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);/*中身を表示（右へスライド）*/
    box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

/* -------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■ PC ■■■■■■■■■■■■■■◆ グロナビ ◆ */
/* -------------------------------------------------------------------------- */

.glonavi-border-1100{ /* パソコンのみ・背景を白くするためだけ */
    display: none;/* パソコンのみのメニュー */
}

/* -------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■ SP ■■■■■■■■■■■■■■◆ コンテナ ◆ */
/* -------------------------------------------------------------------------- */

#container {/* （コンテナ） */
    width: 100%;
    text-align:left;
    position: relative;
    margin: 0 auto; /*（bottomの｢0px｣はフッターとの距離用）*/
    padding-bottom:0; /*（フッター固定用） *//*フッターの高さと同じ */
    background-color:#fafafa;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■◆ ＨＯＭＥ メインコンテンツ ◆ */
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■ ◆ 商品の詳細 ここから ◆*/
/* ------------------------------------------------------------------------- */

.detail-flex-bigbox{ /* コンテンツボックス・サイズまで */
    width: 93.4%;
    height: auto;
    margin: 4px auto 0;
    padding: 0 2.5% 0;
    border: 1px solid #e9e9e9;
    border-bottom:none;
    background-color:#ffffff;
    overflow: hidden; /*floatの解除*/ 
    display:flex; /*（横並び）*/
    flex-wrap: wrap; /*（縦並び・折り返しの指定になっている）*/
    border-radius: 8px 8px 0 0;
}

/* ----------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■ ◆ 商品の詳細 商品画像 ◆*/
/* ----------------------------------------------------------- */

.item-detail-left{ /* 商品の詳細 左要素 全体ボックス */
    width: 100%;
    height: auto;
    margin: 0 auto 0;
}

/* -------------------------------------------- */
/* ---- ◆ YouTubeボタン・切り替えて見る ◆ --- */
/* -------------------------------------------- */
.cf:before,
.cf:after{
    content:"";
    display:table;
}
 
.cf:after{
    clear:both;
}
 
.cf{
    zoom:1;
}
#content {
    max-width: 100%;
    margin: 9px auto;
    text-align: center;
}
#featured_img img,
#thumb_img img {
    max-width: 100%;
    height:auto;
}

#thumb_img {
  margin-top:3.5%;
  img {
    float:left;
    max-width: 15.3%;
    width: 15.3%;
    height: 15.3%;
    cursor: pointer;
    margin-right:1.3%;
    padding-bottom:0.5%;
    border:none;
    box-sizing:border-box;
    
    &.active{
    border:none;
    }
    
    &:last-child{
      margin-right:0;
    }
  }
}
#thumb_img img{
    max-width: 100%;
    width: 15.3%;
    height:auto;
    cursor:pointer;
}

/* -------------------------------------------- */
/* ----------- (モーダル・YouTube) ------------ */
/*--------------------------------------------- */

.modal_open {
    cursor:pointer;
    width: 100%;
    height:auto;
    margin:0 auto;
}
.modal_open img{
}
/*--------------------------------------------- */
.youtube-button {
    width: 100%;
    max-width: 500px;
    height:auto;
    margin:0 auto 0;
    padding:14px 0;
    text-align:center;
    border:1px solid #ebebeb;
    background: #ffffff;
}
.watch-youtube-img { /*（YouTubeマーク画像）*/
    width: 100%;
    height:auto;
}
.watch-youtube-img img {
    max-width: 100%;
    width: 90%;
    height:auto;
}
/*--------------------------------------------- */
.modal_box {
    position: fixed;
    z-index: 7777;
    display: none;
    width: 100%;
    max-width: 94%;
    padding: 25px 4vw 30px;
    border-radius: 10px;
    text-align: center;
    background: #fff;
    box-sizing: border-box;
}
/*--------------------------------------------- */
.modal_close { /*（閉じる）*/
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 62px;
    font-size: 40px;
    color: #000;
    line-height: 62px;
    text-align: center;
    background: #ffffff;
}
.modal_close i {
    line-height: 62px;
    vertical-align: bottom;
}
.fa-times-circle { /*（閉じるの×）*/
    color:#c69b53;
    cursor:pointer;
}
.modal_bg { /*（周りの黒）*/
    position: fixed;
    top: 0;
    left: 0;
    z-index: 6666;
    display: none;
    width: 100%;
    height: 120%;
    background-color: rgba(0,0,0,0.7);
}

/* ------------------------------------ */
/* --------- (モーダル・中身) --------- */
/* ------------------------------------ */

.youtube-title { /*（商品名タイトル）*/
    width: 100%;
    color:#3a3a3a;
    text-decoration: none;
    margin: 0 auto;
    padding:0 0 20px 0;
    font-size: 14px;
    font-weight:normal;
    line-height:1.4;
}
/* ------------------------------------ */
.youtube-movie { /*（動画）*/
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
}
.youtube-movie iframe {
    width: 100%;
    height: 100%;
    border-radius: 6px;
}
/* ------------------------------------ */
.youtube-note { /*（AI生成 注意事項）*/
    width: 100%;
    color:#ed1c24;
    text-decoration: none;
    margin: 20px auto 0;
    padding:0 0 0 0;
    font-size: 12px;
    font-weight:normal;
    line-height:1.4;
}

/* -------------------------------------------- */
/* ------- (モーダルウィンドウここまで) ------- */
/* -------------------------------------------- */

/* -------------------------------------------- */
/* ------ ◆ 商品画像・切り替えて見る ◆ ------ */
/* -------------------------------------------- */

.cf:before,
.cf:after{
    content:"";
    display:table;
}
 
.cf:after{
    clear:both;
}
 
.cf{
    zoom:1;
}
#content {
    max-width: 100%;
    margin: 9px auto;
    text-align: center;
}
#featured_img img,
#thumb_img img {
    max-width: 100%;
    height:auto;
    border-radius:8px;
}

/* -------------------------------------------- */
/* ------- ◆ 割引商品用のスパン画像 ◆ ------- */
/* -------------------------------------------- */

#featured_img{
    position:relative;
}
#featured_img span{
    position:absolute;
    width:17%;
    top:3px;
    left:0px;
}
#featured_img span img{
    max-width: 100%;
    height:auto;
}
/* -------------------------------------------- */
#thumb_img {
  margin-top:3.5%;
  img {
    float:left;
    max-width: 15.3%;
    width: 15.3%;
    height: 15.3%;
    cursor: pointer;
    margin-right:1.3%;
    padding-bottom:0.5%;
    border:none;
    box-sizing:border-box;
    
    &.active{
    border:none;
    }
    
    &:last-child{
      margin-right:0;
    }
  }
}
#thumb_img img{
    max-width: 100%;
    width: 15.3%;
    height:auto;
    cursor:pointer;
}

/* ----------------------------------------------------------- */
/* ■■■■■■■■■■■■ ◆ 商品の詳細 価格・カートボタン ◆*/
/* ----------------------------------------------------------- */

.item-detail-right{ /*（商品の詳細 右要素 全体ボックス）*/
    width: 100%;
    height: auto;
    margin: 0 auto 0;
    text-align:center;
}

/* -------------------------------------------- */
/* --------------- (商品コード) --------------- */
/* -------------------------------------------- */

.detail-itemname-coad{ /*（全体）*/
    width: 100%;
    margin: 54px auto 0;
    padding:0;
}
.coad-id{ /*（商品コード）*/
    padding:0;
    color:#3d3d3d;
    text-decoration: none;
    font-size: 12px;
    font-weight:normal;
}

/* -------------------------------------------- */
/* ----------------- (商品名) ----------------- */
/* -------------------------------------------- */

h2{ /*（商品名）*/
    width: 95%;
    margin: 32px auto 35px;
    padding:0 2.5% 25px;
    color:#3a3a3a;
    text-decoration: none;
    font-size: 15px;
    font-weight:bold;
    line-height:1.3;
    border-bottom:1px solid #e7e7e7;
}

/* -------------------------------------------- */
/* -------------- ( 商品タイプ) --------------- */
/* -------------------------------------------- */

.item-type-link{ /*（商品タイプ 全体）*/
    width: 100%;
    height: auto;
    margin:0 0 0;
    font-weight:normal;
}
.item-type-link p{
    display:inline;
    font-size: 11px;
    background:#fafafa;
}
.item-type-link p a{
    font-weight:normal;
    font-size: 11px;
    color:#0099e6;
    text-decoration:underline;
}
/* -------------------------------------------- */
.off{ /*  (○％OFF 割引ページのみ)  */
    font-weight:bold;
    font-size: 12px;
    color:#e37d48;
    margin-left:-5px;
}

/* -------------------------------------------- */
/* --------------- (商品サイズ) --------------- */
/* -------------------------------------------- */

.item-size-box{ /*（商品サイズ 全体）*/
    width: 100%;
    height: auto;
    margin:30px 0 0;
}
.item-size{
    margin:0;
    color:#505050;
    font-weight:normal;
}
.item-size p{
    font-size: 15px;
    padding:8px 0 0;
}
.size-note{ /*（サイズ表記は｢外寸｣です）*/
    font-weight:normal;
    font-size: 10px;
    color:#3d3d3d;
    padding:30px 0 30px;
    line-height:1.3;
    border-bottom:1px solid #e7e7e7;
}

/* ---------------------------------------------- */
/* ----------------- (商品価格) ----------------- */
/* ---------------------------------------------- */

.price-discbutton{ /*（全体）*/
    width: 100%;
    height: auto;
    margin:32px auto 8px;
    overflow: hidden; /*floatの解除*/ 
}
.price-tax{ /*（価格 全体）*/
    width: 100%;
    height: auto;
    margin:0;
    float:;
}
.item-price p{ /*（価格 横並び）*/
    display:inline;
}
.just-text{ /*（｢価格｣「円｣）*/
    font-weight:normal;
    font-size: 16px;
    color:#3d3d3d;
    vertical-align:text-middle;
}
.price{ /*（価格）*/
    font-weight:normal;
    font-size: 25px;
    color:#3d3d3d;
    margin:0 0 0 -6px;
    vertical-align:text-middle;
}
.cost0{ /*（送料0円）*/
    margin:0 0 0 5px;
    vertical-align:text-top;
}
.cost0 img{
    width: 55px;
    height: auto;
    margin:0;
    vertical-align:sub;
}
.cost-area-betsu{ /*（地区別特別送料）*/
    margin:0 0 0 5px;
}
.cost-area-betsu img{
    width: 95px;
    height: auto;
    margin:0;
    vertical-align:sub;
}
/* ------------------------------------------------ */
.item-tax{ /*（内税）*/
    margin:5px 0 28px 0px;
}
.item-tax p{
    display:inline;
    font-weight:normal;
    font-size: 12px;
    color:#3d3d3d;
}

/* ------------------------------------------------ */
/* ■■■■■■■ ◆ カートボタン ◆ ■■■■■■■ */
/* ------------------------------------------------ */

.cart_button_all{/* --全体 オリジナル-- */
    width: 101%;
    height: auto;
    margin: 0 0 0 -3%;
    padding: 3.5% 2.5% 30px;
    border-right:none; /* --1px solid #e9e9e9;-- */
    border-left:none; /* --1px solid #e9e9e9;-- */
    border-top:none;
    border-bottom: 1px solid #ededed;
    background-color:#fafafa;
}
/* ------------------------------------------------ */
.cart_btn{
    width:100%;
    margin:12px auto 0;
    height:auto;
}
.item_stock{/* --在庫-- */
    width:47.5%;
    float:left;
    text-align:right;
    margin:0 8px 7px 0;
}
.item_stock_ttl{
    color:#3d3d3d;
    font-size:13px;
}
.item_stock_val {/* --在庫数-- */
    color:#d74733;
    font-weight:bold;
    font-size:14px;
    display:inline-block;
}
.item_stock_val::after {
    content: ' 点';
    color:#3d3d3d;
    font-weight:normal;
    font-size:13px;
}
/* ------------------------------------------------ */
.item_count{/* --購入する数-- */
    width:47.5%;
    margin:0px 0 7px 8px;
    padding:0;
    float:right;
    text-align:left;
    display:inline-block;
}
.item_count_ttl{
    font-size:13px;
    margin-right: 8px;
}
.notranslate{/* --数(ドロップダウン)-- */
    font-size:13px;
}
/* ------------------------------------------------ */
.cart_button in{/* --カートボタン-- */
    width:100%;
    height:auto;
    padding:15px 0 30px 0;
}
.cart_button_in_value{
    width:100%;
    padding:15px 0 50px 0;
}
/* ------------------------------------------------ */
/* ------------------------------------------------ */
.one-item-note{/* -- 一点商品のため売切れ次第販売終了となります -- */
    width:100%;
    margin:0 auto;
    text-align:center;
    font-size:12px;
    padding:15px 0 10px;
    color:#505050;
}
.cart_button in{/* --カートボタン-- */
    width:100%;
    height:auto;
    padding:15px 0 30px 0;
}
.cart_button_in_value{
    width:100%;
    padding:15px 0 50px 0;
}

/* -------------------------------------------------------------------- */
/* ■■■■■ ◆ カートボタン下の [注文方法・返品] リンク ◆ ■■■■■ */
/* -------------------------------------------------------------------- */

.cart-bottom-link{/* --(カートボタン下の注意事項等)-- */
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 1.8% 0 0;
    text-align:center;
}
.cart-bottom-link p{
    display:inline;
    font-size:11.5px;
}
.cart-bottom-link p a{
    color:#505050;
    font-size:11.5px;
    text-decoration:underline;
}
.cart-bottom-link p a:hover{
    opacity: 0.7 ;
}
/* ---------------------------------------------- (SNSソーシャルボタン) --- */
.sns-button{/* --(SNS)-- */
    width: 100%;
    height: auto;
    margin: 30px auto 0;
    text-align:center;
}
.sns-button p{
    display:inline;
}

/* -------------------------------------------- */
/* ------ (この商品について問い合わせる) ------ */
/*--------------------------------------------- */
.contact-this-item{ /*（全体）*/
    width: 80%;
    height: auto;
    margin:0 auto 0;
    padding:12px 0 14px;
    text-align:center;
    cursor:pointer;
    font-size: 14px; 
    color:#505050;
    font-weight:normal;
    text-decoration:underline;
}
.contact-this-item:hover {
    opacity: 0.7 ;
}
.contact-this-item::before{/* ？マーク */
    font-family: "Font Awesome 5 Free";
    content: "\f0e0";
    font-size: 1.1em ;
    font-weight: 900;
    padding-right: 1px;/* 文字との隙間 */
    color: #7f8088;/* アイコンの色 */
}

/* ---------------------------------------------- */
/* -- (モーダル・この商品について問い合わせる) -- */
/*----------------------------------------------- */

.modal_box_contact {
    position: fixed;
    z-index: 7777;
    display: none;
    width: 100%;
    max-width: 90%;
    padding: 0;
    border-color:#262323;
    border-radius: 8px;
    text-align: center;
    background: #fff;
    box-sizing: border-box;
}
/*--------------------------------------------- */
.modal_close_contact { /*（閉じる）*/
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 62px;
    font-size: 40px;
    color: #000;
    line-height: 62px;
    text-align: center;
    background: #ffffff;
}
.modal_close_contact i {
    line-height: 62px;
    vertical-align: bottom;
}
.fa-times-circle_contact { /*（閉じるの×）*/
    color:#c69b53;
    cursor:pointer;
}
.modal_bg_contact { /*（周りの黒）*/
    position: fixed;
    top: 0;
    left: 0;
    z-index: 6666;
    display: none;
    width: 100%;
    height: 120%;
    background-color: rgba(0,0,0,0.3);
}

/* -------------------------------------------- */
/* ------------------ フォーム ---------------- */
/* -------------------------------------------- */

#formWrap {
    width:100%;
    margin:0 auto;
    padding:0 0 0;
    line-height:1.1;
    color:#262323;
    background:#ffffff;
    border-radius: 8px;
}
/* -------------------------------------------- */
.item-title { /*（商品名）*/
    width:100%;
    font-size:14px; 
    font-weight:bold;
    padding:26px 0 22px 0; 
    margin-bottom:20px; 
    text-align:center;
    color:#262323;
    background-color:#fcf7eb;
    border-radius: 8px 8px 0 0;
}
/* -------------------------------------------- */
table.formTable{
    border-collapse:collapse;
    width:100%;
}
/* -------------------------------------------- */
.form-zettai-mark{ /*（必須マーク）*/
    font-size:16px; 
    font-weight:bold;
    color:#fc7b61;
}
/* -------------------------------------------- */
.hotmail-note{ /*（hotmailはやめてください）*/
    font-size:10px; 
    font-weight:bold;
    color:#e63d1b;
    margin-top:-20px;
    margin-bottom:20px;
}
/* -------------------------------------------- */
table.formTable td,table.formTable th{
    border:none;
    padding:0 0 3px;
}
table.formTable th{
    background:#ffffff;
    text-align:left;
    font-weight:normal;
    font-size:13px;  
    color:#3a3a3a;
    display:block;
    width:90%;
    padding:0 5% 2px; 
}
table.formTable th p{
    display:inline;
}
table.formTable td{
    background:#ffffff;
    display:block;
    width:90%;
    padding:0 5%; 
}
/* -------------------------------------------- */
.text-box-size{ /*（テキストボックスのサイズ）*/
    width:100%;
    padding:6px 2px;
    margin-bottom:25px;
}
.btn-takasa{
    padding:0 0 25px;
}

/* ------------------------------------------------ */
/* ■■■■■■■■ ◆ 商品説明 ◆ ■■■■■■■■ */
/* ------------------------------------------------ */

.item-description-box{ /*（全体）*/
    width: 93.4%;
    height: auto;
    margin: 0 auto;
    padding: 45px 2.5% 0;
    border: 1px solid #e9e9e9;
    border-top:none;
    border-bottom: 1px solid #e9e9e9;
    background-color:#ffffff;
    display:flex; /*（横並び）*/
    flex-wrap: wrap; 
    border-radius: 0 0 8px 8px;
}
/* ------------------------------------------------ */
.description-title{ /*（タイトル・横幅100％）*/
    width: 100%;
    font-weight:bold;
    font-size: 15px;
    color:#505050;
    border-bottom:1px solid #e7e7e7;
    padding-bottom:10px;
    text-align:center;
}
.description-title::before{/* かごのマーク */
    font-family: "Font Awesome 5 Free";
    content: "\f290";
    font-size: 0.9em ;
    font-weight: 900;
    padding-right: 3px;/* 文字との隙間 */
    color: #3d3d3d;/* アイコンの色 */
    text-decoration:none;
}

/* ------------------------------------------------ */
/* ■■■■■ ◆ パソコンのみの説明画像 ◆ ■■■■ */
/* ------------------------------------------------ */

.setsumei-box{ /*（全体）*/
    width: 100%;
    margin:0 auto 0;
    padding: 0;
}
/* ------------------------------------------------ */
.setsumei-image{ /*（商品画像）*/
    width: 80%;
    margin: 10px auto 0;
    text-align:center;
}
.setsumei-image img{
    width: 100%;
    height: auto;
    max-width: 250px;
    margin:0 auto 0;
    border-radius:6px;
}
/* ------------------------------------------------ */
.item-tokuchou{ /*（特徴と使用感 全体）*/
    width: 100%;
    height: auto;
    margin:40px 0 0;
    color:#3d3d3d;
    font-size: 13px;
    font-weight:normal;
    line-height:1.5;
}
.item-tokuchou a{
    color:#505050;
    text-decoration:underline;
}
.item-tokuchou a:hover{
    opacity:0.8;
    text-decoration:underline;
}
.item-tokuchou p{
    padding-bottom:35px;
}
/* ------------------------------------------------ */
.akebinosato-item-note{ /*（※あけびの里で制作したものを販売しています）*/
    width: 94.5%;
    height: auto;
    margin:0 0 30px;
    padding: 10px 2.5%;
    color:#3d3d3d;
    font-size: 11px;
    font-weight:normal;
    line-height:1.5;
    background: #fff7f7;
    border: 1px solid #fff2f2;
    border-radius:4px;
}
.akebinosato-item-note a{
    color:#3d3d3d;
    text-decoration:underline;
}
.akebinosato-item-note a:hover{
    opacity:0.8;
    text-decoration:underline;
}

/* -------------------------------------------- */
/* -------------- ◆ 地区別送料 ◆ -------------*/
/* -------------------------------------------- */

table.area-cost {
    width:100%;
    margin:-20px auto 25px;
    border-collapse: collapse;
    font-size:14px;
    border-top: 1px solid #e8e8e8;
}
table.area-cost thead {
    border-left: 1px solid #e8e8e8;
}
table.area-cost td {
    width: 10%;
    padding: 8px 10px 5px;
    color:#5c4e42;
    vertical-align: middle;
    text-align:center;
    background: #fff;
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}
.title-color{
    background: #f6f6f6 !important;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■ ◆ ご注意事項を詳しく見る ◆ */
/* ------------------------------------------------------------------------- */
/* -------------------------------------------------- */
/* -------------- ◆ ご注意・保存方法 ◆ -------------*/
/* -------------------------------------------------- */

.item-note{ /*（ご注意・保存方法 全体）*/
    width: 100%;
    height: auto;
    margin:5px 0 0;
    padding:20px 15px 0;
    color:#3d3d3d;
    font-size: 13px;
    font-weight:normal;
    line-height:1.5;
    border-right: 1px solid #f5f5f5;
    border-left: 1px solid #f5f5f5;
    border-top: 1px solid #f5f5f5;
    border-bottom: none;
    background-color:#fafafa;
    border-radius: 8px 8px 0 0;
}
.item-note p{
    padding-bottom:35px;
}
.item-note a{
    color:#505050;
    text-decoration:underline;
}
.item-note a:hover{
    opacity:0.8;
    text-decoration:underline;
}
/* ------------------------------------------------ */
.desc-mini-title{
    margin:0 0 35px;
    padding:10px 0;
    font-size: 14px;
    font-weight:bold;
    background-color:#ffffff;
    text-align:center;
    border-radius: 5px;
}
/* ------------------------------------------------ */
.note-modal-title { /* --- (ご注意事項見るボタン) --- */
    width: 100%;
    height: auto;
    margin:0 0 20px;
    padding:0 0 30px;
    font-size: 13px;
    font-weight:normal;
    text-align:center;
    text-decoration:underline;
    border-right: 1px solid #f5f5f5;
    border-left: 1px solid #f5f5f5;
    border-top: none;
    border-bottom: 1px solid #f5f5f5;
    background-color:#fafafa;
    border-radius: 0 0 8px 8px;
}
.note-modal-title::before{/* ココが安心・下矢印 */
    font-family: "Font Awesome 5 Free";
    content: "\f071";
    font-size: 0.9em ;
    font-weight: 900;
    padding-right : 4px;/* 文字との隙間 */
    color:#3d3d3d;
    text-decoration:none;
}

/* ------------------------------------------------ */
/* ◆ ■■■ ◆ (モーダル・ご注意事項) ◆ ■■■ ◆ */
/*------------------------------------------------- */

.modal_open_note {
    cursor:pointer;
}
.modal_open_note::after{/* モーダルマーク */
    font-family: "Font Awesome 5 Free";
    content: "\f08e";
    font-size: 0.9em ;
    font-weight: 900;
    padding-right: 3px;/* 文字との隙間 */
    color: #3d3d3d;/* アイコンの色 */
    text-decoration:none;
}
.modal_open_note img{
    max-width: 100%;
    height:auto;
}
.modal_box_note {
    position: fixed;
    z-index: 7777;
    display: none;
    width: 100%;
    max-width: 90%;
    padding: 0;
    border-radius: 10px;
    text-align: center;
    background: #fff;
    box-sizing: border-box;
}
/*--------------------------------------------- */
.modal_close_note { /*（閉じる）*/
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 62px;
    font-size: 40px;
    color: #000;
    line-height: 62px;
    text-align: center;
    background: #ffffff;
}
.modal_close_note i {
    line-height: 62px;
    vertical-align: bottom;
}
.fa-times-circle_note { /*（閉じるの×）*/
    color:#c69b53;
    cursor:pointer;
}
.modal_bg_note { /*（周りの黒）*/
    position: fixed;
    top: 0;
    left: 0;
    z-index: 6666;
    display: none;
    width: 100%;
    height: 120%;
    background-color: rgba(0,0,0,0.3);
}

/* -------------------------------------------------- */
/* ■■■■■■■■■■■■■■ ◆ ご注意事項 内容 ◆ */
/* -------------------------------------------------- */

.note-bigtitle{ /* タイトル */
    margin:0;
    padding:30px 0 25px;
    font-size:15px;
    color:#301400;
    background-color:#fcf7eb;
    border-radius:10px 10px 0 0 ;
}
/* -------------------------------------------------- */
.scrollbar {/* ---(注意事項・スクロールバー)--- */
    width: 93%;
    height: 360px;
    overflow-y: scroll;   /* スクロール表示 */ 
    padding:0 3.5%;
    color:#40221f;
    font-size:12px;
    line-height:1.3;
    background-color:#fffdfa;
    border-top: 1px solid #f2ecdf;
    border-bottom: 1px solid #f2ecdf;
    border-radius:10px;
}
.scrollbar p{
}
.scrollbar p a:hover {
    opacity: 0.7 ;
}
.scrollbar::-webkit-scrollbar{
    width: 8px;
    background-color:#fffdfa;
}
.scrollbar::-webkit-scrollbar-track{
    background: #fff;
    border: none;
    border-radius: 10px;
    box-shadow: inset 0 0 2px #d6be8b; 
}
.scrollbar::-webkit-scrollbar-thumb{
    background: #f0e1c0;
    border-radius: 10px;
    box-shadow: none;
}
/* -----------------------------------------------------(注意事項・内容)---- */
.note-mini-title {
    width: 100%;
    height: auto;
    padding:30px 0 14px;
    color:#4e412a;
    font-size:1em;
    font-weight:bold;
}
.ueno-sukima {
    margin-top:-50px;
}
.ueno-sukima2 {
    margin-top:-50px;
}
.note-text{ /* 説明 */ 
    width: 100%;
    height: auto;
    padding: 0px;
    padding:10px 0 0;
    text-align:left;
}
.note-hosoku{ /* 補足１ */ 
    padding:30px 0 30px;
    text-align:left;
}
.note-hosoku p{
    padding:0 0 30px;
}
.note-hosoku a{
    text-decoration:underline;
}
.note-hosoku-2{ /* 補足２ */ 
    padding:10px 0 30px;
    text-align:left;
}
.note-hosoku-2 p{
    padding:0 0 30px;
}
.note-hosoku-2 a{
    text-decoration:underline;
}
/* ------------------------------------------------ */
.note-last-BP-img{ /* 最後のロゴ画像 */
    width: 100%;
    height:auto;
    text-align: center;
    margin:0 0 -60px;
}
.note-last-BP-img img{
    max-width:100px;
    height:auto;
    width: 100%;
}
/* ------------------------------------------------ */
.note-last{ /* ※当サイトの内容は予告なく変更する... */ 
    width: 93%;
    padding:15px 3.5% 15px;
    color:#301400;
    font-size:10px;
    line-height:1.3;
    background-color:#fcf7eb;
    border-radius: 0 0 10px 10px;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■◆ ページリンク ボタン ◆ */
/* ------------------------------------------------------------------------- */

.pagelink-btn p{ /*（ページリンクボタン）*/
    width: 98.4%;
    height:auto;
    margin: 0 auto ;
    padding:18px 0;
    text-align:center;
    font-size: 13px; 
    border-top: 1px solid #e9e9e9;
    border-left: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    background-color:#ffffff;
    border-radius: 0 0 8px 8px;
}
.pagelink-btn:hover {
    opacity: 0.7 ;
}
.pagelink-btn:active {
    opacity: 0.7 ;
}
.pagelink-btn2 p{ /*（ページリンクボタン）*/
    width: 98.4%;
    height:auto;
    margin: 0 auto ;
    padding:18px 0;
    text-align:center;
    font-size: 13px; 
    border-top: 1px solid #e9e9e9;
    border-left: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    background-color:#ffffff;
    border-radius: 0 0 8px 8px;
}
.fa8 p::after{/* ？マーク */
    font-family: "Font Awesome 5 Free";
    content: "\f138";
    font-size: 1.1em ;
    font-weight: 900;
    padding-left : 4px;/* 文字との隙間 */
    color: #c3c3c3;/* アイコンの色 */
}
.fa9 p::after{/* ？マーク */
    font-family: "Font Awesome 5 Free";
    content: "\f138";
    font-size: 1.1em ;
    font-weight: 900;
    padding-left : 4px;/* 文字との隙間 */
    color: #c3c3c3;/* アイコンの色 */
}

/* ------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■ ◆ ショップのココが安心 ◆ */
/* ------------------------------------------------------------------- */

.shop-box-all{ /* ショップ案内 コンテンツボックス全体 */
    width: 98.4%;
    height: auto;
    margin: 0 auto;
    padding: 16px 0 0;
    border: 1px solid #e9e9e9;
    border-top: none;
    border-bottom: none;
    background-color:#ffffff;
}
/* ------------------------------------------------------------------- */
.shop-anshin-box{ /* ココが安心 全体 */
    width: 95%;
    height: auto;
    margin: 0 auto;
    padding: 32px 2.5% 0;
    background-color:#fffdf9;
    border-right: none;
    border-left: none;
    border-top: 1px solid #fffaf0;
    border-bottom: 1px solid #fffaf0;
}
/* ------------------------------------------------------------------- */
.anshin-title{ /* タイトル 全体 */
    width: 97.8%;
    height: auto;
    padding: 6px 0.8%;
    border: 1px solid #dbcda4;
    background-color:#cfbea0;
    text-align: center;
    border-radius: 4px;
}
.anshin-title-inner{ /* タイトルとボーダー */
    padding: 8px 4.2% ;
    margin:0 5px;
    color:#fff;
    font-size:0.95em;
    font-weight:bold;
}

/* ------------------------------------------------- */
/* ■■■■■ ◆ ココが安心 画像と説明 ◆ ■■■■■ */
/* ------------------------------------------------- */

.anshin-box{ /*（画像と説明の全体）*/
    width: 100%;
    height:auto;
    margin: 30px auto 0;
    padding: ;
    display:flex; /*（横並び）*/
    flex-wrap: wrap; 
}
/* ------------------------------------------------ */
.anshin-image{ /* 画像 */
    width: 100%;
    height:auto;
    text-align: center;
    padding-bottom:5px;
}
.anshin-image img{
    max-width:98%;
    height:auto;
    width: 100%;
}
/* ------------------------------------------------ */
.anshin-description{ /* 説明 全体 */
    width:95%;
    margin:30px auto 33px;
    padding:0 2.5% 0;
}
.anshin-right-title{ /* 太字の小タイトル */
    width: 100%;
    height:auto;
    color:#585858;
    font-size:15px;
    font-weight:bold;
    padding:0 0 15px;
    text-align: center;
}
/* ------------------------------------------------ */
.anshin-right { /* テキスト */
    width: 100%;
    height:auto;
    color:#656565;
    font-size:14px;
    font-weight:normal;
    line-height:1.3;
    padding-bottom:35px;
}
.anshin-right p{ /* テキスト */
    padding-bottom:10px;
}
/* --------------------------- */
.anshin-right2 { /* テキスト */
    width: 100%;
    height:auto;
    color:#656565;
    font-size:14px;
    font-weight:normal;
    line-height:1.3;
    padding-bottom:0;
}
.anshin-right2 p{ /* テキスト */
    padding-bottom:10px;
}
/* ------------------------------------------------ */
.anshin-repair{ /* 修理 */
    width: 95%;
    margin: 0 auto 0;
    padding:0 2.5% 40px;
    color:#585858;
    font-size:12px;
    font-weight:normal;
    line-height:1.3;
    background-color:#fffdf9;
    border-right: 1px solid #e9e9e9;
    border-left: 1px solid #e9e9e9;
}
.anshin-repair a{
    color:#585858;
    text-decoration:underline;
}
.anshin-repair a:hover {
    opacity: 0.7 ;
}

/* ------------------------------------------------ */
/* ■■■■■■■■■ ココが安心・非表示から表示 ◆ */
/* ------------------------------------------------ */

.hidden-view{
    display: none;
}
.hidden-view.open{
    display: block;
}
.button::before{
    content: "";
}
.hidden-view.open + .button::before{
    content: "";
}
/* ------------------------------------------------------------------------- */
.fa10 p::after{/* ココが安心・下矢印 */
    font-family: "Font Awesome 5 Free";
    content: "\f13a";
    font-size: 1.1em ;
    font-weight: 900;
    padding-left : 4px;/* 文字との隙間 */
    color: #c3c3c3;/* アイコンの色 */
}
/* ------------------------------------------------------------------------- */
.fa10{/* ココが安心ボタンの位置と幅の調節 */
    width: 100.2%;
    margin-left:-0.5px;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■ ◆ お支払い方法 ◆ */
/* ------------------------------------------------------------------------- */

/* ---------------------------------------------------(商品一覧タイトル)---- */
.payment-title-box{ /* タイトルボックス・ページ内全使用 */
    position: relative;
    width: 98%;
    height: auto;
    margin: 15px auto 6px;
    border-top: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    padding: 7px 0 7px 2%;
    background-color:#ffffff;
    display:block;
}
/* ------------------------------------------------------(自前のｈ4指定)---- */
.fontawsome-other{
    font-size: 14px; 
    font-weight:normal;
    color:#3a3a3a;
    border-left: 7px solid #c3c3c3;
    padding: 13px 0 13px 3.5%;
    line-height:1.1;
}
/* ----------------------------------------------- */
.payment-box{ /* お支払い方法 コンテンツボックス全体 */
    width: 93.4%;
    height: auto;
    margin: 4px auto 0;
    padding: 27px 2.5% 12px;
    border: 1px solid #e9e9e9;
    border-bottom: none;
    background-color:#ffffff;
    border-radius:8px 8px 0 0 ;
}
.payment-mine-title{ /* 太字の小タイトル */
    width:100%;
    height:auto;
    color:#595a59;
    font-size:13px;
    font-weight:bold;
    padding:0 0 6px;
    border-bottom: 2px dotted #cccccc;
}
/* --------------------------------------------------------(支払い方法)---- */
.payment-icon{ /* 4つの支払い方法全体 */
    background-color:#fafafa;
    border: 1px solid #f6f6f6;
    text-align: center;
    margin:12px 0 30px;
    padding:18px 0 20px;
    border-radius: 6px;
}
.pay-img-size { /* 画像全部に */
    width: 22%;
    display: inline-block;
}
.pay-img-size img{
    max-width:100%;
    width:68px;
    height:auto;
}
/* -----------------------(支払い方法「画像をクリックで切り替わります｣)---- */
.image-kirikae-info{
    float:right;
    width:90px;
    height:auto;
    color:#595a59;
    font-size:0.7em;
    font-weight:normal;
    margin-top:-43px;
    padding:6px 2% 5px 2.5%;
    border: 1px solid #e9e9e9;
}
.fade_off {
    opacity: 0;
    -webkit-transition: all 8s;
    -moz-transition: all 8s;
    -o-transition: all 8s;
    -ms-transition: all 8s;
    transition: all 8s;
}
.fade_on {
    opacity: 1;
}
/* -----------------------------------------ひとつひとつの画像切り替え)---- */
.pay-image-icon-1 img { /* クレジットカード決済 */
  display: none;
}
.pay-image-icon-1 img:first-child  {
  display: inline;
}
.pay-image-icon-2 img { /* コンビニ決済 */
  display: none;
}
.pay-image-icon-2 img:first-child  {
  display: inline;
}
.pay-image-icon-3 img { /* 銀行振込 */
  display: none;
}
.pay-image-icon-3 img:first-child  {
  display: inline;
}
.pay-image-icon-4 img { /* ゆうパック代金引換 */
  display: none;
}
.pay-image-icon-4 img:first-child  {
  display: inline;
}
/* ----------------------------------(送料・発送方法・返品・キャンセル)---- */
.cost-icon{ /* 送料・発送方法 */
    background-color:#fafafa;
    border: 1px solid #f6f6f6;
    margin:11px 0 0;
    padding:14px 0 18px;
    border-radius: 6px;
}
/* -------------------------(送料・発送方法・返品・キャンセル アイコン)---- */
.cost-left-icon{
    float:left;
    width: 26.5%;
    height: auto;
    margin:11px 0 0 2.5%;
}
.cost-left-icon img{
    max-width:100%;
    width: 92px;
    height:auto;
}
/* ----------------------------------------------------------(右の説明)---- */
.cost-right-text{
    float:right;
    width: 66%;
    height: auto;
    margin:5px 2% 0 0;
    font-size:12px;
    color:#3a3a3a;
    line-height:1.4;
}
/* ----------------------------------(送料・発送方法・返品・キャンセル)---- */
.pc-henpin-all{ /* 返品タイトルの上の隙間作り */
    margin-top:30px;
}
/* ----------------------------- */
.go-henin-page {
    margin:15px 0 0;
}
.go-henin-page a{
    text-decoration:underline;
}
.go-henin-page a:hover{
    opacity:0.7;
}
/* ----------------------------- */
.cost-p-margin{
    margin:15px 0 0;
}
.cost-p-margin a{
    text-decoration:underline;
}
.cost-p-margin a:hover{
    opacity:0.7;
}

/* -------------------------------------------------------------- */
/* ■■■■■■■■ ◆ ページ下のカートボタン ◆ ■■■■■■■■ */
/* -------------------------------------------------------------- */

.bottom-cart-flex-box{ /*（全体）*/
    width: 93.4%;
    height: auto;
    margin: 15px auto 0;
    padding: 15px 2.5% 5px;
    border: 1px solid #e9e9e9;
    background-color:#ffffff;
    text-align:center;
    display:flex; /*（横並び）*/
    flex-wrap: wrap; 
    border-radius:8px;
}
/* ------------------------------------------------ */
.bottom-item-image{ /*（商品画像）*/
    width: 100%;
    height: auto;
    margin:0 0 35px;
}
.bottom-item-image img{
    max-width: 100%;
    width: 100%;
    height: auto;
    margin:0 auto 0;
    border-radius:8px;
}

/* ------------------------------------ */
/* -- ◆ 割引商品用のスパン画像２ ◆ -- */
/* ------------------------------------ */

#featured_img2{
    position:relative;
}
#featured_img2 span{
    position:absolute;
    width:17%;
    top:0px;
    left:0px;
}
#featured_img2 span img{
    max-width: 100%;
    height:auto;
}

/* ------------------------------------------------ */
.bottom-item-detail{ /*（商品情報・カートに入れるボタン 全体）*/
    width: 100%;
    height: auto;
    margin:0 auto;
    padding: 0;
    color:#3d3d3d;
    font-size: 14px;
    font-weight:normal;
    line-height:1.6;
}
/* ------------------------------------------------ */
.bottom-item-coad{ /*（商品コード）*/
    width: 100%;
    font-size: 12px;
    font-weight:normal;
    margin-bottom:25px;
}
.bottom-item-h3{ /*（h3 商品名）*/
    width: 94%;
    font-size: 15px;
    line-height:1.3;
    padding: 0 3% 22px;
    border-bottom:1px solid #e7e7e7;
}
.bottom-item-size{ /*（商品サイズ）*/
    width: 80%;
    font-size: 14px;
    font-weight:normal;
    padding: 28px 10% 25px;
    border-bottom:1px solid #e7e7e7;
    line-height:1.4;
}
.bottom-size-note{
    font-size: 10px;
    font-weight:normal;
    margin:22px 0 3px;
    line-height:1.2;
    color:#616161;
}
/* ------------------------------------------------ */
.price-discbutton3{ /*（商品価格 全体）*/
    width: 100%;
    height: auto;
    margin:25px auto -10px;
    overflow: hidden; /*floatの解除*/ 
}
.price-tax3{ /*（価格 全体）*/
    width: 100%;
    height: auto;
    margin:0;
}
.item-price3 p{ /*（価格 横並び）*/
    display:inline;
}
.just-text3{ /*（｢価格｣「円｣）*/
    font-weight:normal;
    font-size: 15px;
    color:#3d3d3d;
    vertical-align:text-middle;
}
.price3{ /*（価格）*/
    font-weight:normal;
    font-size: 24px;
    color:#3d3d3d;
    margin:0 0 0 0;
    vertical-align:text-middle;
}
.cost03{ /*（送料0円）*/
    margin:0 0 0 5px;
    vertical-align: text-top;
}
.cost03 img{
    width: 55px;
    height: auto;
    margin:0;
    vertical-align:sub;
}
.cost-area-betsu3{ /*（地区別特別送料）*/
    margin:0 0 0 5px;
}
.cost-area-betsu3 img{
    width: 95px;
    height: auto;
    margin:0;
    vertical-align:sub;
}
/* ------------------------------------------------ */
.item-tax3{ /*（内税）*/
    margin:-4px 0 25px 0px;
}
.item-tax3 p{
    display:inline;
    font-weight:normal;
    font-size: 12px;
    color:#3d3d3d;
}
/* ------------------------------------------------ */
.cart_btn2{ /*（在庫・数量）※上の在庫デザインに影響するためココで編集しない */
    width:100%;
    margin:12px auto 15px;
    height:auto;
}
/* ------------------------------------------------ */
.one-item-note2{/* -- 一点商品のため売切れ次第販売終了となります -- */
    width:100%;
    margin:0 auto;
    text-align:center;
    font-size:11px;
    padding:0 0 0;
    color:#505050;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■ ◆ 商品ページアイコン ◆ */
/* ------------------------------------------------------------------------- */

.last-icons-name{ /*（product category）*/
    width: 100%;
    height: auto;
    margin: 30px auto 0;
    text-align:center;
}
.last-icons-name img{
    max-width: 100%;
    width: 130px;
    height: auto;
}
.last-icons{ /* 3つのアイコン */
    width: 100%;
    height: auto;
    text-align:center;
    margin: -0.3em auto 20px;
    padding: 0 0 26px;
    background-color:#fafafa;
}
.last-icons p{
    width: 65px;
    height: 62px;
    display:inline-block;
}
.last-icons p img{
    max-width: 100%;
    height: auto;
}
.last-icons p img:hover {
    opacity: 0.7 ;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■◆ フッター ◆*/
/* ------------------------------------------------------------------------- */

#footer { /*（フッター・全体）*/ 
    width:96%;
    height: auto;
    clear: both;/*（回り込みを防ぐ）*/
    position: relative; 
    bottom: 0; 
    float:left;/*（横配列に必要なフロート）*/
    background-color:#fff;
}
.link { 
    width:100%;
    height: auto;
    padding: 18px 0 16px 4%;
    text-align:left;
    color:#3a3a3a;
    font-size:0.95em; 
    border-top:1px solid #d9d9d9;
    border-bottom: 2px solid #d9d9d9;
}
.link p { 
    display:inline-block;
    transition: 0.3s;
}
.link p a:hover {
    opacity: 0.7 ;
}
.link p a:active {
    opacity: 0.7 ;
}
.topgyoume-top-margin {/*（項目一個目の上の高さ広げてる）*/ 
    margin-top: 3px;
}
.saigo-under-margin {/*（項目最後の下の広げてる）*/ 
    margin-bottom: 1px;
}
.btn-yajirushi{/* 矢印 */
    float:right;
    cursor: pointer;
    font-size: 1em ;
    font-weight:normal;
    color: #7f7f7f;
    margin-right:7px;
}
.px-footer{ /*（パソコン用・フッター・全体）*/ 
    display:none;
}

/* -------------------------------------------- */
/* ---------------( コピーライト )------------- */
/* -------------------------------------------- */
.copy-light {
    width:100%;
    height: auto; 
    margin:0 auto;
    padding:25px 0;
    display: inline-block; 
    font-size:0.7em;
    font-weight:normal;
    color:#a6a49d;
    text-align:center;
    background-color:#fff;
}

/* ----------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■◆ ここまで ◆■■■■■■■■■■■■■■■■*/
/* ----------------------------------------------------------------------------- */























/* ---------------------------------------------------------------------------------------- */
/* ---- ◆ レスポンシブデザイン ◆◆ レスポンシブデザイン ◆◆ レスポンシブデザイン ◆ ---- */
/* ---------------------------------------------------------------------------------------- */
/* ---- ◆ レスポンシブデザイン ◆◆ レスポンシブデザイン ◆◆ レスポンシブデザイン ◆ ---- */
/* ---------------------------------------------------------------------------------------- */
/* ---- ◆ レスポンシブデザイン ◆◆ レスポンシブデザイン ◆◆ レスポンシブデザイン ◆ ---- */
/* ---------------------------------------------------------------------------------------- */
/* ---- ◆ レスポンシブデザイン ◆◆ レスポンシブデザイン ◆◆ レスポンシブデザイン ◆ ---- */
/* ---------------------------------------------------------------------------------------- */
/* ---- ◆ レスポンシブデザイン ◆◆ レスポンシブデザイン ◆◆ レスポンシブデザイン ◆ ---- */
/* ---------------------------------------------------------------------------------------- */
/* ---- ◆ レスポンシブデザイン ◆◆ レスポンシブデザイン ◆◆ レスポンシブデザイン ◆ ---- */
/* ---------------------------------------------------------------------------------------- */














/* ------------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■◆ SP / タブレット 376-600 ◆■■ *//*  ■■◆ SP / タブレット 376-600 ◆■■ *//*  ■■◆ SP / タブレット 376-600 ◆■■ *//*
/* ------------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■◆ SP / タブレット 376-600 ◆■■ *//*  ■■◆ SP / タブレット 376-600 ◆■■ *//*  ■■◆ SP / タブレット 376-600 ◆■■ *//*
/* ------------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■◆ SP / タブレット 376-600 ◆■■ *//*  ■■◆ SP / タブレット 376-600 ◆■■ *//*  ■■◆ SP / タブレット 376-600 ◆■■ *//*
/* ------------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■◆ SP / タブレット 376-600 ◆■■ *//*  ■■◆ SP / タブレット 376-600 ◆■■ *//*  ■■◆ SP / タブレット 376-600 ◆■■ *//*
/* ------------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■◆ SP / タブレット 376-600 ◆■■ *//*  ■■◆ SP / タブレット 376-600 ◆■■ *//*  ■■◆ SP / タブレット 376-600 ◆■■ *//*
/* ------------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■◆ SP / タブレット 376-600 ◆■■ *//*  ■■◆ SP / タブレット 376-600 ◆■■ *//*  ■■◆ SP / タブレット 376-600 ◆■■ *//*
/* ------------------------------------------*//* -----------------------------------------*//* ----------------------------------*/

@media screen and (min-width: 376px) and (max-width: 600px) {

body{
    margin: 0 ;	
    padding: 0 ;
}
#wrap{
    width: 100%;
     max-width: 600px;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■ SP ■■■■■■■■■■■■◆ h1 / メニュー ◆ */
/* ------------------------------------------------------------------------- */
.h1-menu{
    width: 93%;
    padding: 33px 4% 28px 3%;
}
/* --------------------------------------------------------------(ロゴ)---- */
h1 img{
    width: 205px;
    height: 43px;
}

/* -------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■ PC ■■■■■■■■■■■■◆ product category ◆ */
/* -------------------------------------------------------------------------- */

.pc-head-right{ /* 全体 */
    display: none;/* パソコンのみのメニュー */
}

/* ----------------------------------------------------------(メニュー)---- */
#nav-drawer { /* メニュー全体 */ 
    display:block;
}
#nav-open {/*アイコンのスペース*/
    width: 38px;
    height: 38px;
    margin-top:1px;
}
#nav-open img{
    width: 38px;
    height: 38px;
}
/* ------------------------------------------------------(メニュー中身)---- */
#nav-content {/*中身*/
    max-width: 420px;/*最大幅（調整してください）*/
}
/* ------------------------------------------------------(トップの画像)---- */
.menu-title{
    padding:16px 2% 23px 0;
    margin-bottom:5px;
}
/* ----------------------------------------------------(メニューリスト)---- */
.menu-link { 
    width:96.7%;
    padding: 10px 0 10px 3.3%;
    font-size:0.85em; 
}
.btn-yajirushi-menu{/* 矢印 */
    margin-right:3%;
    padding-top:8px;
}
/* ------------------------------------------------------(～探すリスト)---- */
.kagobag-category-title { /* ～探す タイトル */
    width:94.7%;
    padding: 18px 0 18px 5.3%;
}
/* ------------------------------------------------------(ミニメニュー)---- */
.mini-menu-link { /* ～編み模様とかの2列リンク */
    width:46.1%;
    padding: 12px 0 12px 3.5%;
}
.menu-mark-2{
    padding-right:3px;
}
.btn-yajirushi-mini-menu{/* 矢印 */
    padding-top:5px;
}

/* -------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■ PC ■■■■■■■■■■■■■■◆ グロナビ ◆ */
/* -------------------------------------------------------------------------- */

.glonavi-border-1100{ /* パソコンのみ・背景を白くするためだけ */
    display: none;/* パソコンのみのメニュー */
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■◆ ＨＯＭＥ メインコンテンツ ◆ */
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■ ◆ 商品の詳細 ここから ◆*/
/* ------------------------------------------------------------------------- */

.detail-flex-bigbox{ /* コンテンツボックス・サイズまで */
    width: 93.4%;
    height: auto;
    margin: 4px auto 0;
    padding: 0 2.5% 0;
    border: 1px solid #e9e9e9;
    border-bottom:none;
}

/* ----------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■ ◆ 商品の詳細 商品画像 ◆*/
/* ----------------------------------------------------------- */

/* -------------------------------------------- */
/* ---- ◆ YouTubeボタン・切り替えて見る ◆ --- */
/* -------------------------------------------- */
#content {
    margin: 12px auto;
}

/* -------------------------------------------- */
/* ----------- (モーダル・YouTibe) ------------ */
/*--------------------------------------------- */

.modal_open img{
}
/*--------------------------------------------- */
.youtube-button {
    width: 100%;
    max-width: 500px;
    margin:12px auto 0;
    padding:15px 0;
}
.watch-youtube-img { /*（YouTubeマーク画像）*/
    width: 100%;
}
.watch-youtube-img img {
    max-width: 100%;
    width: 100%;
}
/* ------------------------------------ */
/* --------- (モーダル・中身) --------- */
/* ------------------------------------ */

.youtube-title { /*（商品名タイトル）*/
    font-size: 15px;
}

/* -------------------------------------------- */
/* ------- (モーダルウィンドウここまで) ------- */
/* -------------------------------------------- */

/* -------------------------------------------- */
/* ------- ◆ 割引商品用のスパン画像 ◆ ------- */
/* -------------------------------------------- */
#featured_img span{
    width:17%;
    top:0px;
    left:0px;
}

/* ----------------------------------------------------------- */
/* ■■■■■■■■■■■■ ◆ 商品の詳細 価格・カートボタン ◆*/
/* ----------------------------------------------------------- */

/* -------------------------------------------- */
/* --------------- (商品コード) --------------- */
/* -------------------------------------------- */

.detail-itemname-coad{ /*（全体）*/
    margin: 54px auto 0;
}
.coad-id{ /*（商品コード）*/
    font-size: 13px;
}

/* -------------------------------------------- */
/* ----------------- (商品名) ----------------- */
/* -------------------------------------------- */

h2{ /*（商品名）*/
    width:92%;
    margin: 32px auto 35px;
    padding:0 4% 25px;
    font-size: 16px;
}

/* -------------------------------------------- */
/* -------------- ( 商品タイプ) --------------- */
/* -------------------------------------------- */

.item-type-link{ /*（商品タイプ 全体）*/
    margin:0 0 0;
}
.item-type-link p{
    font-size: 11.5px;
}
.item-type-link p a{
    font-size: 11.5px;
}
/* -------------------------------------------- */
.off{/*  (○％OFF 割引ページのみ)  */
    margin-left:-5px;
    font-size: 13px;
}

/* -------------------------------------------- */
/* --------------- (商品サイズ) --------------- */
/* -------------------------------------------- */

.item-size-box{ /*（商品サイズ 全体）*/
    margin:32px 0 0;
}
.item-size p{
    font-size: 15px;
    padding:6px 0 0;
}
.size-note{ /*（サイズ表記は｢外寸｣です）*/
    font-size: 10px;
    padding:32px 0 32px;
}

/* ---------------------------------------------- */
/* ----------------- (商品価格) ----------------- */
/* ---------------------------------------------- */

.price-discbutton{ /*（全体）*/
    margin:35px auto 8px;
}
.just-text{ /*（｢価格｣「円｣）*/
    font-size: 16px;
}
.price{ /*（価格）*/
    font-size: 25px;
    margin:0 0 0 -6px;
}
.cost0{ /*（送料0円）*/
    margin:0 0 0 5px;
}
.cost0 img{
    width: 55px;
}
.cost-area-betsu{ /*（地区別特別送料）*/
    margin:0 0 0 5px;
}
.cost-area-betsu img{
    width: 95px;
}
/* ------------------------------------------------ */
.item-tax{ /*（内税）*/
    margin:6px 0 28px 0px;
}
.item-tax p{
    font-size: 12.5px;
}

/* ------------------------------------------------ */
/* ■■■■■■■ ◆ カートボタン ◆ ■■■■■■■ */
/* ------------------------------------------------ */

.cart_button_all{/* --全体 オリジナル-- */
    margin: 0 0 0 -3%;
    padding: 3.5% 2.5% 30px;
    border-right:none; /* --1px solid #e9e9e9;-- */
    border-left:none; /* --1px solid #e9e9e9;-- */
    border-top:none;
    border-bottom: 1px solid #ededed;
}
/* ------------------------------------------------ */
.cart_btn{
    width:100%;
    margin:15px auto 0;
    height:auto;
}
.item_stock{/* --在庫-- */
    width:47.5%;
    float:left;
    text-align:right;
    margin:0 8px 12px 0;
}
.item_stock_ttl{
    color:#3d3d3d;
    font-size:13px;
}
.item_stock_val {/* --在庫数-- */
    color:#d74733;
    font-weight:bold;
    font-size:14px;
    display:inline-block;
}
.item_stock_val::after {
    content: ' 点';
    color:#3d3d3d;
    font-weight:normal;
    font-size:13px;
}
/* ------------------------------------------------ */
.item_count{/* --購入する数-- */
    width:47.5%;
    margin:0px 0 12px 8px;
    padding:0;
    float:right;
    text-align:left;
    display:inline-block;
}
.item_count_ttl{
    font-size:13px;
    margin-right: 8px;
}
.notranslate{/* --数(ドロップダウン)-- */
    font-size:13px;
}
/* ------------------------------------------------ */
.cart_button in{/* --カートボタン-- */
    width:100%;
    height:auto;
    padding:15px 0 30px 0;
}
.cart_button_in_value{
    width:100%;
    padding:15px 0 50px 0;
}
/* ------------------------------------------------ */
/* ------------------------------------------------ */
.one-item-note{/* -- 一点商品のため売切れ次第販売終了となります -- */
    font-size:13px;
    padding:14px 0 15px;
}
.cart_button in{/* --カートボタン-- */
    padding:15px 0 35px 0;
}
.cart_button_in_value{
    padding:15px 0 50px 0;
}

/* -------------------------------------------------------------------- */
/* ■■■■■ ◆ カートボタン下の [注文方法・返品] リンク ◆ ■■■■■ */
/* -------------------------------------------------------------------- */

.cart-bottom-link{/* --(カートボタン下の注意事項等)-- */
    margin: 5px auto 0;
    padding: 1.8% 0 0;
}
.cart-bottom-link p{
    font-size:12px;
}
.cart-bottom-link p a{
    font-size:12px;
}
/* ---------------------------------------------- (SNSソーシャルボタン) --- */
.sns-button{/* --(SNS)-- */
    margin: 30px auto 0;
}

/* -------------------------------------------- */
/* ------ (この商品について問い合わせる) ------ */
/*--------------------------------------------- */
.contact-this-item{ /*（全体）*/
    width: 300px;
    margin-top:70px;
    padding:12px 0 14px;
}

/* ---------------------------------------------- */
/* -- (モーダル・この商品について問い合わせる) -- */
/*----------------------------------------------- */
/* ---------------------------------------------- */
/* ------------------- フォーム ----------------- */
/* ---------------------------------------------- */

#formWrap {
    width:100%;
    margin:0 auto;
    padding:0 0;
    line-height:1.1;
}
/* -------------------------------------------- */
.item-title { /*（商品名）*/
    font-size:15px; 
    padding:30px 0 25px 0; 
    margin-bottom:25px; 
}
/* -------------------------------------------- */
.hotmail-note{ /*（hotmailはやめてください）*/
    font-size:11px; 
}
.btn-takasa{
    padding:-18px 0 25px;
}

/* ------------------------------------------------ */
/* ■■■■■■■■ ◆ 商品説明 ◆ ■■■■■■■■ */
/* ------------------------------------------------ */

.item-description-box{ /*（全体）*/
    width: 93.4%;
    margin: 0 auto;
    padding: 45px 2.5% 0;
}
/* ------------------------------------------------ */
.description-title{ /*（タイトル・横幅100％）*/
    font-size: 15px;
    padding-bottom:10px;
}
.description-title::before{/* かごのマーク */
    font-size: 0.9em ;
}

/* ------------------------------------------------ */
/* ■■■■■ ◆ パソコンのみの説明画像 ◆ ■■■■ */
/* ------------------------------------------------ */

.setsumei-box{ /*（全体）*/
    width: 100%;
    margin:0 auto 0;
    padding: 0;
}
/* ------------------------------------------------ */
.setsumei-image{ /*（商品画像）*/
    width: 80%;
    margin: 10px auto 0;
    text-align:center;
}
.setsumei-image img{
    max-width: 250px;
    border-radius:6px;
}
/* ------------------------------------------------ */
.item-tokuchou{ /*（特徴と使用感 全体）*/
    margin:40px 0 0;
    font-size: 13px;
}
.item-tokuchou p{
    padding-bottom:35px;
}

/* -------------------------------------------- */
/* -------------- ◆ 地区別送料 ◆ -------------*/
/* -------------------------------------------- */

table.area-cost {
    margin:-20px auto 30px;
    font-size:14px;
}
table.area-cost td {
    width: 10%;
    padding: 10px 10px 8px;
}
.title-color{
    background: #f6f6f6 !important;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■ ◆ ご注意事項を詳しく見る ◆ */
/* ------------------------------------------------------------------------- */
/* -------------------------------------------------- */
/* -------------- ◆ ご注意・保存方法 ◆ -------------*/
/* -------------------------------------------------- */

.item-note{ /*（ご注意・保存方法 全体）*/
    margin:5px 0 0;
    padding:20px 15px 0;
    font-size: 13px;
    border-radius: 8px 8px 0 0;
}
.item-note p{
    padding-bottom:35px;
}
/* ------------------------------------------------ */
.desc-mini-title{
    margin:0 0 35px;
    padding:10px 0;
    font-size: 14px;
}
/* ------------------------------------------------ */
.note-modal-title { /* --- (ご注意事項見るボタン) --- */
    margin:0 0 20px;
    padding:0 0 35px;
    font-size: 13px;
    border-radius: 0 0 8px 8px;
}
.note-modal-title::before{/* ココが安心・下矢印 */
    font-size: 0.9em ;
}

/* ------------------------------------------------ */
/* ◆ ■■■ ◆ (モーダル・ご注意事項) ◆ ■■■ ◆ */
/*------------------------------------------------- */

.modal_open_note::after{/* モーダルマーク */
    font-size: 0.9em ;
}

/* -------------------------------------------------- */
/* ■■■■■■■■■■■■■■ ◆ ご注意事項 内容 ◆ */
/* -------------------------------------------------- */

.note-bigtitle{ /* タイトル */
    margin:0;
    padding:30px 0 25px;
}
/* -------------------------------------------------- */
.scrollbar {/* ---(注意事項・スクロールバー)--- */
    width: 88%;
    height: 360px;
    padding:5px 6% 0;
    font-size:12px;
    line-height:1.5;
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
}
/* ------------------------------(注意事項・内容)---- */
.note-mini-title {
    padding:30px 0 30px;
    font-size:13px;
}
/* -------------------------------------------------- */
.ueno-sukima {
    margin-top:-50px;
}
.ueno-sukima2 {
    margin-top:-50px;
}
/* -------------------------------------------------- */
.note-text{ /* 説明 */ 
    width: 100%;
    padding: 0;
    text-align:left;
}
/* -------------------------------------------------- */
.note-hosoku{ /* 補足１ */ 
    padding:30px 0 30px;
    text-align:left;
}
.note-hosoku p{
    padding:0 0 30px;
}
/* -------------------------------------------------- */
.note-hosoku-2{ /* 補足２ */ 
    padding:0 0 30px;
    text-align:left;
}
.note-hosoku-2 p{
    padding:0 0 30px;
}
/* ------------------------------------------------ */
.note-last-BP-img{ /* 最後のロゴ画像 */
    width: 100%;
    height:auto;
    text-align: center;
    margin:0 0 -70px;
}
.note-last-BP-img img{
    max-width:120px;
    height:auto;
    width: 100%;
}
/* -------------------------------------------------- */
.note-last{ /* ※当サイトの内容は予告なく変更する... */ 
    width: 93%;
    padding:18px 3.5% 16px;
    font-size:11px;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■◆ ページリンク ボタン ◆ */
/* ------------------------------------------------------------------------- */

.pagelink-btn p{ /*（ページリンクボタン）*/
    width: 98.2%;
    margin: 0 auto;
    padding:24px 0;
    font-size: 14px; 
}
.pagelink-btn2 p{ /*（ページリンクボタン）*/
    width: 98.2%;
    margin: 0 auto;
    padding:24px 0;
    font-size: 14px; 
}

/* ------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■ ◆ ショップのココが安心 ◆ */
/* ------------------------------------------------------------------- */

.shop-box-all{ /* ショップ案内 コンテンツボックス全体 */
    width: 98.4%;
    margin: 0 auto;
    padding: 16px 0 0;
}
/* ------------------------------------------------------------------- */
.shop-anshin-box{ /* ココが安心 全体 */
    width: 95%;
    margin: 0 auto;
    padding: 32px 2.5% 0;
}
/* ------------------------------------------------------------------- */
.anshin-title{ /* タイトル 全体 */
    width: 97.8%;
    padding: 6px 0.8%;
    border-radius: 4px;
}
.anshin-title-inner{ /* タイトルとボーダー */
    padding: 8px 4.2% ;
    margin:0 5px;
    font-size:16px;
}

/* ------------------------------------------------- */
/* ■■■■■ ◆ ココが安心 画像と説明 ◆ ■■■■■ */
/* ------------------------------------------------- */

.anshin-box{ /*（画像と説明の全体）*/
    margin: 30px auto 0;
}
/* ------------------------------------------------ */
.anshin-image{ /* 画像 */
    padding-bottom:5px;
}
.anshin-image img{
    max-width:98%;
}
/* ------------------------------------------------ */
.anshin-description{ /* 説明 全体 */
    width:95%;
    margin:30px auto 33px;
    padding:0 2.5% 0;
}
.anshin-right-title{ /* 太字の小タイトル */
    font-size:15px;
    padding:0 0 20px;
}
/* ------------------------------------------------ */
.anshin-right { /* テキスト */
    font-size:14px;
    padding-bottom:35px;
}
.anshin-right p{ /* テキスト */
    padding-bottom:15px;
}
/* --------------------------- */
.anshin-right2 { /* テキスト */
    font-size:14px;
    padding-bottom:0;
}
.anshin-right2 p{ /* テキスト */
    padding-bottom:15px;
}
/* ------------------------------------------------ */
.anshin-repair{ /* 修理 */
    width: 95%;
    margin: 0 auto 0;
    padding:0 2.5% 40px;
    font-size:13px;
}

/* ------------------------------------------------ */
/* ■■■■■■■■■ ココが安心・非表示から表示 ◆ */
/* ------------------------------------------------ */

.fa10 p::after{/* ココが安心・下矢印 */
    font-family: "Font Awesome 5 Free";
    content: "\f13a";
    font-size: 1.1em ;
    font-weight: 900;
    padding-left : 4px;/* 文字との隙間 */
    color: #c3c3c3;/* アイコンの色 */
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■ ◆ お支払い方法 ◆ */
/* ------------------------------------------------------------------------- */

/* ---------------------------------------------------(商品一覧タイトル)---- */
.payment-title-box{ /* タイトルボックス・ページ内全使用 */
    width: 98%;
    margin: 26px auto 8px;
    padding: 9px 0 9px 2%;
}
/* ------------------------------------------------------(自前のｈ4指定)---- */
.fontawsome-other{
    font-size: 15px; 
    padding: 15px 0 15px 2.8%;
}
.payment-box{ /* お支払い方法 コンテンツボックス全体 */
    width: 93.2%;
    padding: 32px 2.5% 12px;
}
.payment-mine-title{ /* 太字の小タイトル */
    font-size:0.9em;
}
/* --------------------------------------------------------(支払い方法)---- */
.payment-icon{ /* 4つの支払い方法全体 */
    margin:12px 0 32px;
    padding:18px 0 20px;
}
.pay-img-size { /* 画像全部に */
    width: 21.5%;
    background-color:##fafafa;
}
.pay-img-size img{
    max-width:100%;
    width: 72px;
}
/* -----------------------(支払い方法「画像をクリックで切り替わります｣)---- */
.image-kirikae-info{
    font-size:0.7em;
    margin-top:-44px;
}
/* ----------------------------------(送料・発送方法・返品・キャンセル)---- */
.cost-icon{ /* 送料・発送方法 */
    margin:12px 0 0;
    padding:16px 0;
}
/* -------------------------(送料・発送方法・返品・キャンセル アイコン)---- */
.cost-left-icon{
    width: 27%;
    margin:11px 0 0 2.5%;
    text-align:center;
}
.cost-left-icon img{
    width: 95px;
}
/* ----------------------------------------------------------(右の説明)---- */
.cost-right-text{
    width: 65.5%;
    margin:5px 2% 0 0;
    font-size:13px;
}
/* ----------------------------------(送料・発送方法・返品・キャンセル)---- */
.pc-henpin-all{ /* 返品タイトルの上の隙間作り */
    margin-top:32px;
}

/* -------------------------------------------------------------- */
/* ■■■■■■■■ ◆ ページ下のカートボタン ◆ ■■■■■■■■ */
/* -------------------------------------------------------------- */

.bottom-cart-flex-box{ /*（全体）*/
    width: 93.4%;
    margin: 25px auto 0;
    padding: 15px 2.5% 10px;
}
/* ------------------------------------------------ */
.bottom-item-image{ /*（商品画像）*/
    width: 100%;
    max-width:450px;
    margin:0 auto 35px;
}
.bottom-item-image img{
    max-width: 80%;
}

/* ------------------------------------ */
/* -- ◆ 割引商品用のスパン画像２ ◆ -- */
/* ------------------------------------ */

#featured_img2{
    position:relative;
}
#featured_img2 span{
    position:absolute;
    width:14%;
    top:12px;
    left:20px;
}
#featured_img2 span img{
    max-width: 100%;
    height:auto;
}
/* ------------------------------------------------ */
.bottom-item-detail{ /*（商品情報・カートに入れるボタン 全体）*/
    margin:0 auto;
    padding: 0;
    font-size: 14px;
    line-height:1.6;
}
/* ------------------------------------------------ */
.bottom-item-coad{ /*（商品コード）*/
    font-size: 12px;
    margin-bottom:25px;
}
.bottom-item-h3{ /*（h3 商品名）*/
    margin:0 auto;
    font-size: 15px;
    padding: 0 0 25px;
}
.bottom-item-size{ /*（商品サイズ）*/
    margin:0 auto;
    font-size: 14px;
    padding: 30px 0 30px;
}
.bottom-size-note{
    margin:0 auto;
    font-size: 10px;
    margin:25px 0 0;
}
/* ------------------------------------------------ */
.price-discbutton3{ /*（商品価格 全体）*/
    margin:25px auto -10px;
}
.price-tax3{ /*（価格 全体）*/
    margin:0;
}
.just-text3{ /*（｢価格｣「円｣）*/
    font-size: 15px;
}
.price3{ /*（価格）*/
    font-size: 25px;
    margin:0 0;
}
.cost03{ /*（送料0円）*/
    margin:0 0 0 5px;
}
.cost03 img{
    width: 55px;
    margin:0;
}
.cost-area-betsu3{ /*（地区別特別送料）*/
    margin:0 0 0 5px;
}
.cost-area-betsu3 img{
    width: 95px;
}
/* ------------------------------------------------ */
.item-tax3{ /*（内税）*/
    margin:-3px 0 28px 0px;
}
.item-tax3 p{
    font-size: 12px;
}
/* ------------------------------------------------ */
.cart_btn2{ /*（在庫・数量）※上の在庫デザインに影響するためココで編集しない */
    width:100%;
    margin:12px auto 15px;
    height:auto;
}
/* ------------------------------------------------ */
.one-item-note2{/* -- 一点商品のため売切れ次第販売終了となります -- */
    margin:0 auto;
    font-size:12px;
    padding:0 0 0;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■ ◆ 商品ページアイコン ◆ */
/* ------------------------------------------------------------------------- */

.last-icons-name img{
    width: 140px;
}
.last-icons-name{ /*（product category）*/
    margin: 35px auto 0;
}
.last-icons{ /* 3つのアイコン */
    margin: -0.4em auto 12px;
    padding: 0 0 30px;
}
.last-icons p{
    width: 68px;
    height: 68px;
    margin-bottom: 12px;
    display:inline-block;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■◆ フッター ◆*/
/* ------------------------------------------------------------------------- */

.link { 
    width: 100.8%;
    padding: 18px 0 17px 3.4%;
    font-size:0.95em; 
}
.btn-yajirushi{/* 矢印 */
    font-size: 1em ;
    margin-right:14px;
}

/* -------------------------------------------- */
/* ---------------( コピーライト )------------- */
/* -------------------------------------------- */
.copy-light {
    font-size:0.8em;
}
} /* --(消すな)--*/

/* ----------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■◆ ここまで ◆■■■■■■■■■■■■■■■■*/
/* ----------------------------------------------------------------------------- */

















/* -----------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■■◆ タブレット 601-768 ◆■■■ *//*  ■■■◆ タブレット 601-768 ◆■■■ *//*  ■■■◆ タブレット 601-768 ◆■■■ *//*
/* -----------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■■◆ タブレット 601-768 ◆■■■ *//*  ■■■◆ タブレット 601-768 ◆■■■ *//*  ■■■◆ タブレット 601-768 ◆■■■ *//*
/* -----------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■■◆ タブレット 601-768 ◆■■■ *//*  ■■■◆ タブレット 601-768 ◆■■■ *//*  ■■■◆ タブレット 601-768 ◆■■■ *//*
/* -----------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■■◆ タブレット 601-768 ◆■■■ *//*  ■■■◆ タブレット 601-768 ◆■■■ *//*  ■■■◆ タブレット 601-768 ◆■■■ *//*
/* -----------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■■◆ タブレット 601-768 ◆■■■ *//*  ■■■◆ タブレット 601-768 ◆■■■ *//*  ■■■◆ タブレット 601-768 ◆■■■ *//*
/* -----------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■■◆ タブレット 601-768 ◆■■■ *//*  ■■■◆ タブレット 601-768 ◆■■■ *//*  ■■■◆ タブレット 601-768 ◆■■■ *//*
/* -----------------------------------------*//* -----------------------------------------*//* ----------------------------------*/

@media screen and (min-width: 601px) and (max-width: 768px) {

body{
    margin: 0 ;	
    padding: 0 ;
}
#wrap{
    width: 100%;
     max-width: 768px;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■ SP ■■■■■■■■■■■■◆ h1 / メニュー ◆ */
/* ------------------------------------------------------------------------- */
.h1-menu{
    width: 94%;
    padding: 35px 3.5% 32px 2.5%;
}
/* --------------------------------------------------------------(ロゴ)---- */
h1 img{
    width: 201.48px;
    height: 42.32px;
}

/* -------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■ PC ■■■■■■■■■■■■◆ product category ◆ */
/* -------------------------------------------------------------------------- */

.pc-head-right{ /* 全体 */
    display: none;/* パソコンのみのメニュー */
}

/* ----------------------------------------------------------(メニュー)---- */
#nav-drawer { /* メニュー全体 */ 
    display:block;
}
#nav-open {/*アイコンのスペース*/
    width: 40px;
    height: 40px;
    margin-top:0px;
}
#nav-open img{
    width: 40px;
    height: 40px;
}
/* ------------------------------------------------------(メニュー中身)---- */
#nav-content {/*中身*/
    max-width: 500px;/*最大幅（調整してください）*/
}
/* ------------------------------------------------------(トップの画像)---- */
.menu-title{
    padding:15px 2% 28px 0;
    margin-bottom:6px;
}
/* ----------------------------------------------------(メニューリスト)---- */
.menu-link { 
    width:96.7%;
    padding: 11px 0 11px 3.3%;
    font-size:0.9em; 
}
.btn-yajirushi-menu{/* 矢印 */
    font-size: 1.1em ;
    margin-right:3%;
    padding:11px 0;
}
/* ------------------------------------------------------(～探すリスト)---- */
.kagobag-category-title { /* ～探す タイトル */
    width:94.7%;
    font-size:0.85em; 
    padding: 22px 0 22px 5.3%;
}
/* ------------------------------------------------------(ミニメニュー)---- */
.mini-menu-link { /* ～編み模様とかの2列リンク */
    width:46.1%;
    font-size:0.85em; 
    padding: 14px 0 14px 3.5%;
}
.menu-mark-2{
    padding-right:3px;
}
.btn-yajirushi-mini-menu{/* 矢印 */
    font-size:1.1em; 
    padding:8px 0;
}

/* -------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■ PC ■■■■■■■■■■■■■■◆ グロナビ ◆ */
/* -------------------------------------------------------------------------- */

.glonavi-border-1100{ /* パソコンのみ・背景を白くするためだけ */
    display: none;/* パソコンのみのメニュー */
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■◆ ＨＯＭＥ メインコンテンツ ◆ */
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■ ◆ 商品の詳細 ここから ◆*/
/* ------------------------------------------------------------------------- */

.detail-flex-bigbox{ /* コンテンツボックス・サイズまで */
    width: 93.2%;
    height: auto;
    margin: 4px auto 0;
    padding: 0 2.5% 0;
    border: 1px solid #e9e9e9;
    border-bottom:none;
}

/* ----------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■ ◆ 商品の詳細 商品画像 ◆*/
/* ----------------------------------------------------------- */

/* -------------------------------------------- */
/* ---- ◆ YouTubeボタン・切り替えて見る ◆ --- */
/* -------------------------------------------- */
#content {
    margin: 14px auto ;
    width:500px;
}
#thumb_img {
  margin-top:2%;
}

/* -------------------------------------------- */
/* ----------- (モーダル・YouTibe) ------------ */
/*--------------------------------------------- */

.modal_open img{
}
/*--------------------------------------------- */
.youtube-button {
    width: 100%;
    max-width: 500px;
    margin:15px auto 0;
    padding:15px 0;
}
.watch-youtube-img { /*（YouTubeマーク画像）*/
    width: 100%;
}
.watch-youtube-img img {
    max-width: 100%;
    width: 100%;
}

/* ------------------------------------ */
/* --------- (モーダル・中身) --------- */
/* ------------------------------------ */

.youtube-title { /*（商品名タイトル）*/
    font-size: 15px;
}

/* -------------------------------------------- */
/* ------- (モーダルウィンドウここまで) ------- */
/* -------------------------------------------- */

/* -------------------------------------------- */
/* ------- ◆ 割引商品用のスパン画像 ◆ ------- */
/* -------------------------------------------- */
#featured_img span{
    width:17%;
    top:10px;
    left:-10px;
}

/* ----------------------------------------------------------- */
/* ■■■■■■■■■■■■ ◆ 商品の詳細 価格・カートボタン ◆*/
/* ----------------------------------------------------------- */

/* -------------------------------------------- */
/* --------------- (商品コード) --------------- */
/* -------------------------------------------- */

.detail-itemname-coad{ /*（全体）*/
    margin: 54px auto 0;
}
.coad-id{ /*（商品コード）*/
    font-size: 13px;
}

/* -------------------------------------------- */
/* ----------------- (商品名) ----------------- */
/* -------------------------------------------- */

h2{ /*（商品名）*/
    width:62%;
    margin: 32px auto 35px;
    padding:0 19% 25px;
    font-size: 16px;
}

/* -------------------------------------------- */
/* -------------- ( 商品タイプ) --------------- */
/* -------------------------------------------- */

.item-type-link{ /*（商品タイプ 全体）*/
    margin:0 0 0;
}
.item-type-link p{
    font-size: 11.5px;
}
.item-type-link p a{
    font-size: 11.5px;
}
/* -------------------------------------------- */
.off{/*  (○％OFF 割引ページのみ)  */
    margin-left:-5px;
    font-size: 13px;
}

/* -------------------------------------------- */
/* --------------- (商品サイズ) --------------- */
/* -------------------------------------------- */

.item-size-box{ /*（商品サイズ 全体）*/
    margin:32px 0 0;
}
.item-size p{
    font-size: 15px;
    padding:6px 0 0;
}
.size-note{ /*（サイズ表記は｢外寸｣です）*/
    font-size: 10px;
    padding:32px 0 32px;
}

/* ---------------------------------------------- */
/* ----------------- (商品価格) ----------------- */
/* ---------------------------------------------- */

.price-discbutton{ /*（全体）*/
    margin:35px auto 8px;
}
.just-text{ /*（｢価格｣「円｣）*/
    font-size: 16px;
}
.price{ /*（価格）*/
    font-size: 25px;
    margin:0 0 0 -6px;
}
.cost0{ /*（送料0円）*/
    margin:0 0 0 5px;
}
.cost0 img{
    width: 55px;
}
.cost-area-betsu{ /*（地区別特別送料）*/
    margin:0 0 0 5px;
}
.cost-area-betsu img{
    width: 95px;
}
/* ------------------------------------------------ */
.item-tax{ /*（内税）*/
    margin:6px 0 28px 0px;
}
.item-tax p{
    font-size: 12.5px;
}

/* ------------------------------------------------ */
/* ■■■■■■■ ◆ カートボタン ◆ ■■■■■■■ */
/* ------------------------------------------------ */

.cart_button_all{/* --全体 オリジナル-- */
    margin: 0 0 0 -3%;
    padding: 3.5% 2.5% 30px;
    border-right:none; /* --1px solid #e9e9e9;-- */
    border-left:none; /* --1px solid #e9e9e9;-- */
    border-top:none;
    border-bottom: 1px solid #ededed;
}
/* ------------------------------------------------ */
.cart_btn{
    width:100%;
    margin:7px auto 0;
    height:auto;
}
.item_stock{/* --在庫-- */
    width:48.5%;
    float:left;
    text-align:right;
    margin:0 2px 18px 0;
}
.item_stock_ttl{
    color:#3d3d3d;
    font-size:13.5px;
}
.item_stock_val {/* --在庫数-- */
    color:#d74733;
    font-weight:bold;
    font-size:14.5px;
    display:inline-block;
}
.item_stock_val::after {
    content: ' 点';
    color:#3d3d3d;
    font-weight:normal;
    font-size:13.5px;
}
/* ------------------------------------------------ */
.item_count{/* --購入する数-- */
    width:48.5%;
    margin:0px 0 18px 2px;
    padding:0;
    float:right;
    text-align:left;
    display:inline-block;
}
.item_count_ttl{
    font-size:13.5px;
    margin-right: 8px;
}
.notranslate{/* --数(ドロップダウン)-- */
    font-size:13px;
}
/* ------------------------------------------------ */
.cart_button in{/* --カートボタン-- */
    width:100%;
    height:auto;
    padding:15px 0 30px 0;
}
.cart_button_in_value{
    width:100%;
    padding:15px 0 50px 0;
}
/* ------------------------------------------------ */
/* ------------------------------------------------ */
.one-item-note{/* -- 一点商品のため売切れ次第販売終了となります -- */
    font-size:13px;
    padding:10px 0 20px;
}
.cart_button in{/* --カートボタン-- */
    padding:15px 0 35px 0;
}
.cart_button_in_value{
    padding:15px 0 50px 0;
}

/* -------------------------------------------------------------------- */
/* ■■■■■ ◆ カートボタン下の [注文方法・返品] リンク ◆ ■■■■■ */
/* -------------------------------------------------------------------- */

.cart-bottom-link{/* --(カートボタン下の注意事項等)-- */
    margin: 5px auto 0;
    padding: 1.8% 0 0;
}
.cart-bottom-link p{
    font-size:12.5px;
}
.cart-bottom-link p a{
    font-size:12.5px;
}
/* ---------------------------------------------- (SNSソーシャルボタン) --- */
.sns-button{/* --(SNS)-- */
    margin: 30px auto 0;
}

/* -------------------------------------------- */
/* ------ (この商品について問い合わせる) ------ */
/*--------------------------------------------- */
.contact-this-item{ /*（全体）*/
    width: 310px;
    margin-top:70px;
    padding:13px 0 15px;
}
.contact-this-item{
    font-size: 15px; 
}

/* ---------------------------------------------- */
/* -- (モーダル・この商品について問い合わせる) -- */
/*----------------------------------------------- */

/* -------------------------------------------- */
/* ------------------ フォーム ---------------- */
/* -------------------------------------------- */

#formWrap {
    width:100%;
    margin:0 auto;
    padding:0 0 0;
    line-height:1.1;
}
/* -------------------------------------------- */
.item-title { /*（商品名）*/
    padding:34px 0 27px 0; 
    margin-bottom:30px; 
    font-size: 15px; 
}
/* -------------------------------------------- */
.hotmail-note{ /*（hotmailはやめてください）*/
    font-size:12px; 
}
.text-box-size{ /*（テキストボックスのサイズ）*/
    padding:8px 3px;
    margin-bottom:30px;
    font-size:14px;
}
.btn-takasa{
    padding:-10px 0 30px;
}

/* ------------------------------------------------ */
/* ■■■■■■■■ ◆ 商品説明 ◆ ■■■■■■■■ */
/* ------------------------------------------------ */

.item-description-box{ /*（全体）*/
    width: 93.4%;
    margin: 0 auto;
    padding: 45px 2.5% 0;
}
/* ------------------------------------------------ */
.description-title{ /*（タイトル・横幅100％）*/
    font-size: 15px;
    padding-bottom:10px;
}
.description-title::before{/* かごのマーク */
    font-size: 0.9em ;
}

/* ------------------------------------------------ */
/* ■■■■■ ◆ パソコンのみの説明画像 ◆ ■■■■ */
/* ------------------------------------------------ */

.setsumei-box{ /*（全体）*/
    width: 100%;
    margin:0 auto 0;
    padding: 0;
}
/* ------------------------------------------------ */
.setsumei-image{ /*（商品画像）*/
    width: 80%;
    margin: 10px auto 0;
    text-align:center;
}
.setsumei-image img{
    max-width: 250px;
    border-radius:6px;
}
/* ------------------------------------------------ */
.item-tokuchou{ /*（特徴と使用感 全体）*/
    width: 100%;
    max-width: 470px;
    min-width: 470px;
    margin:40px auto 0;
    padding: 0;
    font-size: 13px;
}
.item-tokuchou p{
    padding-bottom:35px;
}
/* ------------------------------------------------ */
.akebinosato-item-note{ /*（※あけびの里で制作したものを販売しています）*/
    width: 100%;
    max-width: 440px;
    min-width: 440px;
    margin:0 auto 30px;
    padding: 10px 15px;
    font-size: 11px;
    line-height:1.5;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■ ◆ ご注意事項を詳しく見る ◆ */
/* ------------------------------------------------------------------------- */
/* -------------------------------------------------- */
/* -------------- ◆ ご注意・保存方法 ◆ -------------*/
/* -------------------------------------------------- */

.item-note{ /*（ご注意・保存方法 全体）*/
    width: 100%;
    max-width: 440px;
    min-width: 440px;
    margin:5px auto 0;
    padding:20px 15px 0;
    font-size: 13px;
    border-radius: 8px 8px 0 0;
}
.item-note p{
    padding-bottom:35px;
}
/* ------------------------------------------------ */
.desc-mini-title{
    margin:0 0 35px;
    padding:10px 0;
    font-size: 14px;
}
/* ------------------------------------------------ */
.note-modal-title { /* --- (ご注意事項見るボタン) --- */
    width: 100%;
    max-width: 440px;
    min-width: 440px;
    margin:0 auto 20px;
    padding:0 15px 35px;
    font-size: 13px;
    border-radius: 0 0 8px 8px;
}
.note-modal-title::before{/* ココが安心・下矢印 */
    font-size: 0.9em ;
}

/* -------------------------------------------- */
/* ---------- (モーダル・ご注意事項) ---------- */
/*--------------------------------------------- */

.modal_open_note::after{/* モーダルマーク */
    font-size: 0.9em ;
}

/* -------------------------------------------------- */
/* ■■■■■■■■■■■■■■ ◆ ご注意事項 内容 ◆ */
/* -------------------------------------------------- */

.note-bigtitle{ /* タイトル */
    margin:0;
    padding:32px 0 26px;
    font-size:16px;
}
/* -------------------------------------------------- */
.scrollbar {/* ---(注意事項・スクロールバー)--- */
    width: 88%;
    height: 480px;
    padding:5px 6% 0;
    font-size:12px;
    line-height:1.5;
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
}
/* ------------------------------(注意事項・内容)---- */
.note-mini-title {
    padding:30px 0 30px;
    font-size:13px;
}
/* -------------------------------------------------- */
.ueno-sukima {
    margin-top:-50px;
}
.ueno-sukima2 {
    margin-top:-50px;
}
/* -------------------------------------------------- */
.note-text{ /* 説明 */ 
    width: 100%;
    padding: 0;
    text-align:left;
}
/* -------------------------------------------------- */
.note-hosoku{ /* 補足１ */ 
    padding:30px 0 30px;
    text-align:left;
}
.note-hosoku p{
    padding:0 0 30px;
}
/* -------------------------------------------------- */
.note-hosoku-2{ /* 補足２ */ 
    padding:0 0 30px;
    text-align:left;
}
.note-hosoku-2 p{
    padding:0 0 30px;
}
/* ------------------------------------------------ */
.note-last-BP-img{ /* 最後のロゴ画像 */
    width: 100%;
    height:auto;
    text-align: center;
    margin:0 0 -70px;
}
.note-last-BP-img img{
    max-width:120px;
    height:auto;
    width: 100%;
}
/* -------------------------------------------------- */
.note-last{ /* ※当サイトの内容は予告なく変更する... */ 
    width: 93%;
    padding:18px 3.5% 16px;
    font-size:11px;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■◆ ページリンク ボタン ◆ */
/* ------------------------------------------------------------------------- */

.pagelink-btn p{ /*（ページリンクボタン）*/
    width: 98.2%;
    margin: 0 auto;
    padding:24px 0;
    font-size: 14px; 
}
.pagelink-btn2 p{ /*（ページリンクボタン）*/
    width: 98.2%;
    margin: 0 auto;
    padding:24px 0;
    font-size: 14px; 
}

/* ------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■ ◆ ショップのココが安心 ◆ */
/* ------------------------------------------------------------------- */

.shop-box-all{ /* ショップ案内 コンテンツボックス全体 */
    width: 98.4%;
    margin: 0 auto;
    padding: 16px 0 0;
}
/* ------------------------------------------------------------------- */
.shop-anshin-box{ /* ココが安心 全体 */
    width: 95%;
    margin: 0 auto;
    padding: 32px 2.5% 0;
}
/* ------------------------------------------------------------------- */
.anshin-title{ /* タイトル 全体 */
    width: 97.8%;
    padding: 6px 0.8%;
    border-radius: 4px;
}
.anshin-title-inner{ /* タイトルとボーダー */
    padding: 8px 4.2% ;
    margin:0 5px;
    font-size:16px;
}

/* ------------------------------------------------- */
/* ■■■■■ ◆ ココが安心 画像と説明 ◆ ■■■■■ */
/* ------------------------------------------------- */

.anshin-box{ /*（画像と説明の全体）*/
    width:500px;
    margin: 30px auto 0;
}
/* ------------------------------------------------ */
.anshin-image{ /* 画像 */
    padding-bottom:5px;
}
.anshin-image img{
    max-width:98%;
}
/* ------------------------------------------------ */
.anshin-description{ /* 説明 全体 */
    width:95%;
    margin:30px auto 33px;
    padding:0 2.5% 0;
}
.anshin-right-title{ /* 太字の小タイトル */
    font-size:15px;
    padding:0 0 22px;
}
/* ------------------------------------------------ */
.anshin-right { /* テキスト */
    font-size:14px;
    padding-bottom:35px;
    line-height:1.6;
}
.anshin-right p{ /* テキスト */
    padding-bottom:15px;
}
/* --------------------------- */
.anshin-right2 { /* テキスト */
    font-size:14px;
    padding-bottom:0;
    line-height:1.6;
}
.anshin-right2 p{ /* テキスト */
    padding-bottom:15px;
}
/* ------------------------------------------------ */
.anshin-repair{ /* 修理 */
    width: 95%;
    margin: 0 auto 0;
    padding:0 2.5% 40px;
    font-size:14px;
}

/* ------------------------------------------------ */
/* ■■■■■■■■■ ココが安心・非表示から表示 ◆ */
/* ------------------------------------------------ */

.fa10 p::after{/* ココが安心・下矢印 */
    font-family: "Font Awesome 5 Free";
    content: "\f13a";
    font-size: 1.1em ;
    font-weight: 900;
    padding-left : 4px;/* 文字との隙間 */
    color: #c3c3c3;/* アイコンの色 */
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■ ◆ お支払い方法 ◆ */
/* ------------------------------------------------------------------------- */

/* ---------------------------------------------------(商品一覧タイトル)---- */
.payment-title-box{ /* タイトルボックス・ページ内全使用 */
    margin: 31px auto 10px;
    padding: 10px 0 8px 1.5%;
}
/* ------------------------------------------------------(自前のｈ4指定)---- */
.fontawsome-other{
    font-size: 16px; 
    padding: 16px 0 16px 2.6%;
}

.payment-box{ /* お支払い方法 コンテンツボックス全体 */
    width: 93.2%;
    padding: 35px 2.5% 15px;
}
.payment-mine-title{ /* 太字の小タイトル */
    font-size:14px;
}
/* --------------------------------------------------------(支払い方法)---- */
.payment-icon{ /* 4つの支払い方法全体 */
    background-color:#fff;
    border: none;
    text-align: center;
    margin:16px -2% 35px 0;
    padding:0;
    font-size:0;
}
.pay-img-size { /* 画像全部に */
    background-color:#fafafa;
    border: 1px solid #f6f6f6;
    width: 20.5%;
    margin:0 2% 0 0;
    padding:20px 1.05% 22px;
    border-radius: 8px;
}
.pay-img-size img{
    max-width:100%;
    width: 76px;
}
/* -----------------------(支払い方法「画像をクリックで切り替わります｣)---- */
.image-kirikae-info{
    font-size:0.7em;
    margin-top:-44px;
}

/* ----------------------------------(送料・発送方法・返品・キャンセル)---- */
.cost-icon-big-leftright{ /* 送料とかを左右にするためだけ */
    width:102%;
    margin:0 2% 12px 0;
}
.cost-icon{ /* 送料・発送方法 */
    width:47.5%;
    margin:18px 1.5% 0 0.5%;
    padding:20px 0;
    float:left;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 8px;
}
/* -------------------------(送料・発送方法・返品・キャンセル アイコン)---- */
.cost-left-icon{
    width: 34%;
    margin:3% 0 0 1%;
    text-align:center;
}
.cost-left-icon img{
    width: 95px;
}
/* ----------------------------------------------------------(右の説明)---- */
.cost-right-text{
    width: 62%;
    margin:5px 3% 2px 0;
    font-size:13px;
}
/* ----------------------------- */
.go-henin-page {
    margin:15px 0 -10px;
}
/* ----------------------------------(送料・発送方法・返品・キャンセル)---- */
.pc-henpin-all{ /* 返品タイトルの上の隙間作り */
    width:100%;
    margin:22px 2% 12px 0;
}
.pc-henpin-left{ /* 960～・返品とかを左右にするためだけ */
    width:48.5%;
    margin:18px 1.5% 0 0.5%;
    padding:20px 2% 30px 0;
    float:left;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 8px;
}
.pc-cancel-right{ /* 960～・返品とかを左右にするためだけ */
    width:48.5%;
    margin:18px 0 0 0.5%;
    float:left;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 8px;
}

/* -------------------------------------------------------------- */
/* ■■■■■■■■ ◆ ページ下のカートボタン ◆ ■■■■■■■■ */
/* -------------------------------------------------------------- */

.bottom-cart-flex-box{ /*（全体）*/
    width: 93.4%;
    margin: 30px auto 0;
    padding: 15px 2.5% 10px;
}
/* ------------------------------------------------ */
.bottom-item-image{ /*（商品画像）*/
    width: 100%;
    max-width:400px;
    margin:10px auto 35px;
}
.bottom-item-image img{
    max-width: 400px;
}

/* ------------------------------------ */
/* -- ◆ 割引商品用のスパン画像２ ◆ -- */
/* ------------------------------------ */

#featured_img2 span{
    position:absolute;
    width:65px;
    top:10px;
    left:-20px;
}
/* ------------------------------------------------ */
.bottom-item-detail{ /*（商品情報・カートに入れるボタン 全体）*/
    margin:0 auto;
    padding: 0;
    font-size: 14px;
    line-height:1.6;
}
/* ------------------------------------------------ */
.bottom-item-coad{ /*（商品コード）*/
    font-size: 12px;
    margin-bottom:25px;
}
.bottom-item-h3{ /*（h3 商品名）*/
    margin:0 auto;
    font-size: 15px;
    padding: 0 0 25px;
}
.bottom-item-size{ /*（商品サイズ）*/
    margin:0 auto;
    font-size: 14px;
    padding: 30px 0 30px;
}
.bottom-size-note{
    margin:0 auto;
    font-size: 10px;
    margin:25px 0 0;
}
/* ------------------------------------------------ */
.price-discbutton3{ /*（商品価格 全体）*/
    margin:25px auto -10px;
}
.price-tax3{ /*（価格 全体）*/
    margin:0;
}
.just-text3{ /*（｢価格｣「円｣）*/
    font-size: 15px;
}
.price3{ /*（価格）*/
    font-size: 25px;
    margin:0 0;
}
.cost03{ /*（送料0円）*/
    margin:0 0 0 5px;
}
.cost03 img{
    width: 55px;
    margin:0;
}
.cost-area-betsu3{ /*（地区別特別送料）*/
    margin:0 0 0 5px;
}
.cost-area-betsu3 img{
    width: 95px;
}
/* ------------------------------------------------ */
.item-tax3{ /*（内税）*/
    margin:-3px 0 28px 0px;
}
.item-tax3 p{
    font-size: 12px;
}
/* ------------------------------------------------ */
.cart_btn2{ /*（在庫・数量）※上の在庫デザインに影響するためココで編集しない */
    width:100%;
    margin:15px auto 20px;
    height:auto;
}
/* ------------------------------------------------ */
.one-item-note2{/* -- 一点商品のため売切れ次第販売終了となります -- */
    margin:0 auto;
    font-size:12px;
    padding:0 0 0;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■ ◆ 商品ページアイコン ◆ */
/* ------------------------------------------------------------------------- */

.last-icons-name{ /*（product category）*/
    margin: 35px auto 0;
}
.last-icons-name img{
    width: 150px;
}
.last-icons{ /* 3つのアイコン */
    padding: 0 0 30px;
    margin: -0.4em auto 12px;
}
.last-icons p{
    width: 70px;
    height: 66.8px;
    margin-bottom:14px;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■◆ フッター ◆*/
/* ------------------------------------------------------------------------- */
.link { 
    width: 101.4%;
    padding: 20px 0 18px 2.8%;
    font-size:0.95em; 
}
.btn-yajirushi{/* 矢印 */
    font-size: 1em ;
    margin-right:13px;
}

/* -------------------------------------------- */
/* ---------------( コピーライト )------------- */
/* -------------------------------------------- */
.copy-light {
    font-size:0.8em;
}
} /* --(消すな)--*/

/* ----------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■◆ ここまで ◆■■■■■■■■■■■■■■■■*/
/* ----------------------------------------------------------------------------- */














/* -----------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■■◆ タブレット 769-960 ◆■■■ *//*  ■■■◆ タブレット 769-960 ◆■■■ *//*  ■■■◆ タブレット 769-960 ◆■■■ *//*
/* -----------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■■◆ タブレット 769-960 ◆■■■ *//*  ■■■◆ タブレット 769-960 ◆■■■ *//*  ■■■◆ タブレット 769-960 ◆■■■ *//*
/* -----------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■■◆ タブレット 769-960 ◆■■■ *//*  ■■■◆ タブレット 769-960 ◆■■■ *//*  ■■■◆ タブレット 769-960 ◆■■■ *//*
/* -----------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■■◆ タブレット 769-960 ◆■■■ *//*  ■■■◆ タブレット 769-960 ◆■■■ *//*  ■■■◆ タブレット 769-960 ◆■■■ *//*
/* -----------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■■◆ タブレット 769-960 ◆■■■ *//*  ■■■◆ タブレット 769-960 ◆■■■ *//*  ■■■◆ タブレット 769-960 ◆■■■ *//*
/* -----------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■■◆ タブレット 769-960 ◆■■■ *//*  ■■■◆ タブレット 769-960 ◆■■■ *//*  ■■■◆ タブレット 769-960 ◆■■■ *//*
/* -----------------------------------------*//* -----------------------------------------*//* ----------------------------------*/

@media screen and (min-width: 769px) and (max-width: 960px) {

body{
    margin: 0 ;	
    padding: 0 ;
}
#wrap{
    width: 100%;
    max-width: 960px;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■ タブレット ■■■■■■■■■■◆ h1 / メニュー ◆ */
/* ------------------------------------------------------------------------- */
.h1-menu{
    width: 95%;
    padding: 35px 2.8% 29px 2.2%;
}
/* --------------------------------------------------------------(ロゴ)---- */
h1 img{
    width: 208.8px;
    height: 43.848px;
}


/* -------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■ PC ■■■■■■■■■■■■◆ product category ◆ */
/* -------------------------------------------------------------------------- */

.pc-head-right{ /* 全体 */
    display: none;/* パソコンのみのメニュー */
}

/* ----------------------------------------------------------(メニュー)---- */
#nav-drawer { /* メニュー全体 */ 
    display:block;
}
#nav-open {/*アイコンのスペース*/
    width: 42px;
    height: 42px;
    margin-top:1px;
}
#nav-open img{
    width: 42px;
    height: 42px;
}
/* ------------------------------------------------------(メニュー中身)---- */
#nav-content {/*中身*/
    max-width: 500px;/*最大幅（調整してください）*/
}
/* ------------------------------------------------------(トップの画像)---- */
.menu-title{
    padding:15px 2% 28px 0;
    margin-bottom:6px;
}
/* ----------------------------------------------------(メニューリスト)---- */
.menu-link { 
    width:96.7%;
    padding: 11px 0 11px 3.3%;
    font-size:0.95em; 
}
.btn-yajirushi-menu{/* 矢印 */
    font-size: 1.1em ;
    margin-right:3%;
    padding:11px 0;
}
/* ------------------------------------------------------(～探すリスト)---- */
.kagobag-category-title { /* ～探す タイトル */
    width:94.7%;
    font-size:0.9em; 
    padding: 22px 0 22px 5.3%;
}
/* ------------------------------------------------------(ミニメニュー)---- */
.mini-menu-link { /* ～編み模様とかの2列リンク */
    width:46.1%;
    font-size:0.9em; 
    padding: 14px 0 14px 3.5%;
}
.menu-mark-2{
    padding-right:3px;
}
.btn-yajirushi-mini-menu{/* 矢印 */
    font-size:1.1em; 
    padding:8px 0;
}

/* -------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■ PC ■■■■■■■■■■■■■■◆ グロナビ ◆ */
/* -------------------------------------------------------------------------- */

.glonavi-border-1100{ /* パソコンのみ・背景を白くするためだけ */
    display: none;/* パソコンのみのメニュー */
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■◆ ＨＯＭＥ メインコンテンツ ◆ */
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■ ◆ 商品の詳細 ここから ◆*/
/* ------------------------------------------------------------------------- */

.detail-flex-bigbox{ /* コンテンツボックス・サイズまで */
    width: 93.2%;
    height: auto;
    margin: 4px auto 0;
    padding: 0 2.5% 0;
    border: 1px solid #e9e9e9;
    border-bottom:none;
}

/* ----------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■ ◆ 商品の詳細 商品画像 ◆*/
/* ----------------------------------------------------------- */

/* -------------------------------------------- */
/* ---- ◆ YouTubeボタン・切り替えて見る ◆ --- */
/* -------------------------------------------- */
#content {
    margin: 18px auto ;
    width:500px;
}
#thumb_img {
  margin-top:2%;
}

/* -------------------------------------------- */
/* ----------- (モーダル・YouTibe) ------------ */
/*--------------------------------------------- */

.modal_open img{
}
/*--------------------------------------------- */
.youtube-button {
    width: 100%;
    max-width: 500px;
    margin:16px auto 0;
    padding:16px 0;
}
.watch-youtube-img { /*（YouTubeマーク画像）*/
    width: 100%;
}
.watch-youtube-img img {
    max-width: 100%;
    width: 100%;
}

/* ------------------------------------ */
/* --------- (モーダル・中身) --------- */
/* ------------------------------------ */

.youtube-title { /*（商品名タイトル）*/
    font-size: 15px;
}
/* ------------------------------------ */
.youtube-note { /*（AI生成 注意事項）*/
    width: 100%;
    color:#ed1c24;
    text-decoration: none;
    margin: 25px auto 0;
    padding:0 0 0 0;
    font-size: 13px;
    font-weight:normal;
    line-height:1.4;
}

/* -------------------------------------------- */
/* ------- (モーダルウィンドウここまで) ------- */
/* -------------------------------------------- */

/* -------------------------------------------- */
/* ------- ◆ 割引商品用のスパン画像 ◆ ------- */
/* -------------------------------------------- */
#featured_img span{
    width:17%;
    top:10px;
    left:-20px;
}

/* ----------------------------------------------------------- */
/* ■■■■■■■■■■■■ ◆ 商品の詳細 価格・カートボタン ◆*/
/* ----------------------------------------------------------- */

/* -------------------------------------------- */
/* --------------- (商品コード) --------------- */
/* -------------------------------------------- */

.detail-itemname-coad{ /*（全体）*/
    margin: 54px auto 0;
}
.coad-id{ /*（商品コード）*/
    font-size: 13px;
}

/* -------------------------------------------- */
/* ----------------- (商品名) ----------------- */
/* -------------------------------------------- */

h2{ /*（商品名）*/
    width:100%;
    max-width:450px;
    min-width:450px;
    margin: 32px auto 35px;
    padding:0 0 25px;
    font-size: 16px;
}

/* -------------------------------------------- */
/* -------------- ( 商品タイプ) --------------- */
/* -------------------------------------------- */

.item-type-link{ /*（商品タイプ 全体）*/
    margin:0 0 0;
}
.item-type-link p{
    font-size: 11.5px;
}
.item-type-link p a{
    font-size: 11.5px;
}
/* -------------------------------------------- */
.off{/*  (○％OFF 割引ページのみ)  */
    margin-left:-5px;
    font-size: 13px;
}

/* -------------------------------------------- */
/* --------------- (商品サイズ) --------------- */
/* -------------------------------------------- */

.item-size-box{ /*（商品サイズ 全体）*/
    margin:32px 0 0;
}
.item-size p{
    font-size: 15px;
    padding:6px 0 0;
}
.size-note{ /*（サイズ表記は｢外寸｣です）*/
    font-size: 10px;
    padding:32px 0 32px;
}

/* ---------------------------------------------- */
/* ----------------- (商品価格) ----------------- */
/* ---------------------------------------------- */

.price-discbutton{ /*（全体）*/
    margin:35px auto 8px;
}
.just-text{ /*（｢価格｣「円｣）*/
    font-size: 16px;
}
.price{ /*（価格）*/
    font-size: 25px;
    margin:0 0 0 -6px;
}
.cost0{ /*（送料0円）*/
    margin:0 0 0 5px;
}
.cost0 img{
    width: 55px;
}
.cost-area-betsu{ /*（地区別特別送料）*/
    margin:0 0 0 5px;
}
.cost-area-betsu img{
    width: 95px;
}
/* ------------------------------------------------ */
.item-tax{ /*（内税）*/
    margin:6px 0 28px 0px;
}
.item-tax p{
    font-size: 12.5px;
}

/* ------------------------------------------------ */
/* ■■■■■■■ ◆ カートボタン ◆ ■■■■■■■ */
/* ------------------------------------------------ */

.cart_button_all{/* --全体 オリジナル-- */
    margin: 0 0 0 -3%;
    padding: 3.5% 2.5% 30px;
    border-right:none; /* --1px solid #e9e9e9;-- */
    border-left:none; /* --1px solid #e9e9e9;-- */
    border-top:none;
    border-bottom: 1px solid #ededed;
}
/* ------------------------------------------------ */
.cart_btn{
    width:100%;
    margin:4px auto 0;
    height:auto;
}
.item_stock{/* --在庫-- */
    width:48.8%;
    float:left;
    text-align:right;
    margin:0 1px 21px 0;
}
.item_stock_ttl{
    color:#3d3d3d;
    font-size:13.5px;
}
.item_stock_val {/* --在庫数-- */
    color:#d74733;
    font-weight:bold;
    font-size:14.5px;
    display:inline-block;
}
.item_stock_val::after {
    content: ' 点';
    color:#3d3d3d;
    font-weight:normal;
    font-size:13.5px;
}
/* ------------------------------------------------ */
.item_count{/* --購入する数-- */
    width:48.8%;
    margin:0px 0 21px 1px;
    padding:0;
    float:right;
    text-align:left;
    display:inline-block;
}
.item_count_ttl{
    font-size:13.5px;
    margin-right: 8px;
}
.notranslate{/* --数(ドロップダウン)-- */
    font-size:13px;
}
/* ------------------------------------------------ */
.cart_button in{/* --カートボタン-- */
    width:100%;
    height:auto;
    padding:15px 0 30px 0;
}
.cart_button_in_value{
    width:100%;
    padding:15px 0 50px 0;
}
/* ------------------------------------------------ */
/* ------------------------------------------------ */
.one-item-note{/* -- 一点商品のため売切れ次第販売終了となります -- */
    font-size:13px;
    padding:10px 0 20px;
}
.cart_button in{/* --カートボタン-- */
    padding:15px 0 35px 0;
}
.cart_button_in_value{
    padding:15px 0 50px 0;
}

/* -------------------------------------------------------------------- */
/* ■■■■■ ◆ カートボタン下の [注文方法・返品] リンク ◆ ■■■■■ */
/* -------------------------------------------------------------------- */

.cart-bottom-link{/* --(カートボタン下の注意事項等)-- */
    margin: 5px auto 0;
    padding: 1.8% 0 0;
}
.cart-bottom-link p{
    font-size:12.5px;
}
.cart-bottom-link p a{
    font-size:12.5px;
}
/* ---------------------------------------------- (SNSソーシャルボタン) --- */
.sns-button{/* --(SNS)-- */
    margin: 30px auto 0;
}

/* -------------------------------------------- */
/* ------ (この商品について問い合わせる) ------ */
/*--------------------------------------------- */
.contact-this-item{ /*（全体）*/
    width: 310px;
    margin-top:70px;
    padding:13px 0 15px;
}
.contact-this-item{
    font-size: 15px; 
}

/* ---------------------------------------------- */
/* -- (モーダル・この商品について問い合わせる) -- */
/*----------------------------------------------- */

.modal_box_contact {
    width: 100%;
    max-width: 70%;
}

/* -------------------------------------------- */
/* ------------------ フォーム ---------------- */
/* -------------------------------------------- */

#formWrap {
    width:100%;
    margin:0 auto;
    padding:0 0 0;
    line-height:1.1;
}
/* -------------------------------------------- */
.item-title { /*（商品名）*/
    width:100%;
    font-size:15px; 
    font-weight:bold;
    padding:32px 0 26px 0; 
    margin-bottom:30px; 
    text-align:center;
    color:#505050;
    background-color:#fcf7eb;
    border-radius: 8px 8px 0 0;
}
/* -------------------------------------------- */
.hotmail-note{ /*（hotmailはやめてください）*/
    font-size:12px; 
}
.text-box-size{ /*（テキストボックスのサイズ）*/
    padding:8px 3px;
    margin-bottom:30px;
    font-size:14px;
}
.btn-takasa{
    padding:-15px 0 35px;
}

/* ------------------------------------------------ */
/* ■■■■■■■■ ◆ 商品説明 ◆ ■■■■■■■■ */
/* ------------------------------------------------ */

.item-description-box{ /*（全体）*/
    width: 93.4%;
    margin: 0 auto;
    padding: 50px 2.5% 0;
}
/* ------------------------------------------------ */
.description-title{ /*（タイトル・横幅100％）*/
    font-size: 15px;
    padding-bottom:12px;
}
.description-title::before{/* かごのマーク */
    font-size: 0.9em ;
}

/* ------------------------------------------------ */
/* ■■■■■ ◆ パソコンのみの説明画像 ◆ ■■■■ */
/* ------------------------------------------------ */

.setsumei-box{ /*（全体）*/
    width: 100%;
    margin:0 auto 0;
    padding: 0;
}
/* ------------------------------------------------ */
.setsumei-image{ /*（商品画像）*/
    width: 80%;
    margin: 10px auto 0;
    text-align:center;
}
.setsumei-image img{
    max-width: 250px;
    border-radius:6px;
}
/* ------------------------------------------------ */
.item-tokuchou{ /*（特徴と使用感 全体）*/
    width: 100%;
    max-width: 470px;
    min-width: 470px;
    margin:40px auto 0;
    padding: 0;
    font-size: 13px;
}
.item-tokuchou p{
    padding-bottom:35px;
}
/* ------------------------------------------------ */
.akebinosato-item-note{ /*（※あけびの里で制作したものを販売しています）*/
    width: 100%;
    max-width: 440px;
    min-width: 440px;
    margin:0 auto 30px;
    padding: 10px 15px;
    font-size: 11px;
    line-height:1.5;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■ ◆ ご注意事項を詳しく見る ◆ */
/* ------------------------------------------------------------------------- */
/* -------------------------------------------------- */
/* -------------- ◆ ご注意・保存方法 ◆ -------------*/
/* -------------------------------------------------- */

.item-note{ /*（ご注意・保存方法 全体）*/
    width: 100%;
    max-width: 440px;
    min-width: 440px;
    margin:5px auto 0;
    padding:20px 15px 0;
    font-size: 13px;
    border-radius: 8px 8px 0 0;
}
.item-note p{
    padding-bottom:35px;
}
/* ------------------------------------------------ */
.desc-mini-title{
    margin:0 0 35px;
    padding:10px 0;
    font-size: 14px;
}
/* ------------------------------------------------ */
.note-modal-title { /* --- (ご注意事項見るボタン) --- */
    width: 100%;
    max-width: 440px;
    min-width: 440px;
    margin:0 auto 20px;
    padding:0 15px 35px;
    font-size: 13px;
    border-radius: 0 0 8px 8px;
}
.note-modal-title::before{/* ココが安心・下矢印 */
    font-size: 0.9em ;
}

/* ------------------------------------------------ */
/* ◆ ■■■ ◆ (モーダル・ご注意事項) ◆ ■■■ ◆ */
/*------------------------------------------------- */

.modal_open_note::after{/* モーダルマーク */
    font-size: 0.9em ;
}
.modal_box_note {
    width: 100%;
    max-width: 75%;
    border-radius: 8px;
}

/* -------------------------------------------------- */
/* ■■■■■■■■■■■■■■ ◆ ご注意事項 内容 ◆ */
/* -------------------------------------------------- */

.note-bigtitle{ /* タイトル */
    margin:0;
    padding:32px 0 26px;
    font-size:16px;
}
/* -------------------------------------------------- */
.scrollbar {/* ---(注意事項・スクロールバー)--- */
    width: 88%;
    height: 480px;
    padding:0 6%;
    font-size:12px;
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
}
/* ------------------------------(注意事項・内容)---- */
.note-mini-title {
    padding:40px 0 30px;
    font-size:13px;
}
/* -------------------------------------------------- */
.ueno-sukima {
    margin-top:-60px;
}
.ueno-sukima2 {
    margin-top:-60px;
}
/* -------------------------------------------------- */
.note-text{ /* 説明 */ 
    width: 100%;
    padding: 0;
    text-align:left;
    font-size:12px;
}
/* -------------------------------------------------- */
.note-hosoku{ /* 補足１ */ 
    padding:30px 0 30px;
    text-align:left;
}
.note-hosoku p{
    padding:0 0 35px;
    font-size:12px;
}
/* -------------------------------------------------- */
.note-hosoku-2{ /* 補足２ */ 
    padding:0 0 30px;
    text-align:left;
}
.note-hosoku-2 p{
    padding:0 0 35px;
    font-size:12px;
}
/* ------------------------------------------------ */
.note-last-BP-img{ /* 最後のロゴ画像 */
    width: 100%;
    height:auto;
    text-align: center;
    margin:0 0 -70px;
}
.note-last-BP-img img{
    max-width:120px;
    height:auto;
    width: 100%;
}
/* -------------------------------------------------- */
.note-last{ /* ※当サイトの内容は予告なく変更する... */ 
    width: 93%;
    padding:18px 3.5% 16px;
    font-size:11px;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■◆ ページリンク ボタン ◆ */
/* ------------------------------------------------------------------------- */

.pagelink-btn p{ /*（ページリンクボタン）*/
    width: 98.2%;
    margin: 0 auto;
    padding:24px 0;
    font-size: 14px; 
}
.pagelink-btn2 p{ /*（ページリンクボタン）*/
    width: 98.2%;
    margin: 0 auto;
    padding:24px 0;
    font-size: 14px; 
}

/* ------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■ ◆ ショップのココが安心 ◆ */
/* ------------------------------------------------------------------- */

.shop-box-all{ /* ショップ案内 コンテンツボックス全体 */
    width: 98.4%;
    margin: 0 auto;
    padding: 16px 0 0;
}
/* ------------------------------------------------------------------- */
.shop-anshin-box{ /* ココが安心 全体 */
    width: 95%;
    margin: 0 auto;
    padding: 32px 2.5% 0;
}
/* ------------------------------------------------------------------- */
.anshin-title{ /* タイトル 全体 */
    width: 97.8%;
    padding: 6px 0.8%;
    border-radius: 4px;
}
.anshin-title-inner{ /* タイトルとボーダー */
    padding: 8px 4.2% ;
    margin:0 5px;
    font-size:16px;
}

/* ------------------------------------------------- */
/* ■■■■■ ◆ ココが安心 画像と説明 ◆ ■■■■■ */
/* ------------------------------------------------- */

.anshin-box{ /*（画像と説明の全体）*/
    width:500px;
    margin: 30px auto 0;
}
/* ------------------------------------------------ */
.anshin-image{ /* 画像 */
    padding-bottom:5px;
}
.anshin-image img{
    max-width:98%;
}
/* ------------------------------------------------ */
.anshin-description{ /* 説明 全体 */
    width:95%;
    margin:30px auto 33px;
    padding:0 2.5% 0;
}
.anshin-right-title{ /* 太字の小タイトル */
    font-size:16px;
    padding:0 0 22px;
}
/* ------------------------------------------------ */
.anshin-right { /* テキスト */
    font-size:15px;
    padding-bottom:35px;
    line-height:1.6;
}
.anshin-right p{ /* テキスト */
    padding-bottom:15px;
}
/* --------------------------- */
.anshin-right2 { /* テキスト */
    font-size:15px;
    padding-bottom:0;
    line-height:1.6;
}
.anshin-right2 p{ /* テキスト */
    padding-bottom:15px;
}
/* ------------------------------------------------ */
.anshin-repair{ /* 修理 */
    width: 95%;
    margin: 0 auto 0;
    padding:0 2.5% 40px;
    font-size:14px;
}

/* ------------------------------------------------ */
/* ■■■■■■■■■ ココが安心・非表示から表示 ◆ */
/* ------------------------------------------------ */

.fa10 p::after{/* ココが安心・下矢印 */
    font-family: "Font Awesome 5 Free";
    content: "\f13a";
    font-size: 1.1em ;
    font-weight: 900;
    padding-left : 4px;/* 文字との隙間 */
    color: #c3c3c3;/* アイコンの色 */
}
/* ------------------------------------------------------------------------- */
.fa10{/* ココが安心ボタンの位置と幅の調節 */
    width: 100.1%;
    margin-left:-0.5px;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■ ◆ お支払い方法 ◆ */
/* ------------------------------------------------------------------------- */

/* ---------------------------------------------------(商品一覧タイトル)---- */
.payment-title-box{ /* タイトルボックス・ページ内全使用 */
    margin: 30px auto 14px;
    padding: 10px 0 9px 1.3%;
}
/* ------------------------------------------------------(自前のｈ4指定)---- */
.fontawsome-other{
    font-size: 16px; 
    padding: 15px 0 15px 2.2%;
    border-left: 8px solid #c3c3c3;
}

.payment-box{ /* お支払い方法 コンテンツボックス全体 */
    width: 93.3%;
    padding: 35px 2.5% 15px;
}
.payment-mine-title{ /* 太字の小タイトル */
    font-size:14px;
}
/* --------------------------------------------------------(支払い方法)---- */
.payment-icon{ /* 4つの支払い方法全体 */
    background-color:#fff;
    border: none;
    text-align: center;
    margin:18px -2% 36px 0;
    padding:0;
    font-size:0;
}
.pay-img-size { /* 画像全部に */
    background-color:#fafafa;
    border: 1px solid #f6f6f6;
    width: 20.6%;
    margin:0 2% 0 0;
    padding:20px 1.05% 22px;
    border-radius: 8px;
}
.pay-img-size img{
    max-width:100%;
    width: 78px;
}
/* -----------------------(支払い方法「画像をクリックで切り替わります｣)---- */
.image-kirikae-info{
    font-size:0.7em;
    margin-top:-44px;
}

.cost-icon-big-leftright{ /* 960～・送料とかを左右にするためだけ */
    width:101.5%;
    margin:0 -1.5% 12px 0;
}
/* ----------------------------------(送料・発送方法・返品・キャンセル)---- */
.cost-icon{ /* 送料・発送方法 */
    width:48.5%;
    margin:18px 1.5% 0 0;
    padding:20px 0;
    float:left;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 8px;
}
/* -------------------------(送料・発送方法・返品・キャンセル アイコン)---- */
.cost-left-icon{
    width: 34%;
    margin:3% 0 0 1%;
    text-align:center;
}
.cost-left-icon img{
    width: 100px;
}
/* ----------------------------------------------------------(右の説明)---- */
.cost-right-text{
    width: 62%;
    margin:8px 3% 5px 0;
    font-size:13.5px;
}
/* ----------------------------------(送料・発送方法・返品・キャンセル)---- */
.pc-henpin-all{ /* 返品タイトルの上の隙間作り */
    width:100%;
    margin:26px 0 12px 0;
}
.pc-henpin-left{ /* 960～・返品とかを左右にするためだけ */
    width:49.2%;
    margin:18px 1.5% 0 0;
    padding:20px 2% 30px 0;
    float:left;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 8px;
}
.pc-cancel-right{ /* 960～・返品とかを左右にするためだけ */
    width:49.2%;
    margin:18px 0 0 0;
    padding:20px 2% 30px 0;
    float:left;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 8px;
}

/* -------------------------------------------------------------- */
/* ■■■■■■■■ ◆ ページ下のカートボタン ◆ ■■■■■■■■ */
/* -------------------------------------------------------------- */

.bottom-cart-flex-box{ /*（全体）*/
    width: 93.4%;
    margin: 30px auto 0;
    padding: 15px 2.5% 10px;
}
/* ------------------------------------------------ */
.bottom-item-image{ /*（商品画像）*/
    width: 100%;
    max-width:460px;
    margin:10px auto 40px;
}
.bottom-item-image img{
    max-width: 460px;
}

/* ------------------------------------ */
/* -- ◆ 割引商品用のスパン画像２ ◆ -- */
/* ------------------------------------ */

#featured_img2 span{
    position:absolute;
    width:70px;
    top:10px;
    left:-20px;
}
/* ------------------------------------------------ */
.bottom-item-detail{ /*（商品情報・カートに入れるボタン 全体）*/
    margin:0 auto;
    padding: 0;
    font-size: 14px;
    line-height:1.6;
}
/* ------------------------------------------------ */
.bottom-item-coad{ /*（商品コード）*/
    font-size: 12px;
    margin-bottom:25px;
}
.bottom-item-h3{ /*（h3 商品名）*/
    margin:0 auto;
    font-size: 15px;
    padding: 0 0 25px;
}
.bottom-item-size{ /*（商品サイズ）*/
    margin:0 auto;
    font-size: 14px;
    padding: 30px 0 30px;
}
.bottom-size-note{
    margin:0 auto;
    font-size: 10px;
    margin:25px 0 0;
}
/* ------------------------------------------------ */
.price-discbutton3{ /*（商品価格 全体）*/
    margin:25px auto -10px;
}
.price-tax3{ /*（価格 全体）*/
    margin:0;
}
.just-text3{ /*（｢価格｣「円｣）*/
    font-size: 15px;
}
.price3{ /*（価格）*/
    font-size: 25px;
    margin:0 0;
}
.cost03{ /*（送料0円）*/
    margin:0 0 0 5px;
}
.cost03 img{
    width: 55px;
    margin:0;
}
.cost-area-betsu3{ /*（地区別特別送料）*/
    margin:0 0 0 5px;
}
.cost-area-betsu3 img{
    width: 95px;
}
/* ------------------------------------------------ */
.item-tax3{ /*（内税）*/
    margin:-3px 0 28px 0px;
}
.item-tax3 p{
    font-size: 12px;
}
/* ------------------------------------------------ */
.cart_btn2{ /*（在庫・数量）※上の在庫デザインに影響するためココで編集しない */
    width:100%;
    margin:15px auto 20px;
    height:auto;
}
/* ------------------------------------------------ */
.one-item-note2{/* -- 一点商品のため売切れ次第販売終了となります -- */
    margin:0 auto;
    font-size:12px;
    padding:0 0 0;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■ ◆ 商品ページアイコン ◆ */
/* ------------------------------------------------------------------------- */

.last-icons-name{ /*（product category）*/
    margin: 39px auto 0;
}
.last-icons-name img{
    width: 140px;
}
.last-icons{ /* 3つのアイコン */
    padding: 0px 0 34px;
    margin-bottom:22px;
}
.last-icons p{
    width: 72px;
    height: 75.45px;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■◆ フッター ◆*/
/* ------------------------------------------------------------------------- */
#footer { 
    width:100%;
}
.link { 
    width:48.13%;
    padding: 19px 0 19px 1.8%;
    font-size:0.95em; 
    float:left;
    border-right: 1px solid #d9d9d9;
}
.link-right-border-none{ 
    border-right: none;
}
.btn-yajirushi{/* 矢印 */
    font-size: 1em ;
    margin-right:12px;
}
.topgyoume-top-margin-960{
    padding-top:3px;
}
.saigo-under-margin-960{
    padding-bottom:1px;
}

/* -------------------------------------------- */
/* ---------------( コピーライト )------------- */
/* -------------------------------------------- */
.copy-light {
    font-size:0.8em;
}
} /* --(消すな)--*/

/* ----------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■◆ ここまで ◆■■■■■■■■■■■■■■■■*/
/* ----------------------------------------------------------------------------- */











/* ------------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■■◆ タブレット 961-1050 ◆■■■ *//*  ■■■◆ タブレット 961-1050 ◆■■■ *//*  ■■■◆ タブレット 961-1050 ◆■■■ *//*
/* ------------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■■◆ タブレット 961-1050 ◆■■■ *//*  ■■■◆ タブレット 961-1050 ◆■■■ *//*  ■■■◆ タブレット 961-1050 ◆■■■ *//*
/* ------------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■■◆ タブレット 961-1050 ◆■■■ *//*  ■■■◆ タブレット 961-1050 ◆■■■ *//*  ■■■◆ タブレット 961-1050 ◆■■■ *//*
/* ------------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■■◆ タブレット 961-1050 ◆■■■ *//*  ■■■◆ タブレット 961-1050 ◆■■■ *//*  ■■■◆ タブレット 961-1050 ◆■■■ *//*
/* ------------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■■◆ タブレット 961-1050 ◆■■■ *//*  ■■■◆ タブレット 961-1050 ◆■■■ *//*  ■■■◆ タブレット 961-1050 ◆■■■ *//*
/* ------------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■■◆ タブレット 961-1050 ◆■■■ *//*  ■■■◆ タブレット 961-1050 ◆■■■ *//*  ■■■◆ タブレット 961-1050 ◆■■■ *//*
/* ------------------------------------------*//* -----------------------------------------*//* ----------------------------------*/

@media screen and (min-width: 961px) and (max-width: 1050px) {

body{
    margin: 0 ;	
    padding: 0 ;
}
#wrap{
    width: 100%;
    max-width: 1050px;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■ SP ■■■■■■■■■■ ◆ PCのみ・要素入替え用親要素◆*/
/* ------------------------------------------------------------------------- */

.irekae{ /* ★ PC要素の入れ替え用親要素 ★ *//*グロナビの入れ替えと混同しない・グロナビを上へ*/ 
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■ タブレット ■■■■■■■■■■◆ h1 / メニュー ◆ */
/* ------------------------------------------------------------------------- */
.h1-menu{
    width: 95%;
    padding: 36px 2.8% 31px 2.2%;
}
/* --------------------------------------------------------------(ロゴ)---- */
h1 img{
    width: 215.95px;
    height: 45.31px;
}

/* -------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■ PC ■■■■■■■■■■■■◆ product category ◆ */
/* -------------------------------------------------------------------------- */

.pc-head-right{ /* 全体 */
    display: none;/* パソコンのみのメニュー */
}

/* ----------------------------------------------------------(メニュー)---- */
#nav-drawer { /* メニュー全体 */ 
    display:block;
}
#nav-open {/*アイコンのスペース*/
    width: 42px;
    height: 42px;
    margin-top:1px;
}
#nav-open img{
    width: 42px;
    height: 42px;
}
/* ------------------------------------------------------(メニュー中身)---- */
#nav-content {/*中身*/
    max-width: 500px;/*最大幅（調整してください）*/
}
/* ------------------------------------------------------(トップの画像)---- */
.menu-title{
    padding:15px 2% 28px 0;
    margin-bottom:6px;
}
/* ----------------------------------------------------(メニューリスト)---- */
.menu-link { 
    width:96.7%;
    padding: 11px 0 11px 3.3%;
    font-size:0.95em; 
}
.btn-yajirushi-menu{/* 矢印 */
    font-size: 1.1em ;
    margin-right:3%;
    padding:11px 0;
}
/* ------------------------------------------------------(～探すリスト)---- */
.kagobag-category-title { /* ～探す タイトル */
    width:94.7%;
    font-size:0.9em; 
    padding: 22px 0 22px 5.3%;
}
/* ------------------------------------------------------(ミニメニュー)---- */
.mini-menu-link { /* ～編み模様とかの2列リンク */
    width:46.1%;
    font-size:0.9em; 
    padding: 14px 0 14px 3.5%;
}
.menu-mark-2{
    padding-right:3px;
}
.btn-yajirushi-mini-menu{/* 矢印 */
    font-size:1.1em; 
    padding:8px 0;
}

/* -------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■ PC ■■■■■■■■■■■■■■◆ グロナビ ◆ */
/* -------------------------------------------------------------------------- */

.glonavi-border-1100{ /* パソコンのみ・背景を白くするためだけ */
    display: none;/* パソコンのみのメニュー */
}

/* -------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■ SP ■■■■■■■■■■■■■■◆ コンテナ ◆ */
/* -------------------------------------------------------------------------- */

#container {/* （コンテナ） */
    width: 100%;
    max-width: 1050px;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■◆ ＨＯＭＥ メインコンテンツ ◆ */
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■ ◆ 商品の詳細 ここから ◆*/
/* ------------------------------------------------------------------------- */

.detail-flex-bigbox{ /* コンテンツボックス・サイズまで */
    width: 100%;
    height: auto;
    margin: 4px auto 0;
    padding: 0 0 0;
    border: 1px solid #e9e9e9;
    border-right:none;
    border-left:none;
    border-bottom:none;
}

/* ----------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■ ◆ 商品の詳細 商品画像 ◆*/
/* ----------------------------------------------------------- */

/* -------------------------------------------- */
/* ---- ◆ YouTubeボタン・切り替えて見る ◆ --- */
/* -------------------------------------------- */
#content {
    margin: 18px auto ;
    width:500px;
}
#thumb_img {
  margin-top:2%;
}

/* -------------------------------------------- */
/* ----------- (モーダル・YouTibe) ------------ */
/*--------------------------------------------- */

.modal_open img{
}
/*--------------------------------------------- */
.youtube-button {
    width: 100%;
    max-width: 500px;
    margin:16px auto 0;
    padding:16px 0;
}
.watch-youtube-img { /*（YouTubeマーク画像）*/
    width: 100%;
}
.watch-youtube-img img {
    max-width: 100%;
    width: 100%;
}

/* ------------------------------------ */
/* --------- (モーダル・中身) --------- */
/* ------------------------------------ */

.youtube-title { /*（商品名タイトル）*/
    width: 100%;
    margin: 0 auto;
    padding:20px 0 30px 0;
    font-size: 15px;
}
/* ------------------------------------ */
.youtube-movie { /*（動画）*/
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
}
.youtube-movie iframe {
  width: 90%;
  height: 90%;
}
/* ------------------------------------ */
.youtube-note { /*（AI生成 注意事項）*/
    width: 100%;
    color:#ed1c24;
    text-decoration: none;
    margin: -20px auto 0;
    padding:0 0 0;
    font-size: 13px;
    font-weight:normal;
    line-height:1.4;
}

/* -------------------------------------------- */
/* ------- (モーダルウィンドウここまで) ------- */
/* -------------------------------------------- */

/* -------------------------------------------- */
/* ------- ◆ 割引商品用のスパン画像 ◆ ------- */
/* -------------------------------------------- */
#featured_img span{
    width:17%;
    top:8px;
    left:-20px;
}

/* ----------------------------------------------------------- */
/* ■■■■■■■■■■■■ ◆ 商品の詳細 価格・カートボタン ◆*/
/* ----------------------------------------------------------- */

/* -------------------------------------------- */
/* --------------- (商品コード) --------------- */
/* -------------------------------------------- */

.detail-itemname-coad{ /*（全体）*/
    margin: 54px auto 0;
}
.coad-id{ /*（商品コード）*/
    font-size: 13px;
}

/* -------------------------------------------- */
/* ----------------- (商品名) ----------------- */
/* -------------------------------------------- */

h2{ /*（商品名）*/
    width:100%;
    max-width:450px;
    min-width:450px;
    margin: 32px auto 35px;
    padding:0 0 25px;
    font-size: 16px;
}

/* -------------------------------------------- */
/* -------------- ( 商品タイプ) --------------- */
/* -------------------------------------------- */

.item-type-link{ /*（商品タイプ 全体）*/
    margin:0 0 0;
}
.item-type-link p{
    font-size: 11.5px;
}
.item-type-link p a{
    font-size: 11.5px;
}
/* -------------------------------------------- */
.off{/*  (○％OFF 割引ページのみ)  */
    margin-left:-5px;
    font-size: 13px;
}

/* -------------------------------------------- */
/* --------------- (商品サイズ) --------------- */
/* -------------------------------------------- */

.item-size-box{ /*（商品サイズ 全体）*/
    margin:32px 0 0;
}
.item-size p{
    font-size: 15px;
    padding:6px 0 0;
}
.size-note{ /*（サイズ表記は｢外寸｣です）*/
    font-size: 10px;
    padding:32px 0 32px;
}

/* ---------------------------------------------- */
/* ----------------- (商品価格) ----------------- */
/* ---------------------------------------------- */

.price-discbutton{ /*（全体）*/
    margin:35px auto 8px;
}
.just-text{ /*（｢価格｣「円｣）*/
    font-size: 16px;
}
.price{ /*（価格）*/
    font-size: 25px;
    margin:0 0 0 -6px;
}
.cost0{ /*（送料0円）*/
    margin:0 0 0 5px;
}
.cost0 img{
    width: 55px;
}
.cost-area-betsu{ /*（地区別特別送料）*/
    margin:0 0 0 5px;
}
.cost-area-betsu img{
    width: 95px;
}
/* ------------------------------------------------ */
.item-tax{ /*（内税）*/
    margin:6px 0 28px 0px;
}
.item-tax p{
    font-size: 12.5px;
}

/* ------------------------------------------------ */
/* ■■■■■■■ ◆ カートボタン ◆ ■■■■■■■ */
/* ------------------------------------------------ */

.cart_button_all{/* --全体 オリジナル-- */
    margin: 0 0 0 -3%;
    padding: 3.5% 2.5% 30px;
    border-right:none; /* --1px solid #e9e9e9;-- */
    border-left:none; /* --1px solid #e9e9e9;-- */
    border-top:none;
    border-bottom: 1px solid #ededed;
}
/* ------------------------------------------------ */
.cart_btn{
    width:100%;
    margin:-2px auto 0;
    height:auto;
}
.item_stock{/* --在庫-- */
    width:48.8%;
    float:left;
    text-align:right;
    margin:0 1px 20px 0;
}
.item_stock_ttl{
    color:#3d3d3d;
    font-size:13.5px;
}
.item_stock_val {/* --在庫数-- */
    color:#d74733;
    font-weight:bold;
    font-size:14.5px;
    display:inline-block;
}
.item_stock_val::after {
    content: ' 点';
    color:#3d3d3d;
    font-weight:normal;
    font-size:13.5px;
}
/* ------------------------------------------------ */
.item_count{/* --購入する数-- */
    width:48.8%;
    margin:0px 0 20px 1px;
    padding:0;
    float:right;
    text-align:left;
    display:inline-block;
}
.item_count_ttl{
    font-size:13.5px;
    margin-right: 8px;
}
.notranslate{/* --数(ドロップダウン)-- */
    font-size:13px;
}
/* ------------------------------------------------ */
.cart_button in{/* --カートボタン-- */
    width:100%;
    height:auto;
    padding:15px 0 30px 0;
}
.cart_button_in_value{
    width:100%;
    padding:15px 0 50px 0;
}
/* ------------------------------------------------ */
/* ------------------------------------------------ */
.one-item-note{/* -- 一点商品のため売切れ次第販売終了となります -- */
    font-size:13px;
    padding:2px 0 20px;
}
.cart_button in{/* --カートボタン-- */
    padding:15px 0 35px 0;
}
.cart_button_in_value{
    padding:15px 0 50px 0;
}

/* -------------------------------------------------------------------- */
/* ■■■■■ ◆ カートボタン下の [注文方法・返品] リンク ◆ ■■■■■ */
/* -------------------------------------------------------------------- */

.cart-bottom-link{/* --(カートボタン下の注意事項等)-- */
    margin: 5px auto 0;
    padding: 1.8% 0 0;
}
.cart-bottom-link p{
    font-size:12.5px;
}
.cart-bottom-link p a{
    font-size:12.5px;
}
/* ---------------------------------------------- (SNSソーシャルボタン) --- */
.sns-button{/* --(SNS)-- */
    margin: 30px auto 0;
}

/* -------------------------------------------- */
/* ------ (この商品について問い合わせる) ------ */
/*--------------------------------------------- */
.contact-this-item{ /*（全体）*/
    width: 310px;
    margin-top:70px;
    padding:13px 0 15px;
}
.contact-this-item{
    font-size: 15px; 
}

/* ---------------------------------------------- */
/* -- (モーダル・この商品について問い合わせる) -- */
/*----------------------------------------------- */

.modal_box_contact {
    width: 100%;
    max-width: 70%;
}

/* -------------------------------------------- */
/* ------------------ フォーム ---------------- */
/* -------------------------------------------- */

#formWrap {
    width:100%;
    margin:0 auto;
    padding:0 0 0;
    line-height:1.1;
}
/* -------------------------------------------- */
.item-title { /*（商品名）*/
    padding:32px 0 26px 0; 
    margin-bottom:35px;
}
/* -------------------------------------------- */
.hotmail-note{ /*（hotmailはやめてください）*/
    font-size:12px; 
}
.text-box-size{ /*（テキストボックスのサイズ）*/
    padding:8px 3px;
    margin-bottom:30px;
    font-size:14px;
}
.btn-takasa{
    padding:-20px 0 40px;
}

/* ------------------------------------------------ */
/* ■■■■■■■■ ◆ 商品説明 ◆ ■■■■■■■■ */
/* ------------------------------------------------ */

.item-description-box{ /*（全体）*/
    width: 95%;
    margin: 0 auto 0;
    padding: 50px 2.5% 5px;
    border-right:none;
    border-left:none;
}
/* ------------------------------------------------ */
.description-title{ /*（タイトル・横幅100％）*/
    font-size: 15px;
    padding-bottom:12px;
}
.description-title::before{/* かごのマーク */
    font-size: 0.9em ;
}

/* ------------------------------------------------ */
/* ■■■■■ ◆ パソコンのみの説明画像 ◆ ■■■■ */
/* ------------------------------------------------ */

.setsumei-box{ /*（全体）*/
    width: 100%;
    margin:10px auto 35px;
    padding: 0;
    display:flex; /*（横並び）*/
    flex-wrap: wrap; 
}
/* ------------------------------------------------ */
.setsumei-image{ /*（商品画像）*/
    width: 30%;
    margin: 10px 0 0 3%;
    text-align:left;
}
.setsumei-image img{
    max-width: 250px;
    border-radius:6px;
}
/* ------------------------------------------------ */
/* ------------------------------------------------ */
.item-tokuchou{ /*（特徴と使用感 全体）*/
    width: 65%;
    margin:35px 0 -35px 0.5%;
    font-size: 13px;
}
.item-tokuchou p{
    padding-bottom:35px;
}
/* ------------------------------------------------ */
.akebinosato-item-note{ /*（※あけびの里で制作したものを販売しています）*/
    width: 96%;
    height: auto;
    margin:42px auto 0;
    padding: 14px 0;
    color:#3d3d3d;
    font-size: 12px;
    font-weight:normal;
    line-height:1.5;
    text-align:center;
    background: #fff7f7;
    border: 1px solid #fff2f2;
    border-radius:5px;
}

/* -------------------------------------------- */
/* -------------- ◆ 地区別送料 ◆ -------------*/
/* -------------------------------------------- */

table.area-cost {
    margin:-20px auto 35px;
    font-size:15px;
}
table.area-cost td {
    width: 10%;
    padding: 10px 10px 8px;
}
.title-color{
    background: #f6f6f6 !important;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■ ◆ ご注意事項を詳しく見る ◆ */
/* ------------------------------------------------------------------------- */
/* -------------------------------------------------- */
/* -------------- ◆ ご注意・保存方法 ◆ -------------*/
/* -------------------------------------------------- */

.item-note{ /*（ご注意・保存方法 全体）*/
    width: 91.2%;
    margin: 5px auto 0;
    padding: 25px 2.5% 0;
    border-right:none;
    border-left:none;
    font-size: 13px;
    border-radius: 8px 8px 0 0;
}
.item-note p{
    padding-bottom:35px;
}
/* ------------------------------------------------ */
.desc-mini-title{
    margin:0 0 40px;
    padding:12px 0;
    font-size: 14px;
}
/* ------------------------------------------------ */
.note-modal-title { /* --- (ご注意事項見るボタン) --- */
    width: 91.2%;
    margin:0 auto 20px;
    padding:5px 2.5% 40px;
    font-size: 13px;
    border-radius: 0 0 8px 8px;
}
.note-modal-title::before{/* ココが安心・下矢印 */
    font-size: 0.9em ;
}

/* ------------------------------------------------ */
/* ◆ ■■■ ◆ (モーダル・ご注意事項) ◆ ■■■ ◆ */
/*------------------------------------------------- */

.modal_open_note::after{/* モーダルマーク */
    font-size: 0.9em ;
}
.modal_box_note {
    width: 100%;
    max-width: 60%;
    border-radius: 8px;
}

/* -------------------------------------------------- */
/* ■■■■■■■■■■■■■■ ◆ ご注意事項 内容 ◆ */
/* -------------------------------------------------- */

.note-bigtitle{ /* タイトル */
    margin:0;
    padding:32px 0 26px;
    font-size:16px;
}
/* -------------------------------------------------- */
.scrollbar {/* ---(注意事項・スクロールバー)--- */
    width: 88%;
    height: 480px;
    padding:0 6%;
    font-size:12px;
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
}
/* ------------------------------(注意事項・内容)---- */
.note-mini-title {
    padding:40px 0 30px;
    font-size:13px;
}
/* -------------------------------------------------- */
.ueno-sukima {
    margin-top:-60px;
}
.ueno-sukima2 {
    margin-top:-60px;
}
/* -------------------------------------------------- */
.note-text{ /* 説明 */ 
    width: 100%;
    padding: 0;
    text-align:left;
    font-size:12px;
}
/* -------------------------------------------------- */
.note-hosoku{ /* 補足１ */ 
    padding:30px 0 30px;
    text-align:left;
}
.note-hosoku p{
    padding:0 0 35px;
    font-size:12px;
}
/* -------------------------------------------------- */
.note-hosoku-2{ /* 補足２ */ 
    padding:0 0 30px;
    text-align:left;
}
.note-hosoku-2 p{
    padding:0 0 35px;
    font-size:12px;
}
/* ------------------------------------------------ */
.note-last-BP-img{ /* 最後のロゴ画像 */
    width: 100%;
    height:auto;
    text-align: center;
    margin:0 0 -70px;
}
.note-last-BP-img img{
    max-width:120px;
    height:auto;
    width: 100%;
}
/* -------------------------------------------------- */
.note-last{ /* ※当サイトの内容は予告なく変更する... */ 
    width: 93%;
    padding:18px 3.5% 16px;
    font-size:11px;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■◆ ページリンク ボタン ◆ */
/* ------------------------------------------------------------------------- */

.pagelink-btn p{ /*（ページリンクボタン）*/
    width: 100%;
    margin: 0 auto;
    padding:24px 0;
    font-size: 13px;
    border-top: 1px solid #eaeaea;
    border-right:none;
    border-left:none;
    border-bottom: 1px solid #f2f2f2;
    clear:both;
}
.pagelink-btn2 p{ /*（ページリンクボタン）*/
    width: 100%;
    margin: 0 auto;
    padding:24px 0;
    font-size: 13px;
    border-top: 1px solid #eaeaea;
    border-right:none;
    border-left:none;
    border-bottom: 1px solid #f2f2f2;
    clear:both;
}

/* ------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■ ◆ ショップのココが安心 ◆ */
/* ------------------------------------------------------------------- */

.shop-box-all{ /* ショップ案内 コンテンツボックス全体 */
    width: 95%;
    margin: 0 auto;
    padding: 16px 2.5% 25px;
    border-right:none;
    border-left:none;
}
/* ------------------------------------------------------------------- */
.shop-anshin-box{ /* ココが安心 全体 */
    width: 95%;
    margin: 0 auto;
    padding: 32px 2.5% 0;
}
/* ------------------------------------------------------------------- */
.anshin-title{ /* タイトル 全体 */
    width: 97.8%;
    padding: 8px 0.8%;
    border-radius: 4px;
}
.anshin-title-inner{ /* タイトルとボーダー */
    padding: 8px 4.2% ;
    margin:0 5px;
    font-size:16px;
}

/* ------------------------------------------------- */
/* ■■■■■ ◆ ココが安心 画像と説明 ◆ ■■■■■ */
/* ------------------------------------------------- */

.anshin-box{ /*（画像と説明の全体）*/
    width:500px;
    margin: 30px auto 0;
}
/* ------------------------------------------------ */
.anshin-image{ /* 画像 */
    padding-bottom:5px;
}
.anshin-image img{
    max-width:98%;
}
/* ------------------------------------------------ */
.anshin-description{ /* 説明 全体 */
    width:95%;
    margin:30px auto 33px;
    padding:0 2.5% 0;
}
.anshin-right-title{ /* 太字の小タイトル */
    font-size:16px;
    padding:0 0 22px;
}
/* ------------------------------------------------ */
.anshin-right { /* テキスト */
    font-size:15px;
    padding-bottom:35px;
    line-height:1.6;
}
.anshin-right p{ /* テキスト */
    padding-bottom:15px;
}
/* --------------------------- */
.anshin-right2 { /* テキスト */
    font-size:15px;
    padding-bottom:0;
    line-height:1.6;
}
.anshin-right2 p{ /* テキスト */
    padding-bottom:15px;
}
/* ------------------------------------------------ */
.anshin-repair{ /* 修理 */
    width: 95%;
    margin: 0 auto 0;
    padding:0 2.5% 40px;
    font-size:14px;
}

/* ------------------------------------------------ */
/* ■■■■■■■■■ ココが安心・非表示から表示 ◆ */
/* ------------------------------------------------ */

.fa10 p::after{/* ココが安心・下矢印 */
    font-family: "Font Awesome 5 Free";
    content: "\f13a";
    font-size: 1.1em ;
    font-weight: 900;
    padding-left : 4px;/* 文字との隙間 */
    color: #c3c3c3;/* アイコンの色 */
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■ ◆ お支払い方法 ◆ */
/* ------------------------------------------------------------------------- */

/* ---------------------------------------------------(商品一覧タイトル)---- */
.payment-title-box{ /* タイトルボックス・ページ内全使用 */
    width: 98.75%;
    margin: 33px auto 26px;
    padding: 7px 0 7px 12px;
    border-top: 1px solid #f2f2f2;
    border-right:none;
    border-left:none;
    border-bottom: 1px solid #e3e3e3;
}
/* ------------------------------------------------------(自前のｈ4指定)---- */
.fontawsome-other{
    font-size: 17px; 
    padding: 15px 0 15px 17px;
}
.fontawsome-other::after{/* ？マーク */
    font-size: 1em ;
}

.payment-box{ /* お支払い方法 コンテンツボックス全体 */
    width: 95%;
    padding: 35px 2.5% 0;
    border-top: 1px solid #f2f2f2;
    border-right:none;
    border-left:none;
    border-bottom: none;
    overflow: hidden; /*floatの解除*/
}
.payment-mine-title{ /* 太字の小タイトル */
    font-size:14.5px;
    padding-bottom:7px;
    margin-bottom:14px;
    border-bottom: 2px dotted #cccccc;
    width:100%;
}
/* --------------------------------------------------------(支払い方法)---- */
.pc-payment-all{ /* PCのみ 支払い方法を囲っている */
    float:left;
    width:35.4%;
    height:auto;
    margin:0 auto 18px;
}
.payment-icon{ /* 4つの支払い方法全体 */
    background-color:#fff;
    border: none;
    text-align: center;
    margin:24px auto 0;
    padding: 0 ;
    font-size:0;
    width:100%;
}
.pay-img-size { /* 画像全部に */
    width: 47.8%;
    max-width:100%;
    margin:0 auto 3%;
    padding:30px 0 30px;
    float:left;
    background-color:#fafafa;
    border: 1px solid #f6f6f6;
    border-radius: 8px;
}
.pay-img-size img{
    max-width:100%;
    width: 78px;
    height:auto;
    cursor: pointer; /*カーソルをポインターにする*/
}
.pay-img-size img:hover {
    opacity: 0.7 ;
}
.pay-image-icon-1{ /* パソコン・クレジットカードの右の隙間作り */
    margin-right:3%;
}
.pay-image-icon-3{ /* パソコン・銀行振込の右の隙間作り */
    margin-right:3%;
}
/* -----------------------(支払い方法「画像をクリックで切り替わります｣)---- */
.image-kirikae-info{
    font-size:10px;
    margin-top:-58px;
}
/* ----------------------------------------------------(送料・発送方法)---- */
.pc-cost-all{ /* PCのみ 送料・発送方法を囲っている */
    width:61%;
    float:right;
    margin:0 0 30px 1.5%;
    padding:0 0 0 1.8%;
    border-left: 1px solid #eaeaea;
}
.cost-icon-big-leftright{ /* 960～・送料とかを左右にするためだけ */
    width:101.5%;
    margin:0 -1.5% 12px 0;
}
.henpin-takasa-1050{ /* 高さ調整するためだけ */
    display: -webkit-flex;
    display: flex;
}
/* ----------------------------------(送料・発送方法・返品・キャンセル)---- */
.cost-icon{ /* 送料・発送方法 */
    width:98.5%;
    margin:10px 1.5% 0 0;
    padding:23.5px 0;
    float:left;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 8px;
}
/* -------------------------(送料・発送方法・返品・キャンセル アイコン)---- */
.cost-left-icon{
    width: 27.8%;
    margin:1.5% auto ;
    text-align:center;
}
.cost-left-icon img{
    width: 105px;
}
/* ----------------------------------------------------------(右の説明)---- */
.cost-right-text{
    width: 68.7%;
    margin:8px 3.5% 8px 0;
    font-size:13.5px;
}
/* ----------------------------------------------------------(右の説明)---- */
.cost-p-margin{
    margin:15px 0 0;
}
/* ----------------------------------------(返品・キャンセルの上の隙間)---- */
.pc-henpin-all{ /* パソコンのみ */
    clear:both;
}
.pc-henpin-top{ /* パソコンのみ */
    margin:30px 0 0;
    padding-top:36px;
}
.pc-henpin-left{ /* PC用・返品を左に */
    width:49.1%;
    margin:10px 1.8% 30px 0;
    padding-top:25px;
    float:left;
}
.pc-cancel-right{ /* PC用・キャンセルを */
    width:49.1%;
    margin:10px 0 30px 0;
    padding-top:25px;
    float:right;
}
.pc-cost-left-icon{ /* PC用・返品キャンセルの中身・左のアイコン */
    width: 34.3%;
    margin:-8px 0 0;
    text-align:center;
}
.pc-cost-left-icon img{ /* PC用・返品キャンセルの中身・左のアイコン */
    width: 130px;
}
.pc-cost-right-text{ /* PC用・返品キャンセルの中身・右のテキスト */
    width: 62.7%;
    margin:0 3% 0 0;
    font-size:13px;
}
.go-henin-page{ 
    margin:20px 0 0;
}

/* -------------------------------------------------------------- */
/* ■■■■■■■■ ◆ ページ下のカートボタン ◆ ■■■■■■■■ */
/* -------------------------------------------------------------- */

.bottom-cart-flex-box{ /*（全体）*/
    width: 95%;
    margin: 35px auto 0;
    padding: 15px 2.5% 8px;
    border-right:none;
    border-left:none;
}
/* ------------------------------------------------ */
.bottom-item-image{ /*（商品画像）*/
    width: 47.5%;
    margin:0 2.5% 40px 1%;
}
.bottom-item-image img{
    max-width: 465px;
}

/* ------------------------------------ */
/* -- ◆ 割引商品用のスパン画像２ ◆ -- */
/* ------------------------------------ */

#featured_img2 span{
    position:absolute;
    width:14%;
    top:10.5px;
    left:-8px;
}
/* ------------------------------------------------ */
.bottom-item-detail{ /*（商品情報・カートに入れるボタン 全体）*/
    width: 48%;
    margin:30px auto 0;
    padding: 0 0 0 0.5%;
    font-size: 14px;
    line-height:1.6;
}
/* ------------------------------------------------ */
.bottom-item-coad{ /*（商品コード）*/
    font-size: 12px;
    margin-bottom:25px;
}
.bottom-item-h3{ /*（h3 商品名）*/
    margin:0 auto;
    font-size: 15px;
    padding: 0 0 25px;
}
.bottom-item-size{ /*（商品サイズ）*/
    margin:0 auto;
    font-size: 14px;
    padding: 30px 0 30px;
}
.bottom-size-note{
    margin:0 auto;
    font-size: 10px;
    margin:25px 0 0;
}
/* ------------------------------------------------ */
.price-discbutton3{ /*（商品価格 全体）*/
    margin:25px auto -10px;
}
.price-tax3{ /*（価格 全体）*/
    margin:0;
}
.just-text3{ /*（｢価格｣「円｣）*/
    font-size: 15px;
}
.price3{ /*（価格）*/
    font-size: 25px;
    margin:0 0;
}
.cost03{ /*（送料0円）*/
    margin:0 0 0 5px;
}
.cost03 img{
    width: 55px;
    margin:0;
}
.cost-area-betsu3{ /*（地区別特別送料）*/
    margin:0 0 0 5px;
}
.cost-area-betsu3 img{
    width: 95px;
}
/* ------------------------------------------------ */
.item-tax3{ /*（内税）*/
    margin:-3px 0 28px 0px;
}
.item-tax3 p{
    font-size: 12px;
}
/* ------------------------------------------------ */
.cart_btn2{ /*（在庫・数量）※上の在庫デザインに影響するためココで編集しない */
    width:100%;
    margin:12px auto 20px;
    height:auto;
}
/* ------------------------------------------------ */
.one-item-note2{/* -- 一点商品のため売切れ次第販売終了となります -- */
    margin:0 auto;
    font-size:12px;
    padding:0 0 0;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■ ◆ 商品ページアイコン ◆ */
/* ------------------------------------------------------------------------- */

.last-icons-name{ /*（product category）*/
    margin: 45px auto 0;
}
.last-icons{ /* 3つのアイコン */
    padding: 2px 0 42px;
    overflow: hidden;/*アイコン画像拡大時にはみ出た部分を隠す*/
}
.last-icons p{
    width: 70px;
    height: 64.38px;
    transition-duration: 0.3s; /*変化に掛かる時間*/
}
.last-icons p:hover{
    transform: scale(1.1); /*画像の拡大率*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■◆ フッター ◆*/
/* ------------------------------------------------------------------------- */
#footer { 
    width:100%;
}
.link { 
    width:48.13%;
    padding: 19px 0 19px 1.8%;
    font-size:0.95em; 
    float:left;
    border-right: 1px solid #d9d9d9;
}
.link-right-border-none{ 
    border-right: none;
}
.btn-yajirushi{/* 矢印 */
    font-size: 1em ;
    margin-right:12px;
}
.topgyoume-top-margin-960{
    padding-top:3px;
}
.saigo-under-margin-960{
    padding-bottom:1px;
}

/* -------------------------------------------- */
/* ---------------( コピーライト )------------- */
/* -------------------------------------------- */
.copy-light {
    font-size:0.8em;
}
} /* --(消すな)--*/


/* ----------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■◆ ここまで ◆■■■■■■■■■■■■■■■■*/
/* ----------------------------------------------------------------------------- */











/* ------------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■■◆ パソコン 1051-1280 ◆■■■ *//*  ■■■◆ パソコン 1051-1280 ◆■■■ *//*  ■■■◆ パソコン 1051-1280 ◆■■■ *//*
/* ------------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■■◆ パソコン 1051-1280 ◆■■■ *//*  ■■■◆ パソコン 1051-1280 ◆■■■ *//*  ■■■◆ パソコン 1051-1280 ◆■■■ *//*
/* ------------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■■◆ パソコン 1051-1280 ◆■■■ *//*  ■■■◆ パソコン 1051-1280 ◆■■■ *//*  ■■■◆ パソコン 1051-1280 ◆■■■ *//*
/* ------------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■■◆ パソコン 1051-1280 ◆■■■ *//*  ■■■◆ パソコン 1051-1280 ◆■■■ *//*  ■■■◆ パソコン 1051-1280 ◆■■■ *//*
/* ------------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■■◆ パソコン 1051-1280 ◆■■■ *//*  ■■■◆ パソコン 1051-1280 ◆■■■ *//*  ■■■◆ パソコン 1051-1280 ◆■■■ *//*
/* ------------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■■◆ パソコン 1051-1280 ◆■■■ *//*  ■■■◆ パソコン 1051-1280 ◆■■■ *//*  ■■■◆ パソコン 1051-1280 ◆■■■ *//*
/* ------------------------------------------*//* -----------------------------------------*//* ----------------------------------*/

@media screen and (min-width: 1051px) and (max-width: 1280px) {

body{
    margin: 0 ;	
    padding: 0 ;
}
#wrap{
    width: 100%;
    max-width: 1280px;
    background-color:#fafafa;
    border-top:12px solid #3d1e07;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■ SP ■■■■■■■■■■ ◆ PCのみ・要素入替え用親要素◆*/
/* ------------------------------------------------------------------------- */

.irekae{ /* ★ PC要素の入れ替え用親要素 ★ *//*グロナビの入れ替えと混同しない・グロナビを上へ*/ 
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■ パソコン ■■■■■■■■■■◆ h1 / メニュー ◆ */
/* ------------------------------------------------------------------------- */
.pc-header-h1-all{ /* 白地を2560pxにするため囲っているだけ */ 
    width: 89.84%;
    padding:4px 5.08% 4px;
    max-width: 1280px;
    height: auto;
    margin: 4px auto 1px;
    border-top:1px solid #f2f2f2;
    border-bottom:1px solid #e8e8e8;
    background-color:#ffffff;
    -webkit-box-ordinal-group: 2; /*グロナビの入れ替えと混同しない・グロナビを上へ*/ 
    -moz-box-ordinal-group: 2; /*グロナビの入れ替えと混同しない・グロナビを上へ*/ 
    box-ordinal-group: 2; /*グロナビの入れ替えと混同しない・グロナビを上へ*/ 
}
.h1-menu{
    overflow: hidden; /*floatの解除*/ 
    width: 100%;
    max-width: 1150px;
    height: auto;
    padding:0px;
    border-bottom:none;
}
/* --------------------------------------------------------------(ロゴ)---- */
h1 { /*（｢h1｣設定）*/
    width: 200px;
    height:auto;
    float:left;
    margin-left:%;
}
h1 img{
    max-width:100%;
    height:auto;
    width: 200px;
}

/* -------------------------------------------------------------------------- */
/* ■■■■■■■■■■ PC ■■■■■■■■■■■◆ パソコン・ヘッダーの右 ◆ */
/* -------------------------------------------------------------------------- */

.pc-head-right{ /* 全体 */
    display:block;
    width:470px;
    height:auto;
    float:right;
    margin-right:-1.9%;
}
.pc-head-right p img{
    max-width:100%;
    height:auto;
    width:470px;
}
.head-product-category{ /*（product category・全体）*/
    overflow: hidden; /*floatの解除*/ 
    width: 100%;
    height:auto;
    display:inline-block;
    padding:25px 0 10px;
    margin-left:33.2%;
    margin-top:-3px;
}
.product-category-image{ /* 左のプロダクトカテゴリー画像 */
    float:left;
    width: 25%;
    height:auto;
    margin-top:7px;
}
.product-category-3icon{ /* 3つのカテゴリー画像 */
    float:left;
    width: 36.5%;
    height:auto;
    margin-top:1px;
    padding:0 3px;
    overflow: hidden;/*アイコン画像拡大時にはみ出た部分を隠す*/
}
.product-category-3icon p{
    width:31%;
    display:inline-block;
    padding-top:3px;
    margin-right:-3px;
}
.product-category-3icon p img{
    height:auto;
    width: 47.92px;
    display: block; /*画像拡大のため*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
}
.product-category-3icon p img:hover{
    transform: scale(1.1); /*画像の拡大率*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
}
/* -----------------------------------------------------(スマホ メニュー)---- */
#nav-drawer { /* 375-960までのメニュー全体 */ 
    display:none;
}

/* -------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■ PC ■■■■■■■■■■■■■■◆ グロナビ ◆ */
/* -------------------------------------------------------------------------- */

.glonavi-border-1100{ /* パソコンのみ・背景を白くするためだけ */
    display:block;
    background-color:#ffffff;
    border-top:1px solid #e6e6e6;
    border-bottom:1px solid #e6e6e6;
    margin-top:2px;
    -webkit-box-ordinal-group: 1; /*グロナビの入れ替えと混同しない・グロナビを上へ*/ 
    -moz-box-ordinal-group: 1; /*グロナビの入れ替えと混同しない・グロナビを上へ*/ 
    box-ordinal-group: 1; /*グロナビの入れ替えと混同しない・グロナビを上へ*/ 
}
.pc-glonavi{ /* パソコンのみのメニュー */
    overflow: hidden; /*floatの解除*/ 
    width: 104%;
    padding:4px 7% 4px;
    margin:0 auto;
}
/* ------------------------------------------------------(テキストリンク)---- */
.pc-glonavi-text-link { /* 全体 */
    width:84.6%;
    color:#3a3a3a;
    font-size:0.8em;
    font-weight:nomal;
    display: flex;
}
.pc-glonavi-text-link li{ /* ひとつひとつのリンク */
    width:100%;
    border-right:1px solid #eaeaea;
    padding-top:20px;
    padding-bottom:13px;
}
    #child1 {
    flex-basis:  75%;
}
    #child2 {
    flex-basis:  130%;
}
    #child3 {
    flex-basis:  135%;
}
    #child4 {
    flex-basis:  110%;
}
    #child5 {
    flex-basis:  98%;
}
    #child6 {
    flex-basis:  67%;
}
    #child7 {
    flex-basis:  115%;
}
    #child88 {
    flex-basis:  105%;
}
/* ----------------------------------------------------- */
    #child8 {
    flex-basis:  380px;
    padding-top:11px;
}
    #child8 img{
    max-width:100%;
    width:27px;
    height:auto;
    display: block; /*画像拡大のため*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
}
    #child8 img:hover{
    transform: scale(1.2); /*画像の拡大率*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
}
/* ----------------------------------------------------- */
    #child9 {
    flex-basis:  380px;
    padding-top:11px;
}
    #child9 img{
    max-width:100%;
    width:27px;
    height:auto;
    display: block; /*画像拡大のため*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
}
    #child9 img:hover{
    transform: scale(1.2); /*画像の拡大率*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
}
/* ----------------------------------------------------- */
    #child10 {
    flex-basis:  46%;
    border-right:2px dotted #e6e6e6;
    padding-top:11px;
    padding-right:5px;
}
    #child10 img{
    max-width:100%;
    width:27px;
    height:auto;
    display: block; /*画像拡大のため*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
}
    #child10 img:hover{
    transform: scale(1.2); /*画像の拡大率*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
}

#child1:hover{
    opacity: 0.7 ;
}
#child2:hover{
    opacity: 0.7 ;
}
#child3:hover{
    opacity: 0.7 ;
}
#child4:hover{
    opacity: 0.7 ;
}
#child5:hover{
    opacity: 0.7 ;
}
#child6:hover{
    opacity: 0.7 ;
}
#child7:hover{
    opacity: 0.7 ;
}

/* -------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■ SP ■■■■■■■■■■■■■■◆ コンテナ ◆ */
/* -------------------------------------------------------------------------- */

#container {/* （コンテナ） */
    width: 89.84%;
    max-width: 1150px;
    padding:0 5.08% 0;
    background-color:#fafafa;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■◆ ＨＯＭＥ メインコンテンツ ◆ */
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■ ◆ 商品の詳細 ここから ◆*/
/* ------------------------------------------------------------------------- */

.detail-flex-bigbox{ /* コンテンツボックス・サイズまで */
    width: 94.8%;
    margin:34px auto 0;
    padding: 0 2.5% 25px;
    border: 1px solid #e9e9e9;
    border-bottom: none;
    display:flex; /*（横並び）*/
    flex-wrap:nowrap; /*（折り返しにならないように解除している）*/
    border-radius: 8px 8px 0 0;
}

/* ----------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■ ◆ 商品の詳細 商品画像 ◆*/
/* ----------------------------------------------------------- */

.item-detail-left{ /* 商品の詳細 左要素 全体ボックス */
    width: 50%;
    height: auto;
    margin: 0 auto 0;
    padding:0 2.8% 0 0;
    display:flex; /*（横並び）*/
    flex-wrap: wrap; 
}

/* -------------------------------------------- */
/* ------ ◆ 商品画像・切り替えて見る ◆ ------ */
/* -------------------------------------------- */

#content {
    margin: 15px auto 0;
    width:100%;
    max-width:510px;
    padding:10px 0 0;
}
#featured_img img,
#thumb_img img {
    max-width: 100%;
    height:auto;
    border-radius: 8px;
}

/* -------------------------------------------- */
/* ----------- (モーダル・YouTube) ------------ */
/*--------------------------------------------- */

.modal_open{
    width:100%;
    max-width:100%;
    margin:20px auto 0;
}
.modal_open img{
}
/*--------------------------------------------- */
.youtube-button {
    width: 100%;
    max-width:100%;
    margin:20px auto 0;
    padding:15px 0;
}
.watch-youtube-img { /*（YouTubeマーク画像）*/
    width: 100%;
}
.watch-youtube-img img {
    max-width: 100%;
    width: 100%;
}
/*--------------------------------------------- */
.modal_box {
    width: 80%;
    max-width:80%;
    margin:0 auto;
    padding: 25px 4vw 30px;
}

/* ------------------------------------ */
/* --------- (モーダル・中身) --------- */
/* ------------------------------------ */

.youtube-title { /*（商品名タイトル）*/
    width: 100%;
    margin: 0 auto;
    padding:20px 0 30px 0;
    font-size: 15px;
}
/* ------------------------------------ */
.youtube-movie { /*（動画）*/
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
}
.youtube-movie iframe {
    width: 80%;
    height: 80%;
    border-radius: 8px;
}
/* ------------------------------------ */
.youtube-note { /*（AI生成 注意事項）*/
    width: 100%;
    color:#ed1c24;
    text-decoration: none;
    margin: -60px auto 0;
    padding:0 0 0;
    font-size: 13px;
    font-weight:normal;
    line-height:1.4;
}

/* -------------------------------------------- */
/* ------- (モーダルウィンドウここまで) ------- */
/* -------------------------------------------- */

/* -------------------------------------------- */
/* ------- ◆ 割引商品用のスパン画像 ◆ ------- */
/* -------------------------------------------- */
#featured_img span{
    width:17%;
    top:0px;
    left:-5px;
}

/* ----------------------------------------------------------- */
/* ■■■■■■■■■■■■ ◆ 商品の詳細 価格・カートボタン ◆*/
/* ----------------------------------------------------------- */

.item-detail-right{ /*（商品の詳細 右要素 全体ボックス）*/
    width: 50%;
    height: auto;
    margin: 0 auto 0;
    padding:0 0.2% 0 0;
    text-align:center;
}

/* -------------------------------------------- */
/* --------------- (商品コード) --------------- */
/* -------------------------------------------- */

.detail-itemname-coad{ /*（全体）*/
    margin: 55px auto 0;
}
.coad-id{ /*（商品コード）*/
    font-size: 12px;
}

/* -------------------------------------------- */
/* ----------------- (商品名) ----------------- */
/* -------------------------------------------- */

h2{ /*（商品名）*/
    width:92%;
    margin: 32px auto 32px;
    padding:0 4% 20px;
    font-size: 16px;
    font-weight:normal;
    line-height:1.4;
}

/* -------------------------------------------- */
/* -------------- ( 商品タイプ) --------------- */
/* -------------------------------------------- */

.item-type-link{ /*（商品タイプ 全体）*/
    margin:0;
}
.item-type-link p{
    font-size: 11px;
    background:#fafafa;
}
.item-type-link p a{
    font-size: 11px;
}

/* -------------------------------------------- */
/* ---- (「割引商品 あけび-かごバッグ：○%OFF」) ---- */
/* -------------------------------------------- */

.item-type-link{ /*（全体）*/
    width: 100%;
    height: auto;
    margin:9px 0 0 1px;
    font-size: 11px;
}
/* -------------------------------------------- */
.off{/*  (○％OFF 割引ページのみ)  */
    margin-left:-4px;
    font-size: 11px;
}

/* -------------------------------------------- */
/* --------------- (商品サイズ) --------------- */
/* -------------------------------------------- */

.item-size-box{ /*（商品サイズ 全体）*/
    margin:36px 0 0;
}
.item-size p{
    font-size: 13px;
    padding:10px 0 0;
    display:inline;
    font-weight:bold;
    color:#6e6969;
    line-height:1.4;
}
.pc-size-haba{/*（1280）*/
    margin-right:8px;
}
.size-note{ /*（サイズ表記は｢外寸｣です）*/
    font-size: 10px;
    padding:33px 0 30px;
    line-height:1.3;
}

/* ---------------------------------------------- */
/* ----------------- (商品価格) ----------------- */
/* ---------------------------------------------- */

.price-discbutton{ /*（全体）*/
    margin:34px auto 18px;
}
.just-text{ /*（｢価格｣「円｣）*/
    font-size: 15px;
}
.price{ /*（価格）*/
    font-size: 24px;
    margin:0 0 0 -6px;
    vertical-align:baseline;
}
.cost0{ /*（送料0円）*/
    margin:0 0 0 5px;
}
.cost0 img{
    width: 50px;
    vertical-align: text-top;
}
.cost-area-betsu{ /*（地区別特別送料）*/
    margin:0 0 0 5px;
}
.cost-area-betsu img{
    width: 95px;
}
/* ------------------------------------------------ */
.item-tax{ /*（内税）*/
    margin:6px 0 18px 0px;
}
.item-tax p{
    font-size: 12px;
}

/* ------------------------------------------------ */
/* ■■■■■■■ ◆ カートボタン ◆ ■■■■■■■ */
/* ------------------------------------------------ */

.cart_button_all{/* --全体 オリジナル-- */
    width: 93%;
    height: auto;
    margin: 0;
    padding: 2.8% 3.5% 25px;
    border-right:none; /* --1px solid #e9e9e9;-- */
    border-left:none; /* --1px solid #e9e9e9;-- */
    border-top:none;
    border-bottom: 1px solid #ededed;
    border-radius: 8px;
}
/* ------------------------------------------------ */
.cart_btn{
    width:94.4%;
    padding: 1px 2.8% 0;
    background-color:#fafafa;
    border:none;
}
/* ------------------------------------------------ */
.item_stock{/* --在庫-- */
    width:48.8%;
    float:left;
    text-align:right;
    margin:0 1px 14px 0;
}
.item_stock_ttl{
    color:#3d3d3d;
    font-size:13.5px;
}
.item_stock_val {/* --在庫数-- */
    color:#d74733;
    font-weight:bold;
    font-size:14.5px;
    display:inline-block;
}
.item_stock_val::after {
    content: ' 点';
    color:#3d3d3d;
    font-weight:normal;
    font-size:13.5px;
}
/* ------------------------------------------------ */
.item_count{/* --購入する数-- */
    width:48.8%;
    margin:0px 0 14px 1px;
    padding:0;
    float:right;
    text-align:left;
    display:inline-block;
}
.item_count_ttl{
    font-size:13.5px;
    margin-right: 8px;
}
.notranslate{/* --数(ドロップダウン)-- */
    font-size:13px;
}
/* ------------------------------------------------ */
.cart_button in{/* --カートボタン-- */
    width:100%;
    height:auto;
    padding:15px 0 30px 0;
}
.cart_button_in_value{
    width:100%;
    padding:15px 0 50px 0;
}
/* ------------------------------------------------ */
/* ------------------------------------------------ */
.one-item-note{/* -- 一点商品のため売切れ次第販売終了となります -- */
    font-size:12px;
    padding:14px 0 10px;
}
.cart_button in{/* --カートボタン-- */
    padding:15px 0 30px 0;
}
.cart_button_in_value{
    padding:15px 0 50px 0;
}

/* -------------------------------------------------------------------- */
/* ■■■■■ ◆ カートボタン下の [注文方法・返品] リンク ◆ ■■■■■ */
/* -------------------------------------------------------------------- */

.cart-bottom-link{/* --(カートボタン下の注意事項等)-- */
    padding: 2% 0 0;
}
.cart-bottom-link p{
    font-size:12px;
}
.cart-bottom-link p a{
    font-size:12px;
}
/* ---------------------------------------------- (SNSソーシャルボタン) --- */
.sns-button{/* --(SNS)-- */
    margin: 25px auto 0;
}

/* -------------------------------------------- */
/* ------ (この商品について問い合わせる) ------ */
/*--------------------------------------------- */
.contact-this-item{ /*（全体）*/
    width: 340px;
    padding:18px 0 20px;
    font-size: 13px; 
    border-radius: 0px;
}

/* ---------------------------------------------- */
/* -- (モーダル・この商品について問い合わせる) -- */
/*----------------------------------------------- */

.modal_box_contact {
    width: 100%;
    max-width: 50%;
    border-radius: 20px;
}

/* -------------------------------------------- */
/* ------------------ フォーム ---------------- */
/* -------------------------------------------- */

#formWrap {
    width:100%;
    margin:0 auto;
    padding:0 0 0;
    line-height:1.1;
    border-radius: 15px;
}
/* -------------------------------------------- */
.item-title { /*（商品名）*/
    font-size:18px; 
    font-weight:normal;
    padding:39px 0 30px 0; 
    margin-bottom:35px;
    border-radius: 15px 15px 0 0;

}
/* -------------------------------------------- */
.hotmail-note{ /*（hotmailはやめてください）*/
    font-size:12px; 
}
/* -------------------------------------------- */
table.formTable th{
    width:86%;
    padding:0 7% 2px; 
}
table.formTable td{
    width:86%;
    padding:0 7%; 
}
.text-box-size{ /*（テキストボックスのサイズ）*/
    padding:8px 3px;
    margin-bottom:35px;
    font-size:14px;
}
.btn-takasa{
    padding:-30px 0 50px;
}

/* ------------------------------------------------ */
/* ■■■■■■■■ ◆ 商品説明 ◆ ■■■■■■■■ */
/* ------------------------------------------------ */

.item-description-box{ /*（全体）*/
    width: 94.8%;
    margin: 0 auto 0;
    padding: 55px 2.5% 5px;
    border: 1px solid #e9e9e9;
    border-top: none;
    border-radius:0 0 8px 8px;
}
/* ------------------------------------------------ */
.description-title{ /*（タイトル・横幅100％）*/
    font-size: 15.5px;
    padding-bottom:12px;
}
.description-title::before{/* かごのマーク */
    font-size: 0.85em ;
}

/* ------------------------------------------------ */
/* ■■■■■ ◆ パソコンのみの説明画像 ◆ ■■■■ */
/* ------------------------------------------------ */

.setsumei-box{ /*（全体）*/
    width: 100%;
    margin:45px auto 35px;
    padding: 0;
    display:flex; /*（横並び）*/
    flex-wrap: wrap; 
}
/* ------------------------------------------------ */
.setsumei-image{ /*（商品画像）*/
    width: 25%;
    margin: -15px 0 0 1%;
}
.setsumei-image img{
    max-width: 250px;
    border-radius:6px;
}
/* ------------------------------------------------ */
/* ------------------------------------------------ */
.item-tokuchou{ /*（特徴と使用感 全体）*/
    width: 68%;
    margin:5px 0 -35px;
    padding: 0 2.5% 0 3.5%;
    font-size: 13px;
/* ---    background-image: url("../../../BP-mobile/Akebikago-items/Discount-item/item-icon/item-note-bgimage.png");
    background-repeat: no-repeat;
    background-size:800px;
    background-position:right bottom,----- */
}
.item-tokuchou p{
    padding-bottom:35px;
}
/* ------------------------------------------------ */
.akebinosato-item-note{ /*（※あけびの里で制作したものを販売しています）*/
    width: 96.5%;
    height: auto;
    margin:42px 0.25% 0;
    padding: 14px 1.5%;
    color:#3d3d3d;
    font-size: 12px;
    font-weight:normal;
    line-height:1.5;
    text-align:center;
    background: #fff7f7;
    border:none;
    border-radius:5px;
}

/* -------------------------------------------- */
/* -------------- ◆ 地区別送料 ◆ -------------*/
/* -------------------------------------------- */

table.area-cost {
    width:100%;
    margin:-20px auto 25px;
    font-size:14px;
    float:left;
}
table.area-cost td {
    width: 10%;
    padding: 8px 10px 6px;
}
.title-color{
    background: #f6f6f6 !important;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■ ◆ ご注意事項を詳しく見る ◆ */
/* ------------------------------------------------------------------------- */
/* -------------------------------------------------- */
/* -------------- ◆ ご注意・保存方法 ◆ -------------*/
/* -------------------------------------------------- */

.item-note{ /*（ご注意・保存方法 全体）*/
    width: 95%;
    margin: 5px auto 0;
    padding: 25px 2.5% 0;
    border: none;
    font-size: 12.5px;
    border-radius: 8px 8px 0 0;
}
.item-note p{
    padding-bottom:30px;
    padding-left:8px;
}
/* ------------------------------------------------ */
.desc-mini-title{
    margin:0 0 40px;
    padding:14px 0 10px;
    font-size: 14px;
}
/* ------------------------------------------------ */
.note-modal-title { /* --- (ご注意事項見るボタン) --- */
    margin:0 0 25px;
    padding:10px 0 35px;
    font-size: 12.5px;
    border-radius: 0 0 8px 8px;
    border: none;
}
.note-modal-title::before{/* ココが安心・下矢印 */
    font-size: 0.9em ;
}

/* ------------------------------------------------ */
/* ◆ ■■■ ◆ (モーダル・ご注意事項) ◆ ■■■ ◆ */
/*------------------------------------------------- */

.modal_open_note::after{/* モーダルマーク */
    font-size: 0.9em ;
}
.modal_box_note {
    width: 100%;
    max-width: 55%;
    border-radius: 8px;
}

/* -------------------------------------------------- */
/* ■■■■■■■■■■■■■■ ◆ ご注意事項 内容 ◆ */
/* -------------------------------------------------- */

.note-bigtitle{ /* タイトル */
    margin:0;
    padding:34px 0 26px;
    font-size:17px;
}
/* -------------------------------------------------- */
.scrollbar {/* ---(注意事項・スクロールバー)--- */
    width: 86%;
    height: 420px;
    padding:0 6% 0 8%;
    font-size:14px;
    border-top: 1px solid #f2ede2;
    border-bottom: 1px solid #f2ede2;
    line-height:1.6;
}
/* ------------------------------(注意事項・内容)---- */
.note-mini-title {
    padding:45px 0 35px;
    font-size:14px;
}
/* -------------------------------------------------- */
.ueno-sukima {
    margin-top:-55px;
}
.ueno-sukima2 {
    margin-top:-55px;
}
/* -------------------------------------------------- */
.note-text{ /* 説明 */ 
    width: 100%;
    padding: 0;
    text-align:left;
    font-size:14px;
}
/* -------------------------------------------------- */
.note-hosoku{ /* 補足１ */ 
    padding:30px 0 30px;
    text-align:left;
}
.note-hosoku p{
    padding:0 0 35px;
    font-size:14px;
}
/* -------------------------------------------------- */
.note-hosoku-2{ /* 補足２ */ 
    padding:0 0 30px;
    text-align:left;
}
.note-hosoku-2 p{
    padding:0 0 35px;
    font-size:14px;
}

/* ------------------------------------------------ */
.note-last-BP-img{ /* 最後のロゴ画像 */
    width: 100%;
    height:auto;
    text-align: center;
    margin:0 0 -80px;
}
.note-last-BP-img img{
    max-width:130px;
    height:auto;
    width: 100%;
}
/* -------------------------------------------------- */
.note-last{ /* ※当サイトの内容は予告なく変更する... */ 
    width: 93%;
    padding:18px 3.5% 18px;
    font-size:12px;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■◆ ページリンク ボタン ◆ */
/* ------------------------------------------------------------------------- */

.pagelink-btn p{ /*（ページリンクボタン）*/
    width: 99.8%;
    margin: 0 auto;
    padding:25px 0 24px;
    font-size: 13px;
    border-top: 1px solid #eaeaea;
    border-left: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    clear:both;
    border-radius: 0 0 8px 8px;
}
.pagelink-btn2 p{ /*（ページリンクボタン）*/
    width: 89.65%;
    margin: 0 auto;
    padding:25px 0 24px;
    font-size: 13px;
    border-top: 1px solid #eaeaea;
    border-left: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    background:#ffffff;
    clear:both;
    border-radius: 0 0 8px 8px;
}

/* ------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■ ◆ ショップのココが安心 ◆ */
/* ------------------------------------------------------------------- */

.shop-box-all{ /* ショップ案内 コンテンツボックス全体 */
    width: 100%;
    margin: 0 auto;
    padding: 20px 0 0;
}
/* ------------------------------------------------------------------- */
.shop-anshin-box{ /* ココが安心 全体 */
    width: 95%;
    margin: 0 auto;
    padding: 45px 2.5% 0;
}
/* ------------------------------------------------------------------- */
.anshin-title{ /* タイトル 全体 */
    width: 100%;
    padding: 8px 0;
    border-radius: 4px;
}
.anshin-title-inner{ /* タイトルとボーダー */
    padding: 10px 0 8px;
    margin:0 5px;
    font-size:17px;
}

/* ------------------------------------------------- */
/* ■■■■■ ◆ ココが安心 画像と説明 ◆ ■■■■■ */
/* ------------------------------------------------- */

.anshin-box{ /*（画像と説明の全体）*/
    width:100%;
    margin: 30px auto ;
    padding:30px 0 0;
    display:flex; /*（横並び）*/
    flex-wrap: wrap; 
}
/* ------------------------------------------------ */
.anshin-image{ /* 画像 */
    width:50%;
    padding-bottom:5px;
}
.anshin-image img{
    max-width:95%;
}
/* ------------------------------------------------ */
.anshin-description{ /* 説明 全体 */
    width:45%;
    margin:10px auto 0;
    padding:0 2.5% 0;
}
.anshin-right-title{ /* 太字の小タイトル */
    font-size:15px;
    padding:0 0 22px;
}
/* ------------------------------------------------ */
.anshin-right { /* テキスト */
    font-size:14px;
    padding-bottom:35px;
    line-height:1.6;
}
.anshin-right p{ /* テキスト */
    padding-bottom:15px;
}
/* --------------------------- */
.anshin-right2 { /* テキスト */
    font-size:14px;
    padding-bottom:0;
    line-height:1.6;
}
.anshin-right2 p{ /* テキスト */
    padding-bottom:15px;
}
/* ------------------------------------------------ */
.anshin-repair{ /* 修理 */
    width: 95%;
    margin: 0 auto 0;
    padding:0 2.5% 40px;
    font-size:14px;
}

/* ------------------------------------------------ */
/* ■■■■■■■■■ ココが安心・非表示から表示 ◆ */
/* ------------------------------------------------ */

.fa10 p::after{/* ココが安心・下矢印 */
    font-family: "Font Awesome 5 Free";
    content: "\f13a";
    font-size: 1.1em ;
    font-weight: 900;
    padding-left : 4px;/* 文字との隙間 */
    color: #c3c3c3;/* アイコンの色 */
}
/* ------------------------------------------------------------------------- */
.fa10{/* ココが安心ボタンの位置と幅の調節 */
    width: 100.2%;
    margin-left:-0.5px;
    cursor: pointer;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■ ◆ お支払い方法 ◆ */
/* ------------------------------------------------------------------------- */

/* --------------------------------------- */
/* ------- ◆ ご注文方法タイトル ◆ ------ */
/* --------------------------------------- */

.payment-title-box{ /* タイトルボックス 全体 */
    width: 98.75%;
    margin: 33px auto 28px;
    padding: 6px 0 6px 12px;
    border-top: 1px solid #eaeaea;
    border-right: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    border-left: 1px solid #e9e9e9;
    border-radius: 5px;
}
/* --------------------------------------- */
.fontawsome-other{ /* タイトルボックス 中身 */
    font-size: 16.5px; 
    padding: 18px 0 16px 17px;
    border-radius: 1px;
}

/* --------------------------------------- */
/* ------ ◆ ３つの方法 全体 BOX ◆ ------ */
/* --------------------------------------- */

.payment-box{ /* 3つのBoxを囲うBIGBox全体 */
    width: 94.8%;
    padding: 36px 2.5% 0;
    border: 1px solid #e9e9e9;
    border-bottom:none;
    overflow: hidden; /*floatの解除*/
    border-radius: 8px 8px 0 0;
    display:flex; /*（横並び）*/
    flex-wrap: wrap; 
}
/* --------------------------------------- */
.payment-mine-title{ /* ３つの小タイトル */
    width:100%;
    font-size:14px;
    padding-bottom:8px;
    margin-bottom:25px;
    border-bottom: 2px dotted #cccccc;
}

/* --------------------------------------- */
/* --------- ◆ お支払い方法 ◆ ---------- */
/* --------------------------------------- */

.pc-payment-all{ /* 支払い方法 Box */
    width:24.6%;
    height:auto;
    margin:0 auto 0;
}
/* --------------------------------------- */
.payment-icon{ /* 4つの支払い方法全体 */
    background-color:#fff;
    border: none;
    text-align: center;
    margin:24px auto 0;
    padding:0;
    font-size:0;
    width:100%;
}
/* --------------------------------------- */
.pay-img-size { /* 支払い4つの画像全部に */
    width: 46.5%;
    max-width:100%;
    margin:0 auto 4%;
    padding:24px 0 24px;
    background-color:#fafafa;
    border: 1px solid #f6f6f6;
    border-radius: 8px;
}
.pay-img-size img{
    max-width:100%;
    width: 76px;
    height:auto;
    cursor: pointer; /*カーソルをポインターにする*/
}
.pay-img-size img:hover {
    opacity: 0.7 ;
}
/* --------------------------------------- */
.pay-image-icon-1{ /* PC クレジットカードの右の隙間作り */
    margin-right:5%;
}
.pay-image-icon-3{ /* PC 銀行振込の右の隙間作り */
    margin-right:5%;
}

/* --------------------------------------- */
/* - (「画像をクリックで切り替わります｣) - */
/* --------------------------------------- */

.image-kirikae-info{
    font-size:10px;
    margin-top:-58px;
}

/* --------------------------------------- */
/* -------- ◆ 送料・発送方法 ◆ --------- */
/* --------------------------------------- */

.pc-cost-all{ /* 送料・発送方法 Box */
    width:34%;
    margin:0 0.5% 20px 1.5%;
    padding:0 0 0 1.5%;
    border-left: 1px solid #eaeaea;
}
/* --------------------------------------- */
.cost-icon-big-leftright{ /* 960～・送料とかを左右にするためだけ */
    width:101.5%;
    margin:0 -1.5% 12px 0;
}
/* --------------------------------------- */
.henpin-takasa-1050{ /* 高さ調整するためだけ */
    display: -webkit-flex;
    display: flex;
}

/* ---------------------------------------- */
/* ------ 4項目で使用するミニボックス------ */
/* ---------------------------------------- */

.cost-icon{ /* 送料・発送方法・返品・キャンセル 4つのミニBox */
    width:100%;
    margin:10px 0 0 0;
    padding:26px 0 24px;
    background-color:#fafafa;
    border: 1px solid #f6f6f6;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 8px;
}

/* ---------------------------------------- */
/* ------- 4項目で使用する4つの画像 ------- */
/* ---------------------------------------- */

.cost-left-icon{ /* 送料・発送方法・返品・キャンセル */
    width: 33%;
    margin:0 auto;
    text-align:center;
    padding:4px 0 4px 1%;
}
.cost-left-icon img{/* ４つの画像*/
    width: 100px;
}

/* ---------------------------------------- */
/* ----- 4項目で使用する4つの右の説明 ----- */
/* ---------------------------------------- */

.cost-right-text{
    width: 60.5%;
    margin:0 4.5% 0 0;
    font-size:12.5px;
    line-height:1.4;
}

/* --------------------------------------- */
/* ------- ◆ 返品・キャンセル ◆ -------- */
/* --------------------------------------- */

.pc-henpin-all{ 
    width:34.5%;
    margin:0 0 20px 1.5%;
    padding:0 0 0 1.5%;
    border-left: 1px solid #eaeaea;
}

/* ---------------------------------------- */
.go-henin-page{ /* PC-文字縮小 */
    font-size:12px;
}
.pc-mini-text{ /* PC-文字縮小 */
    font-size:12px;
}

/* -------------------------------------------------------------- */
/* ■■■■■■■■ ◆ ページ下のカートボタン ◆ ■■■■■■■■ */
/* -------------------------------------------------------------- */

.bottom-cart-flex-box{ /*（全体）*/
    width: 94.8%;
    margin: 30px auto 0;
    padding: 35px 2.5% 10px;
    border-radius:8px;
}
/* ------------------------------------------------ */
.bottom-item-image{ /*（商品画像）*/
    width: 48.5%;
    margin:0 2.5% 45px 0;
}
.bottom-item-image img{
    max-width: 465px;
}

/* ------------------------------------ */
/* -- ◆ 割引商品用のスパン画像２ ◆ -- */
/* ------------------------------------ */

#featured_img2{
    position:relative;
}
#featured_img2 span{
    position:absolute;
    width:80px;
    top:0px;
    left:1%;
}
#featured_img2 span img{
    max-width: 100%;
    height:auto;
}
/* ------------------------------------------------ */
.bottom-item-detail{ /*（商品情報・カートに入れるボタン 全体）*/
    width: 48.5%;
    margin:30px auto 0;
    padding: 0;
    font-size: 14px;
    line-height:1.6;
}
/* ------------------------------------------------ */
.bottom-item-coad{ /*（商品コード）*/
    font-size: 12px;
    margin-bottom:25px;
}
.bottom-item-h3{ /*（h3 商品名）*/
    width: 80%;
    color:#6e6969;
    font-size: 15px;
    padding: 0 10% 20px;
}
.bottom-item-size{ /*（商品サイズ）*/
    font-size: 13.5px;
    margin:0 auto;
    padding: 30px 0 28px;
}
.bottom-size-note{
    font-size: 10px;
    line-height:1.2;
    margin:26px auto 0;
}
/* ------------------------------------------------ */
.price-discbutton3{ /*（商品価格 全体）*/
    margin:28px auto -12px;
}
.price-tax3{ /*（価格 全体）*/
    margin:0;
}
.just-text3{ /*（｢価格｣「円｣）*/
    font-size: 16px;
}
.price3{ /*（価格）*/
    font-size: 22px;
    margin:0 0;
}
.cost03{ /*（送料0円）*/
    margin:0 0 0 5px;
}
.cost03 img{
    width: 50px;
    margin:0;
}
.cost-area-betsu3{ /*（地区別特別送料）*/
    margin:0 0 0 5px;
}
.cost-area-betsu3 img{
    width: 95px;
}
/* ------------------------------------------------ */
.item-tax3{ /*（内税）*/
    margin:-3px 0 30px 0px;
}
.item-tax3 p{
    font-size: 12px;
}
/* ------------------------------------------------ */
.cart_btn2{ /*（在庫・数量）※上の在庫デザインに影響するためココで編集しない */
    width: 95%;
    margin:10px auto 20px;
    height:auto;
}
/* ------------------------------------------------ */
.one-item-note2{/* -- 一点商品のため売切れ次第販売終了となります -- */
    margin:0 auto;
    font-size:12px;
    padding:2px 0 0;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■ ◆ 商品ページアイコン ◆ */
/* ------------------------------------------------------------------------- */

.last-icons-name{ /*（product category）*/
    margin: 50px auto 0;
}
.last-icons{ /* 3つのアイコン */
    padding: 2px 0 42px;
    margin: -0.5em auto 22px;
    overflow: hidden;/*アイコン画像拡大時にはみ出た部分を隠す*/
}
.last-icons p{
    width: 62px;
    height: 64.38px;
    transition-duration: 0.3s; /*変化に掛かる時間*/
}
.last-icons p:hover{
    transform: scale(1.1); /*画像の拡大率*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■◆ フッター ◆*/
/* ------------------------------------------------------------------------- */
.footer-pc-none{/* 矢印 */
    display:none;
}
#footer { /*（フッター・全体）*/ 
    width:2560px;
    max-width:100%;
    margin:0 auto;
    height: auto;
    clear: both;/*（回り込みを防ぐ）*/
    position: relative; 
    float:left;/*（横配列に必要なフロート）*/
    background-color:#3d1e07;
    text-align:center;
}
.px-footer{ /*（パソコン用・フッター・全体）*/ 
    width:100%;
    height: auto;
    margin:0 auto;
    padding:18px 0;
    display:block;
}
.px-footer p{ /*（パソコン用・フッター・全体）*/ 
    display:inline;
    color:#fff;
}
.px-footer p a{
    color:#fff;
    font-size:12px;
}
.px-footer p a:hover{
  opacity: 0.75;
}
.fotto-p-haba{ /*（棒の幅）*/ 
    margin:0 0 0 5px;
}
/* -------------------------------------------- */
/* ---------------( コピーライト )------------- */
/* -------------------------------------------- */
.copy-light {
    margin:0 auto;
    padding:16px 0 15px;
    font-size:0.7em;
    background-color:#fff;
}
} /* --(消すな)--*/


/* ----------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■◆ ここまで ◆■■■■■■■■■■■■■■■■*/
/* ----------------------------------------------------------------------------- */












/* ------------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■■◆ パソコン 1281-1920 ◆■■■ *//*  ■■■◆ パソコン 1281-1920 ◆■■■ *//*  ■■■◆ パソコン 1281-1920 ◆■■■ *//*
/* ------------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■■◆ パソコン 1281-1920 ◆■■■ *//*  ■■■◆ パソコン 1281-1920 ◆■■■ *//*  ■■■◆ パソコン 1281-1920 ◆■■■ *//*
/* ------------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■■◆ パソコン 1281-1920 ◆■■■ *//*  ■■■◆ パソコン 1281-1920 ◆■■■ *//*  ■■■◆ パソコン 1281-1920 ◆■■■ *//*
/* ------------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■■◆ パソコン 1281-1920 ◆■■■ *//*  ■■■◆ パソコン 1281-1920 ◆■■■ *//*  ■■■◆ パソコン 1281-1920 ◆■■■ *//*
/* ------------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■■◆ パソコン 1281-1920 ◆■■■ *//*  ■■■◆ パソコン 1281-1920 ◆■■■ *//*  ■■■◆ パソコン 1281-1920 ◆■■■ *//*
/* ------------------------------------------*//* -----------------------------------------*//* ----------------------------------*/
/*  ■■■◆ パソコン 1281-1920 ◆■■■ *//*  ■■■◆ パソコン 1281-1920 ◆■■■ *//*  ■■■◆ パソコン 1281-1920 ◆■■■ *//*
/* ------------------------------------------*//* -----------------------------------------*//* ----------------------------------*/

@media screen and (min-width: 1281px) and (max-width: 1920px) {

body{
    margin: 0 ;	
    padding: 0 ;
}
#wrap{
    width: 100%;
    max-width: 1920px;
    background-color:#fafafa;
    border-top:12px solid #3d1e07;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■ SP ■■■■■■■■■■ ◆ PCのみ・要素入替え用親要素◆*/
/* ------------------------------------------------------------------------- */

.irekae{ /* ★ PC要素の入れ替え用親要素 ★ *//*グロナビの入れ替えと混同しない・グロナビを上へ*/ 
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■ パソコン ■■■■■■■■■■◆ h1 / メニュー ◆ */
/* ------------------------------------------------------------------------- */
.pc-header-h1-all{ /* 白地を2560pxにするため囲っているだけ */ 
    width: 89.84%;
    padding:5px 5.08% 6px;
    max-width: 1920px;
    height: auto;
    margin: 4px auto 2;
    border-top:1px solid #f2f2f2;
    border-bottom:1px solid #e8e8e8;
    background-color:#ffffff;
    -webkit-box-ordinal-group: 2; /*グロナビの入れ替えと混同しない・グロナビを上へ*/ 
    -moz-box-ordinal-group: 2; /*グロナビの入れ替えと混同しない・グロナビを上へ*/ 
    box-ordinal-group: 2; /*グロナビの入れ替えと混同しない・グロナビを上へ*/ 
}
.h1-menu{
    overflow: hidden; /*floatの解除*/ 
    width: 100%;
    max-width: 1800px;
    height: auto;
    padding:0px;
    border-bottom:none;
}
/* --------------------------------------------------------------(ロゴ)---- */
h1 { /*（｢h1｣設定）*/
    width: 220px;
    height:auto;
    float:left;
    margin-left:0.2%;
}
h1 img{
    max-width:100%;
    height:auto;
    width: 220px;
}

/* -------------------------------------------------------------------------- */
/* ■■■■■■■■■■ PC ■■■■■■■■■■■◆ パソコン・ヘッダーの右 ◆ */
/* -------------------------------------------------------------------------- */

.pc-head-right{ /* 全体 */
    display:block;
    width:520px;
    height:auto;
    float:right;
    margin-right:-1.9%;
}
.pc-head-right p img{
    max-width:100%;
    height:auto;
    width:520px;
}
.head-product-category{ /*（product category・全体）*/
    overflow: hidden; /*floatの解除*/ 
    width: 100%;
    height:auto;
    display:inline-block;
    padding:28px 0 10px;
    margin-left:33.2%;
    margin-top:-3px;
}
.product-category-image{ /* 左のプロダクトカテゴリー画像 */
    float:left;
    width: 25%;
    height:auto;
    margin-top:7px;
}
.product-category-3icon{ /* 3つのカテゴリー画像 */
    float:left;
    width: 36.2%;
    height:auto;
    margin-top:1px;
    padding:0 3px;
    overflow: hidden;/*アイコン画像拡大時にはみ出た部分を隠す*/
}
.product-category-3icon p{
    width:31%;
    display:inline-block;
    padding-top:3px;
    margin-right:-3px;
}
.product-category-3icon p img{
    height:auto;
    width: 50px;
    display: block; /*画像拡大のため*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
}
.product-category-3icon p img:hover{
    transform: scale(1.1); /*画像の拡大率*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
}
/* -----------------------------------------------------(スマホ メニュー)---- */
#nav-drawer { /* 375-960までのメニュー全体 */ 
    display:none;
}

/* -------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■ PC ■■■■■■■■■■■■■■◆ グロナビ ◆ */
/* -------------------------------------------------------------------------- */

.glonavi-border-1100{ /* パソコンのみ・背景を白くするためだけ */
    display:block;
    background-color:#ffffff;
    border-top:1px solid #e6e6e6;
    border-bottom:1px solid #e6e6e6;
    margin-top:2px;
    -webkit-box-ordinal-group: 1; /*グロナビの入れ替えと混同しない・グロナビを上へ*/ 
    -moz-box-ordinal-group: 1; /*グロナビの入れ替えと混同しない・グロナビを上へ*/ 
    box-ordinal-group: 1; /*グロナビの入れ替えと混同しない・グロナビを上へ*/ 
}
.pc-glonavi{ /* パソコンのみのメニュー */
    overflow: hidden; /*floatの解除*/ 
    width:86%;
    padding:5px 15px 5px;
    margin:0 auto;
}
/* ------------------------------------------------------(テキストリンク)---- */
.pc-glonavi-text-link { /* 全体 */
    width:102%;
    color:#3a3a3a;
    font-size:0.9em;
    font-weight:nomal;
    display: flex;
}
.pc-glonavi-text-link li{ /* ひとつひとつのリンク */
    width:100%;
    border-right:1px solid #eaeaea;
    padding-top:20px;
    padding-bottom:13px;
}
    #child1 {
    flex-basis:  75%;
}
    #child2 {
    flex-basis:  130%;
}
    #child3 {
    flex-basis:  135%;
}
    #child4 {
    flex-basis:  110%;
}
    #child5 {
    flex-basis:  98%;
}
    #child6 {
    flex-basis:  67%;
}
    #child7 {
    flex-basis:  115%;
}
    #child88 {
    flex-basis:  105%;
}
/* ----------------------------------------------------- */
    #child8 {
    flex-basis:  27px;
    padding-top:11px;
    padding-right:13px;
}
    #child8 img{
    max-width:27px;
    width:27px;
    height:auto;
    display: block; /*画像拡大のため*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
}
    #child8 img:hover{
    transform: scale(1.2); /*画像の拡大率*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
}
/* ----------------------------------------------------- */
    #child9 {
    flex-basis:  27px;
    padding-top:11px;
    padding-right:13px;
}
    #child9 img{
    max-width:28px;
    width:28px;
    height:auto;
    display: block; /*画像拡大のため*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
}
    #child9 img:hover{
    transform: scale(1.2); /*画像の拡大率*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
}
/* ----------------------------------------------------- */
    #child10 {
    flex-basis:  27px;
    border-right:2px dotted #e6e6e6;
    padding-top:11px;
    padding-right:25px;
}
    #child10 img{
    max-width:28px;
    width:28px;
    height:auto;
    display: block; /*画像拡大のため*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
}
    #child10 img:hover{
    transform: scale(1.2); /*画像の拡大率*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
}

#child1:hover{
    opacity: 0.7 ;
}
#child2:hover{
    opacity: 0.7 ;
}
#child3:hover{
    opacity: 0.7 ;
}
#child4:hover{
    opacity: 0.7 ;
}
#child5:hover{
    opacity: 0.7 ;
}
#child6:hover{
    opacity: 0.7 ;
}
#child7:hover{
    opacity: 0.7 ;
}

/* -------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■ SP ■■■■■■■■■■■■■■◆ コンテナ ◆ */
/* -------------------------------------------------------------------------- */

#container {/* （コンテナ） */
    width: 89.84%;
    padding:0 5.08% 0;
    background-color:#fafafa;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■◆ ＨＯＭＥ メインコンテンツ ◆ */
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■ ◆ 商品の詳細 ここから ◆*/
/* ------------------------------------------------------------------------- */

.detail-flex-bigbox{ /* コンテンツボックス・サイズまで */
    width: 94.8%;
    margin:35px auto 0;
    padding: 0 2.5% 25px;
    border: 1px solid #e9e9e9;
    border-bottom: none;
    display:flex; /*（横並び）*/
    flex-wrap:nowrap; /*（折り返しにならないように解除している）*/
    border-radius: 10px 10px 0 0;
}

/* ----------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■ ◆ 商品の詳細 商品画像 ◆*/
/* ----------------------------------------------------------- */

.item-detail-left{ /* 商品の詳細 左要素 全体ボックス */
    width: 50%;
    height: auto;
    margin: 15px auto 0;
    padding:0 2.8% 0 0;
    display:flex; /*（横並び）*/
    flex-wrap: wrap; 
}

/* -------------------------------------------- */
/* ---- ◆ YouTubeボタン・切り替えて見る ◆ --- */
/* -------------------------------------------- */

#content {
    margin: 4px auto;
    width:100%;
    max-width:620px;
    padding:20px 0 0;
}
#featured_img img,
#thumb_img img {
    max-width: 100%;
    height:auto;
    border-radius:10px;
}

/* -------------------------------------------- */
/* ----------- (モーダル・YouTube) ------------ */
/*--------------------------------------------- */

.modal_open{
    width:100%;
    max-width:100%;
    margin:20px auto 0;
}
.modal_open img{
}
/*--------------------------------------------- */
.youtube-button {
    width: 100%;
    max-width:100%;
    margin:20px auto 0;
    padding:15px 0;
}
.watch-youtube-img { /*（YouTubeマーク画像）*/
    width: 100%;
}
.watch-youtube-img img {
    max-width: 100%;
    width: 100%;
}
/*--------------------------------------------- */
.modal_box {
    width: 80%;
    max-width:80%;
    margin:0 auto;
    padding: 25px 4vw 30px;
}

/* ------------------------------------ */
/* --------- (モーダル・中身) --------- */
/* ------------------------------------ */

.youtube-title { /*（商品名タイトル）*/
    width: 100%;
    margin: 0 auto;
    padding:20px 0 30px 0;
    font-size: 18px;
}
/* ------------------------------------ */
.youtube-movie { /*（動画）*/
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
}
.youtube-movie iframe {
  width: 80%;
  height: 80%;
    border-radius: 8px;
}
/* ------------------------------------ */
.youtube-note { /*（AI生成 注意事項）*/
    width: 100%;
    color:#ed1c24;
    text-decoration: none;
    margin: -90px auto 0;
    padding:0 0 0;
    font-size: 14px;
    font-weight:normal;
    line-height:1.4;
}

/* -------------------------------------------- */
/* ------- (モーダルウィンドウここまで) ------- */
/* -------------------------------------------- */

/* -------------------------------------------- */
/* ------- ◆ 割引商品用のスパン画像 ◆ ------- */
/* -------------------------------------------- */
#featured_img span{
    width:17%;
    top:-5px;
    left:0px;
}

/* ----------------------------------------------------------- */
/* ■■■■■■■■■■■■ ◆ 商品の詳細 価格・カートボタン ◆*/
/* ----------------------------------------------------------- */

.item-detail-right{ /*（商品の詳細 右要素 全体ボックス）*/
    width: 50%;
    height: auto;
    margin: 0 auto 0;
    padding:0 2.2% 0 0;
    text-align:center;
}

/* -------------------------------------------- */
/* --------------- (商品コード) --------------- */
/* -------------------------------------------- */

.detail-itemname-coad{ /*（全体）*/
    margin: 70px auto 0;
}
.coad-id{ /*（商品コード）*/
    font-size: 13px;
}

/* -------------------------------------------- */
/* ----------------- (商品名) ----------------- */
/* -------------------------------------------- */

h2{ /*（商品名）*/
    width:88%;
    margin: 42px auto 42px;
    padding:0 6% 28px;
    font-size: 20px;
    font-weight:normal;
    line-height:1.4;
}

/* -------------------------------------------- */
/* -------------- ( 商品タイプ) --------------- */
/* -------------------------------------------- */

.item-type-link{ /*（商品タイプ 全体）*/
    margin:0;
}
.item-type-link p{
    font-size: 13px;
    background:#fafafa;
}
.item-type-link p a{
    font-size: 13px;
}

/* -------------------------------------------- */
/* ---- (「割引商品 あけび-かごバッグ：○%OFF」) ---- */
/* -------------------------------------------- */

.item-type-link{ /*（全体）*/
    width: 100%;
    height: auto;
    margin:9px 0 0 1px;
    font-size: 13px;
}
/* -------------------------------------------- */
.off{/*  (○％OFF 割引ページのみ)  */
    margin-left:-4px;
    font-size: 13px;
}

/* -------------------------------------------- */
/* --------------- (商品サイズ) --------------- */
/* -------------------------------------------- */

.item-size-box{ /*（商品サイズ 全体）*/
    margin:48px 0 0;
}
.item-size p{
    font-size: 17px;
    padding:10px 0 0;
    display:inline;
    font-weight:bold;
    color:#6e6969;
    line-height:1.4;
}
.pc-size-haba{/*（1280）*/
    margin-right:8px;
}
.size-note{ /*（サイズ表記は｢外寸｣です）*/
    font-size: 12px;
    padding:43px 0 40px;
    line-height:1.3;
}

/* ---------------------------------------------- */
/* ----------------- (商品価格) ----------------- */
/* ---------------------------------------------- */

.price-discbutton{ /*（全体）*/
    margin:45px auto 28px;
}
.just-text{ /*（｢価格｣「円｣）*/
    font-size: 18px;
}
.price{ /*（価格）*/
    font-size: 28px;
    margin:0 0 0 -6px;
    vertical-align:baseline;
}
.cost0{ /*（送料0円）*/
    margin:0 0 0 5px;
}
.cost0 img{
    width: 55px;
    vertical-align: text-top;
}
.cost-area-betsu{ /*（地区別特別送料）*/
    margin:0 0 0 5px;
}
.cost-area-betsu img{
    width: 95px;
}
/* ------------------------------------------------ */
.item-tax{ /*（内税）*/
    margin:6px 0 18px 0px;
}
.item-tax p{
    font-size: 14px;
}

/* ------------------------------------------------ */
/* ■■■■■■■ ◆ カートボタン ◆ ■■■■■■■ */
/* ------------------------------------------------ */

.cart_button_all{/* --全体 オリジナル-- */
    width: 93%;
    height: auto;
    margin: 0;
    padding: 3.5% 3.5% 35px;
    border-right:none; /* --1px solid #e9e9e9;-- */
    border-left:none; /* --1px solid #e9e9e9;-- */
    border-top:none;
    border-bottom: 1px solid #ededed;
    border-radius: 10px;
}
/* ------------------------------------------------ */
.cart_btn{
    width:98.4%;
    padding: 2px 0.8% 0;
    background-color:#fafafa;
    border:none;
}
/* ------------------------------------------------ */
.item_stock{/* --在庫-- */
    width:48.8%;
    float:left;
    text-align:right;
    margin:-2px 1px 20px 0;
}
.item_stock_ttl{
    color:#3d3d3d;
    font-size:14px;
}
.item_stock_val {/* --在庫数-- */
    color:#d74733;
    font-weight:bold;
    font-size:15px;
    display:inline-block;
}
.item_stock_val::after {
    content: ' 点';
    color:#3d3d3d;
    font-weight:normal;
    font-size:14px;
}
/* ------------------------------------------------ */
.item_count{/* --購入する数-- */
    width:48.8%;
    margin:-2px 0 20px 1px;
    padding:0;
    float:right;
    text-align:left;
    display:inline-block;
}
.item_count_ttl{
    font-size:14px;
    margin-right: 8px;
}
.notranslate{/* --数(ドロップダウン)-- */
    font-size:13px;
}
/* ------------------------------------------------ */
.cart_button in{/* --カートボタン-- */
    width:100%;
    height:auto;
    padding:15px 0 30px 0;
}
.cart_button_in_value{
    width:100%;
    padding:15px 0 50px 0;
}
/* ------------------------------------------------ */
/* ------------------------------------------------ */
.one-item-note{/* -- 一点商品のため売切れ次第販売終了となります -- */
    font-size:15px;
    padding:15px 0 12px;
}
.cart_button in{/* --カートボタン-- */
    padding:15px 0 30px 0;
}
.cart_button_in_value{
    padding:15px 0 50px 0;
}

/* -------------------------------------------------------------------- */
/* ■■■■■ ◆ カートボタン下の [注文方法・返品] リンク ◆ ■■■■■ */
/* -------------------------------------------------------------------- */

.cart-bottom-link{/* --(カートボタン下の注意事項等)-- */
    padding: 1.8% 0 0;
}
.cart-bottom-link p{
    font-size:14px;
}
.cart-bottom-link p a{
    font-size:14px;
}
/* ---------------------------------------------- (SNSソーシャルボタン) --- */
.sns-button{/* --(SNS)-- */
    margin: 30px auto 0;
}

/* -------------------------------------------- */
/* ------ (この商品について問い合わせる) ------ */
/*--------------------------------------------- */
.contact-this-item{ /*（全体）*/
    width: 340px;
    padding:18px 0 20px;
    font-size: 13px; 
    border-radius: 0px;
}

/* ---------------------------------------------- */
/* -- (モーダル・この商品について問い合わせる) -- */
/*----------------------------------------------- */

.modal_box_contact {
    width: 100%;
    max-width: 40%;
    border-radius: 20px;
}

/* -------------------------------------------- */
/* ------------------ フォーム ---------------- */
/* -------------------------------------------- */

#formWrap {
    width:100%;
    margin:0 auto;
    padding:0 0 0;
    line-height:1.1;
    border-radius: 15px;
}
/* -------------------------------------------- */
.item-title { /*（商品名）*/
    font-size:18px; 
    font-weight:normal;
    padding:39px 0 30px 0; 
    margin-bottom:35px;
    border-radius: 15px 15px 0 0;

}
/* -------------------------------------------- */
.hotmail-note{ /*（hotmailはやめてください）*/
    font-size:12px; 
}
/* -------------------------------------------- */
table.formTable th{
    width:86%;
    padding:0 7% 2px; 
}
table.formTable td{
    width:86%;
    padding:0 7%; 
}
.text-box-size{ /*（テキストボックスのサイズ）*/
    padding:8px 3px;
    margin-bottom:35px;
    font-size:14px;
}
.btn-takasa{
    padding:-30px 0 50px;
}

/* ------------------------------------------------ */
/* ■■■■■■■■ ◆ 商品説明 ◆ ■■■■■■■■ */
/* ------------------------------------------------ */

.item-description-box{ /*（全体）*/
    width: 94.8%;
    margin: 0 auto 0;
    padding: 85px 2.5% 5px;
    border: 1px solid #e9e9e9;
    border-top: none;
    border-radius:0 0 10px 10px;
}
/* ------------------------------------------------ */
.description-title{ /*（タイトル・横幅100％）*/
    font-size: 20px;
    padding-bottom:14px;
}
.description-title::before{/* かごのマーク */
    font-size: 0.85em ;
}

/* ------------------------------------------------ */
/* ■■■■■ ◆ パソコンのみの説明画像 ◆ ■■■■ */
/* ------------------------------------------------ */

.setsumei-box{ /*（全体）*/
    width: 80%;
    margin:50px auto 0;
    padding: 0 15%;
    display:flex; /*（横並び）*/
    flex-wrap: wrap; 
}
/* ------------------------------------------------ */
.setsumei-image{ /*（商品画像）*/
    width: 28%;
    margin: -15px 0 35px 0;
}
.setsumei-image img{
    max-width: 400px;
    border-radius:8px;
}
/* ------------------------------------------------ */
/* ------------------------------------------------ */
.item-tokuchou{ /*（特徴と使用感 全体）*/
    width: 65.5%;
    margin:15px auto -45px;
    padding: 0 0 0 5%;
    font-size: 16px;
    line-height:1.6;
}
.item-tokuchou p{
    padding-bottom:45px;
}
/* ------------------------------------------------ */
.akebinosato-item-note{ /*（※あけびの里で制作したものを販売しています）*/
    width: 96.5%;
    height: auto;
    margin:45px 0.25% 0;
    padding: 16px 1.5%;
    color:#3d3d3d;
    font-size: 14px;
    font-weight:normal;
    line-height:1.5;
    text-align:center;
    background: #fff7f7;
    border:none;
    border-radius:5px;
}

/* -------------------------------------------- */
/* -------------- ◆ 地区別送料 ◆ -------------*/
/* -------------------------------------------- */

table.area-cost {
    width:100%;
    margin:-20px auto 25px;
    font-size:14px;
    float:left;
}
table.area-cost td {
    width: 10%;
    padding: 8px 10px 6px;
}
.title-color{
    background: #f6f6f6 !important;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■ ◆ ご注意事項を詳しく見る ◆ */
/* ------------------------------------------------------------------------- */
/* -------------------------------------------------- */
/* -------------- ◆ ご注意・保存方法 ◆ -------------*/
/* -------------------------------------------------- */

.item-note{ /*（ご注意・保存方法 全体）*/
    width: 68%;
    margin:3% auto 0;
    padding: 30px 2.5% 0;
    border: none;
    font-size: 15px;
    border-radius: 10px 10px 0 0;
    line-height:1.6;
}
.item-note p{
    padding-bottom:45px;
    padding-left:8px;
}
/* ------------------------------------------------ */
.desc-mini-title{
    margin:0 0 50px;
    padding:15px 0 11px;
    font-size: 18px;
}
/* ------------------------------------------------ */
.note-modal-title { /* --- (ご注意事項見るボタン) --- */
    width: 68%;
    margin:0 auto 35px;
    padding:0 2.5% 40px;
    font-size: 14px;
    border-radius: 0 0 10px 10px;
    border: none;
}
.note-modal-title::before{/* ココが安心・下矢印 */
    font-size: 0.9em ;
}

/* ------------------------------------------------ */
/* ◆ ■■■ ◆ (モーダル・ご注意事項) ◆ ■■■ ◆ */
/*------------------------------------------------- */

.modal_open_note::after{/* モーダルマーク */
    font-size: 0.9em ;
}
.modal_box_note {
    width: 100%;
    max-width: 50%;
    border-radius: 10px;
}

/* -------------------------------------------------- */
/* ■■■■■■■■■■■■■■ ◆ ご注意事項 内容 ◆ */
/* -------------------------------------------------- */

.note-bigtitle{ /* タイトル */
    margin:0;
    padding:35px 0 30px;
    font-size:20px;
}
/* -------------------------------------------------- */
.scrollbar {/* ---(注意事項・スクロールバー)--- */
    width: 85.5%;
    height: 500px;
    padding:0 6.5% 0 8%;
    font-size:16px;
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
}
/* ------------------------------(注意事項・内容)---- */
.note-mini-title {
    padding:52px 0 45px;
    font-size:18px;
}
/* -------------------------------------------------- */
.ueno-sukima {
    margin-top:-55px;
}
.ueno-sukima2 {
    margin-top:-55px;
}
/* -------------------------------------------------- */
.note-text{ /* 説明 */ 
    width: 100%;
    padding: 0;
    text-align:left;
    font-size:16px;
}
/* -------------------------------------------------- */
.note-hosoku{ /* 補足１ */ 
    padding:40px 0 40px;
    text-align:left;
}
.note-hosoku p{
    padding:0 0 45px;
    font-size:16px;
}
/* -------------------------------------------------- */
.note-hosoku-2{ /* 補足２ */ 
    padding:0 0 40px;
    text-align:left;
}
.note-hosoku-2 p{
    padding:0 0 45px;
    font-size:16px;
}

/* ------------------------------------------------ */
.note-last-BP-img{ /* 最後のロゴ画像 */
    width: 100%;
    height:auto;
    text-align: center;
    margin:0 0 -80px;
}
.note-last-BP-img img{
    max-width:150px;
    height:auto;
    width: 100%;
}
/* -------------------------------------------------- */
.note-last{ /* ※当サイトの内容は予告なく変更する... */ 
    width: 93%;
    padding:30px 3.5% 32px;
    font-size:14px;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■◆ ページリンク ボタン ◆ */
/* ------------------------------------------------------------------------- */

.pagelink-btn p{ /*（ページリンクボタン）*/
    width: 99.8%;
    margin: 0 auto;
    padding:26px 0 26px;
    font-size: 15px;
    border-top: 1px solid #eaeaea;
    border-left: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    clear:both;
    border-radius: 0 0 10px 10px;
}
.pagelink-btn2 p{ /*（ページリンクボタン）*/
    width: 89.65%;
    margin: 0 auto;
    padding:26px 0 26px;
    font-size: 15px;
    border-top: 1px solid #eaeaea;
    border-left: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    background:#ffffff;
    clear:both;
    border-radius: 0 0 10px 10px;
}

/* ------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■ ◆ ショップのココが安心 ◆ */
/* ------------------------------------------------------------------- */

.shop-box-all{ /* ショップ案内 コンテンツボックス全体 */
    width: 100%;
    margin: 0 auto;
    padding: 20px 0 0;
}
/* ------------------------------------------------------------------- */
.shop-anshin-box{ /* ココが安心 全体 */
    width: 95%;
    margin: 0 auto;
    padding: 45px 2.5% 0;
}
/* ------------------------------------------------------------------- */
.anshin-title{ /* タイトル 全体 */
    width: 100%;
    padding: 8px 0;
    border-radius: 4px;
}
.anshin-title-inner{ /* タイトルとボーダー */
    padding: 10px 0 8px;
    margin:0 5px;
    font-size:17px;
}

/* ------------------------------------------------- */
/* ■■■■■ ◆ ココが安心 画像と説明 ◆ ■■■■■ */
/* ------------------------------------------------- */

.anshin-box{ /*（画像と説明の全体）*/
    width:100%;
    margin: 30px auto ;
    padding:30px 0 0;
    display:flex; /*（横並び）*/
    flex-wrap: wrap; 
}
/* ------------------------------------------------ */
.anshin-image{ /* 画像 */
    width:50%;
    padding-bottom:5px;
}
.anshin-image img{
    max-width:95%;
}
/* ------------------------------------------------ */
.anshin-description{ /* 説明 全体 */
    width:45%;
    margin:10px auto 0;
    padding:0 2.5% 0;
}
.anshin-right-title{ /* 太字の小タイトル */
    font-size:15px;
    padding:0 0 22px;
}
/* ------------------------------------------------ */
.anshin-right { /* テキスト */
    font-size:14px;
    padding-bottom:35px;
    line-height:1.6;
}
.anshin-right p{ /* テキスト */
    padding-bottom:15px;
}
/* --------------------------- */
.anshin-right2 { /* テキスト */
    font-size:14px;
    padding-bottom:0;
    line-height:1.6;
}
.anshin-right2 p{ /* テキスト */
    padding-bottom:15px;
}
/* ------------------------------------------------ */
.anshin-repair{ /* 修理 */
    width: 95%;
    margin: 0 auto 0;
    padding:0 2.5% 40px;
    font-size:14px;
}

/* ------------------------------------------------ */
/* ■■■■■■■■■ ココが安心・非表示から表示 ◆ */
/* ------------------------------------------------ */

.fa10 p::after{/* ココが安心・下矢印 */
    font-family: "Font Awesome 5 Free";
    content: "\f13a";
    font-size: 1.1em ;
    font-weight: 900;
    padding-left : 4px;/* 文字との隙間 */
    color: #c3c3c3;/* アイコンの色 */
}
/* ------------------------------------------------------------------------- */
.fa10{/* ココが安心ボタンの位置と幅の調節 */
    width: 100.2%;
    margin-left:-0.5px;
    cursor: pointer;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■ ◆ お支払い方法 ◆ */
/* ------------------------------------------------------------------------- */

/* --------------------------------------- */
/* ------- ◆ ご注文方法タイトル ◆ ------ */
/* --------------------------------------- */

.payment-title-box{ /* タイトルボックス 全体 */
    width: 99%;
    margin: 38px auto 32px;
    padding: 7px 0 7px 11px;
    border-top: 1px solid #eaeaea;
    border-right: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    border-left: 1px solid #e9e9e9;
    border-radius: 5px;
}
/* --------------------------------------- */
.fontawsome-other{
    font-size: 19px; 
    padding: 22px 0 18px 20px;
    border-radius: 1px;
}

/* --------------------------------------- */
/* ------ ◆ ３つの方法 全体 BOX ◆ ------ */
/* --------------------------------------- */

.payment-box{ /* 3つのBoxを囲うBIGBox全体 */
    width: 94.8%;
    padding: 45px 2.5% 0;
    border: 1px solid #e9e9e9;
    border-bottom:none;
    overflow: hidden; /*floatの解除*/
    border-radius: 8px 8px 0 0;
    display:flex; /*（横並び）*/
    flex-wrap: wrap; 
}
/* --------------------------------------- */
.payment-mine-title{ /* ３つの小タイトル */
    width:100%;
    font-size:16px;
    padding-bottom:9px;
    margin-bottom:30px;
    border-bottom: 2px dotted #cccccc;
}

/* --------------------------------------- */
/* --------- ◆ お支払い方法 ◆ ---------- */
/* --------------------------------------- */

.pc-payment-all{ /* 支払い方法 Box */
    width:24.8%;
    height:auto;
    margin:0 auto 0;
}
/* --------------------------------------- */
.payment-icon{ /* 4つの支払い方法全体 */
    background-color:#fff;
    border: none;
    text-align: center;
    margin:24px auto 0;
    padding:0;
    font-size:0;
    width:100%;
}
/* --------------------------------------- */
.pay-img-size { /* 支払い4つの画像全部に */
    width: 46.6%;
    max-width:100%;
    margin:0 auto 4%;
    padding:34px 0 34px;
    background-color:#fafafa;
    border: 1px solid #f6f6f6;
    border-radius: 8px;
}
.pay-img-size img{
    max-width:100%;
    width: 86px;
    height:auto;
    cursor: pointer; /*カーソルをポインターにする*/
}
.pay-img-size img:hover {
    opacity: 0.7 ;
}
/* --------------------------------------- */
.pay-image-icon-1{ /* PC クレジットカードの右の隙間作り */
    margin-right:5%;
}
.pay-image-icon-3{ /* PC 銀行振込の右の隙間作り */
    margin-right:5%;
}

/* --------------------------------------- */
/* - (「画像をクリックで切り替わります｣) - */
/* --------------------------------------- */

.image-kirikae-info{
    font-size:10px;
    margin-top:-68px;
}

/* --------------------------------------- */
/* -------- ◆ 送料・発送方法 ◆ --------- */
/* --------------------------------------- */

.pc-cost-all{ /* 送料・発送方法 Box */
    width:34%;
    margin:0 0.5% 25px 1.5%;
    padding:0 0 0 1.5%;
    border-left: 1px solid #eaeaea;
}
/* --------------------------------------- */
.cost-icon-big-leftright{ /* 960～・送料とかを左右にするためだけ */
    width:101.5%;
    margin:0 -1.5% 0 0;
}
/* --------------------------------------- */
.henpin-takasa-1050{ /* 高さ調整するためだけ */
    display: -webkit-flex;
    display: flex;
}

/* ---------------------------------------- */
/* ------ 4項目で使用するミニボックス------ */
/* ---------------------------------------- */

.cost-icon{ /* 送料・発送方法・返品・キャンセル 4つのミニBox */
    width:100%;
    margin:10px 0 12px 0;
    padding:25px 0 30px;
    background-color:#fafafa;
    border: 1px solid #f6f6f6;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 8px;
}

/* ---------------------------------------- */
/* ------- 4項目で使用する4つの画像 ------- */
/* ---------------------------------------- */

.cost-left-icon{ /* 送料・発送方法・返品・キャンセル */
    width: 33%;
    margin:13px auto 0;
    padding-left:2%;
    text-align:center;
}
.cost-left-icon img{/* ４つの画像*/
    width: 115px;
}

/* ---------------------------------------- */
/* ----- 4項目で使用する4つの右の説明 ----- */
/* ---------------------------------------- */

.cost-right-text{
    width: 59.5%;
    margin:8px 4.5% 0 1%;
    font-size:15px;
}

/* --------------------------------------- */
/* ------- ◆ 返品・キャンセル ◆ -------- */
/* --------------------------------------- */

.pc-henpin-all{ 
    width:34.5%;
    margin:0 0 25px 1.5%;
    padding:0 0 0 1.5%;
    border-left: 1px solid #eaeaea;
}
/* --------------------------------------- */
.pc-henpin-left{ 
    padding:25px 0 37px;
}
.pc-cancel-right{ 
    padding:25px 0 37px;
}
/* ---------------------------------------- */
.go-henin-page{ /* PC-文字縮小 */
    font-size:13px;
}
.pc-mini-text{ /* PC-文字縮小 */
    font-size:13px;
}
/* ----------------------------- */
.cost-p-margin{
    margin:20px 0 0;
}
.cost-p-margin a{
    text-decoration:underline;
}
.cost-p-margin a:hover{
    opacity:0.7;
}

/* -------------------------------------------------------------- */
/* ■■■■■■■■ ◆ ページ下のカートボタン ◆ ■■■■■■■■ */
/* -------------------------------------------------------------- */

.bottom-cart-flex-box{ /*（全体）*/
    width: 81.8%;
    margin: 38px auto 0;
    padding: 45px 9% 0;
    border-radius:10px;
}
/* ------------------------------------------------ */
.bottom-item-image{ /*（商品画像）*/
    width: 45.5%;
    margin:10px auto 55px;
}
.bottom-item-image img{
    max-width: 550px;
    width: 100%;
    height:auto;
    margin:0 auto;
}

/* ------------------------------------ */
/* -- ◆ 割引商品用のスパン画像２ ◆ -- */
/* ------------------------------------ */

#featured_img2{
    position:relative;
}
#featured_img2 span{
    position:absolute;
    width:18%;
    top:-10px;
    left:-20px;
}
#featured_img2 span img{
    max-width: 100%;
    height:auto;
}
/* ------------------------------------------------ */
.bottom-item-detail{ /*（商品情報・カートに入れるボタン 全体）*/
    width: 49%;
    margin:15px auto 0;
    padding: 0 0 0 4%;
    font-size: 14px;
    line-height:1.6;
}
/* ------------------------------------------------ */
.bottom-item-coad{ /*（商品コード）*/
    font-size: 13px;
    margin-bottom:5%;
}
.bottom-item-h3{ /*（h3 商品名）*/
    width: 68%;
    color:#6e6969;
    font-size: 18px;
    padding: 0 16% 4.3%;
}
.bottom-item-size{ /*（商品サイズ）*/
    font-size: 17px;
    margin:0 auto;
    padding: 5.3% 0 5.3%;
}
.bottom-size-note{
    font-size: 12px;
    margin:5% auto 0;
}
/* ------------------------------------------------ */
.price-discbutton3{ /*（商品価格 全体）*/
    margin:5% auto -12px;
}
.price-tax3{ /*（価格 全体）*/
    margin:0;
}
.just-text3{ /*（｢価格｣「円｣）*/
    font-size: 18px;
}
.price3{ /*（価格）*/
    font-size: 28px;
    margin:0 0;
}
.cost03{ /*（送料0円）*/
    margin:0 0 0 5px;
}
.cost03 img{
    width: 55px;
    margin:0;
}
.cost-area-betsu3{ /*（地区別特別送料）*/
    margin:0 0 0 5px;
}
.cost-area-betsu3 img{
    width: 95px;
}
/* ------------------------------------------------ */
.item-tax3{ /*（内税）*/
    margin:0 0 5.5% 0px;
}
.item-tax3 p{
    font-size: 14px;
}
/* ------------------------------------------------ */
.cart_btn2{ /*（在庫・数量）※上の在庫デザインに影響するためココで編集しない */
    width: 95%;
    margin:12px auto 20px;
    height:auto;
}
/* ------------------------------------------------ */
.one-item-note2{/* -- 一点商品のため売切れ次第販売終了となります -- */
    margin:0 auto;
    font-size:14px;
    padding:0.7% 0 0;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■ ◆ 商品ページアイコン ◆ */
/* ------------------------------------------------------------------------- */

.last-icons-name{ /*（product category）*/
    margin: 50px auto 0;
}
.last-icons{ /* 3つのアイコン */
    padding: 2px 0 42px;
    margin: -0.5em auto 22px;
    overflow: hidden;/*アイコン画像拡大時にはみ出た部分を隠す*/
}
.last-icons p{
    width: 62px;
    height: 64.38px;
    transition-duration: 0.3s; /*変化に掛かる時間*/
}
.last-icons p:hover{
    transform: scale(1.1); /*画像の拡大率*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■◆ フッター ◆*/
/* ------------------------------------------------------------------------- */
.footer-pc-none{/* 矢印 */
    display:none;
}
#footer { /*（フッター・全体）*/ 
    width:2560px;
    max-width:100%;
    margin:0 auto;
    height: auto;
    clear: both;/*（回り込みを防ぐ）*/
    position: relative; 
    float:left;/*（横配列に必要なフロート）*/
    background-color:#3d1e07;
    text-align:center;
}
.px-footer{ /*（パソコン用・フッター・全体）*/ 
    width:100%;
    height: auto;
    margin:0 auto;
    padding:18px 0;
    display:block;
}
.px-footer p{ /*（パソコン用・フッター・全体）*/ 
    display:inline;
    color:#fff;
}
.px-footer p a{
    color:#fff;
    font-size:12px;
}
.px-footer p a:hover{
  opacity: 0.75;
}
.fotto-p-haba{ /*（棒の幅）*/ 
    margin:0 0 0 5px;
}
/* -------------------------------------------- */
/* ---------------( コピーライト )------------- */
/* -------------------------------------------- */
.copy-light {
    margin:0 auto;
    padding:16px 0 15px;
    font-size:0.7em;
    background-color:#fff;
}
} /* --(消すな)--*/


/* ----------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■◆ ここまで ◆■■■■■■■■■■■■■■■■*/
/* ----------------------------------------------------------------------------- */
















/* ------------------------------------*//* ------------------------------------*//* -----------------------------*/
/*  ■■■◆ パソコン 1921 ◆■■■ *//*  ■■■◆ パソコン 1921 ◆■■■ *//*  ■■■◆ パソコン 1921 ◆■■■ *//*
/* ------------------------------------*//* ------------------------------------*//* -----------------------------*/
/*  ■■■◆ パソコン 1921 ◆■■■ *//*  ■■■◆ パソコン 1921 ◆■■■ *//*  ■■■◆ パソコン 1921 ◆■■■ *//*
/* ------------------------------------*//* ------------------------------------*//* -----------------------------*/
/*  ■■■◆ パソコン 1921 ◆■■■ *//*  ■■■◆ パソコン 1921 ◆■■■ *//*  ■■■◆ パソコン 1921 ◆■■■ *//*
/* ------------------------------------*//* ------------------------------------*//* -----------------------------*/
/*  ■■■◆ パソコン 1921 ◆■■■ *//*  ■■■◆ パソコン 1921 ◆■■■ *//*  ■■■◆ パソコン 1921 ◆■■■ *//*
/* ------------------------------------*//* ------------------------------------*//* -----------------------------*/
/*  ■■■◆ パソコン 1921 ◆■■■ *//*  ■■■◆ パソコン 1921 ◆■■■ *//*  ■■■◆ パソコン 1921 ◆■■■ *//*
/* ------------------------------------*//* ------------------------------------*//* -----------------------------*/
/*  ■■■◆ パソコン 1921 ◆■■■ *//*  ■■■◆ パソコン 1921 ◆■■■ *//*  ■■■◆ パソコン 1921 ◆■■■ *//*
/* ------------------------------------*//* ------------------------------------*//* -----------------------------*/

@media screen and (min-width: 1921px) {

body{
    margin: 0 ;	
    padding: 0 ;
}
#wrap{
    width: 100%;
    max-width: 2560px;
    background-color:#fafafa;
    border-top:12px solid #3d1e07;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■ SP ■■■■■■■■■■ ◆ PCのみ・要素入替え用親要素◆*/
/* ------------------------------------------------------------------------- */

.irekae{ /* ★ PC要素の入れ替え用親要素 ★ *//*グロナビの入れ替えと混同しない・グロナビを上へ*/ 
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■ パソコン ■■■■■■■■■■◆ h1 / メニュー ◆ */
/* ------------------------------------------------------------------------- */
.pc-header-h1-all{ /* 白地を2560pxにするため囲っているだけ */ 
    width: 89.84%;
    padding:5px 5.08% 6px;
    max-width: 2560px;
    height: auto;
    margin: 4px auto 2;
    border-top:1px solid #f2f2f2;
    border-bottom:1px solid #e8e8e8;
    background-color:#ffffff;
    -webkit-box-ordinal-group: 2; /*グロナビの入れ替えと混同しない・グロナビを上へ*/ 
    -moz-box-ordinal-group: 2; /*グロナビの入れ替えと混同しない・グロナビを上へ*/ 
    box-ordinal-group: 2; /*グロナビの入れ替えと混同しない・グロナビを上へ*/ 
}
.h1-menu{
    overflow: hidden; /*floatの解除*/ 
    width: 100%;
    max-width: 1710px;
    height: auto;
    padding:0px;
    border-bottom:none;
}
/* --------------------------------------------------------------(ロゴ)---- */
h1 { /*（｢h1｣設定）*/
    width: 220px;
    height:auto;
    float:left;
    margin-left:0.2%;
}
h1 img{
    max-width:100%;
    height:auto;
    width: 220px;
}

/* -------------------------------------------------------------------------- */
/* ■■■■■■■■■■ PC ■■■■■■■■■■■◆ パソコン・ヘッダーの右 ◆ */
/* -------------------------------------------------------------------------- */

.pc-head-right{ /* 全体 */
    display:block;
    width:520px;
    height:auto;
    float:right;
    margin-right:-1.9%;
}
.pc-head-right p img{
    max-width:100%;
    height:auto;
    width:520px;
}
.head-product-category{ /*（product category・全体）*/
    overflow: hidden; /*floatの解除*/ 
    width: 100%;
    height:auto;
    display:inline-block;
    padding:28px 0 10px;
    margin-left:33.2%;
    margin-top:-3px;
}
.product-category-image{ /* 左のプロダクトカテゴリー画像 */
    float:left;
    width: 25%;
    height:auto;
    margin-top:7px;
}
.product-category-3icon{ /* 3つのカテゴリー画像 */
    float:left;
    width: 36.2%;
    height:auto;
    margin-top:1px;
    padding:0 3px;
    overflow: hidden;/*アイコン画像拡大時にはみ出た部分を隠す*/
}
.product-category-3icon p{
    width:31%;
    display:inline-block;
    padding-top:3px;
    margin-right:-3px;
}
.product-category-3icon p img{
    height:auto;
    width: 50px;
    display: block; /*画像拡大のため*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
}
.product-category-3icon p img:hover{
    transform: scale(1.1); /*画像の拡大率*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
}
/* -----------------------------------------------------(スマホ メニュー)---- */
#nav-drawer { /* 375-960までのメニュー全体 */ 
    display:none;
}

/* -------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■ PC ■■■■■■■■■■■■■■◆ グロナビ ◆ */
/* -------------------------------------------------------------------------- */

.glonavi-border-1100{ /* パソコンのみ・背景を白くするためだけ */
    display:block;
    background-color:#ffffff;
    border-top:1px solid #e6e6e6;
    border-bottom:1px solid #e6e6e6;
    margin-top:2px;
    -webkit-box-ordinal-group: 1; /*グロナビの入れ替えと混同しない・グロナビを上へ*/ 
    -moz-box-ordinal-group: 1; /*グロナビの入れ替えと混同しない・グロナビを上へ*/ 
    box-ordinal-group: 1; /*グロナビの入れ替えと混同しない・グロナビを上へ*/ 
}
.pc-glonavi{ /* パソコンのみのメニュー */
    overflow: hidden; /*floatの解除*/ 
    width:1650px;
    padding:5px 0 5px;
    margin:0 auto;
}
/* ------------------------------------------------------(テキストリンク)---- */
.pc-glonavi-text-link { /* 全体 */
    width:102%;
    color:#3a3a3a;
    font-size:0.9em;
    font-weight:nomal;
    display: flex;
}
.pc-glonavi-text-link li{ /* ひとつひとつのリンク */
    width:100%;
    border-right:1px solid #eaeaea;
    padding-top:20px;
    padding-bottom:13px;
}
    #child1 {
    flex-basis:  75%;
}
    #child2 {
    flex-basis:  130%;
}
    #child3 {
    flex-basis:  135%;
}
    #child4 {
    flex-basis:  110%;
}
    #child5 {
    flex-basis:  98%;
}
    #child6 {
    flex-basis:  67%;
}
    #child7 {
    flex-basis:  115%;
}
    #child88 {
    flex-basis:  105%;
}
/* ----------------------------------------------------- */
    #child8 {
    flex-basis:  27px;
    padding-top:11px;
    padding-right:13px;
}
    #child8 img{
    max-width:27px;
    width:27px;
    height:auto;
    display: block; /*画像拡大のため*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
}
    #child8 img:hover{
    transform: scale(1.2); /*画像の拡大率*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
}
/* ----------------------------------------------------- */
    #child9 {
    flex-basis:  27px;
    padding-top:11px;
    padding-right:13px;
}
    #child9 img{
    max-width:28px;
    width:28px;
    height:auto;
    display: block; /*画像拡大のため*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
}
    #child9 img:hover{
    transform: scale(1.2); /*画像の拡大率*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
}
/* ----------------------------------------------------- */
    #child10 {
    flex-basis:  27px;
    border-right:2px dotted #e6e6e6;
    padding-top:11px;
    padding-right:25px;
}
    #child10 img{
    max-width:28px;
    width:28px;
    height:auto;
    display: block; /*画像拡大のため*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
}
    #child10 img:hover{
    transform: scale(1.2); /*画像の拡大率*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
}

#child1:hover{
    opacity: 0.7 ;
}
#child2:hover{
    opacity: 0.7 ;
}
#child3:hover{
    opacity: 0.7 ;
}
#child4:hover{
    opacity: 0.7 ;
}
#child5:hover{
    opacity: 0.7 ;
}
#child6:hover{
    opacity: 0.7 ;
}
#child7:hover{
    opacity: 0.7 ;
}

/* -------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■ SP ■■■■■■■■■■■■■■◆ コンテナ ◆ */
/* -------------------------------------------------------------------------- */

#container {/* （コンテナ） */
    width: 1720px;
    padding:0 0 0;
    background-color:#fafafa;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■◆ ＨＯＭＥ メインコンテンツ ◆ */
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■ ◆ 商品の詳細 ここから ◆*/
/* ------------------------------------------------------------------------- */

.detail-flex-bigbox{ /* コンテンツボックス・サイズまで */
    width: 94.8%;
    margin:35px auto 0;
    padding: 0 2.5% 25px;
    border: 1px solid #e9e9e9;
    border-bottom: none;
    display:flex; /*（横並び）*/
    flex-wrap:nowrap; /*（折り返しにならないように解除している）*/
    border-radius: 10px 10px 0 0;
}

/* ----------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■ ◆ 商品の詳細 商品画像 ◆*/
/* ----------------------------------------------------------- */

.item-detail-left{ /* 商品の詳細 左要素 全体ボックス */
    width: 50%;
    height: auto;
    margin: 15px auto 0;
    padding:0 2.8% 0 0;
    display:flex; /*（横並び）*/
    flex-wrap: wrap; 
}

/* -------------------------------------------- */
/* ---- ◆ YouTubeボタン・切り替えて見る ◆ --- */
/* -------------------------------------------- */

#content {
    margin: 4px auto;
    width:100%;
    max-width:620px;
    padding:20px 0 0;
}
#featured_img img,
#thumb_img img {
    max-width: 100%;
    height:auto;
    border-radius:10px;
}

/* -------------------------------------------- */
/* ----------- (モーダル・YouTube) ------------ */
/*--------------------------------------------- */

.modal_open{
    width:100%;
    max-width:100%;
    margin:20px auto 0;
}
.modal_open img{
}
/*--------------------------------------------- */
.youtube-button {
    width: 100%;
    max-width:100%;
    margin:20px auto 0;
    padding:15px 0;
}
.watch-youtube-img { /*（YouTubeマーク画像）*/
    width: 100%;
}
.watch-youtube-img img {
    max-width: 100%;
    width: 100%;
}
/*--------------------------------------------- */
.modal_box {
    width: 80%;
    max-width:80%;
    margin:0 auto;
    padding: 25px 4vw 30px;
}

/* ------------------------------------ */
/* --------- (モーダル・中身) --------- */
/* ------------------------------------ */

.youtube-title { /*（商品名タイトル）*/
    width: 100%;
    margin: 0 auto;
    padding:20px 0 30px 0;
    font-size: 18px;
}
/* ------------------------------------ */
.youtube-movie { /*（動画）*/
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
}
.youtube-movie iframe {
  width: 80%;
  height: 80%;
    border-radius: 8px;
}
/* ------------------------------------ */
.youtube-note { /*（AI生成 注意事項）*/
    width: 100%;
    color:#ed1c24;
    text-decoration: none;
    margin: -140px auto 0;
    padding:0 0 0;
    font-size: 15px;
    font-weight:normal;
    line-height:1.4;
}

/* -------------------------------------------- */
/* ------- (モーダルウィンドウここまで) ------- */
/* -------------------------------------------- */

/* -------------------------------------------- */
/* ------- ◆ 割引商品用のスパン画像 ◆ ------- */
/* -------------------------------------------- */
#featured_img span{
    width:17%;
    top:-5px;
    left:0px;
}

/* ----------------------------------------------------------- */
/* ■■■■■■■■■■■■ ◆ 商品の詳細 価格・カートボタン ◆*/
/* ----------------------------------------------------------- */

.item-detail-right{ /*（商品の詳細 右要素 全体ボックス）*/
    width: 50%;
    height: auto;
    margin: 0 auto 0;
    padding:0 2.2% 0 0;
    text-align:center;
}

/* -------------------------------------------- */
/* --------------- (商品コード) --------------- */
/* -------------------------------------------- */

.detail-itemname-coad{ /*（全体）*/
    margin: 70px auto 0;
}
.coad-id{ /*（商品コード）*/
    font-size: 13px;
}

/* -------------------------------------------- */
/* ----------------- (商品名) ----------------- */
/* -------------------------------------------- */

h2{ /*（商品名）*/
    width:88%;
    margin: 42px auto 42px;
    padding:0 6% 28px;
    font-size: 20px;
    font-weight:normal;
    line-height:1.4;
}

/* -------------------------------------------- */
/* -------------- ( 商品タイプ) --------------- */
/* -------------------------------------------- */

.item-type-link{ /*（商品タイプ 全体）*/
    margin:0;
}
.item-type-link p{
    font-size: 13px;
    background:#fafafa;
}
.item-type-link p a{
    font-size: 13px;
}

/* -------------------------------------------- */
/* ---- (「割引商品 あけび-かごバッグ：○%OFF」) ---- */
/* -------------------------------------------- */

.item-type-link{ /*（全体）*/
    width: 100%;
    height: auto;
    margin:9px 0 0 1px;
    font-size: 13px;
}
/* -------------------------------------------- */
.off{/*  (○％OFF 割引ページのみ)  */
    margin-left:-4px;
    font-size: 13px;
}

/* -------------------------------------------- */
/* --------------- (商品サイズ) --------------- */
/* -------------------------------------------- */

.item-size-box{ /*（商品サイズ 全体）*/
    margin:48px 0 0;
}
.item-size p{
    font-size: 17px;
    padding:10px 0 0;
    display:inline;
    font-weight:bold;
    color:#6e6969;
    line-height:1.4;
}
.pc-size-haba{/*（1280）*/
    margin-right:8px;
}
.size-note{ /*（サイズ表記は｢外寸｣です）*/
    font-size: 12px;
    padding:43px 0 40px;
    line-height:1.3;
}

/* ---------------------------------------------- */
/* ----------------- (商品価格) ----------------- */
/* ---------------------------------------------- */

.price-discbutton{ /*（全体）*/
    margin:45px auto 28px;
}
.just-text{ /*（｢価格｣「円｣）*/
    font-size: 18px;
}
.price{ /*（価格）*/
    font-size: 28px;
    margin:0 0 0 -6px;
    vertical-align:baseline;
}
.cost0{ /*（送料0円）*/
    margin:0 0 0 5px;
}
.cost0 img{
    width: 55px;
    vertical-align: text-top;
}
.cost-area-betsu{ /*（地区別特別送料）*/
    margin:0 0 0 5px;
}
.cost-area-betsu img{
    width: 95px;
}
/* ------------------------------------------------ */
.item-tax{ /*（内税）*/
    margin:6px 0 18px 0px;
}
.item-tax p{
    font-size: 14px;
}

/* ------------------------------------------------ */
/* ■■■■■■■ ◆ カートボタン ◆ ■■■■■■■ */
/* ------------------------------------------------ */

.cart_button_all{/* --全体 オリジナル-- */
    width: 93%;
    height: auto;
    margin: 0;
    padding: 3.5% 3.5% 35px;
    border-right:none; /* --1px solid #e9e9e9;-- */
    border-left:none; /* --1px solid #e9e9e9;-- */
    border-top:none;
    border-bottom: 1px solid #ededed;
    border-radius: 10px;
}
/* ------------------------------------------------ */
.cart_btn{
    width:98.4%;
    padding: 2px 0.8% 0;
    background-color:#fafafa;
    border:none;
}
/* ------------------------------------------------ */
.item_stock{/* --在庫-- */
    width:48.8%;
    float:left;
    text-align:right;
    margin:-2px 1px 20px 0;
}
.item_stock_ttl{
    color:#3d3d3d;
    font-size:14px;
}
.item_stock_val {/* --在庫数-- */
    color:#d74733;
    font-weight:bold;
    font-size:15px;
    display:inline-block;
}
.item_stock_val::after {
    content: ' 点';
    color:#3d3d3d;
    font-weight:normal;
    font-size:14px;
}
/* ------------------------------------------------ */
.item_count{/* --購入する数-- */
    width:48.8%;
    margin:-2px 0 20px 1px;
    padding:0;
    float:right;
    text-align:left;
    display:inline-block;
}
.item_count_ttl{
    font-size:14px;
    margin-right: 8px;
}
.notranslate{/* --数(ドロップダウン)-- */
    font-size:13px;
}
/* ------------------------------------------------ */
.cart_button in{/* --カートボタン-- */
    width:100%;
    height:auto;
    padding:15px 0 30px 0;
}
.cart_button_in_value{
    width:100%;
    padding:15px 0 50px 0;
}
/* ------------------------------------------------ */
/* ------------------------------------------------ */
.one-item-note{/* -- 一点商品のため売切れ次第販売終了となります -- */
    font-size:15px;
    padding:15px 0 12px;
}
.cart_button in{/* --カートボタン-- */
    padding:15px 0 30px 0;
}
.cart_button_in_value{
    padding:15px 0 50px 0;
}

/* -------------------------------------------------------------------- */
/* ■■■■■ ◆ カートボタン下の [注文方法・返品] リンク ◆ ■■■■■ */
/* -------------------------------------------------------------------- */

.cart-bottom-link{/* --(カートボタン下の注意事項等)-- */
    padding: 1.8% 0 0;
}
.cart-bottom-link p{
    font-size:14px;
}
.cart-bottom-link p a{
    font-size:14px;
}
/* ---------------------------------------------- (SNSソーシャルボタン) --- */
.sns-button{/* --(SNS)-- */
    margin: 30px auto 0;
}

/* -------------------------------------------- */
/* ------ (この商品について問い合わせる) ------ */
/*--------------------------------------------- */
.contact-this-item{ /*（全体）*/
    width: 340px;
    padding:18px 0 20px;
    font-size: 13px; 
    border-radius: 0px;
}

/* ---------------------------------------------- */
/* -- (モーダル・この商品について問い合わせる) -- */
/*----------------------------------------------- */

.modal_box_contact {
    width: 100%;
    max-width: 30%;
    border-radius: 20px;
}

/* -------------------------------------------- */
/* ------------------ フォーム ---------------- */
/* -------------------------------------------- */

#formWrap {
    width:100%;
    margin:0 auto;
    padding:0 0 0;
    line-height:1.1;
    border-radius: 15px;
}
/* -------------------------------------------- */
.item-title { /*（商品名）*/
    font-size:18px; 
    font-weight:normal;
    padding:39px 0 30px 0; 
    margin-bottom:35px;
    border-radius: 15px 15px 0 0;

}
/* -------------------------------------------- */
.hotmail-note{ /*（hotmailはやめてください）*/
    font-size:12px; 
}
/* -------------------------------------------- */
table.formTable th{
    width:86%;
    padding:0 7% 2px; 
}
table.formTable td{
    width:86%;
    padding:0 7%; 
}
.text-box-size{ /*（テキストボックスのサイズ）*/
    padding:8px 3px;
    margin-bottom:35px;
    font-size:14px;
}
.btn-takasa{
    padding:-30px 0 50px;
}

/* ------------------------------------------------ */
/* ■■■■■■■■ ◆ 商品説明 ◆ ■■■■■■■■ */
/* ------------------------------------------------ */

.item-description-box{ /*（全体）*/
    width: 94.8%;
    margin: 0 auto 0;
    padding: 85px 2.5% 5px;
    border: 1px solid #e9e9e9;
    border-top: none;
    border-radius:0 0 10px 10px;
}
/* ------------------------------------------------ */
.description-title{ /*（タイトル・横幅100％）*/
    font-size: 20px;
    padding-bottom:14px;
}
.description-title::before{/* かごのマーク */
    font-size: 0.85em ;
}

/* ------------------------------------------------ */
/* ■■■■■ ◆ パソコンのみの説明画像 ◆ ■■■■ */
/* ------------------------------------------------ */

.setsumei-box{ /*（全体）*/
    width: 80%;
    margin:50px auto 0;
    padding: 0 15%;
    display:flex; /*（横並び）*/
    flex-wrap: wrap; 
}
/* ------------------------------------------------ */
.setsumei-image{ /*（商品画像）*/
    width: 28%;
    margin: -15px 0 35px 0;
}
.setsumei-image img{
    max-width: 400px;
    border-radius:8px;
}
/* ------------------------------------------------ */
/* ------------------------------------------------ */
.item-tokuchou{ /*（特徴と使用感 全体）*/
    width: 65.5%;
    margin:15px auto -45px;
    padding: 0 0 0 5%;
    font-size: 16px;
    line-height:1.6;
}
.item-tokuchou p{
    padding-bottom:45px;
}
/* ------------------------------------------------ */
.akebinosato-item-note{ /*（※あけびの里で制作したものを販売しています）*/
    width: 96.5%;
    height: auto;
    margin:45px 0.25% 0;
    padding: 16px 1.5%;
    color:#3d3d3d;
    font-size: 14px;
    font-weight:normal;
    line-height:1.5;
    text-align:center;
    background: #fff7f7;
    border:none;
    border-radius:5px;
}

/* -------------------------------------------- */
/* -------------- ◆ 地区別送料 ◆ -------------*/
/* -------------------------------------------- */

table.area-cost {
    width:100%;
    margin:-20px auto 25px;
    font-size:14px;
    float:left;
}
table.area-cost td {
    width: 10%;
    padding: 8px 10px 6px;
}
.title-color{
    background: #f6f6f6 !important;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■ ◆ ご注意事項を詳しく見る ◆ */
/* ------------------------------------------------------------------------- */
/* -------------------------------------------------- */
/* -------------- ◆ ご注意・保存方法 ◆ -------------*/
/* -------------------------------------------------- */

.item-note{ /*（ご注意・保存方法 全体）*/
    width: 68%;
    margin:3% auto 0;
    padding: 30px 2.5% 0;
    border: none;
    font-size: 15px;
    border-radius: 10px 10px 0 0;
    line-height:1.6;
}
.item-note p{
    padding-bottom:45px;
    padding-left:8px;
}
/* ------------------------------------------------ */
.desc-mini-title{
    margin:0 0 50px;
    padding:15px 0 11px;
    font-size: 18px;
}
/* ------------------------------------------------ */
.note-modal-title { /* --- (ご注意事項見るボタン) --- */
    width: 68%;
    margin:0 auto 35px;
    padding:0 2.5% 40px;
    font-size: 14px;
    border-radius: 0 0 10px 10px;
    border: none;
}
.note-modal-title::before{/* ココが安心・下矢印 */
    font-size: 0.9em ;
}

/* ------------------------------------------------ */
/* ◆ ■■■ ◆ (モーダル・ご注意事項) ◆ ■■■ ◆ */
/*------------------------------------------------- */

.modal_open_note::after{/* モーダルマーク */
    font-size: 0.9em ;
}
.modal_box_note {
    width: 100%;
    max-width: 35%;
    border-radius: 10px;
}

/* -------------------------------------------------- */
/* ■■■■■■■■■■■■■■ ◆ ご注意事項 内容 ◆ */
/* -------------------------------------------------- */

.note-bigtitle{ /* タイトル */
    margin:0;
    padding:35px 0 30px;
    font-size:20px;
}
/* -------------------------------------------------- */
.scrollbar {/* ---(注意事項・スクロールバー)--- */
    width: 85.5%;
    height: 500px;
    padding:0 6.5% 0 8%;
    font-size:16px;
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
}
/* ------------------------------(注意事項・内容)---- */
.note-mini-title {
    padding:52px 0 45px;
    font-size:18px;
}
/* -------------------------------------------------- */
.ueno-sukima {
    margin-top:-55px;
}
.ueno-sukima2 {
    margin-top:-55px;
}
/* -------------------------------------------------- */
.note-text{ /* 説明 */ 
    width: 100%;
    padding: 0;
    text-align:left;
    font-size:16px;
}
/* -------------------------------------------------- */
.note-hosoku{ /* 補足１ */ 
    padding:40px 0 40px;
    text-align:left;
}
.note-hosoku p{
    padding:0 0 45px;
    font-size:16px;
}
/* -------------------------------------------------- */
.note-hosoku-2{ /* 補足２ */ 
    padding:0 0 40px;
    text-align:left;
}
.note-hosoku-2 p{
    padding:0 0 45px;
    font-size:16px;
}

/* ------------------------------------------------ */
.note-last-BP-img{ /* 最後のロゴ画像 */
    width: 100%;
    height:auto;
    text-align: center;
    margin:0 0 -80px;
}
.note-last-BP-img img{
    max-width:150px;
    height:auto;
    width: 100%;
}
/* -------------------------------------------------- */
.note-last{ /* ※当サイトの内容は予告なく変更する... */ 
    width: 93%;
    padding:30px 3.5% 32px;
    font-size:14px;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■◆ ページリンク ボタン ◆ */
/* ------------------------------------------------------------------------- */

.pagelink-btn p{ /*（ページリンクボタン）*/
    width: 99.8%;
    margin: 0 auto;
    padding:26px 0 26px;
    font-size: 15px;
    border-top: 1px solid #eaeaea;
    border-left: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    clear:both;
    border-radius: 0 0 10px 10px;
}
.pagelink-btn2 p{ /*（ページリンクボタン）*/
    width: 89.65%;
    margin: 0 auto;
    padding:26px 0 26px;
    font-size: 15px;
    border-top: 1px solid #eaeaea;
    border-left: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    background:#ffffff;
    clear:both;
    border-radius: 0 0 10px 10px;
}

/* ------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■ ◆ ショップのココが安心 ◆ */
/* ------------------------------------------------------------------- */

.shop-box-all{ /* ショップ案内 コンテンツボックス全体 */
    width: 100%;
    margin: 0 auto;
    padding: 20px 0 0;
}
/* ------------------------------------------------------------------- */
.shop-anshin-box{ /* ココが安心 全体 */
    width: 95%;
    margin: 0 auto;
    padding: 45px 2.5% 0;
}
/* ------------------------------------------------------------------- */
.anshin-title{ /* タイトル 全体 */
    width: 100%;
    padding: 8px 0;
    border-radius: 4px;
}
.anshin-title-inner{ /* タイトルとボーダー */
    padding: 10px 0 8px;
    margin:0 5px;
    font-size:17px;
}

/* ------------------------------------------------- */
/* ■■■■■ ◆ ココが安心 画像と説明 ◆ ■■■■■ */
/* ------------------------------------------------- */

.anshin-box{ /*（画像と説明の全体）*/
    width:100%;
    margin: 30px auto ;
    padding:30px 0 0;
    display:flex; /*（横並び）*/
    flex-wrap: wrap; 
}
/* ------------------------------------------------ */
.anshin-image{ /* 画像 */
    width:50%;
    padding-bottom:5px;
}
.anshin-image img{
    max-width:95%;
}
/* ------------------------------------------------ */
.anshin-description{ /* 説明 全体 */
    width:45%;
    margin:10px auto 0;
    padding:0 2.5% 0;
}
.anshin-right-title{ /* 太字の小タイトル */
    font-size:15px;
    padding:0 0 22px;
}
/* ------------------------------------------------ */
.anshin-right { /* テキスト */
    font-size:14px;
    padding-bottom:35px;
    line-height:1.6;
}
.anshin-right p{ /* テキスト */
    padding-bottom:15px;
}
/* --------------------------- */
.anshin-right2 { /* テキスト */
    font-size:14px;
    padding-bottom:0;
    line-height:1.6;
}
.anshin-right2 p{ /* テキスト */
    padding-bottom:15px;
}
/* ------------------------------------------------ */
.anshin-repair{ /* 修理 */
    width: 95%;
    margin: 0 auto 0;
    padding:0 2.5% 40px;
    font-size:14px;
}

/* ------------------------------------------------ */
/* ■■■■■■■■■ ココが安心・非表示から表示 ◆ */
/* ------------------------------------------------ */

.fa10 p::after{/* ココが安心・下矢印 */
    font-family: "Font Awesome 5 Free";
    content: "\f13a";
    font-size: 1.1em ;
    font-weight: 900;
    padding-left : 4px;/* 文字との隙間 */
    color: #c3c3c3;/* アイコンの色 */
}
/* ------------------------------------------------------------------------- */
.fa10{/* ココが安心ボタンの位置と幅の調節 */
    width: 100.2%;
    margin-left:-0.5px;
    cursor: pointer;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■ ◆ お支払い方法 ◆ */
/* ------------------------------------------------------------------------- */

/* --------------------------------------- */
/* ------- ◆ ご注文方法タイトル ◆ ------ */
/* --------------------------------------- */

.payment-title-box{ /* タイトルボックス 全体 */
    width: 99%;
    margin: 38px auto 32px;
    padding: 7px 0 7px 11px;
    border-top: 1px solid #eaeaea;
    border-right: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    border-left: 1px solid #e9e9e9;
    border-radius: 5px;
}
/* --------------------------------------- */
.fontawsome-other{
    font-size: 19px; 
    padding: 22px 0 18px 20px;
    border-radius: 1px;
}

/* --------------------------------------- */
/* ------ ◆ ３つの方法 全体 BOX ◆ ------ */
/* --------------------------------------- */

.payment-box{ /* 3つのBoxを囲うBIGBox全体 */
    width: 94.8%;
    padding: 45px 2.5% 0;
    border: 1px solid #e9e9e9;
    border-bottom:none;
    overflow: hidden; /*floatの解除*/
    border-radius: 8px 8px 0 0;
    display:flex; /*（横並び）*/
    flex-wrap: wrap; 
}
/* --------------------------------------- */
.payment-mine-title{ /* ３つの小タイトル */
    width:100%;
    font-size:16px;
    padding-bottom:9px;
    margin-bottom:30px;
    border-bottom: 2px dotted #cccccc;
}

/* --------------------------------------- */
/* --------- ◆ お支払い方法 ◆ ---------- */
/* --------------------------------------- */

.pc-payment-all{ /* 支払い方法 Box */
    width:24.8%;
    height:auto;
    margin:0 auto 0;
}
/* --------------------------------------- */
.payment-icon{ /* 4つの支払い方法全体 */
    background-color:#fff;
    border: none;
    text-align: center;
    margin:24px auto 0;
    padding:0;
    font-size:0;
    width:100%;
}
/* --------------------------------------- */
.pay-img-size { /* 支払い4つの画像全部に */
    width: 47%;
    max-width:100%;
    margin:0 auto 4%;
    padding:34px 0 34px;
    background-color:#fafafa;
    border: 1px solid #f6f6f6;
    border-radius: 8px;
}
.pay-img-size img{
    max-width:100%;
    width: 86px;
    height:auto;
    cursor: pointer; /*カーソルをポインターにする*/
}
.pay-img-size img:hover {
    opacity: 0.7 ;
}
/* --------------------------------------- */
.pay-image-icon-1{ /* PC クレジットカードの右の隙間作り */
    margin-right:5%;
}
.pay-image-icon-3{ /* PC 銀行振込の右の隙間作り */
    margin-right:5%;
}

/* --------------------------------------- */
/* - (「画像をクリックで切り替わります｣) - */
/* --------------------------------------- */

.image-kirikae-info{
    font-size:10px;
    margin-top:-68px;
}

/* --------------------------------------- */
/* -------- ◆ 送料・発送方法 ◆ --------- */
/* --------------------------------------- */

.pc-cost-all{ /* 送料・発送方法 Box */
    width:34%;
    margin:0 0.5% 25px 1.5%;
    padding:0 0 0 1.5%;
    border-left: 1px solid #eaeaea;
}
/* --------------------------------------- */
.cost-icon-big-leftright{ /* 960～・送料とかを左右にするためだけ */
    width:101.5%;
    margin:0 -1.5% 0 0;
}
/* --------------------------------------- */
.henpin-takasa-1050{ /* 高さ調整するためだけ */
    display: -webkit-flex;
    display: flex;
}

/* ---------------------------------------- */
/* ------ 4項目で使用するミニボックス------ */
/* ---------------------------------------- */

.cost-icon{ /* 送料・発送方法・返品・キャンセル 4つのミニBox */
    width:100%;
    margin:10px 0 12px 0;
    padding:25px 0 30px;
    background-color:#fafafa;
    border: 1px solid #f6f6f6;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 8px;
}

/* ---------------------------------------- */
/* ------- 4項目で使用する4つの画像 ------- */
/* ---------------------------------------- */

.cost-left-icon{ /* 送料・発送方法・返品・キャンセル */
    width: 33%;
    margin:13px auto 0;
    padding-left:2%;
    text-align:center;
}
.cost-left-icon img{/* ４つの画像*/
    width: 115px;
}

/* ---------------------------------------- */
/* ----- 4項目で使用する4つの右の説明 ----- */
/* ---------------------------------------- */

.cost-right-text{
    width: 59.5%;
    margin:8px 4.5% 0 1%;
    font-size:15px;
}

/* --------------------------------------- */
/* ------- ◆ 返品・キャンセル ◆ -------- */
/* --------------------------------------- */

.pc-henpin-all{ 
    width:34.5%;
    margin:0 0 25px 1.5%;
    padding:0 0 0 1.5%;
    border-left: 1px solid #eaeaea;
}
/* --------------------------------------- */
.pc-henpin-left{ 
    padding:25px 0 37px;
}
.pc-cancel-right{ 
    padding:25px 0 37px;
}
/* ---------------------------------------- */
.go-henin-page{ /* PC-文字縮小 */
    font-size:13px;
}
.pc-mini-text{ /* PC-文字縮小 */
    font-size:13px;
}
/* ----------------------------- */
.cost-p-margin{
    margin:20px 0 0;
}
.cost-p-margin a{
    text-decoration:underline;
}
.cost-p-margin a:hover{
    opacity:0.7;
}

/* -------------------------------------------------------------- */
/* ■■■■■■■■ ◆ ページ下のカートボタン ◆ ■■■■■■■■ */
/* -------------------------------------------------------------- */

.bottom-cart-flex-box{ /*（全体）*/
    width: 81.8%;
    margin: 38px auto 0;
    padding: 45px 9% 0;
    border-radius:10px;
}
/* ------------------------------------------------ */
.bottom-item-image{ /*（商品画像）*/
    width: 45.5%;
    margin:10px auto 55px;
}
.bottom-item-image img{
    max-width: 550px;
    width: 100%;
    height:auto;
    margin:0 auto;
}

/* ------------------------------------ */
/* -- ◆ 割引商品用のスパン画像２ ◆ -- */
/* ------------------------------------ */

#featured_img2{
    position:relative;
}
#featured_img2 span{
    position:absolute;
    width:18%;
    top:-10px;
    left:-20px;
}
#featured_img2 span img{
    max-width: 100%;
    height:auto;
}
/* ------------------------------------------------ */
.bottom-item-detail{ /*（商品情報・カートに入れるボタン 全体）*/
    width: 49%;
    margin:15px auto 0;
    padding: 0 0 0 4%;
    font-size: 14px;
    line-height:1.6;
}
/* ------------------------------------------------ */
.bottom-item-coad{ /*（商品コード）*/
    font-size: 13px;
    margin-bottom:5%;
}
.bottom-item-h3{ /*（h3 商品名）*/
    width: 68%;
    color:#6e6969;
    font-size: 18px;
    padding: 0 16% 4.3%;
}
.bottom-item-size{ /*（商品サイズ）*/
    font-size: 17px;
    margin:0 auto;
    padding: 5.3% 0 5.3%;
}
.bottom-size-note{
    font-size: 12px;
    margin:5% auto 0;
}
/* ------------------------------------------------ */
.price-discbutton3{ /*（商品価格 全体）*/
    margin:5% auto -12px;
}
.price-tax3{ /*（価格 全体）*/
    margin:0;
}
.just-text3{ /*（｢価格｣「円｣）*/
    font-size: 18px;
}
.price3{ /*（価格）*/
    font-size: 28px;
    margin:0 0;
}
.cost03{ /*（送料0円）*/
    margin:0 0 0 5px;
}
.cost03 img{
    width: 55px;
    margin:0;
}
.cost-area-betsu3{ /*（地区別特別送料）*/
    margin:0 0 0 5px;
}
.cost-area-betsu3 img{
    width: 95px;
}
/* ------------------------------------------------ */
.item-tax3{ /*（内税）*/
    margin:0 0 5.5% 0px;
}
.item-tax3 p{
    font-size: 14px;
}
/* ------------------------------------------------ */
.cart_btn2{ /*（在庫・数量）※上の在庫デザインに影響するためココで編集しない */
    width: 95%;
    margin:12px auto 20px;
    height:auto;
}
/* ------------------------------------------------ */
.one-item-note2{/* -- 一点商品のため売切れ次第販売終了となります -- */
    margin:0 auto;
    font-size:14px;
    padding:0.7% 0 0;
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■ ◆ 商品ページアイコン ◆ */
/* ------------------------------------------------------------------------- */

.last-icons-name{ /*（product category）*/
    margin: 45px auto 0;
}
.last-icons{ /* 3つのアイコン */
    padding: 2px 0 42px;
    overflow: hidden;/*アイコン画像拡大時にはみ出た部分を隠す*/
}
.last-icons p{
    width: 70px;
    height: 64.38px;
    transition-duration: 0.3s; /*変化に掛かる時間*/
}
.last-icons p:hover{
    transform: scale(1.1); /*画像の拡大率*/
    transition-duration: 0.3s; /*変化に掛かる時間*/
}

/* ------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■◆ フッター ◆*/
/* ------------------------------------------------------------------------- */
.footer-pc-none{/* 矢印 */
    display:none;
}
#footer { /*（フッター・全体）*/ 
    width:2560px;
    max-width:100%;
    margin:0 auto;
    height: auto;
    clear: both;/*（回り込みを防ぐ）*/
    position: relative; 
    float:left;/*（横配列に必要なフロート）*/
    background-color:#3d1e07;
    text-align:center;
}
.px-footer{ /*（パソコン用・フッター・全体）*/ 
    width:100%;
    height: auto;
    margin:0 auto;
    padding:18px 0;
    display:block;
}
.px-footer p{ /*（パソコン用・フッター・全体）*/ 
    display:inline;
    color:#fff;
}
.px-footer p a{
    color:#fff;
    font-size:12px;
}
.px-footer p a:hover{
  opacity: 0.75;
}
.fotto-p-haba{ /*（棒の幅）*/ 
    margin:0 0 0 5px;
}
/* -------------------------------------------- */
/* ---------------( コピーライト )------------- */
/* -------------------------------------------- */
.copy-light {
    margin:0 auto;
    padding:16px 0 15px;
    font-size:0.7em;
    background-color:#fff;
}
} /* --(消すな)--*/

/* ----------------------------------------------------------------------------- */
/* ■■■■■■■■■■■■■■■■◆ ここまで ◆■■■■■■■■■■■■■■■■*/
/* ----------------------------------------------------------------------------- */
