@charset "euc-jp";

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background-color: #fff;
  background-image: url(https://img.shop-pro.jp/tmpl_img/73/bg.gif);
  color: #464e54;
  font-family: Helvetica,
  Arial,
  "游ゴシック Medium",
  "Yu Gothic Medium",
  "游ゴシック体",
  "YuGothic",
  "ヒラギノ角ゴ ProN W3",
  "Hiragino Kaku Gothic ProN",
  "メイリオ",
  "Meiryo",
  "verdana",
  sans-serif;
  font-size: 0.9em;
}

body .pure-g [class*="pure-u"] {
  font-family: Helvetica, Arial, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
}

/* ページ読み込み時のフェード */
body {
  -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
  animation: fadeIn 1.5s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}

a {
  color: #464e54;
  transition: .3s;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.05);
}

a:hover,
a:focus {
  color: #5e5e5e;
  opacity: 0.75;
  text-decoration: none;
}

h2 {
  font-size: 1.5em;
  font-weight: normal;
  margin: 1em 0;
}

h3 {
  font-weight: normal;
}

/* プルダウンのデザイン変更 */
.search_select,
.search_box {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.search_form::-ms-expand {
  display: none;
}

.search_form {
  display: block;
  position: relative;
}

.search_form:after {
  position: absolute;
  display: block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f078';
  top: 2px;
  right: 4px;
  color: #999;
  pointer-events: none;  /* クリック出来るよう */
  padding: 3px 6px 2px;
  background-color: #fff;
}


/* 各ページ共通 */
.font-b {
  font-weight: bold;
}

.txt-c {
  text-align: center;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.header-lists.container {
  padding: 5px 0;
}

/* ヘッダー */
#header {
  background-color: #fff;
  width: 100%;
  position: absolute;  /*カクつき防止にこれがいる*/
  top: 0;
  left: 0;
  transition: none;
  z-index: 1001;
}

#header.standby {
  position: fixed;
  transform: translateY(-100%);
}

#header.fixed {
  border-bottom: 1px solid #eee;
  transform: translateY(0);
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.07);
}

/* ヘッダーアイコン */
.header-icon > div {
  text-align: center;
}

.header-icon-text {
  font-size: 10px;
}

/* ヘッダー下のメニューリスト */
.header-lists-wrap {
  background-color: #f4f4f4;
  margin-top: 80px;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.07);
  position: relative;
  z-index: 99;
}

.header-lists-wrap .header-lists {
  display: flex;
  align-items: center;
  margin: 0 auto;
  text-align: center;
  list-style: none;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.header-list {
  flex-grow: 1;
  border-left: 1px solid #ddd;
}

.header-list.hl-home,
.header-list.hl-blog {
  display: none;
}

.header-list:last-of-type {
  border-right: 1px solid #ddd;
}

.header-list a {
  display: inline-block;
  padding: 5px 0;
  width: 100%;
}

.header-nav {
  display: none;
}

.header-main {
  position: relative;
}

.header-logo {
  flex-grow: 0;
  margin-right: 0;
  color: #292929;
  text-decoration: none;
}

.header-logo h1 {
  margin: 0;
}

.header-logo img {
  max-width: 175px;  
  max-height: 50px;
}

header .flex-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 80px;
}

header.fixed .flex-inner {
  height: 60px;
}

.header-icon-menu {
  display: block;
}

/* ヘッダーの検索窓 */
#search-icon:hover {
  cursor: pointer;
  opacity: 0.75;
}

#search-form {
  display: none;
  padding-bottom: 1.5em;
  text-align: right;
}

#search-form form {
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
}

#search-form input[type="text"] {
  border: 1px solid #ccc;
  border-radius: 0;
  -webkit-appearance: none;
  height: 2em;
  width: 80%;
}

#search-form .pure-button-black {
  background-color: #333;
}

#search-form .pure-button-black i {
  color: #fff;
}

#search-form .pure-button-gray {
  background-color: #eee;
}

/* My Story、一覧へ、タグ */
#top .button-white {
  display: inline-block;
  padding: .5em 1em;
  color: #333;
  text-decoration: none;
  border-radius: 2px;
  background-color: #fff;
  border: 1px solid #ccc;
}

/* ヘッダーアイコン */
.header-icon {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: flex-end;
}

.header-icon i {
  font-size: 25px;
}

.header-icon-account,
.header-icon-fav,
.header-icon-cart,
.header-icon-search,
.header-icon-menu {
  position: relative;
  height: 54px;
  text-align: center;
}

