:root{
  --page-bg-color: #FFFFFF;
  --col-font-color:#333;
  --link-normal:#1a0dab;
  --link-hover:#FF6600;
  --gnav-bgcolor-hover:#6e5d4b;
  --gnav-font-color:#fff;
  --key-color:#339900;
  --addcartbtn-color-hover:#ff0062
}
html{
  scroll-behavior:smooth;
  overflow-x:hidden;
}
body {
  width: min(100%, 100vw);
  background-color:var(--page-bg-color);
  font-size:clamp(14px,1vw,16px);
  font-family:"Helvetica Neue",Arial,"Yu Gothic","Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--col-font-color);
}
@media( max-width:980px){
  body{
    overflow-x: hidden;
  }
  body::before {
    content: "";
    height: 50px;
    display: block;
    width: 100%;
  }
}
/* dialog待機中*/
body.loading{
	position:relative;
}
body.loading::after {
	content: "カートに追加しています...";
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	color: #ffe;
	background: rgb(0 0 0 /0.4);
	z-index: 10000;
}
input, button, select, textarea {
  font-family: "Noto Sans JP", serif;
}

button{
 background:none;
 border:none;
}
a {
  color: var(--link-normal);
}
@media(hover:hover){
  a:hover {
    color: var(--link-hover);
  }
}
img{
  object-fit:contain;
}
svg{
  width:18px;
  height:18px;
  fill:currentColor;
}
ul,ol{
  margin:0;
  padding:0;
  list-style:none
}
form {
  margin: 0;
}
.reader-txt {
  position: absolute;
  -webkit-clip-path: inset(50%);
  overflow: hidden;
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
}
:not(.header-logo) > a[aria-current="page"] {
	pointer-events: none;
}
/* モバイル上部メニュー*/
.sp-toolbar {
  display: flex;
  width: 100%;
  height: 50px;
  font-size: 10px;
  border-bottom: 1px solid #eee;
  background-color: #008000;
  text-align: center;
  margin: 0;
  padding: 5px 5px 2px;
  list-style: none;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 21;
}
.sp-toolbar-item {
  flex: 1;
  height: 100%;
  box-sizing: border-box;
}
.sp-toolbar-item > :not(form) {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 10px;
  color: #fff;
  line-height:1.5;
  text-decoration: none;
  background: none;
  white-space:nowrap;
}
.sp-toolbar-item.btn-favorite[data-favo_num="0"]{
  display:none;
}
@media(min-width:981px){
  .sp-toolbar{
      display:none
  }
}
/* カートをみるボタン*/
:is(.sp-toolbar-item , .global-nav__unit) [data-cart-count]:not([data-cart-count="0"])::after{
  content:attr(data-cart-count);
  position:absolute;
  top:0;
  right:calc(50% - 30px);
  font-size:clamp(9px,1vw,12px);
  padding:4px;
  background:#cc121a;
  clip-path:circle();
}
@media(min-width:981px){
  .global-nav__unit [data-cart-count]:not([data-cart-count="0"])::after{
    content:"( "attr(data-cart-count)" )";
    position: static;
    background: none;
    font-size: .9em;
    margin-left:1em
  }
}
/* サイトヘッダー*/
#header{
  position:relative
}
.header-inner {
	padding: 0 20px 20px;
	box-sizing: border-box;
}
.header-logo{
  margin-top:10px
}
.header-banner {
	display: block;
	margin-top: 14px;
}
@media(min-width:981px){
 .header-inner {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    justify-content: space-between;
    align-items: center;
    width: min(100%,1780px);
    margin: auto;
    padding:10px;
  }
  .header-logo{
    margin:0
  }
  .header-logo img {
    width: auto;
    max-height: 100px;
    aspect-ratio: 381/96;
    object-fit: contain;
  }
  .header-banner {
    max-width: 500px;
    justify-self: center;
    margin-top:0;
  }
  .header-banner.visible-desktop {
    max-width: 400px;
    justify-self: end;
  }
}
/* ゲスト名*/
.login_name {
  padding-top: 1em;
  padding-bottom: 1em;
}
@media(min-width:981px){
  .login_name {
    display: flex;
    justify-content: space-between;
  }
  .login_name .name {	
    padding: 0 1.5em;
  }
}
.name > span {
  font-size: .9em;
  margin-left: 1.5em;
}
/* トップページのみ上部のフリースペース*/
.intro {
  padding-inline:8px;
  border-top: 2px solid;
  border-bottom: 2px solid;
}
.intro-title {
  font-size: clamp(17px,1.3vw,18px);
  font-weight: 600;
  margin-block: 1em;
  padding-inline: 8px;
}
.intro-title p {
  margin: 0;
}
.intro-title__name{
  display:block
}
@media(min-width:1280px){
  .pc_br{
    display:block;
    margin-left:0;
  }
}
.intro__kyoka{
  font-size: clamp(13px,1.4vw,15px);
  grid-row: 2/3;
}
.intro__links {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  --gap: clamp(8px,1.6vw,16px);
  gap: var(--gap);
  margin: 16px auto;
  padding-inline: var(--gap);
}
@media(min-width:1025px){
  .intro{
    display: grid;
    grid-template-columns: 1fr clamp(482px,38%,520px);
    align-items: center;
  }
  .intro-title__name{
    display:inline
  }
}
/* 検索注目ワード*/
#head_search {
  padding: 20px;
}
.contents__section.container.try-search-container {
  padding-bottom: 0;
}
.search-keyword-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 8px;
}
.search-keyword-list > a{
  --color:#339900;
  font-weight:600;
  color:var(--color);
  border: 2px solid var(--color);
  border-radius: 5px;
  padding: 4px;
  line-height:1.2;
  transition: background-color .3s;
}
.search-keyword-list > a.pink{
  --color:#FF6197;
}
.search-keyword-list > a.green{
  --color:#2CAA2C;
}
.search-keyword-list > a.blue{
  --color:#00A0E9;
}
@media(min-width:768px){
  .search__form {
    width: 440px;
    margin: auto;
  }
}
@media(min-width:981px){
  #head_search {
    display: grid;
    grid-template-columns: 400px 1fr;
    align-items:center;
  }
  #expsug1 {
    width: min(60%,360px);
  }
}
@media(min-width:1280px){
  .search-keyword {
    display: grid;
    grid-template-columns: clamp(130px,10vw,160px) 1fr;
    column-gap: 48px;
    align-items: center;
  }
}
@media(hover:hover){
  .search-keyword-list > a:hover{
    color:#fff;
    background:var(--color);
    text-decoration: none;
  }
}

/*
 * layout
 */

#wrapper {
  position: relative;
}
#header {
 position: relative;
 z-index: 20;
}
.container {
  width: 94%;
  max-width: 1776px;
  margin: 0 auto;
}
#aside{
  padding-bottom:24px;
}



@media(min-width:981px){
  .try-contents {
    --gap: clamp(24px,4vw,72px);
    display: grid;
    grid-template-columns: min(25%,300px) minmax(0,1fr);
    grid-template-areas: "side main";
    column-gap: var(--gap);
    max-width: min(98%,1776px);
    margin-inline: auto;
    padding-right:78px;
    box-sizing:border-box;
  }
  #main{
    grid-area: main;
    align-self:start
  }
  #aside {
    grid-area: side;
    align-self:start;
    position:sticky;
    top:0;
    max-height:100vh;
    padding-right:20px;
    overflow-y:scroll;
  }
}
@media(min-width:981px){
  .header-inner {
    width: min(98%,1776px);
  }
  #aside .flamect.under_1385 {
    display: none;
  }
}

/*
 * header
 */