.header-icon-account a,
.header-icon-fav a,
.header-icon-cart a,
.header-icon-search span,
.header-icon-menu a {
  display: block;
  padding: 10px 0 10px 10px;
}

.header-icon-menu a {
  padding-right: 0;
}

.header-icon div {
    padding-top: 5px !important;
}

.header-icon-cart-label {
  background-color: #f60;
  color: #fff;
  position: absolute;
  top: 3px;
  height: 14px;
  width: 14px;
  font-size: 10px;
  line-height: 14px;
  text-align: center;
  right: 5px;
  border-radius: 50%;
}

.header-icon-fav,
.header-icon-search {
  display: none;
}


/* スライドショー */
#slider {
  opacity: 0;
  transition: opacity .3s linear;
}

#slider.slick-initialized {
  opacity: 1;
}

#slider .slick-slide a:hover {
  opacity: 1;
}

#slider.slick-slider {
  margin-bottom: 0;
  /* 画像が小さい場合*/
  /*margin: 0 auto;
  max-width: 1920px;*/
  background-color: #fff;
}

/* 画像中央を切り抜く */
#slider .slick-slide img {
  width: calc(100%);   /* height: calc(100vh - 110px); → width: calc(100%); アスペクト比固定 */
  object-fit: cover;  /* IE11では使えないが、スマホ用なので問題ない */
}

/* 画像の左上を切り抜く（場合に応じて、上の代わりにこちらを使う）
#slider .slick-slide img {
  max-width: initial;
  height: calc(100vh - 110px);
}
*/

/* スライド端画像の網掛け */
#slider .slick-slide.slick-center {
  opacity: 1;
  transition: .3s;
}

#slider .slick-slide:not(.slick-center) {
  transition: .3s;
}

#slider .slick-slide:not(.slick-center) img {
  transition: .3s;
}

/* 左右の矢印 */
#slider .slick-prev,
#slider .slick-next {
  margin-top: 0;
  width: 40px;
  height: 40px;
  z-index: 1000;  
}

#slider .slick-prev:hover,
#slider .slick-next:hover {
  opacity: 0.75;
}

#slider .slick-prev::before,
#slider .slick-next::before {
  opacity: 1;
}

/* スライドショーのドットのサイズ */
#slider .slick-dots li button::before {
  font-size: 12px;
  content: '●';
}

#slider .slick-dots {
  margin-left: 0;
  bottom: 0;
}

#slider .slick-slide {
  position: relative;
}

/* slick キャプション */
#slider .slick-slide .caption {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  color: #fff;
  font-family: roboto;
  font-size: 1em;
  width: 100%;
  height: auto;
  display: block;
  max-width: 1170px;
  text-align: center;
  transition: .3s;
  filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.3));
}

/* サイドメニュー */
.side-menu {
  margin-top: 30px;
}

.heading {
  line-height: 2;
  border-bottom: 1px dashed #999;
  margin-bottom: 0;
}

.side_category {
  margin-top: 30px;
}

/* サイドの検索ボタン */
.btn_search {
  background: #fff;
  border: none;
  position: absolute;
  right: 0;
  bottom: -1px;
  padding: 6px;
  margin: 2px;
}

.search_form {
  position: relative;
}

.search_select {
  border-radius: 0;
}

.search_box {
  border: 1px solid #ccc;
  border-radius: 0;
  height: 30px;
  width: 100%;
  margin-top: 5px;
}

/* 幅拡張 */
.spread-width {
  list-style: none;
  margin-left: -7.5px;
  margin-right: -7.5px;
}

/* お知らせ */
.info {
  display: inline-block;
  margin-bottom: 50px;
}

.info li {
  border-bottom: 1px dashed #ccc;
}

/* SNSアイコン */
.sns-icon {
  margin: 0 0.5em;
}

.sns-icon li {
  font-size: 1.5em;
  display: inline;
  margin-left: 0.5em;
}

.footer-content .footer-sns ul li a::before {
  content: "";
}

.footer-qlink {
  word-break: keep-all;
}

.footer-sns {
  font-size: 20px;
  margin: 30px 0;
}

.footer-sns li {
  display: inline-block;
}


/* フッター */
footer {
  background-color: #f4f4f4;
  /*color: #fff;*/
  font-size: 0.9em;
  line-height: 2.0;
  margin-top: 60px;
}

footer h2 {
  font-size: 1.2em;
  border-left: 5px solid #999;
  padding-left: 0.5em;
  line-height: 1;
}

footer .footer-contents {
  flex-direction: column-reverse;
  padding-top: 50px;
}

footer ul {
  list-style: none;
  margin-left: 0;
}