.global-nav-wrap {
  display:none;
  background: #228B22;
  width: 100%;
}
@media(min-width:981px){
  .global-nav-wrap{
    display:block;
  }
}
.global-nav {
  font-size: 1em;
  border-left: 1px solid #fff;
}
.global-nav__unit {
  text-align: center;
  border-right: 1px solid #fff;
}
@media(hover:hover){
  .global-nav__unit:hover {
    background: var(--gnav-bgcolor-hover);
  }
}
.global-nav__unit i {
  vertical-align: -44%;
  margin-right: 10px;
}
.global-nav__txt {
  color: var(--gnav-font-color);
  text-decoration: none;
  display: block;
  padding: 10px 0;
}
@media(hover:hover){
  .global-nav__txt:hover {
    color: var(--gnav-font-color);
    text-decoration: none;
  }
}
/* ホバーでカートの中身表示*/
#baskets {
  display:none;
  position: absolute;
  top: 100%;
  right: 0;
  width: 480px;
  background: whitesmoke;
  height: auto;
  z-index: 20;
  box-shadow: 0 0 0 1px #f5f5f5,0 10px 20px #aaa, 0 20px 40px #ccc;
}
@media(hover:hover){
  .global-nav__unit.showcart{
  	position:relative;
  }
  .global-nav__unit.showcart:has( .view-baskets:not([data-num="0"]) ):hover > #baskets{
    display:block
  }
  .basket-total {
    margin: 0;
    padding: 12px;
    text-align: right;
    background: #fff;
  }
  .basket-list {
    max-height:60vh;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
    overflow-y: scroll;
  }
  .basket-item {
    padding: 12px;
    border-bottom: 1px dashed #999;
    background: #ecf8d3;
  }
  .basket-item:last-child {
    border-bottom: none;
  }
  .basket-item__link {
    display: grid;
    grid-template-columns: 64px 1fr;
    column-gap: 1em;
    color: initial;
    text-decoration: none;
  }
  .basket-item__link:hover {
    color:inherit;
    background: #fff;
    text-decoration:none
  }
  .basket-item__name {
    font-size: 15px;
    padding: 8px 0;
  }
  .basket-item__num, .basket-item__price {
    padding: 6px 0;
    margin: 0;
    text-align: right;
  }
  #baskets span{
    font-size:1.4em;
    font-weight:500;
    margin:0 4px;
  }
  #baskets li span{
    font-size:1.2em
  }
  #baskets > p:last-child {
    margin: 0;
    padding: 12px 0;
  }
}

.social__units {
  margin: 0;
  list-style: none;
}
.social__unit {
  display: inline-block;
}
.search {
  padding: 20px 0 0px;
  position: relative;
}
.search__form {
  margin: 0;
}
.search__select {
  width: 30%;
  height: 40px;
  border: 2px solid #333;
  font-size: .9em;
}
.search__box {
  width: 50%;
  border: 2px solid #333;
  padding: 8px 10px;
}
.search__btn {
  padding: 7px 11px 5px;
  border: 2px solid #333;
}
.search-keyword-heading {
  font-weight: bold;
  margin: 0;
  padding-top: 10px;
}
.search-keyword-heading i {
  vertical-align: -44%;
  margin-right: 5px;
}
.search-keyword-list {
  font-size: .9em;
  margin: 0;
}
/**
 * メインコンテンツ部分
*/

/* パンくず*/
.try-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 24px 20px 5px;
	list-style: none;
	font-size: 12px;
}
.try-breadcrumbs__item:not(:first-child)::before {
	content: ">";
	margin: 0 0.3em;
}
.try-breadcrumbs__link {
	font-size: 13px;
	color: #004D9E;
}
@media(min-width:981px){
  .try-breadcrumbs{
    padding-left:0
  }
}

/* タイトル */
.try-section-title,
.section-title-h2{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  font-size: clamp(18px,2.2vw,24px) !important;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--font-color, #fff);
  margin:clamp(32px,4.2vw,80px) 0 20px;
  padding: 15px 4px;
  padding-left:clamp(4px,2vw,15px);
  background: var(--theme-color, #339900);
  background-size: 100% 100%;
}
#info-title{
  margin-top:0
}
:is(.try-section-title, .section-title-h2) a{
  font-size:clamp(12px,1.5vw,15px);
  color:#fff;
  margin-left:auto;
}
:is(.try-section-title, .section-title-h2) a svg {
	width: clamp(20px,1.8vw,22px);
	height: clamp(20px,1.8vw,22px);
	rotate: -90deg;
	vertical-align: -5px;
	margin-right: 0.3em;
}
@media(min-width:768px){
  .try-section-title,
  .section-title-h2{
    justify-content:center;
    align-items: center;
    position:relative
  }
  :is(.try-section-title, .section-title-h2) a{
    position:absolute;
    right:2em;
    margin:0
  }
}
.section-title-h3 {
  font-size: .8em;  
}

#onaho-ranking2 > .try-section-title { /* 昨日のアクセスランキング*/
	background-image: url('https://nobunaga-toys.jp/medias/access_sp@390_55.jpg');
}
#personal-title,#personal2-title { /*AIおすすめ */
  color:#fff;
  background-image: url('https://nobunaga-toys.jp/medias/ai-recommend_sp@390_55.jpg');
}
#information { /*各種案内*/
	background-image: url('https://nobunaga-toys.jp/medias/annai_sp@390_55.jpg');
}
#info-title {/*インフォメーション*/
	background-image: url('https://nobunaga-toys.jp/medias/information_sp@390_55.jpg');
}
#onaho-ranking-title { /*オナホランキング*/
	background-image: url('https://nobunaga-toys.jp/medias/onaho-ranking_sp@390_55.jpg'); 
}
#recommends-title {/*おすすめ新商品*/
	background-image: url('https://nobunaga-toys.jp/medias/osusume-new_sp@390_55.jpg');
}
#pickup-title {/*ピックアップ特集*/
	background-image: url('https://nobunaga-toys.jp/medias/pickup_sp@390_55.jpg');
}
#play-ranking-title {/*プレイランキング*/
	background-image: url('https://nobunaga-toys.jp/medias/play-ranking_sp@390_55.jpg');
}
#reviews-title {/*レビュー一覧*/
	background-image: url('https://nobunaga-toys.jp/medias/reviews_sp@390_55.jpg');
}
#seller-title {/*定番ヒット商品*/
	background-image: url('https://nobunaga-toys.jp/medias/teiban_sp@390_55.jpg');
}
#favorite-title {/*お気に入り*/
    background-image: url('https://img07.shop-pro.jp/PA01446/246/etc_base64/pKq1pKTLxv6k6l9zcCgzOTBfNTVweCk.jpg?cmsp_timestamp=20250205162402');
  } 
#recently-title {/*最近チェック*/
    background-image: url('https://img07.shop-pro.jp/PA01446/246/etc_base64/use24aXBpaelw6WvpLekv76mycpfc3AoMzkwXzU1cHgp.jpg?cmsp_timestamp=20250212171719');
  } 
#watching-title {/*これも見てます*/
    background-image: url('https://img07.shop-pro.jp/PA01446/246/etc_base64/pLOk86TKvqbJyqTiuKukxqSkpN6kuV9zcCgzOTBfNTVweCk.jpg?cmsp_timestamp=20250205181555');
  } 
#other {/*汎用*/
    background-image: url('https://img07.shop-pro.jp/PA01446/246/etc_base64/pbWlpKXJpeGly6XlobyxxLbIxvylq6XspfOlwKG8MzkwXzg1.jpg?cmsp_timestamp=20250207183536');
  } 
#service {/*情報サービス*/
    background-image: url('https://img07.shop-pro.jp/PA01446/246/etc_base64/pbWlpKXJpeGly6Xloby-8MrzpbWhvKXTpbkzOTBfODU.jpg?cmsp_timestamp=20250207183536');
  } 
#popularity {/*人気コンテンツ*/
    background-image: url('https://img07.shop-pro.jp/PA01446/246/etc_base64/pbWlpKXJpeGly6Xloby_zbWkpbOl86XGpfOlxDM5MF84NQ.jpg?cmsp_timestamp=20250207183536');
  } 
#category-title {/*カテゴリー*/
    background-image: url('https://img07.shop-pro.jp/PA01446/246/etc_base64/pbWlpKXJpeGly6Xlobylq6XGpbSl6qG8MzkwXzg1.jpg?cmsp_timestamp=20250212174402');
  } 
#group-title {/*グループ*/
    background-image: url('https://img07.shop-pro.jp/PA01446/246/etc_base64/pbWlpKXJpeGly6XlobylsKXrobyl1zM5MF84NQ.jpg?cmsp_timestamp=20250212174508');
  } 
#product-list {
    background-image: url('https://img07.shop-pro.jp/PA01446/246/etc_base64/vqbJyrDszfdfc3AoMzkwXzU1cHgp.jpg?cmsp_timestamp=20250212185020');
  } 
@media (width > 390px){
  #onaho-ranking2 > .try-section-title {
    background-image: url('https://nobunaga-toys.jp/medias/access_sp@780_110.jpg');
  }
  #personal-title,#personal2-title {
    background-image: url('https://nobunaga-toys.jp/medias/ai-recommend_sp@780_110.jpg');
  }
  #information {
    background-image: url('https://nobunaga-toys.jp/medias/annai_sp@780_110.jpg');
  }
  #info-title {
    background-image: url('https://nobunaga-toys.jp/medias/information_sp@780_110.jpg');
  }
  #onaho-ranking-title {
    background-image: url('https://nobunaga-toys.jp/medias/onaho-ranking_sp@780_110.jpg');
  }
  #recommends-title {
    background-image: url('https://nobunaga-toys.jp/medias/osusume-new_sp@780_110.jpg');
  }
  #pickup-title {
    background-image: url('https://nobunaga-toys.jp/medias/pickup_sp@780_110.jpg');
  }
  #play-ranking-title {
    background-image: url('https://nobunaga-toys.jp/medias/play-ranking_sp@780_110.jpg');
  }
  #reviews-title {
    background-image: url('https://nobunaga-toys.jp/medias/reviews_sp@780_110.jpg');
  }
  #seller-title {
    background-image: url('https://nobunaga-toys.jp/medias/teiban_sp@780_110.jpg');
  }
  #favorite-title {
    background-image: url('https://img07.shop-pro.jp/PA01446/246/etc_base64/pKq1pKTLxv6k6l9zcCg3ODBfMTEwcHgp.jpg?cmsp_timestamp=20250205162402');
  } 
  #recently-title {
    background-image: url('https://img07.shop-pro.jp/PA01446/246/etc_base64/use24aXBpaelw6WvpLekv76mycpfc3AoNzgwXzExMHB4KQ.jpg?cmsp_timestamp=20250212171719');
  } 
  #watching-title {
    background-image: url('https://img07.shop-pro.jp/PA01446/246/etc_base64/pLOk86TKvqbJyqTiuKukxqSkpN6kuV9zcCg3ODBfMTEwcHgp.jpg?cmsp_timestamp=20250205181555');
  } 
  #other {/*汎用*/
    background-image: url('https://img07.shop-pro.jp/PA01446/246/etc_base64/pbWlpKXJpeGly6XlobyxxLbIxvylq6XspfOlwKG8MzkwXzg1.jpg?cmsp_timestamp=20250207183536');
  } 
  #service {/*情報サービス*/
    background-image: url('https://img07.shop-pro.jp/PA01446/246/etc_base64/pbWlpKXJpeGly6Xloby-8MrzpbWhvKXTpbkzOTBfODU.jpg?cmsp_timestamp=20250207183536');
  } 
  #popularity {/*人気コンテンツ*/
    background-image: url('https://img07.shop-pro.jp/PA01446/246/etc_base64/pbWlpKXJpeGly6Xloby_zbWkpbOl86XGpfOlxDM5MF84NQ.jpg?cmsp_timestamp=20250207183536');
  } 
  #category-title {/*カテゴリー*/
    background-image: url('https://img07.shop-pro.jp/PA01446/246/etc_base64/pbWlpKXJpeGly6Xlobylq6XGpbSl6qG8MzkwXzg1.jpg?cmsp_timestamp=20250212174402');
  } 
  #group-title {/*グループ*/
    background-image: url('https://img07.shop-pro.jp/PA01446/246/etc_base64/pbWlpKXJpeGly6XlobylsKXrobyl1zM5MF84NQ.jpg?cmsp_timestamp=20250212174508');
  } 
  #product-list {
    background-image: url('https://img07.shop-pro.jp/PA01446/246/etc_base64/vqbJyrDszfdfc3AoNzgwXzExMHB4KQ.jpg?cmsp_timestamp=20250212185020');
  } 
}
@media (width > 780px){
  #onaho-ranking2 > .try-section-title {
    background-image: url('https://nobunaga-toys.jp/medias/access-ranking_pc@1325_65.jpg');
  }
  #personal-title,#personal2-title {
    background-image: url('https://nobunaga-toys.jp/medias/airecommend_pc@1325_65.jpg');
  }
  #information {
    background-image: url('https://nobunaga-toys.jp/medias/annai_pc@1325_65.jpg');
  }
  #info-title {
    background-image: url('https://nobunaga-toys.jp/medias/information_pc@1325_65.jpg');
  }
  #onaho-ranking-title {
    background-image: url('https://nobunaga-toys.jp/medias/onaho-ranking-pc@1325_65.jpg');
  }
  #recommends-title {
    background-image: url('https://nobunaga-toys.jp/medias/osusume-new_pc@1325_65.jpg');
  }
  #pickup-title {
    background-image: url('https://nobunaga-toys.jp/medias/pickup_pc@1325_65.jpg');
  }
  #play-ranking-title {
    background-image: url('https://nobunaga-toys.jp/medias/play-ranking_pc@1325_65.jpg');
  }
  #reviews-title {
    background-image: url('https://nobunaga-toys.jp/medias/reviews_pc@1325_65.jpg');
  }
  #seller-title {
    background-image: url('https://nobunaga-toys.jp/medias/teiban@1325_65.jpg');
  }
  #favorite-title {
    background-image: url('https://img07.shop-pro.jp/PA01446/246/etc_base64/pKq1pKTLxv6k6l9wYygxMzI1XzY1cHgp.jpg?cmsp_timestamp=20250205162402');
  } 
  #recently-title {
    background-image: url('https://img07.shop-pro.jp/PA01446/246/etc_base64/use24aXBpaelw6WvpLekv76mycpfcGMoMTMyNV82NXB4KQ.jpg?cmsp_timestamp=20250212171719');
  } 
  #watching-title {
    background-image: url('https://img07.shop-pro.jp/PA01446/246/etc_base64/pLOk86TKvqbJyqTiuKukxqSkpN6kuV9wYygxMzI1XzY1cHgp.jpg?cmsp_timestamp=20250205181555');
  } 
  #product-list {
    background-image: url('https://img07.shop-pro.jp/PA01446/246/etc_base64/vqbJyrDszfdfcGMoMTMyNV82NXB4KQ.jpg?cmsp_timestamp=20250212185020');
  } 
}
@media (width > 1850px){
  #onaho-ranking2 > .try-section-title {
    background-image: url('https://nobunaga-toys.jp/medias/access-ranking_pc@2650_130.jpg');
  }
  #personal-title,#personal2-title {
    background-image: url('https://nobunaga-toys.jp/medias/airecommendo_pc@2650_130.jpg');
  }
  #information {
    background-image: url('https://nobunaga-toys.jp/medias/annai_pc@2650_130.jpg');
  }
  #info-title {
    background-image: url('https://nobunaga-toys.jp/medias/information_pc@2650_130.jpg');
  }
  #onaho-ranking-title {
    background-image: url('https://nobunaga-toys.jp/medias/onaho-ranking_pc@2650_130.jpg');
  }
  #recommends-title {
    background-image: url('https://nobunaga-toys.jp/medias/osusumenew_pc@2650_130.jpg');
  }
  #pickup-title {
    background-image: url('https://nobunaga-toys.jp/medias/pickup_pc@2650_130.jpg');
  }
  #play-ranking-title {
    background-image: url('https://nobunaga-toys.jp/medias/play-ranking_pc@2650_130.jpg');
  }
  #reviews-title {
    background-image: url('https://nobunaga-toys.jp/medias/reviews_pc@2650_130.jpg');
  }
  #seller-title {
    background-image: url('https://nobunaga-toys.jp/medias/teiban_pc@2650_130.jpg');
  } 
  #favorite-title {
    background-image: url('https://img07.shop-pro.jp/PA01446/246/etc_base64/pKq1pKTLxv6k6l9wYygyNjUwXzEzMHB4KQ.jpg?cmsp_timestamp=20250205162402');
  } 
  #recently-title {
    background-image: url('https://img07.shop-pro.jp/PA01446/246/etc_base64/use24aXBpaelw6WvpLekv76mycpfcGMoMjY1MF8xMzBweCk.jpg?cmsp_timestamp=20250212171719');
  } 
  #watching-title {
    background-image: url('https://img07.shop-pro.jp/PA01446/246/etc_base64/pLOk86TKvqbJyqTiuKukxqSkpN6kuV9wYygyNjUwXzEzMHB4KQ.jpg?cmsp_timestamp=20250205181555');
  } 
  #product-list {
    background-image: url('https://img07.shop-pro.jp/PA01446/246/etc_base64/vqbJyrDszfdfcGMoMjY1MF8xMzBweCk.jpg?cmsp_timestamp=20250212185020');
  } 
}
/*** END // タイトル */