.footer_nav_shopinfo {
  margin-bottom: 4em;
}

.footer-content {
  padding-right: 4em;
}

.footer-content-wrapper {
  padding-right: 10%;
}

.footer-content ul.footer-links li a::before,
.footer-content ul.footer-freepages li a::before {
  content: " - ";
}

.footer-shop {
  margin-top: 10px;
  margin-bottom: 0;
}

.footer-shop-pic {
  margin-bottom: 0.5em;
}

.footer-shop h2 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

/* カレンダー */
.no-memo {
  margin-bottom: 30px;
}

.p-calendar__note {
  margin-bottom: 30px;
}

.p-calendar__table {
  overflow: hidden;
}

small.footer-copyright {
  display: block;
  font-size: 1em;
  text-align: center;
}

footer table.tbl_calendar {
  text-align: center;
  width: 90%; /* 75% → 90% スマホのカレンダーサイズ */
  margin: 0 4% 1em 0;
}

/* ページトップへ戻る */
.pagetop {
  position: fixed;
  bottom: 50px;
  right: 15px;
}

.pagetop i {
  /*opacity: 0.2;*/
  color: #999;
  font-size: 50px;
}

/* BLOG一覧（トップ、f2）*/
.ts-freepage .product-item-card {
  text-align: left;
}

#cate {
  background-color: #ccc;
  color: #fff;
  font-size: 10px;
  padding: 0 5px;
  margin: 0 8px 5px 0;
  display: inline-block;
}

#date {
  color: #999;
  font-size: 12px;
  margin-bottom: 4px;
  display: inline-block;
}

.ts-freepage .pic-wrapper {
  margin-bottom: 10px;
}

.ts-freepage .pic-wrapper a {
  border: 1px solid #eee;
}

/* パンくず（商品一覧、商品詳細） */
.breadcrumbs {
  font-size: 12px;
  list-style: none;
  margin: 5px 0;
  padding: 5px 0 3px;
  line-height: 1;
}

.breadcrumbs li {
  display: inline-block;
}

.breadcrumbs li + li::before {
  border-right: 1px solid #999;
  border-top: 1px solid #999;
  content: "";
  display: inline-block;
  height: 5px;
  margin: -1px 8px 0 2px;
  padding: 0;
  transform: rotate(45deg);
  vertical-align: middle;
  width: 5px;
}

/* 商品カード（トップ、一覧） */
.product-item-card {
  margin-bottom: 30px;
}

.product-item-card a {
  display: block;
  position: relative;
}

.product-item-card img {
  display: block;
  width: 100%;
}

/*MONO風にするときはコメントアウト
.product-item-card:hover img {
  transform: scale(1.1);
  opacity: 0.75;
}
*/
.pic-wrapper {
  overflow: hidden;
}

.pic-name {
  margin: 10px 0 6px;
}

.pic-price a {
  font-size: 14px;
  color: #444;
}

/* ソート（商品一覧、商品検索） */
.sort {
  font-size: 12px;
  text-align: right;
  padding: 10px 0;
}

.sort a {
  color: #ccc;
}

/* お気に入り、一覧・検索商品なし */
.noitem-wrapper {
  height: 300px;
  position: relative;
}

.ele-c {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ページャー（商品一覧、商品検索） */
.pagerlist {
  text-align: center;
  margin: 0 auto;
}

.pagerlist ul {
  text-align: center;
  margin: 0;
  list-style: none;
  overflow: hidden;
}

.pagerlist li {
  text-align: center;
  line-height: 26px;
  display: inline-block;
}

.pagerlist li a,
.pagerlist li span {
  display: block;
  float: left;
  min-width: 26px;
  height: 26px;
  box-sizing: border-box;
  padding: 0 .5em;
}

.pagerlist li a i,
.pagerlist li span i {
  margin-top: 7px;
  color: #666;
}

.pagerlist li a:hover i {
  color: #fff;
}

.pagerlist li span {
  background-color: #fff;
  text-decoration: underline;
}

.pagerlist li a {
  background-color: #fff;
  color: #333;
  text-decoration: none;
  transition: .3s;
}

.pagerlist li a:hover {
  background-color: #333;
  color: #fff;
}

.pagerlist div {
  margin: 5px 0;
}

.pagerlist li span.border-n {
  border: none;
  color: #666;
  text-decoration: none;
}

.pagerlist_sp {
  text-align: center;
}

.pagerlist_sp_btm {
  margin: -20px 0 60px;
}

.pagerlist_sp li {
  display: inline;
  margin: 0 5px;
}

.pagerlist_pos {
  margin: 30px 0 1em;
}

.pagerlist_sp .pure-button {
  padding: 1em 1.5em; 
}

.pure-button.disabled {
  background-image: none;
  opacity: 0.5;
  cursor: default;
}

/* 商品カード（トップ、商品一覧、商品検索、お気に入り） */
.product-item-card {
  padding: 0 7.5px;
  text-align: center;
  position: relative;
}

.product-item-card > a {
  /*padding: 5%枠の有無
background:#f9f9f9;*/
  display: block;
}


/* 売れ筋（トップ、詳細） */
#seller, #recommend, #history {
  margin-left: -7.5px;
  margin-right: -5px;  
}

/* はずすと中央揃え */
#seller .slick-track,
#recommend .slick-track,
#history .slick-track {
  margin-left: initial; 
  margin-right: initial; 
}

#seller .slick-prev,
#seller .slick-next,
#recommend .slick-prev,
#recommend .slick-next,
#history .slick-prev,
#history .slick-next {
  margin-top: 0;
  height: 50px;
  width: 40px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  z-index: 1000;
}

#seller .slick-prev,
#recommend .slick-prev,
#history .slick-prev {
  left: 0;
}

#seller .slick-next,
#recommend .slick-next,
#history .slick-next {
  right: 0;
}

#seller .slick-prev:hover,
#seller .slick-next:hover,
#recommend .slick-prev:hover,
#recommend .slick-next:hover,
#history .slick-prev:hover,
#history .slick-next:hover {
  opacity: 0.75;
}

#seller .product-item-card,
#recommend .product-item-card,
#history .product-item-card {
  margin-bottom: 25px;
}

#seller .fav-item,
#recommend .fav-item,
#history .fav-item {
  right: 6px;
  top: 4px;
}

#seller .seller-rank-num,
#history .seller-rank-num {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  padding: 5px 8px;
  line-height: 1;
  background-color: #666;
  opacity: 0.5;
}

/* 最近見た商品（トップ、詳細） */
.history-items {
  background-color: #eee;
  padding: 30px 0;
}

.history-items h2 {
  margin-top: 0;
}

.history-items .product-item-card {
  margin-bottom: 0;
}

/* お気に入り（トップ、一覧） */
.fav-item {
  position: absolute;
  right: 10px;
  top: 5px;
  width: 30px;
}

.fav-item:hover {
  animation: pulse 2s linear infinite;
}

.fav-item button {
  display: block;
  width: 100%;
  padding: 0;
  cursor: pointer;
  transition: .2s;
  text-align: center;
  color: rgba(68, 68, 68, 0.4);
  border: 0;
  outline: none;
  background: transparent;
}

.fav-item svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.fav-item .is-added {
  color: rgba(255, 160, 160, 1);
}

/* お気に入りボタンのアニメーション */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
  }

  50% {
    -webkit-transform: scale(.8);
    transform: scale(.8)
  }

  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
  }

  50% {
    -webkit-transform: scale(.8);
    transform: scale(.8)
  }

  100% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
  }
}


/* スマホ用ドロワーメニュー */
.drawer-close {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.drawer-close {
  padding: 20px 25px 20px 15px;
  text-align: right;
}

.drawer-close a {
  color: #212121;
}

.drawer-close img {
  max-height: 50px;
}

.drawer i.fa-times {
  width: 14px;
}

.drawer #search-form {
  display: block;
  border-bottom: 1px solid #eee;
  padding: 21px 25px 21px 20px;
  text-align: left;
  background-color: #eee;
}

.drawer-account {
  display: none;
}

.drawer-sns {
  padding: 20px 25px;
  background-color: #333;
  color: #fff;
}

.drawer-sns ul {
  list-style: none;
  margin-left: 0;
  display: flex;
  font-size: 1.5em;
}

.drawer-sns a {
  color: #fff;
}

.drawer-sns a:hover,
.drawer-sns a:focus {
  color: #fff;
}

.drawer.open {
  /*right: 0;*/
  transform: translateX(-100%);
}

.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 9999;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /*iOS時に不具合あり*/
  width: 100%;
  height: 100%;
  background: #fff;
  color: #212121;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.drawer-item {
  border-bottom: 1px solid #eee;
}

.drawer-name {
  font-size: 100%;
  font-weight: normal;
  display: table;
  line-height: 1;
  clear: both;
  width: 100%;
  margin: 0;
  padding: 20px 25px 15px;
  color: #212121;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.dn-text {
  width: 70%;
  vertical-align: middle;
}

.dn-icon--right {
  width: 10%;
  display: table-cell;
  vertical-align: middle;
  text-align: right;
  padding-right: 11px;
}