/* デフォルト商品リストの上書き */
.product-list.row {
  display: flex;
  flex-wrap: wrap;
}
.product-list.row::before,
.product-list.row::after{
  display: none;
}
.product-list.row > [class*="col-"] {
  float: none;
}
/*
 * 商品リストの共通スタイル
 * */
.try-list{
  --list-column:2;
  --list-gap:8px;
  --min-width: 50%;
  list-style:none;
}
.try-list:not(.slick-initialized){
  display:grid;
  grid-template-columns: repeat( var(--list-column), 1fr);
  padding:0 var(--list-gap) calc( var(--list-gap) * 5);
  gap:8px 4px;
}
@media(min-width:768px){
  .try-list:not(.slick-initialized){ 
    --list-column:3;
    --min-width:30%;
  }
  .try-list.ranking-list:not(.slick-initialized){
    --list-column:5;
  }
}
@media(min-width:981px){
  .try-list:not(.slick-initialized){
    --list-column:4;
    --min-width:25%;
  }
  .try-list:not(.slick-initialized).history-list,
  [id^="fsrecommenddiv"] .try-list:not(#important){
  	--list-column:5;
  }
}
@media(min-width:1440px){
  .try-list:not(.slick-initialized){
    --list-column:5;
    --min-width:20%;
  }
}
#onaho-ranking2 li,
.try-list-item{
  padding:12px var(--list-gap) calc(var(--list-gap) * 5);
  position:relative;
  box-shadow: 0 0 0 1px #e4e6eb;
  border-radius:var(--list-gap);
  container-name:favo;
  container-type:inline-size;
}
.try-list__mark {
	position: absolute;
	top: -4px;
	right: 8px;
	display: flex;
	align-items: center;
	width: auto;
	min-width:4em;
	height: auto;
	font-size: clamp(11px,1vw,15px);
	background: #333;
	z-index: 1;
	border-radius: 0 0 8px 8px;
	pointer-events: none;
}
.try-list__mark::before {
	font-size: inherit;
	color: #fff;
	font-weight: 600;
	margin-inline: auto;
	padding: clamp(4px,12px - 1vw , 8px) 4px;
	line-height: 1;
}
.try-list__mark.mark-new::before {
	content: "New!";
}
.try-list__mark.mark-osusume::before {
  content: "オススメ";
  font-size:max(11px,0.85em);
}
@media(min-width:1100px){
  .try-list__mark.mark-osusume::before {
    line-height:1.4;
  }
}
.try-list__mark.mark-sale::before {
	content: "SALE";
	color:#E40B09;
}
.try-list__mark.mark-sainyuka::before {
	content: "再入荷";
}
.try-list__mark.mark-yoyaku::before {
	content: "予約受付中";
  }
.try-list__mark.mark-souryou::before {
	content: "送料無料";
}
.try-list__mark.mark-urikire::before {
	content: "売り切れ";
}
.try-list__mark.mark-nesage::before {
	content: "値下げ";
}
.try-list__mark.mark-new {
	background: #E9144B;
}
.try-list__mark.mark-osusume {
	background:#4877BF;
}
.try-list__mark.mark-sale {
	background: #ffff24;
}
.try-list__mark.mark-sainyuka {
	background: #338808;
}
.try-list__mark.mark-yoyaku {
	background: #800080;
}

.try-list .rank {
	position: absolute;
	left: 0.5em;
	top: 0.5em;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2em;
	height: 2em;
	padding: 0.1em;
	background: var(--theme-color,#333);
	color: #fff;
	font-weight: bold;
	font-size: 1em;
}
.try-list__link {
  color: #004D9E !important;
}
.try-list__image{
  aspect-ratio:1/1;
}
.try-list__name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 1.4;
  font-size:1rem;
  font-weight: 400;
  margin:12px 0 4px;
  overflow: hidden;
}
.try-list__stock {
 font-weight: 600;
 font-size: 13px;
 padding-bottom: 8px;
}
.try-list__stock .stock-num {
 color: crimson;
 font-size: 14px;
}
.try-list__stock:has(> .stock-num:empty) {
	display: none;
}


:is(.try-list, #onaho-ranking2) .product-list__price {
  font-size: 1.1rem;
  font-weight: 700;
  margin:8px 0 12px;
}
:is(.try-list, #onaho-ranking2) .review-summary-container {
	min-height: 28px;
}
.review-summary-container .starRating span.reviewNumber {
  font-size: clamp(11px,.8vw,13px);
}
.product-list__expl {
  font-size: clamp(12px,.9vw,14px) !important;
}
.product-list__fav-items:not(#this#is#important){
  width:auto;
  margin:0;
  padding:0;
  position: absolute;
  bottom: 8px;  
}
.favorite-button:not(#this#is#important){
  width:max-content;
  font-size: clamp(12px,.9vw,14px);
  color:#999;
  padding:0;
}
@container favo (max-width:130px){
 .try-list__cartbtn {
	width: 50% !important;
	padding-inline: 0;
	}
}
@container favo (max-width:170px){
  .product-list__fav-items:not(#this#is#important) {
	bottom: 2px;
  }
  .favorite-button:not(#this#is#important){
  	display:flex;
    flex-direction:column;
    align-items:center;
    font-size:10px;
  }
}
.favorite-button.fav-items:not(#this#is#important) {/* お気に入り済*/
  color: #008000;
}
.favorite-button svg:not(#this#is#important) {
	width: 16px;
	height: 16px;
	vertical-align: -3px;
	margin-right: 3px;
}
.try-list__cartbtn {
  position: absolute;
  bottom: 8px;
  right: 4px;
  font-size: clamp(10px,.8vw,13px);
  color: #fff;
  padding: 6px;
  background: #f39700;
  text-align: left;
  border-radius: 8px;
  line-height: 1.3;
}
.try-list-item[data-soldout="true"] .try-list__cartbtn,
.try-list__cartbtn[disabled]{
  pointer-events: none;
  filter: grayscale(.8) opacity(.8);
}

/* スライダー表示になる商品リスト(TOPのお気に入りなど) */
.try-list.slick-slider .slick-track {
  display: flex;
  margin-bottom:24px;
}
.try-list.slick-slider .slick-track .try-list-item {
  height: auto !important;
  margin: 8px 4px 12px !important;
}
/* END // 商品リストの共通スタイル */

/* もっとみるボタン*/
.more-btn {
  display:block;
  width: 300px;
  font-size: 1rem;
  color: #fff !important;
  font-weight: 500;
  margin: 24px auto;
  padding: 12px;
  background: #A9A9A9;
  border-radius: 12px;
  text-align: center;
  text-decoration: none !important;
  cursor: pointer;
}
@media(max-width:1439px){
  #try-subcategory-list:has(>:nth-child(10)) + .more-btn {
    display:block;
  }
}
@media(min-width:1440px){
  #try-subcategory-list:has(>:nth-child(13)) + .more-btn {
    display:block;
  }
}
.more-btn:focus {
  box-shadow: inset 0 0 20px #555;
}
@media(hover:hover){
  .more-btn:hover {
    box-shadow: inset 0 0 20px #555;
  }
}
/* END // もっと見るボタン*/


/*
 * main
*/
.contents__section {
  background: #fff;
  padding: 0px 20px 40px;
  position: relative;
}
.info__section {
  margin-bottom: 40px;
}
.info-list {
  margin: 0;
}
.info-list__unit {
  padding-bottom: 20px;
  font-size: .9em;
  line-height: 1.5;
}
.info-list__date {
  display: block;
  padding-bottom: 5px;
}
.info-list__txt,
.info-list__txt:hover {
  color: #004D9E;
}




 /* footer*/