.drawer-accordion ul {
  margin: 0;
  padding: 15px 0;
  list-style: none;
}

.linklist-item {
  border-bottom: solid 1px #e0e0e0;
  list-style: none;
}

.drawer-accordion .linklist-item {
  border: none;
}

.linklist-item a {
  display: table;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  padding: 20px;
  color: #212121;
}

.drawer-accordion .linklist-item a {
  padding: 10px 30px;
}

.li-text {
  width: 80%;
  height: auto;
}

.linklist-item a span {
  display: table-cell;
  vertical-align: middle;
}

.u-ac--active {
  border-bottom: 1px solid #e0e0e0;
}

/* カテゴリーのアコーディオン開閉 */
.menu-list div {
  cursor: pointer;
}

.menu__section {
  margin: 0 0 30px;
  text-align: center;
}

.menu-list {
  list-style-type: none;
}

.menu-list__link {
  padding: 15px 5px;
  /*height: 100%;*/
  width: 100%;
  display: flex;
  align-items: center;
  table-layout: fixed;
  border-bottom: 1px dashed #999;
  word-break: normal;
}

.menu-list__img {
  vertical-align: middle;
  padding-right: 5px;
  flex-shrink: 0;
}

.menu-list__text {
  padding-right: 5px;
  /*height: 100%;*/
  vertical-align: middle;
  color: #000;
  flex-grow: 1;
}

.menu-list__icon {
  /*height: 100%;*/
  vertical-align: middle;
  text-align: right;
  font-size: 10px;
  color: #999;
}

.subcategory-list {
  /* padding: 5px 0; */
  display: none;
  background: #f4f4f4;
}

.menu-list .inner {
  padding: 5px 0;
  display: none;
  background: #f5f5f5;
}

/* カラーミーキットの上書き */
ul {
  margin: 0;
  list-style: none;
}

li.hover {
  border-bottom: 1px solid #f60;
}

.table-bordered {
  border-radius: 0;
}

.table-bordered thead:first-child tr:first-child > th:first-child,
.table-bordered tbody:first-child tr:first-child > td:first-child,
.table-bordered tbody:first-child tr:first-child > th:first-child {
  -webkit-border-top-left-radius: 0;
  -moz-border-radius-topleft: 0;
  border-top-left-radius: 0;
}

.table-bordered thead:last-child tr:last-child > th:first-child,
.table-bordered tbody:last-child tr:last-child > td:first-child,
.table-bordered tbody:last-child tr:last-child > th:first-child,
.table-bordered tfoot:last-child tr:last-child > td:first-child,
.table-bordered tfoot:last-child tr:last-child > th:first-child {
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-left-radius: 0;
}

/****************************/
/* IE10以上                 */
/* SP時のスライド全画面     */
/****************************/
@media all and (-ms-high-contrast: none) {

  /* slick object-fitが動作しないため */
  #slider .slick-slide img {
    height: auto;
  }

}


/** sm **/
@media (min-width: 568px) {
  .header-logo img {
    max-width: none;
  }
  
  .header-icon-account,
  .header-icon-fav,
  .header-icon-cart,
  .header-icon-search,
  .header-icon-menu {
    margin-left: 0;
  }

  .header-icon-fav,
  .header-icon-search {
    display: block;
  }

  #slider .slick-slide img {
    max-width: 100%;
    height: auto;
  }
}

/** md **/
@media (min-width: 768px) {

  .header-icon-account a,
  .header-icon-fav a,
  .header-icon-cart a,
  .header-icon-search span,
  .header-icon-menu a {
    padding: 10px;
  }

  .header-icon-cart-label {
    right: 15px;
  }

  .header-lists-wrap .header-lists {
    border-top: none;
    border-bottom: none;
  }

  .header-list {
    background-color: transparent;
  }

  .header-list.hl-home,
  .header-list.hl-blog {
    display: block;
  }

  #slider .slick-prev {
    left: 0;
  }

  #slider .slick-next {
    right: 0;
  }
  
  #slider .slick-prev {
    left: calc(50% - 384px + 35px);
  }

  #slider .slick-next {
    right: calc(50% - 384px + 35px);
  }

  main {
    margin-top: 30px;
    padding-left: 30px;
  }

  .footer-above {
    padding-left: 30px;
  }

  .header-nav {
    display: block;
  }

  .container {
    padding: 0 35px;
  }

  .header-lists.container {
    padding: 5px 35px;
  }

  .header-logo {
    margin-right: 32px;
  }

  .header-icon i {
    font-size: 20px;
  }

  h2 {
    font-size: 1.5em;
  }

  .header-toolbar-right {
    display: table-cell;
  }

  #search-form form {
    display: block;
  }

  #search-form button {
    margin-right: 2em;
  }

  #search-form input[type="text"] {
    width: 80%;
  }

  footer table.tbl_calendar {
    float: left;
    /*    width: 46%;    */
  }

  .isTablet {
    display: inherit !important;
  }

  .header-nav {
    flex-basis: 338px;
    flex-grow: 1;
    margin-left: 0;
    order: unset;
  }

  #search-form input[type="text"] {
    width: 20em;
  }

  footer .footer-contents {
    flex-direction: row;
  }

  .footer-shop {
    margin-top: 0;
  }

  footer table.tbl_calendar {
    width: 100%;
  }

  .footer-qlink {
    text-align: center;
  }
}