.footer__section {
  background: #fff;
  padding: 0 20px;
  position: relative;
}
.history__section {
  padding: 0 0 20px;
}
.footer-pagetop {
  text-align: center;
  background-color: var(--key-color);
}
.footer-pagetop a {
  display: block;
  width: 100%;
  height: 40px;
}
.footer-pagetop-icon {
  margin-top: 8px;
}
.footer-notice__section {
  padding: 0 0 40px;
}
.footer-nav__section {
  padding: 30px 0;
  font-size: .9em;
}
.footer-nav-list {
	display: flex;
	flex-wrap: wrap;
	column-gap: 4px;
	row-gap: 8px;
	font-size: clamp(11px,1vw,15px) ;
}
.footer-nav-list > li:not(:last-child)::after {
	content: "/";
	padding-inline: .5em;
}
@media(min-width:981px){
  .footer-nav-list{
    justify-content: center;
  }
}
.footer-copylight__section {
  font-size: .9em;
  margin:0;
  padding: 20px 0;
  border-top:2px solid;
}
@media(min-width:981px){
  .footer-copylight__section {
    text-align: center;
    padding-top:0;
    border-top: none;
  }
}
.footer-copylight__powered {
  display: block;
  padding: 10px 0 0;
}
/**
* 追従スクロール
*/
.freeShippingPopupOuter.popupOuter {
  max-width: 98% !important;
}
#scroll {
  display:none;
  width:clamp(51px,8vw,74px);
  position: fixed;
  right: 0;
  bottom: 20px;
  z-index: -200;
  opacity:0;
}
/* 送料無料バナーと被らないように */
@media (max-width:600px){
  #scroll.upwards {
      bottom: 80px;
      z-index: 12345 !important;
  }
}
@media (min-width:981px){
  #scroll{
    bottom: 0;
  }
}
#scroll.active{
  display:flex;
  flex-direction:column;
  flex-wrap: wrap;
  justify-content:flex-end;
  z-index:200;
  animation: fadein .3s forwards;
}
@media(max-width:980px){
  .btn.btn-scroll.btn-history {
	display: none;
  }
}
@keyframes fadein{
  to{
    opacity:1;
  }
}
.btn.btn-scroll {
  order:2;
  display:flex;
  flex-direction:column;
  justify-content: space-between;
  align-items: center;
	width: 100%;
  min-height:clamp(53px,7.3vw,74px);
  font-size: .9em;
  color:#fff;
	padding: 5px 0 10px;
  border: 1px solid #333;
  border-radius: 0;
  background: rgba(0,0,0,0.5);
	text-align: center;
	box-sizing: border-box;
}
@media(max-width:980px){
  .btn-scroll.btn-cart{
    display:none
  }
}
@media(min-width:1025px){
  .btn.btn-scroll{
    padding-top:14px
  }
}
@media(hover:hover){
  .btn-scroll:hover {
    border: 1px solid #777;
    background-color: #777;
    text-decoration: none;
  }
}

.btn-scroll.btn-favorite,
.btn-scroll.btn-cart{
  rotate:0deg;
}
.btn-scroll.btn-favorite[data-favo_num="0"],
.btn-scroll.btn-cart[data-cart-count="0"]{
  order:1;
  rotate: x 90deg;
  transition:rotate .3s;
  transform-origin:bottom;
  pointer-events: none;
}
.btn-scroll svg {
	fill: #fff;
	width: clamp(18px,2.4vw,20px);
	height: clamp(18px,2.4vw,20px);
}

.btn-scroll:not(.btn-pagetop){
  margin-bottom:1px
}
.btn-cart .btn-scroll__txt {
	font-size: 12px;
	letter-spacing: -1px;
}
/**
* カテゴリー&検索ページ
*/
.freespace__section {
  margin: 0 0 40px;
}
/* ソート　*/
.productlist-sort {
  background: #eee;
  border: 2px solid #ccc;
  margin: 40px 0 20px;
  padding: 15px 10px;
  font-size: .9em;
}
.productlist-sort-list {
  float: left;
  margin: 0;
}
.productlist-sort-totalnumber {
  float: right;
  margin: 0;
  padding-right: 5px;
}
.productlist-sort-totalnumber span { 
  padding: 0 5px;
}


/** ページネーション*/
.pagenation__section {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.pagenation-list {
  text-align: right;
  padding-top: 15px;
}
.pagenation-list__unit {
  padding: 0 2px;
  text-align: center;
  line-height: 26px;
  display: inline-block;
}
.pagenation-list__unit a,
.pagenation-list__unit span {
  display: block;
  float: left;
  min-width: 26px;
  height: 26px;
  box-sizing: border-box;
  padding: 0 .5em;
}
.pagenation-list__unit a {
  border: 2px solid #333;
  background-color: #fff;
  color: #333;
  text-decoration: none;
}
.pagenation-list__unit a:hover {
  border: 2px solid #333;
  background-color: #333;
  color: #fff;
}
.pagenation-list__unit span {
  border: 2px solid #ccc;
  background-color: #fff;
  color: #ccc;
}
.pagenation-sp__section {
  text-align: center;
}
.pagenation-sp-list {
  margin: 0;
}
.pagenation-sp-list__unit {
  display: inline;
  margin: 0 5px;
}
.pagenation-sp-info {
	padding: 1em 0 1.5em;
}


/*
 * sk & privacy
 */
.privacy-par {
  margin: 0 0 20px;
  font-size: .9em;
}
/*
 * option stock
 */
.option__section {
  padding: 20px;
  text-align: center;
  font-size: .93em;
}
.option-heading {
  margin-bottom: 20px;
  font-size: 1.2em;
  border: none;
}

.btn--osclose {
  padding: .6em 1.2em;
  border-radius: 0;
  background: #333;
  border: 1px solid #333;
  color: #fff;
}

.btn--osclose:hover,
.btn--osclose:focus {
  background: #777;
  border: 1px solid #777;
  color: #fff;
}

/*
 * common
 */

.product-list__expl {
  font-size: .8em;
}
.product-list__regular-price {
  text-decoration: line-through;
}

.product-list__discount ,
.product-list__discount-rate,
.product-list__soldout {
  color: #f00;
}

.notice-box {
  margin-bottom: 40px;
}

.notice-heading {
  margin: 0 0 20px;
  padding: 10px 0 10px 20px;
  color: #fff;
  font-size: .9em;
  background: var(--key-color);
}

.notice-list {
  margin: 0;
}

.notice-list__name {
  margin-bottom: 10px;
  font-size: 1.3em;
}

.notice-list__unit {
  margin: 0 0 20px;
  font-size: 1em;
}

.inquiry-list__name {
  margin-bottom: 10px;
  font-size: 1em;
  font-weight: bold;
}

@media (min-width: 1281px) {
.under_1385 {	display: none;	}
}
@media (max-width: 1280px) {
#contents > .row .main__section {
	display: block;
}
.side-nav__section,.side-nav-box,.primary__section{
	max-width:none;
}
}


@media(min-width:981px){
  .history__section.sm {
    display: none;
  }
}