@media (min-width: 900px) {
  #slider .slick-prev {
    left: calc(50% - 450px + 35px);
  }

  #slider .slick-next {
    right: calc(50% - 450px + 35px);
  }
}
/** lg **/
@media (min-width: 1024px) {
  #slider .slick-prev {
    left: calc(50% - 510px + 35px);
  }

  #slider .slick-next {
    right: calc(50% - 510px + 35px);
  }
}

/** xl **/
@media (min-width: 1280px) {
  .container {
    width: 1200px;
    padding: 0 35px;
  }
  
   #slider .slick-prev {
    left: calc(50% - 565px);
  }

  #slider .slick-next {
    right: calc(50% - 565px);
  }
}

/** タイトル **/
.catch {
  display: flex;
  align-items: center; /* 垂直中心 */
  justify-content: center; /* 水平中心 */
  line-height: 1.1em;
}
.catch:before, .catch:after {
  border-top: 2px solid;
  content: "";
  width: 8%; /* 線の長さ */
}
.catch:before {
  margin-right: 1em; /* 文字の右隣 */
}
.catch:after {
  margin-left: 1em; /* 文字の左隣 */
}

/* 動画 */
.movie-wrap {
     position: relative;
     padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
     height: 0;
     overflow: hidden;
}
.movie-wrap iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
}

/* ショッピングカート */
.cart_input {
    height: 100px;              /* 高さ指定 */
    position: relative;         /* 位置指定の基準点にする */
	margin-bottom: 10px;          	/* 位置指定 */
}
.cart_input2 {
  	position: static;          	/* 位置指定 */
	margin-top: 8px;          	/* 位置指定 */
   	width:auto;             	/* 幅指定 */
   	display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}
.cartjs_cart_in {
    margin-bottom: 0px!important; 
}
.cartjs_product_table {
  display: inline;
  width: 100%;
  text-align: cente !important;
  vertical-align: middle !important;
  font-weight: normal !important;
}
.cartjs_product_num {
  text-align: center;
  vertical-align: top;
}
.cartjs_option1 {
  text-align: center;
  vertical-align: top;
}
.cartjs_option2 {
  text-align: center;
  vertical-align: top;
}
.cartjs_product_input_txt {
    width: 100%;
  	height: 25px;
  	font-size: 14px;
  	text-align: center;
  vertical-align: top;
  	border:0;
	padding:0px;
	font-family:Arial, sans-serif;
	color:#333333;
	border:solid 1px #333333;
	margin:0px 0px 0px 0px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
  margin-bottom: 10px;
}
select[name="option1"]{
    width: 100%;
  	height: 25px;
  	font-size: 14px;
  	border:0;
	padding:0px;
	font-family:Arial, sans-serif;
	color:#333333;
	border:solid 1px #333333;
	margin:0px 0px 0px 0px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
  margin-bottom: 10px;
}
select[name="option2"]{
    width: 100%;
  	height: 25px;
  	font-size: 14px;
  	border:0;
	padding:0px;
	font-family:Arial, sans-serif;
	color:#333333;
	border:solid 1px #333333;
	margin:0px 0px 0px 0px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
  margin-bottom: 10px;
}
input[type=submit] {
  color: #333333;
  background: #F0F0F0;
  width: 100%;
  height: 30px;
  border-style: solid;
  border-width: 1px;
  border-color: #333333;
  cursor: pointer;
  font-size: 14px;
  -webkit-transition: all .2s;
  transition: all .2s;
  	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin:0 0 0 0;
}
input[type=submit]:hover {
    background-color: #e0e0e0;
    color: #333333;
    border-color: #333333;
}
.entry-title {
  padding: 0!important;
  margin: 0!important;
}