@media (max-width: 980px) {
  #base_gmoWrapp,
  #gmo_CMSPbar {
    overflow: hidden;
    min-width: 100% !important;
    width: 100% !important;
  }

  /*
   * layout
   */

  .contents__section {
    width: 100%;
    padding: 0px 0 40px;
  }

  .info-list {
    padding: 0 20px;
  }
  .shopname {
    width: 100%;
    padding: 0;
  }
  .shopname h1 {
    margin: 0;
    padding: 55px 20px;
    font-size: 1.4em;
    text-align: center;
  }
  .shopname__ad-wrap {
    position: static;
  }
  .shopname__ad {
    padding: 10px 0 5px;
    border-radius: 0;
    width: 100%;
  }
  .downbar {
    text-align: center;
    padding: 20px;
  }
  .downbar-ad {
    float: none;
  }


  .search-wrap {
    background-color: #fff;
  }
  .search {
    padding: 20px 20px 15px;
  }
  .search__select {
    width: 100%;
    margin-bottom: 10px;
  }

  .search__box {
    width: 70%;
    margin-bottom: 20px;
  }

  .search__btn {
    margin-bottom: 20px;
  }

  .search-keyword {
    text-align: center;
  }

  .search-keyword-heading {
    margin-bottom: 20px;
  }

  .primary__section {
    float: none;
  }

  .side-nav__section {
    float: none;
    padding: 0;
  }

  .side-nav-box {
    margin-bottom: 0;
    border-right: none;
    border-bottom: none;
    border-left: none;
  }

  .side-nav-banner-list {
    padding: 10 20px;
  }

  .btn-scroll__txt {
    font-size: .8em;
 	bottom: 8px;
	line-height: 1.2;
}
  .btn-scroll__txt span{
   display:block
  }
  .btn.btn-scroll:is(.btn-ranking, .btn-favorite) {
	min-height: 68px;
}


  /*
   * footer
   */

  .footer__section {
    width: 100%;
    padding: 0;
  }
  .history-list__unit {
    font-size: .9em;
  }
  .footer-notice-sp-list {
    font-size: .9em;
    margin: 0;
  }
  .footer-notice-sp-list__txt {
    padding: 10px 20px;
    display: block;
  }
  .footer-notice-sp-list__txt:hover,
  .footer-notice-sp-list__txt:focus {
    text-decoration: none;
    color: #999;
  }

  .footer-notice-sp-inquiry {
    padding: 3px 0 20px;
    background: var(--key-color);  
    color: #fff;
  }

  .footer-notice-sp-inquiry-list {
    padding: 0 20px;
    margin: 0;
  }

  .footer-notice-sp-inquiry-list__name {
    margin-bottom: 5px;
    font-size: 1em;
  }

  .footer-notice-sp-inquiry-list__unit {
    margin: 0 0 20px;
    font-size: .9em;
  }

  .inquiry-sp-list__name {
    margin-bottom: 5px;
    font-size: 1em;
    font-weight: bold;
  }

  .inquiry-sp-list__img {
    border: 2px solid #fff;
  }

  .footer-social__section {
    text-align: center;
    padding-top: 20px;
  }

  .footer-nav__section {
    padding: 20px 0;
  }


  /*
   * product lst & seach
   */
  
  .breadcrumb-list {
    padding: 0 20px 5px;
  }
  
  .freespace__section {
    padding: 0 20px;
  }

  .productlist-sort__section {
    padding: 0 20px;
  }
  
  .productlist-sort-list {
    float: left;
    margin: 0;
  }
  
  .productlist-sort-totalnumber {
    float: right;
    margin: 0;
    padding-right: 5px;
  }
  
  .productlist-sort-totalnumber span { 
    padding: 0 5px;
  }

  .subcategory-list {
    padding: 0 20px;
  }

  .pagenation-sp__section {
    text-align: center;
    padding: 20px 0;
  }

  .pagenation-sp-list {
    margin: 0;
  }

  .pagenation-sp-list__unit {
    display: inline;
    margin: 0 5px;
  }

  .pagenation-sp-info {
    padding: 1em 0 1.5em;
  }

  .pagenation-sp-info span {
    padding: 5px 0;
  }

  .btn-pn {
    padding: 10px 20px;
    border: 2px solid #333;
    -webkit-border-radius: 0;
    border-radius: 0;
    background-color: #333;
    color: #fff;
    font-size: 1em;
  }

  .btn-pn:hover,
  .btn-pn:focus {
    border: 2px solid #777;
    background-color: #777;
    color: #fff;
  }

  .btn-pn.disabled,
  .btn-pn[disabled] {
    border: 2px solid #ccc;
    color: #cecece;
    background-color: #fff;
  }

  /*
   * product
   */

  .product__section {
    padding: 0 20px;
  }
  .product-related-list__unit {
    display: block;
    margin-bottom: 5px;
  }

  .product-social-list__unit {
    display: block;
    margin-bottom: 5px;
  }

  .product-review {
    padding: 0 20px;
  }

  /*
   * sk & privacy
   */

  .notice-box {
    padding-top: 50px;
    margin-top: -10px
  }
  
  .notice-box:first-child {
    padding-top: 0;
    margin-top: 0;
  }

  .privacy-par {
    padding: 0 20px;
  }

  /*
   * common
   */
  
  .product-list {
    padding: 0 20px;
  }

  .notice-list {
    padding: 0 20px;
  }

  .paragraph-item {
    margin-bottom: 20px;
    padding: 0 20px;
  }

}

@media (max-width: 768px) {
  .container {
    width: auto;
  }

  .product-review-send-list {
    text-align: center;
  }

  .product-review-send-list__unit {
    display: inline-block;
  }

  .product-init-list {
    margin-bottom: 20px;
  }

  .product-order-btn-list__unit {
    padding: 0;
  }

  .mar-sm-t10 {
    margin-top: 10px;
  }
}

/*
 * icons
 */

.icon-b, .icon-w {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -0.15em;
}
.icon-user.icon-b, .icon-user.icon-w {
  background-position: -208px 0px;
}

.icon-lg-b, .icon-lg-w {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -0.15em;
}
.icon-b.icon-instagram, .icon-w.icon-instagram {
  background-position: -112px -192px;
}
.icon-lg-b.icon-instagram, .icon-lg-w.icon-instagram {
  background-position: -168px -288px;
}
.icon-lg-b.icon-user, .icon-lg-w.icon-user {
  background-position: -312px 0px;
}
.icon-lg-b.icon-adduser, .icon-lg-w.icon-adduser {
  background-position: -360px -0px;
}
.icon-lg-b.icon-login, .icon-lg-w.icon-login {
  background-position: -72px -120px;
}
.icon-lg-b.icon-logout, .icon-lg-w.icon-logout{
  background-position: -48px -120px;
}
.icon-lg-b.icon-mail, .icon-lg-w.icon-mail {
  background-position: -96px -0px;
}
.icon-lg-b.icon-cart, .icon-lg-w.icon-cart {
  background-position: -264px -96px;
}
.icon-lg-b.icon-box, .icon-lg-w.icon-box {
  background-position: -288px -96px;
}
.icon-lg-b.icon-phone, .icon-lg-w.icon-phone {
  background-position: -0px -0px;
}
.icon-lg-b.icon-clock, .icon-lg-w.icon-clock {
  background-position: -360px -48px;
}
.icon-lg-b.icon-bell, .icon-lg-w.icon-bell {
  background-position: -384px -24px;
}
.icon-lg-b.icon-c_twitter, .icon-lg-w.icon-c_twitter {
  background-position: -168px -264px;
}
.icon-lg-b.icon-c_facebook, .icon-lg-w.icon-c_facebook {
  background-position: -216px -264px;
}
.icon-lg-b.icon-c_google, .icon-lg-w.icon-c_google {
  background-position: -288px -264px;
}
.icon-lg-b.icon-c_pinterest, .icon-lg-w.icon-c_pinterest {
  background-position: -336px -264px;
}
.icon-lg-b.icon-chevron_right, .icon-lg-w.icon-chevron_right {
  background-position: -24px -216px;
}

.icon-lg-b.icon-trophy, .icon-lg-w.icon-trophy {
  background-position: -504px -24px;
}

.icon-lg-b.icon-search, .icon-lg-w.icon-search {
  background-position: -312px -24px;
}
.icon-lg-b.icon-circled_plus, .icon-lg-w.icon-circled_plus {
  background-position: -240px -120px;
}
.icon-lg-b.icon-circled_minus, .icon-lg-w.icon-circled_minus {
  background-position: -216px -120px;
}
.icon-lg-b.icon-home, .icon-lg-w.icon-home {
  background-position: -264px -24px;
}
.icon-lg-b.icon-chevron_up, .icon-lg-w.icon-chevron_up {
  background-position: -0px -216px;
}
.icon-lg-b.icon-list, .icon-lg-w.icon-list {
  background-position: -288px -144px;
}
.icon-lg-b.icon-triangle_up, .icon-lg-w.icon-triangle_up {
  background-position: -456px -192px;
}
.icon-lg-b.icon-triangle_down, .icon-lg-w.icon-triangle_down {
  background-position: -432px -192px;
}
.icon-lg-b.icon-circled_help, .icon-lg-w.icon-circled_help {
  background-position: -456px -120px;
}
.icon-lg-b.icon-phone {
  background-position: -0px -0px;
}