/* 吹き出し */
.balloon5 {
  width: 100%;
  margin: 1.5em 0;
  overflow: hidden;
}

.balloon5 .faceicon {
  float: left;
  margin-right: -90px;
  width: 80px;
}

.balloon5 .faceicon img{
  width: 100%;
  height: auto;
  border: solid 3px #d7ebfe;
  border-radius: 50%;
}

.balloon5 .chatting {
  width: 100%;
}

.says {
  display: inline-block;
  position: relative; 
  margin: 5px 0 0 105px;
  padding: 17px 13px;
  border-radius: 12px;
  background: #d7ebfe;
}

.says:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 18px; 
  left: -24px;
  border: 12px solid transparent;
  border-right: 12px solid #d7ebfe;
}

.says p {
  margin: 0;
  padding: 0;
}

/** ブログ記事 **/
.blog-kizi {
  white-space: pre-line;
  line-height: 2em;
  font-size: 1.1em;
  overflow-wrap: break-word;
}
.blog-kizi img{
  padding-bottom:30px;
}
@media (min-width: 768px) {
.blog-kizi {
  margin:0 3.5em 0 1em;
  padding:1em 2em 2em 2em;
  border: 1px solid rgba(153,153,153,0.5);
  }
}
.h1 {
  background: linear-gradient(transparent 50%, #f4f4f4 50%);
  text-align:center; /* 垂直中心 */
  padding-top:0px;
  line-height: 1.1em;  
  font-size: 1.5em;
}
@media (min-width: 768px) {
.h2 {
  position: relative;
  text-align: center;
  margin:1em 0;
  border:none;
  font-weight:normal;
  color:#333;
  font-size:1.4em;
}
.h2:before {
  border-top: 2px solid;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  align-items: center; /* 垂直中心 */
  justify-content: center; /* 水平中心 */
}
.h2 a {
  background-color: #fff;
  display: inline-block;
  padding: 0 1em;
  line-height: 1.1em;  
  position: relative;
}
.h2 a small{
  color: #999;
  font-size:11px;
  display:block;
}
}
@media (max-width: 768px) {
.h2 {
  background: linear-gradient(transparent 50%, #f4f4f4 50%);
  text-align:center; /* 垂直中心 */
  padding-top:0px;
  line-height: 1.1em;  
  font-size: 1.5em;
}
}
.h3 {
  position: relative;
  padding: 0.6em;
  background: #f4f4f4 50%;
  font-weight: bold;  
  font-size: 1.1em;
}
.h3:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid #f4f4f4;
  width: 0;
  height: 0;
}

.marker{
background:linear-gradient(transparent 75%, #ffcedb 75%);
}
.marker2{
background:linear-gradient(transparent 75%, #a9eaf2 75%);
}
.marker3{
background:linear-gradient(transparent 75%, #fffbbb 75%);
}

/** 目次 **/
#toc {
  max-width: 100%;
  border: 1px solid rgba(153,153,153,1);
  margin: 2em auto 0;
}
.toc-title {
  color: #444;
  padding: .5em 1em;
  text-align:center; /* 垂直中心 */
  font-size: 1.3em;
}
.toc-container {
  padding: 1em !important;
  margin: 0 !important;
}
.toc-container, .toc-container ul {
  counter-reset: ul-counter;
  list-style: none;
}
.toc-container li a {
  display: flex;
  color: #444 !important;
}
.toc-container li a:before {
  counter-increment: ul-counter;
  content: counters(ul-counter,".");
  color: dodgerblue; /* お好みの色 */
  padding-right: .5em;
  white-space: nowrap;
}
.toc-container li ul li a {
  font-size: 0.9em;
}
.toc-container li ul li a:before {
  counter-increment: ul-counter;
  content: counters(ul-counter,".");
  font-size: 0.9em;
  margin-left: 1.2em;
}
#toc .toc-title:after {
  content: '[表示]';
  margin-left: .5em;
}
#toc[open] .toc-title:after {
  content: '[非表示]';
}

/** 目次2 **/
#toc2 {
  max-width: 100%;
  margin: 2em auto 0;
  border: 1px solid rgba(153,153,153,1);
  line-height: 2em;
  padding: 5px;
}
.toc3 {
    position: inherit;
}
@supports (position: sticky) or (position: -webkit-sticky) {
.toc3 {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
  }
}
}
.toc-title2 {
  color: #444;
  text-align:left; /* 垂直中心 */
  font-size: 1em;
}
.toc-container2 {
  padding: 0 !important;
  margin: 0 !important;
  padding-top: 10px !important;
}
.toc-container2, .toc-container2 ul {
  counter-reset: ul-counter;
  list-style: none;
}
.toc-container2 li a {
  display: flex;
  color: #444 !important;
  font-size: 0.9em;
}
.toc-container2 li a:before {
  counter-increment: ul-counter;
  content: counters(ul-counter,".");
  color: dodgerblue; /* お好みの色 */
  padding-right: .5em;
  white-space: nowrap;
}
.toc-container2 li ul li a {
  font-size: 0.8em;
}
.toc-container2 li ul li a:before {
  counter-increment: ul-counter;
  content: counters(ul-counter,".");
  font-size: 0.9em;
  margin-left: 1.2em;
}
#toc2 .toc-title2:after {
  content: '[表示]';
  margin-left: .5em;
}
#toc2[open] .toc-title2:after {
  content: '[非表示]';
}
@media screen and (max-width:768px) {
  .toc4{
    display: block !important;
  }
}

/* 杉本園紹介（フリーページ）画像上に文字 */
.gazou1{
  position: relative;/*相対配置*/
  text-align:center;
  margin-bottom:10px;
}

.gazou1 p{
  position: absolute;/*絶対配置*/
  color: white;/*文字は白に*/
  top: 86%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;
  background-color: rgba( 51, 51, 51, 0.8 );
  width: 94%;
  height: 30px;
  color: #FFF;
  text-align:center;
  line-height: 30px;
  font-size: 17px;
  /*文字の装飾は省略*/
}

.gazou1 ul{
  position: absolute;/*絶対配置*/
  color: white;/*文字は白に*/
  top: 81%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;
  background-color: rgba( 51, 51, 51, 0.8 );
  width: 95.8%;
  height: 30px;
  color: #FFF;
  text-align:center;
  line-height: 30px;
  font-size: 17px;
  /*文字の装飾は省略*/
}
.gazou1_bottom{
  padding-bottom:10px;
}

/* ブログ戻る矢印 */
h6 {
  position: relative;
  padding-left: 25px;
  font-size: 1.2em;
  font-weight:normal;
  text-align:center;
  margin: 0;
  margin-top:25px;
}

h6:before {
  position: absolute;
  content: '';
  bottom: -3px;
  left: 0;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 15px transparent;
  border-bottom: solid 15px rgb( 51, 51, 51 );
}
h6:after {
  position: absolute;
  content: '';
  bottom: -3px;
  left: 10px;
  width: 100%;
  border-bottom: solid 2px rgb( 51, 51, 51 );
}

/* ブログ商品 */
.blog-ocha {
  padding: 0 7px !important;
  display: inline-block !important;
  vertical-align: bottom !important;
  margin-bottom:30px;
}

/* ブログInstagram埋め込み */
.instagram-media {
  margin-left: auto!important;
  margin-right: auto!important;
}

/* 自己紹介 */
.profile-img-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    background: url('https://img07.shop-pro.jp/PA01261/863/etc_base64/YmFja2dyb3VuZC1pbWFnZQ.jpg?cmsp_timestamp=20240830172448') no-repeat center center;
    background-size: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* 写真裏に枠とシャドウを残す */
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    bottom: -75px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid #ffffff;
}

.profile-info {
    margin-top: 100px;
}

.profile-info h3 {
    font-size: 16px;
    color: #495057;
    text-align: center;
    margin-bottom: -20px;
}

.profile-info h2 {
    font-size: 28px;
    color: #343a40;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
}

.profile-info h2::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #dcdcdc;
    margin: 10px 0 0 0;
}

.profile-info p {
    font-size: 18px;
    color: #6c757d;
    margin: 10px 0;
}

.profile-info .description {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
}

/* 記事＠この記事を書いてる人 */
.author-info {
    margin-top: 40px;
    padding: 20px 0;
    font-family: 'Arial', sans-serif;
}

.author-line {
    width: 100%;
    height: 1px;
    background-color: #e1e1e1;
    margin: 10px 0;
}

.author-title {
    font-size: 1.2em;
    color: #333;
    margin: 5px 0 20px;
    text-align: center;
}

.author-content {
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.author-photo-container {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 20px;
    border: 2px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
  
.author-details p {
    margin: 5px 0;
    color: #666;
    line-height: 1.6;
}

/* お帰り商品フリーページ */
.responsive-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
  margin-left: -7.5px;
  margin-right: -7.5px;
}

.responsive-item {
    width: 25%;
    padding: 10px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .responsive-item {
        width: 50%;
    }
}


/* カテゴリーIDまたはURLに基づいて非表示にする */
  #category-2930211 {
    display: none;
  }