.icon-b {
  background-image: url(https://img.shop-pro.jp/tmpl_img/79/icon16_b.png);
}

.icon-w {
  background-image: url(https://img.shop-pro.jp/tmpl_img/79/icon16_w.png);
}

.icon-lg-b {
  background-image: url(https://img.shop-pro.jp/tmpl_img/79/icon24_b.png);
}

.icon-lg-w {
  background-image: url(https://img.shop-pro.jp/tmpl_img/79/icon24_w.png);
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2 / 1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .icon-b,
  .icon-w {
    -webkit-background-size: 368px 320px;
    background-size: 368px 320px;
  }

  .icon-lg-b,
  .icon-lg-w {
    -webkit-background-size: 552px 480px;
    background-size: 552px 480px;
  }

  .icon-b {
    background-image: url(https://img.shop-pro.jp/tmpl_img/79/icon16_2x_b.png);
  }

  .icon-w {
    background-image: url(https://img.shop-pro.jp/tmpl_img/79/icon16_2x_w.png);
  }

  .icon-lg-b {
    background-image: url(https://img.shop-pro.jp/tmpl_img/79/icon24_2x_b.png);
  }

  .icon-lg-w {
    background-image: url(https://img.shop-pro.jp/tmpl_img/79/icon24_2x_w.png);
  }
}
@media (max-width: 768px) {
  .icon-b {
    width: 24px;
    height: 24px;
    background-image: url(https://img.shop-pro.jp/tmpl_img/79/icon24_b.png);
  }
  .icon-b.icon-user {
    background-position: -312px 0px;
  }

  .icon-w {
    width: 24px;
    height: 24px;
    background-image: url(https://img.shop-pro.jp/tmpl_img/79/icon24_w.png);
  }
  .icon-w.icon-user {
    background-position: -312px 0px;
  }
}
@media only screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 768px) and (min--moz-device-pixel-ratio: 2), only screen and (max-width: 768px) and (-o-min-device-pixel-ratio: 2 / 1), only screen and (max-width: 768px) and (min-device-pixel-ratio: 2), only screen and (max-width: 768px) and (min-resolution: 192dpi), only screen and (max-width: 768px) and (min-resolution: 2dppx) {
  .icon-b,
  .icon-w {
    -webkit-background-size: 552px 480px;
    background-size: 552px 480px;
  }

  .icon-b {
    background-image: url(https://img.shop-pro.jp/tmpl_img/79/icon24_2x_b.png);
  }

  .icon-w {
    background-image: url(https://img.shop-pro.jp/tmpl_img/79/icon24_2x_w.png);
  }
}
.modal { position:fixed; display:none; z-index:9999; top:0; left:0; width:100vw; height:100vh; margin:0; padding:0; text-align:center;background:#fff; }
.modal p { margin-bottom:10px; }
.modal a { cursor:pointer; }

.product-list__fav-items svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  vertical-align: middle;
}

.hart_icon {background-position: -48px -24px !important;}
.eye_icon {background-position: -336px -48px !important;}
.cate_icon {background-position: 24px -146px !important;}
.category_box,.history__section{position: relative;}

.modal .wrap {max-width: calc(800px - 40px);width: calc(100% - 40px);padding: 20px;left: calc(50% - 400px);position: absolute;min-height: 800px;top: calc(50% - 400px);}
.modal .m_title {font-size: 18px;letter-spacing: 0.15em;font-weight: bold;}
.modal .site_info {	font-size: 16px; color: #666;}
.modal .caution {font-weight: bold;	font-size: 16px;margin-bottom: 2em;}
.modal .question {	font-size: 30px;color: #666;}
.yes_no a {	display: inline-block;	font-size: 30px;padding: 0.2em 3em;border: solid 2px #666;	margin: 0 1em;color: #666;}
.yes_no {margin-bottom: 2em !important;}
.modal .question {margin-bottom: 0.5em;}
.modal .kyoka {	font-size: 16px;font-weight: bold; margin-bottom: 2.5em;}
.modal .imgs {padding: 1em 0;}

@media (max-width: 800px) {
  	
	.modal .wrap {max-width: calc(100% - 30px);	left: 0 !important;width: calc(100% - 30px) !important; top:0;padding: 15px;}
	.modal .m_title {font-size: 2.5vw;letter-spacing: 0;}
	.modal .imgs {max-width: 60%;margin: 0 auto;}
	.modal .site_info {	font-size: 3vw;}
	.modal .kyoka{font-size: 2.5vw;}
    .modal .truste {font-size: 2vw;}
	.modal .site_about {font-size: 2vw;}
	.modal .copyright {	font-size: 2vw;}
	.modal .yes_no a {	padding: 0.2em 2em;	font-size: 5vw;}
	.modal .question{ font-size:6vw;}
}

.percent {display: inline-block;background: #c53d43;color: #fff;padding: 0 0.5em;}
.percent_box {text-align: left;	margin-bottom: 1em;	margin-top: -0.8em;}

.card-container{
    display:flex;
    border-bottom: 1px solid #C0C0C0 ;
    padding: 16px 16px;
}

.card-img{ 
  vertical-align: middle; 
}

.shopname__logo {
  margin: 10px 0 0;
  width:100%;
}

@media (min-width: 981px) {
  .visible-desktop.slide_area_pc {
	background: #fff;
	display: flex !important;
	width: 100%;
	aspect-ratio: 5/1;
	text-align: center;
	justify-content: center;
	align-items: center;
  }
  .shopname__logo{
    width:30%;
    margin:0;
    text-align:center;
  }
  .shopname__logo img {
	width: auto;
	max-height: 100px;
	aspect-ratio: 381/96;
	object-fit: contain;
	}
}

.groupline{
  border-bottom: 1px dashed #C9CACA;
  padding: 1px 0px 6px;
}
#expsuggestsdiv.active {
  position: fixed !important;
}

@media (max-width: 800px) {
  img.miniimage { display: none; }  /* miniを非表示 */
}
  
.twitter_right {height: 870px;	border: none;width: 240px;}
.twitter_left {	overflow: hidden;	border: none;	height: 500px;	width: 245px;	margin: 0 0;	display: block;}

.col-list {	list-style: none;margin: 0;	display: flex;	flex-wrap: wrap;}
.recommend__section .col-list li:nth-child(n+17),.seller__section .col-list li:nth-child(n+17){ display:none;}
.col-list .product-list__img {	aspect-ratio: 1/1;}
.col-list[data-max="4"] li {width: 25%;	padding: 0.5em 0.5em 2em;box-sizing: border-box;}
.col-list[data-max="5"] li {width: 20%;	padding: 0.5em 0.5em 2em;box-sizing: border-box;}
.col-list[data-max="6"] li {width: 16.6%;	padding: 0.5em 0.5em 2em;box-sizing: border-box;}
@media (max-width: 980px) {
  .col-list[data-mid="3"] li {width: 33.3%;}
  .twitter_left{margin:0 auto;}
}
@media (max-width: 768px) {
	.col-list[data-min="2"] li {width: 50%;}
}
.s_cart {
	position: relative;
}
.cart_count_sm {
	position: absolute;
	top: 2px;
	right: calc(50% - 30px);
	background: #cc121a;
	color: #fff;
	display: flex;
	width: 2em;
	height: 2em;
	justify-content: center;
	align-items: center;
	border-radius: 1em;
  font-size: 8px;
}
.cart_count_sm:empty {
	display: none;
}
.footer-notice__section.mb0 {
	padding-bottom: 0;
}

.footer-table {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  justify-content: space-between;
  gap: 10px;
  max-width:1440px;
  margin-inline:auto;
  margin-bottom: 24px;
}
.footer-tel {
  text-align: center;
}
.footer-tel-title {
  font-size: min(16px,1rem);
  font-weight: 400;
  color: initial;
  background: none;
}
.footer-tel__link {
  font-size: 32px;
  color: #00A73C;
  font-weight: 700;
  vertical-align: middle;
  text-decoration: underline;
  text-underline-offset: .2em;
}

.footer-tel p:last-child {
  margin: 16px 0;
}
.new_mark_img1 {
	width: 32px !important;
	height: 11px !important;
}
*/
/* 注文の流れモバイル */
.flamect{
margin: 2em auto;
padding: 1em;
color: #606060;
background-color: #FFCEC2;
border: 0px;
border-radius: 10px;
}

.flowct02 {
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  gap: 60px;
}

.flowct02 > li {
  list-style-type: none;
  width: 100%;
  max-width: 200px;
  display: flex;
  background-color: #fff;
  border-radius: 10px;
}

.flowct02 > li dl {
  padding: 15px 15px;
  margin: 0;
  border: 0px solid #E26B5D;
  position: relative;
}

.flowct02 > li dl dt {
  font-size: 1.1em;
  font-weight: 600;
  color: #E26B5D;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  margin-bottom: 10px;
  text-align: center;
}

.flowct02 > li dl dd {
  margin-left: 0;
}

@media(max-width: 767px){
  .flowct02 {
    gap: 20px;
  }
  .flowct02 > li {
    max-width: unset;
    display: block;
  }
  .flowct02 > li:not(:first-child) dl::before {
    display: none;
  }
}

/* 商品オプション （クイックカートモーダルでも使用する）*/
.try-option {
	display: flex;
	flex-wrap: wrap;
	column-gap: 8px;
	row-gap: 8px;
	margin-bottom: clamp(24px,4vw,40px);
	box-sizing: border-box;
  --theme-color:#339900;
}
.try-option__title {
	font-size:clamp(16px,2vw,18px);
	padding: 4px 0;
	border-bottom: 1px solid var(--theme-color);
}
.try-option__input{
  display:none
}
@media(min-width:981px){
 .try-option__input {
	width: 1px;
	height: 1px;
	position: absolute;
	clip: rect(0 0 0 0);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	overflow: hidden;
	display: block;
 }
}
.try-option__label {
  max-width:calc(50% - 4px);
	display: flex;
	flex-direction: column;
	align-items: center;
  row-gap: 4px;
	font-size: 15px;
	padding: clamp(4px,1vw,8px);
  background:#fffffa;
	box-shadow: inset 0 0 0 1px #aaa;
	border-radius: clamp(4px,1vw,8px);
  box-sizing:border-box;
  cursor:pointer
}
.try-option__input:checked + label {
	color: #fff;
	background-color: var(--theme-color);
  pointer-events: none;
}
.try-option__input:focus + label {
	box-shadow: 0 0 0 2px #505050;
}
.try-option__input[disabled] + label {
  min-width:96px;
	background: #bbb;
	cursor: initial;
	order: 99;
}
.try-option__price {
	font-size: .8em;
}
.try-option__input[disabled] + label .try-option__price {
  display: none;
}
.try-option__input[disabled] + label::after {
  content: "在庫なし";
  font-size: .8em;
}
/* 商品リストのクイックカート*/
.cart-dialog{
  width:100vw;
  height:100vh;
  max-width:100vw;
  max-height:100vh;
  margin:0;
  padding:0;
  background:none;
  -ms-scroll-chaining:none;
  overscroll-behavior: contain;
}
.cart-dialog::backdrop {
	background: rgb(0 0 0 /.3);
}
.cart-dialog-inner {
	display: flex;
	justify-content: center;
	height: calc(100vh + .5px);
	padding: var(--contentGap);
	overflow-y: scroll;
	position: absolute;
	inset: clamp(8px,2vw,24px);
    scrollbar-width:none;
}
.cart-dialog-body {
	width: clamp(300px,90%,840px);
	padding: clamp(32px,8vw,64px) clamp(12px,3vw,40px);
	background: #f5f5f5;
  position: relative;
	overflow-y: scroll;
  scrollbar-width:none;
}
.cart-dialog__title{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: clamp(20px,3vw,26px);
  color:inherit;
  margin-bottom:16px;
  padding:clamp(12px,2vw,30px) 0;
  background:none;
  line-height:1.4;
}
.cart-dialog__product {
	text-align: center;
}
@media(min-width:768px){
  .cart-dialog__product {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1em;
    align-items: center;
    width: min(700px,90%);
    margin-inline:auto
  }
  .cart-dialog__image{
    grid-row: 1/3;
  }
  .cart-dialog__name{
    text-align:left;
  }
}
.cart-dialog__image{
  aspect-ratio:1/1;
  object-fit:contain;
}
.cart-dialog__name{
  font-size: clamp(14px,2vw,16px);
  line-height: 1.4;
}
.cart-dialog__total-price {
 font-size: 16px;
 background: #fff;
 padding: 16px 0;
 margin: 24px 12px;
 box-shadow: 0 0 4px #ddd;
}
.cart-dialog__total-price span {
  font-weight: 600;
  margin-inline: 4px;
}

.cart-dialog__freeship {
  font-size: 13px;
  max-width: 400px;
  margin: 24px auto 40px;
  border: 1px solid #aaa;
  padding: 12px 8px;
  text-align: center;
	color: #333;
}
.cart-dialog__freeship span {
  font-weight: 700;
}
.cart-dialog__freeship > div {
  grid-column: 1/3;
  justify-self: center;
  font-weight: 700;
}
.cart-dialog__btn:is(.cart_view_with_async,.cart-dialog-addcart) {
	display: block;
	width: clamp(240px,40vw,400px);
	font-size: 17px;
	font-weight: 600;
	color: #fff;
	margin: 20px auto;
	padding: 15px 0;
	background: #2169f3;
	border: none;
	border-radius: 4px;
}
.cart-dialog__btn.cart-dialog-close {
	width: 100%;
	font-size: 15px;
	color: #2169f3;
	background: none;
	border: none;
	margin-top: 20px;
}
.cart-dialog__form .try-option {
	justify-content: center;
	text-align: center;
}
.cart-dialog__form [name="product_num"]{
  display:none
}
/**
* 商品が届くまでの流れ
* */
.flow-container {
  --flow-color:#E26B5D;
  margin: 2em 0;
  padding: 40px clamp(0px,1vw - 10px,20px);
  background-color: #FFCEC2;
  border: 0px;
  border-radius: 10px;
}
.flow-title {
  width: max(320px,40%);
	color:#fff;
  padding: 5px;
  margin: 0 auto 40px;
  border-radius: 15px;
  background-color: var(--flow-color);
  text-align: center;
}
.flow_delivery {
	max-width:1280px;
  list-style: none;
  margin: 0 auto;
  padding: 0 clamp(8px,1vw,16px);
}
.flow_delivery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 98%;
  margin-inline:auto;
  margin-bottom:40px;
  padding: 24px 8px;
  background: #fff;
  border-radius: 8px;
  position: relative;
  box-sizing: border-box;
}
.flow_delivery-item:not(:first-child)::before {
	content: "";
	position: absolute;
	top: -32px;
	left: calc(50% - 12px);
	display: block;
	width: 16px;
	height: 16px;
	border-top: 4px solid var(--flow-color);
	border-right: 4px solid var(--flow-color);
	rotate: 135deg;
}

@media(min-width:981px){
  .flow_delivery {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 16px;
  }
  .flow_delivery-item {
    max-width: 220px;
  }
  .flow_delivery-item:not(:first-child)::before {
    top: 50%;
    left:clamp(-36px, 1vw * -1 - 15px,-20px);
    rotate: 45deg;
  }
}

.flow_delivery__name {
  font-size:clamp(16px,1vw + 3px,19px);
  font-weight: 600;
  color: var(--flow-color);
}
.flow_delivery-item :is(a, img) {
  display: block;
  margin-inline: auto;
  text-align: center;
}
.flow_delivery-item a {
  margin-top: 1em;
}
.flow_delivery-item :not(a) + a {
  margin-top: 2em;
}
.flow_delivery-item p{
  font-size: clamp(12px,1vw,15px);
  color: #606060;
}
/**
* フッターのインフォ用
* */

.footer-info{
display:flex;
  justify-content: center;}

.footer-box {
    margin: 2em 0.5em;
    background: #FFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
    width:350px;
    height:540px;
}
.footer-box .footer-title {
    font-size: 1.2em;
    background: #5fc2f5;
    padding: 4px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.footer-box p {
    font-size: 0.9em;
    padding: 3px 20px;
    margin: 0;
}
.footer-box b {
    padding:0 1em;/*内側余白*/
	border-radius:10px;/*丸みを調整*/
	background-color:#898989;
    color: #FFF;
}

.footer-box img {
  height:50px;
}

/**
* フッタースマホ用
* */

.footer-boxsmh {
    margin: 2em 0em;
    background: #FFF;
    height:500px;
    color: #171717;
}
.footer-boxsmh .footer-titlesmh {
    font-size: 1.2em;
    background: #5fc2f5;
    padding: 4px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.footer-boxsmh p {
    font-size: 0.9em;
    padding: 3px 20px;
    margin: 0;
}
.footer-boxsmh b {
    padding:0 1em;/*内側余白*/
	border-radius:10px;/*丸みを調整*/
	background-color:#898989;
    color: #FFF;
}

.footer-boxsmh img {
  height:50px;
}

.img-sp {
    display: none;
}

@media screen and (max-width:560px) {
    .img-pc {
        display: none;
    }

    .img-sp {
        display: block;
    }
}