@charset "UTF-8";

/*********************************
	全体レイアウト
*********************************/
/*********************************
  フォント
  ゴシック：Regular 400と Bold 700を使用
  font-family: 'Noto Sans JP', sans-serif;
  明朝：500を使用
  font-family: 'Noto Serif JP', serif;
*********************************/
/* 初期値 */
html {
  font-size: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
}

@media screen and (min-width: 768px) {
  body {
    font-size: calc(17rem / 16);
    min-width: 980px;
  }
}

img {
  display: block;
  height: auto;
}

figure {
  margin-left: 0;
  margin-right: 0;
}

mark {
  background: linear-gradient(transparent 50%, #fcd8a3 50%);
}

ul {
  list-style-type: none;
}

a {
  color: #1b62a4;
}

a img:hover {
  opacity: 0.7;
}

h1 {
  line-height: 1.4;
  text-align: center;
}

h2:first-child {
  margin-top: 0;
}

h3 {
  margin-bottom: 16px;
  margin-top: 32px;
}

h3:first-child {
  margin-top: 0;
}

/* レイアウト */
@media screen and (min-width: 768px) {
  .fs-l-main {
    display: flex;
    justify-content: space-between;
    margin: 30px auto;
    width: 960px;
  }
}

/* パンくず */
.fs-l-page>.fs-c-breadcrumb {
  margin: 0 0 0 1em;
  max-width: 960px;
}

.fs-c-breadcrumb__listItem {
  font-size: calc(10rem / 16);
}

@media screen and (min-width: 768px) {
  .fs-c-breadcrumb__listItem {
    font-size: calc(12rem / 16);
  }

  .fs-l-page>.fs-c-breadcrumb {
    margin: 30px auto auto auto;
  }
}

/* コンテンツ領域 */
.contents-area {
  font-size: calc(17rem / 16);
  line-height: 1.6;
  padding: 16px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .contents-area {
    line-height: 1.8;
    order: 1;
    padding: 0;
  }
}

.container-m {
  margin-left: auto;
  margin-right: auto;
  max-width: 715px;
  width: 100%;
}


/*********************************
	PCヘッダー
*********************************/
/*  PCヘッダー：全体背景 */
.global-header {
  display: none;
}

@media screen and (min-width: 768px) {
  .global-header {
    background: url("https://yamakiichi.itembox.design/item/theme/img/header-bg.jpg") repeat-x center top;
    display: block;
  }
}

/*  PCヘッダー：上段 */
.topNavigation-area {
  display: grid;
  gap: 0 0;
  grid-template-areas: "nav nav""logo tel";
  grid-template-columns: 1fr 304px;
  grid-template-rows: min-content 1fr;
  height: 156px;
  margin: 0 auto;
  width: 960px;
}

.topNavigation-area .nav {
  grid-area: nav;
}

.topNavigation-area .logo {
  align-self: end;
  grid-area: logo;
  padding-bottom: 16px;
}

.topNavigation-area .tel {
  align-self: end;
  grid-area: tel;
  margin-bottom: 7px;
}

/* PCヘッダー：上段：IE対応 */
@media all and (-ms-high-contrast: none) {
  .topNavigation-area {
    display: -ms-grid;
    gap: 0 0;
    -ms-grid-columns: 1fr 304px;
    -ms-grid-rows: min-content 1fr;
  }

  .topNavigation-area .nav {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
  }

  .topNavigation-area .logo {
    -ms-grid-column: 1;
    -ms-grid-column-span: 0;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
  }

  .topNavigation-area .tel {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
  }
}

/* PCヘッダー：上段：右上ナビ */
.top-navigation {
  background-color: rgba(0, 0, 0, 0.75);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  display: table;
  list-style-type: none;
  margin: 0 0 0 auto;
  padding: 5px 0 0 0;
  width: 600px;
}

.top-navigation .item {
  display: table-cell;
}

.top-navigation .item:last-child .link {
  border-right: none;
}

.top-navigation .link {
  align-items: center;
  border-right: solid 1px #fff;
  color: #fff;
  display: flex;
  font-size: calc(15rem / 16);
  justify-content: center;
  line-height: 1;
  margin: 3px 0 9px 0;
  min-width: 96px;
  padding: 0 0 2px 0;
  width: 100%;
}

.top-navigation .link:hover {
  color: #a88542;
  text-decoration: none;
}

.top-navigation .fs-icon--cart02 {
  display: inline-block;
  font-size: calc(18rem / 16);
  line-height: 0;
  margin: 0 5px 0 0;
  position: relative;
  text-decoration: none;
  top: 2px;
}

.top-navigation .myPage .myPageLabel {
  display: none;
}

.top-navigation .myPage .link[data-login=true] .myPageLabel {
  display: inline;
}

.top-navigation .myPage .link[data-login=true] .loginLabel {
  display: none;
}

.top-navigation .cart {
  position: relative;
}

.top-navigation .cart .fs-client-cart-count {
  background-color: #BF0106;
  border-radius: 50%;
  bottom: -5px;
  color: #fff;
  display: block;
  font-size: calc(9rem / 16);
  height: 16px;
  left: -9px;
  line-height: 16px;
  position: absolute;
  text-align: center;
  visibility: hidden;
  width: 16px;
}

.top-navigation .cart .fs-client-cart-count:not(:empty):not(.fs-client-cart-count--0) {
  visibility: visible;
}

/* PCヘッダー：下段 */
.bottomNavigation-area {
  background: linear-gradient(0deg, #ec6502 0%, #fb9938 100%);
}

/* PCヘッダー：下段：オレンジナビ */
.bottom-navigation {
  display: table;
  height: 60px;
  list-style-type: none;
  margin: 0 auto;
  padding: 10px 0;
  width: 960px;
}

.bottom-navigation .item {
  display: table-cell;
  min-width: 145px;
  padding: 0 4px;
  position: relative;
}

.bottom-navigation .item::after {
  background-color: #fff;
  content: "";
  display: block;
  height: 25px;
  position: absolute;
  right: 0;
  top: 6px;
  width: 1px;
}

.bottom-navigation .item:first-child::before {
  background-color: #fff;
  content: "";
  display: block;
  height: 25px;
  left: 0;
  position: absolute;
  top: 6px;
  width: 1px;
}

.bottom-navigation .link {
  align-items: center;
  color: #fff;
  display: flex;
  font-feature-settings: "palt";
  font-size: calc(18rem / 16);
  font-weight: 500;
  height: 100%;
  justify-content: center;
  padding: 0 11px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  width: 100%;
}

.bottom-navigation .link.current,
.bottom-navigation .link:hover {
  background: #fff;
  border-radius: 5px;
  color: #EC7435;
}

/*********************************
	SPヘッダー
*********************************/
/* SPヘッダー：全体 */
.sp-globalHeader {
  position: relative;
}

@media screen and (min-width: 768px) {
  .sp-globalHeader {
    display: none !important;
  }
}

/*  SPヘッダー：ヘッダー */
.sp-header {
  align-items: center;
  display: flex;
  height: 60px;
  justify-content: space-between;
  margin: 0;
  padding: 5px 10px 5px 10px;
}

.sp-header .logo {
  display: block;
}

/*  SPヘッダー：ボタンリスト */
.sp-headerButtonList {
  align-items: center;
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.sp-headerButtonList .item {
  margin-left: 8px;
}

.sp-headerButtonList .button {
  align-items: center;
  background-color: #e7004e;
  border-radius: 2px;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-size: calc(.8rem / 16);
  font-weight: bold;
  height: 44px;
  justify-content: center;
  text-decoration: none;
  width: 44px;
}

.sp-headerButtonList .button.-active .icon.menu::before {
  content: "";
}

.sp-headerButtonList .button.-active .text::before {
  content: "閉じる";
}

.sp-headerButtonList .icon {
  align-items: center;
  display: flex;
  height: 24px;
  justify-content: center;
  margin-bottom: 1px;
  width: 24px;
}

.sp-headerButtonList .icon.menu::before {
  content: "";
  display: block;
  font-family: "fs-icon";
  font-size: calc(22rem / 16);
}

.sp-headerButtonList .text::before {
  content: "メニュー";
}

.sp-headerButtonList .fs-icon--cart02 {
  font-size: calc(22rem / 16);
  left: -2px;
  position: relative;
}

.sp-headerButtonList .cart {
  position: relative;
}

.sp-headerButtonList .cart .fs-client-cart-count {
  background-color: #0F233F;
  border-radius: 50%;
  color: #fff;
  display: block;
  font-size: calc(9rem / 16);
  height: 16px;
  line-height: 16px;
  position: absolute;
  right: 3px;
  text-align: center;
  top: 3px;
  width: 16px;
}

.sp-headerButtonList .cart .fs-client-cart-count.fs-client-cart-count--0 {
  display: none;
}

.sp-menu {
  display: none;
  left: 0;
  position: absolute;
  top: 60px;
  width: 100%;
  z-index: 100;
}

.sp-menu .page {
  background-color: #ffffff;
  display: none;
}

.sp-menu .page.current {
  display: block;
}

/* SPヘッダー：電話番号 */
.sp-phoneArea {
  align-items: center;
  background: #ede4cd;
  display: flex;
  justify-content: center;
  padding: 5px 3% 3px 3%;
}

.sp-phoneArea .link {
  display: block;
  margin: auto;
}

.sp-phoneArea .link img {
  width: 100%;
}

/* SPヘッダー：出荷状況 */
.sp-shippingInfo {
  background: #3c220b;
  color: #fff;
  font-size: calc(13rem / 16);
  padding: 8px;
  text-align: center;
}

.sp-shippingInfo p {
  margin: 0;
}

/* SPヘッダー：タブ風メニュー */
.sp-tabList {
  align-items: flex-end;
  background: #522e0f;
  display: flex;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 10px 0 0 0;
}

.sp-tabList .item {
  margin: 0 2px;
}

.sp-tabList .item:last-child .tab {
  letter-spacing: 0.2em;
}

.sp-tabList .tab {
  align-items: center;
  background-color: #84634b;
  color: #fff;
  display: flex;
  font-size: calc(12rem / 16);
  height: 40px;
  justify-content: center;
  width: 96px;
}

.sp-tabList .tab.-active {
  background-color: #ede4cd;
  color: #412108;
}

/* SPヘッダー：メニュー項目 */
.sp-menuList {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.sp-menuList .link {
  align-items: center;
  border-bottom: 1px solid #84634b;
  color: #000;
  display: flex;
  font-size: calc(15rem / 16);
  justify-content: space-between;
  padding: 11px 15px;
  text-align: left;
  text-decoration: none;
  width: 100%;
}

.sp-menuList .link::after {
  color: #74716b;
  content: "";
  font-family: "fs-icon";
  font-size: calc(24rem / 16);
  line-height: 0;
}

.sp-menuList .sp-accordionButton::after {
  background-image: url("https://yamakiichi.itembox.design/item/theme/img/icon-plus.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 20px;
  width: 20px;
}

.sp-menuList .sp-accordionButton.-active::after {
  background-image: url("https://yamakiichi.itembox.design/item/theme/img/icon-minus.svg");
}

.sp-menuList .myPage .myPageLabel {
  display: none;
}

.sp-menuList .myPage[data-login=true] .myPageLabel {
  display: inline;
}

.sp-menuList .myPage[data-login=true] .loginLabel {
  display: none;
}

/* SPヘッダー：アコーディオン */
.sp-accordionList {
  display: none;
  list-style-type: none;
  padding: 0 2%;
}

.sp-accordionList .link {
  padding: 11px calc(15px - 2%) 11px 40px;
}

/* ヘッダー下部　全ページ共通お知らせ */
body#fs_Top .common-topinfo {
  display: none;
}

.common-topinfo {
  width: 100%;
  padding: 10px;
  font-size: 0.8em;
  border-bottom: 1px solid #cccccc;
}

@media screen and (min-width: 768px) {
  .common-topinfo {
    width: 960px;
    margin: 10px auto;
    padding: 10px 16px;
    font-size: 0.8em;
    border: 1px solid #cccccc;
  }
}

/*********************************
	フッター
*********************************/
/* フッター */
.global-footer {
  margin-top: 80px;
}

@media screen and (min-width: 768px) {
  .global-footer {
    margin-top: 100px;
  }
}

/* フッター：ご利用ガイド */
.footerGuide-area {
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (min-width: 768px) {
  .footerGuide-area {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
}

/* フッター：ご利用ガイド：３列 */
.footer-guide {
  list-style-type: none;
  margin: 30px 0 0 0;
  padding: 0;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .footer-guide {
    display: flex;
    justify-content: space-between;
    margin: 30px auto;
    width: 960px;
  }
}

.footer-guide .item {
  font-size: calc(14rem / 16);
  line-height: 1.57;
}

@media screen and (min-width: 768px) {
  .footer-guide .item {
    width: 320px;
  }

  .footer-guide .item+.item {
    border-left: solid 1px #c69c6c;
  }
}

.footer-guide .link {
  margin-top: 20px;
  max-width: 240px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .footer-guide .link {
    margin-top: 0;
  }
}

.footer-guide .title {
  color: #060a1a;
  font-size: calc(16rem / 16);
  font-weight: 500;
  margin-bottom: 10px;
}

.footer-guide .comment {
  margin-top: 12px;
}

@media screen and (min-width: 768px) {
  .footer-guide .comment {
    font-size: calc(12rem / 16);
  }
}

/* フッター：フリーダイアル */
.footer-freeDial {
  align-items: center;
  color: #060a1a;
  display: flex;
  font-size: calc(34rem / 16);
  font-weight: 500;
  justify-content: center;
  line-height: 1;
  margin-top: 10px;
}

.footer-freeDial .icon {
  margin-right: 12px;
}

/* フッター：サイトマップ */
.footerSitemap-area {
  background-color: #f7f7f5;
  background-image: url("https://yamakiichi.itembox.design/item/theme/img/footer-sitemap-bg.svg"), url("https://yamakiichi.itembox.design/item/theme/img/footer-hotate.svg");
  background-position: top left, right -55px bottom -55px;
  background-repeat: repeat-x, no-repeat;
  background-size: 600px auto, 300px auto;
  padding: 65px 0 16px 0;
}

@media screen and (min-width: 768px) {
  .footerSitemap-area {
    background-position: top, right -35px bottom -55px;
    background-size: 1600px auto, 398px auto;
    display: flex;
    flex-direction: column;
    margin-top: -70px;
    padding: 115px 0 16px 0;
  }
}

/* フッター：取扱商品 */
.footer-product {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  list-style-type: none;
  margin: 0 auto;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .footer-product {
    width: 960px;
  }
}

.footer-product .item {
  width: 50%;
}

@media screen and (min-width: 768px) {
  .footer-product .item {
    width: 190px;
  }
}

.footer-product .link {
  align-items: center;
  color: #000;
  display: flex;
  font-size: calc(15rem / 16);
  padding: 18px;
  text-decoration: none;
  width: 100%;
}

.footer-product .link:hover {
  color: #a88542;
}

.footer-product .link:hover::before {
  color: #a88542;
}

.footer-product .link::before {
  color: #060a1a;
  content: "";
  font-family: "fs-icon";
  font-size: calc(20rem / 16);
  line-height: 1;
}

/* フッター：検索 */
.footerSearch-area {
  margin: 20px auto;
  max-width: 300px;
  width: 100%;
}

.footer-search {
  background-color: #1f3140;
  border: 1px solid #1f3140;
  border-radius: 25px;
  display: flex;
  position: relative;
}

.footer-search .form {
  display: flex;
  width: 100%;
}

.footer-search .button {
  border: 0;
  font-size: 0;
  height: 34px;
  overflow: hidden;
  width: 34px;
}

.footer-search .button::before {
  color: #fff;
  content: "";
  display: block;
  font-family: "fs-icon" !important;
  font-size: calc(26rem / 16);
  line-height: 1;
  speak: none;
  text-transform: none;
  width: 36px;
}

.footer-search .keyword {
  background: #fff;
  border: 0;
  border-radius: 25px 0 0 25px;
  font-size: calc(12rem / 16);
  height: 34px;
  padding: 10px 0 10px 15px;
  width: calc(100% - 40px);
}

@media screen and (min-width: 768px) {
  .footer-search .keyword {
    font-size: calc(14rem / 16);
  }
}

.footer-search .keyword:focus {
  outline: none;
}

/* フッター：当店について */
.footer-about {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  list-style-type: none;
  margin: 28px auto;
  padding: 0 20px;
}

.footer-about .item {
  width: calc(50% - 6px);
}

@media screen and (min-width: 768px) {
  .footer-about .item {
    width: 162px;
  }
}

.footer-about .item+.item:nth-child(n+2) {
  margin-top: 12px;
}

@media screen and (min-width: 768px) {
  .footer-about .item+.item:nth-child(n+2) {
    margin-top: 0;
  }
}

.footer-about .item:nth-child(odd) {
  margin-left: 12px;
}

@media screen and (min-width: 768px) {
  .footer-about .item:nth-child(odd) {
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .footer-about .item:not(:first-child) {
    margin-left: 12px;
  }
}

.footer-about .link {
  width: 100%;
}

/* フッター：SNS */
.footer-sns {
  align-items: center;
  display: flex;
  justify-content: center;
  list-style-type: none;
  margin: 44px 0 20px 0;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .footer-sns {
    margin: 64px 0 20px 0;
  }
}

.footer-sns .item:not(:first-child) {
  margin-left: 24px;
}

/* フッター：法定表示 */
.footer-legal {
  align-items: center;
  display: flex;
  justify-content: center;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.footer-legal .item {
  padding: 0 0.5em;
  position: relative;
}

.footer-legal .item:not(:first-child)::before {
  background-color: #1B62A4;
  bottom: 3px;
  content: "";
  display: block;
  height: 12px;
  left: 0;
  position: absolute;
  width: 1px;
}

.footer-legal .link {
  color: #1b62a4;
  font-size: calc(12rem / 16);
  line-height: 1;
}

.footer-legal .link:hover {
  color: #a88542;
  text-decoration: none;
}

/* フッター：深海 */
.footerMessage-area {
  background: url("https://yamakiichi.itembox.design/item/theme/img/footer-bg.jpg");
  color: #fff;
  font-size: calc(14rem / 16);
  text-align: center;
}

.footer-message {
  padding: 1em 0;
}

.footer-message .copyright {
  font-size: calc(10rem / 16);
  margin-top: 28px;
}

/* フッター：上に戻る */
.goUp-button {
  bottom: 10px;
  position: fixed;
  right: 10px;
  z-index: 1000;
}

/*********************************
	サイドバー
*********************************/
/* サイドバー：サイドバー領域 */
.sidebar-area {
  font-size: calc(17rem / 16);
  line-height: 1.6;
  padding: 16px;
}

@media screen and (min-width: 768px) {
  .sidebar-area {
    flex-shrink: 0;
    margin-right: 35px;
    order: 0;
    padding: 0;
    width: 210px;
  }
}

/*  サイドバー：見出し */
.sidebar-heading {
  background: linear-gradient(90deg, #85613d 0%, #c19a6b 100%);
  border-radius: 3px;
  color: #fff;
  font-size: calc(15.5rem / 16);
  font-weight: normal;
  height: 30px;
  letter-spacing: 1px;
  line-height: 1.3;
  margin: 0 auto 8px auto;
  overflow: hidden;
  padding: 5px;
  position: relative;
  text-align: center;
}

.sidebar-heading::before {
  background-image: url("https://yamakiichi.itembox.design/item/theme/img/heading-wave.svg");
  background-size: cover;
  content: "";
  height: 30px;
  left: 0;
  opacity: 0.2;
  position: absolute;
  top: -2px;
  width: 76px;
}

/*  サイドバー：メニュー：泳ぐホタテとは */
.sidebar-about {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
}

.sidebar-about .item {
  background-color: #EEE;
  border-bottom: solid 1px #fff;
}

.sidebar-about .link {
  border-bottom: solid 1px #999999;
  color: #000;
  display: block;
  font-size: calc(14.5rem / 16);
  font-weight: bold;
  line-height: 1.3;
  padding: 20px 10px;
  text-decoration: none;
}

.sidebar-about .link:hover,
.sidebar-about .link.current {
  background: #414141;
  color: #fff;
}

/*  サイドバー：メニュー：お取り扱い商品 */
.sidebar-product {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
}

.sidebar-product .item {
  background-color: #EEE;
  border-bottom: solid 1px #fff;
}

.sidebar-product .link {
  align-items: center;
  border-bottom: solid 1px #999999;
  color: #000;
  display: flex;
  font-size: calc(14.5rem / 16);
  font-weight: bold;
  line-height: 1.3;
  padding: 2px 0;
  text-decoration: none;
}

.sidebar-product .link:hover {
  opacity: 0.7;
}

.sidebar-product .link.current {
  background: #414141;
  color: #fff;
}

.sidebar-product .icon {
  flex-shrink: 0;
  margin-right: 8px;
}

.sidebar-product .banner {
  margin: 16px 0;
}

/*  サイドバー：メニュー：価格で選ぶ */
.sidebar-price {
  background-color: #EEE;
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
}

.sidebar-price .item {
  border-bottom: solid 2px #fff;
}

.sidebar-price .link {
  color: #414141;
  display: block;
  font-size: calc(16rem / 16);
  line-height: 1.3;
  padding: 5px 3px 5px 15px;
  text-decoration: none;
}

.sidebar-price .link:hover,
.sidebar-price .link.current {
  background: #414141;
  color: #fff;
}

/*  サイドバー：ローカルメニュー */
.sidebar-localMenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-localMenu .link {
  background: #fff;
  display: block;
  font-size: calc(13rem / 16);
  line-height: 1.3;
  padding: 14px 5px 14px 25px;
}

/*  サイドバー：お問い合わせメニュー */
.sidebar-contactList {
  background-color: #f6ebd7;
  color: #603919;
  list-style: none;
  margin: 0 auto;
  padding: 4px 4px 8px 4px;
}

.sidebar-contactList .heading {
  font-feature-settings: "palt";
  font-size: calc(14rem / 16);
  line-height: 1.3;
  margin-top: 0;
  text-align: center;
}

.sidebar-contactList .num {
  font-family: "Noto Serif JP", serif;
  font-size: calc(20rem / 16);
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.sidebar-contactList .item {
  border-bottom: 1px solid #edd8b0;
  margin: auto;
  max-width: 210px;
  padding: 15px 0;
}

.sidebar-contactList .item:nth-child(n+2) {
  border-top: 1px solid #fff;
}

.sidebar-contactList .item:last-child::after {
  background-color: #fff;
  content: "";
  display: block;
  height: 1px;
  position: relative;
  top: 2px;
  width: 100%;
}

.sidebar-contactList .iconBox {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  padding: 0 5px;
}

.sidebar-contactList .icon {
  margin-right: 10px;
}

.sidebar-contactList .num {
  margin: 0;
}

.sidebar-contactList small {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 0 5px;
}

.sidebar-contactList .link {
  margin-top: 15px;
}

/*  サイドバー：バナーエリア */
.sidebar-banners .link {
  display: block;
  margin-bottom: 10px;
}

.sidebar-banners .link img {
  margin-left: auto;
  margin-right: auto;
}

.sidebar-banners .banner {
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

/*  サイドバー：メルマガ紹介 */
.sidebar-magazine {
  background: linear-gradient(90deg, #f3e8c8 0%, #f5edd8 100%);
  font-size: calc(14rem / 16);
  padding: 10px 8px;
}

.sidebar-magazine .heading {
  border-bottom: 1px solid #ccc;
  margin-top: 0;
  padding-bottom: 3px;
}

.sidebar-magazine .heading img {
  margin: auto;
}

.sidebar-magazine .link {
  color: #1b62a4;
  line-height: 1.3;
  text-decoration: underline;
}

/*********************************
	商品ページ
*********************************/
/* 商品ページ：配送情報エリア */
.productDelivery-area>div {
  margin-bottom: 2em;
}

/* 商品ページ：全体 */
.productInfo-area dd {
  margin-left: 0;
}

/* 商品ページ：下エリア */
.product-secondary {
  display: block;
}

@media screen and (min-width: 768px) {
  .product-secondary {
    margin-top: 64px;
  }
}

/* 商品ページ：商品画像 */
@media screen and (min-width: 768px) {
  .productImage-area {
    display: flex;
  }
}

.fs-c-productMainImage {
  position: relative;
}

@media screen and (min-width: 768px) {
  .fs-c-productMainImage {
    width: 550px;
  }
}

.fs-c-productMainImage__expandButton {
  background-color: rgba(255, 255, 255, 0.7);
  bottom: 0;
  margin: 0;
  position: absolute;
  right: 0;
  width: 47px;
}

@media screen and (min-width: 768px) {
  .fs-c-productThumbnail {
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
    margin: 0 0 0 16px;
    width: 100px;
  }

  .fs-c-productThumbnail__image {
    flex-basis: auto;
    margin: 0;
  }
}

.fs-c-productThumbnail__image>img {
  height: auto;
  object-fit: initial;
}

@media screen and (min-width: 768px) {
  .fs-c-productThumbnail__image+.fs-c-productThumbnail__image {
    margin-left: 0;
    margin-top: 8px;
  }
}

/* 商品ページ：基本情報 */
.productInfo-area {
  margin-top: 32px;
}

@media screen and (min-width: 768px) {
  .productInfo-area {
    display: flex;
    font-size: calc(16rem / 16);
    justify-content: space-between;
    margin-top: 48px;
  }

  .productBasic-area {
    width: 335px;
  }

  .productAction-area {
    width: 346px;
  }
}

/* 商品ページ：キャッチコピー */
.fs-p-productDescription--short {
  font-size: calc(15rem / 16);
  font-weight: bold;
  white-space: pre-wrap;
}

/* 商品ページ：商品説明（大） */
.fs-p-productDescription--full {
  margin-top: 1em;
  white-space: pre-wrap;
}

.fs-c-productNameHeading__copy {
  display: none;
}

/* 商品ページ：商品名 */
.fs-p-productDescription--short:empty+.fs-c-productNameHeading {
  margin-top: 0;
}

.fs-c-productNameHeading__name {
  display: block;
  font-size: calc(24rem / 16);
  line-height: 1.5;
  text-align: left;
}

/* 商品ページ：商品番号 */
.fs-c-productNumber {
  border: 1px solid #CCCCCC;
  color: #000;
  display: inline-flex;
  font-size: calc(14rem / 16);
  line-height: 1.3;
  padding: 8px 15px;
}

.fs-c-productNumber__label {
  margin-right: 1em;
}

/* 商品ページ：右エリア */
.productAction-area {
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .productAction-area {
    margin-top: 0;
  }
}

/* 商品ページ：価格 */
.fs-c-productPrices--productDetail .fs-c-price__value {
  font-size: calc(18rem / 16);
  font-weight: bold;
}

.fs-c-productPrice--selling .fs-c-price__value {
  color: #DE5D47;
  font-weight: bold;
}

.fs-c-price__addon,
.fs-c-productPrice__addon {
  font-size: calc(12rem / 16);
}

.fs-c-price__value::after {
  content: "円";
}

.fs-c-productPrice--selling .fs-c-price__value::after {
  color: #DE5D47;
  font-size: calc(12rem / 16);
  font-weight: bold;
}

.fs-c-price .fs-c-price__currencyMark {
  display: none;
}

/* 商品ページ：カートボタン */
.fs-c-productQuantityAndWishlist {
  margin-top: 8px;
}

.fs-c-productActionButton {
  margin: 16px 0 24px 0;
}

.fs-c-button--addToCart--detail {
  max-width: 100%;
}

/* 商品ページ：返品特約 */
.fs-c-returnedSpecialContract__link a {
  text-decoration: none;
}

/* 商品ページ：商品についてのお問い合わせ */
.fs-c-buttonContainer--inquiryAboutProduct {
  margin-top: 0;
}

/* 商品ページ：SNS */
.fs-p-snsArea {
  margin: 24px 0 0 0;
}

/* 商品ページ：複数商品価格 */
.multiCart-area ul {
  margin: 0;
  padding: 0;
}

.multiCart-area .item {
  border: 0;
  margin: 8px 0;
  padding: 0;
}

.multiCart-area .item label {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

.multiCart-area .title {
  display: block;
  font-weight: bold;
  line-height: 1.3;
  margin-left: 0.5em;
}

.multiCart-area .price {
  color: #DE5D47;
  display: block;
  flex-grow: 1;
  font-size: calc(18rem / 16);
  font-weight: bold;
  margin-left: 0.5em;
  margin-top: 0;
  text-align: right;
}

.multiCart-area .price::before {
  color: #000;
  content: "販売価格";
  font-size: calc(14rem / 16);
  font-weight: normal;
  margin-right: 0.5em;
}

.multiCart-area .price::after {
  color: #000;
  content: "(税込)";
  font-size: calc(12rem / 16);
  font-weight: normal;
}

.multiCart-area .price span::after {
  color: #DE5D47;
  content: "円";
  font-size: calc(12rem / 16);
}

.multiCart-area .numCart {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.multiCart-area .quantity {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  white-space: nowrap;
}

.multiCart-area .quantity::before {
  color: #000;
  content: "数量";
  font-size: calc(14rem / 16);
  font-weight: normal;
  margin-right: 0.5em;
}

.multiCart-area .quantity input {
  margin-left: 0.5em;
  width: 50px;
}

.multiCart-area .button {
  margin-top: 16px;
  width: 100%;
}

.multiCart-area .button button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #bf0008;
  border: none;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc(14rem / 16);
  font-weight: bold;
  line-height: 1;
  padding: 8px 12px;
  position: relative;
  text-decoration: none;
  width: 100%;
}

.multiCart-box {
  border: 1px solid #DDDDDD;
  margin: 8px 0;
  padding: 8px 16px 24px 16px;
}

/* 商品ページ：ワンポイントアドバイス */
.shop-comment {
  border: 2px solid #ccc;
  border-radius: 5px;
  margin-top: 100px;
  padding: 20px;
  position: relative;
  text-align: justify;
  z-index: 0;
}

.shop-comment::before {
  background-image: url("https://yamakiichi.itembox.design/item/img/products/common/shop-coment-bg.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  border: 1px solid #1B62A4;
  border-radius: 50%;
  content: "";
  display: block;
  height: 120px;
  left: 10px;
  position: absolute;
  top: -90px;
  width: 120px;
  z-index: 0;
}


/* 商品ページ：おすすめ商品 */
.fs-c-featuredProduct__header {
  margin-top: 24px;
}

@media screen and (min-width: 768px) {
  .fs-c-featuredProduct__header {
    margin-top: 64px;
  }
}

/* 商品ページ：サブカテゴリのパンくず */
.breadcrumbSub-area {
  margin-top: 32px;
}

@media screen and (min-width: 768px) {
  .breadcrumbSub-area {
    margin-top: 64px;
  }
}

/* 商品ページ：折り畳み説明 */
.toggle-plus {
  margin-bottom: 30px;
}

.toggle-plus summary .title {
  background: #f6ebd7;
  border-left: solid 5px #b66c2f;
  border-radius: 3px;
  color: #494949;
  cursor: pointer;
  display: block;
  font-size: 1.1em;
  font-weight: bold;
  line-height: 1.5em;
  margin-bottom: 0;
  margin-top: 30px;
  padding: 0.4em 0.5em 0.4em 40px;
  position: relative;
  transition: 0.2s;
  z-index: 2;
}

.toggle-plus summary .title:hover {
  opacity: 0.7;
}

.toggle-plus summary .title:before,
.toggle-plus summary .title:after {
  bottom: 0;
  content: "";
  left: 0;
  margin: auto 0 auto 10px;
  position: absolute;
  top: 0;
}

.toggle-plus summary .title:before {
  background-color: #000;
  height: 2px;
  width: 16px;
}

.toggle-plus summary .title:after {
  background-color: #000;
  height: 16px;
  left: 7px;
  transition: 0.1s;
  width: 2px;
}

.toggle-plus summary::-webkit-details-marker {
  display: none;
}

.toggle-plus .content {
  border: 4px solid #f6ebd7;
  border-top: 0;
  padding: 20px;
}

.toggle-plus[open] summary .title:after {
  transform: rotate(90deg);
}

.toggle-plus[open] .content {
  animation: fadeIn 0.5s ease;
}

/* 商品ページ：折り畳み説明：アニメーション */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

/* 商品ページ：2回出現を非表示 */
.productDetail-wakameTabekata~.productDetail-wakameTabekata {
  display: none;
}

/* 商品サムネイル拡大時 */
.fs-c-productImageModal {
  align-items: center;
  display: flex;
}

/* 商品ページ：レビューエリア */
.fs-c-productReview {
  margin-bottom: 3em;
}

/*********************************
	商品一覧レイアウト
*********************************/
.layout-product .fs-c-subgroup {
  display: none;
}

/*********************************
	商品グループレイアウト
*********************************/
.fs-body-category .fs-c-subgroup .fs-c-listControl {
  display: none;
}

/*********************************
  ワンカラムレイアウト
*********************************/
.layout-one .fs-c-subgroup,
.layout-one .fs-c-subgroupList,
.layout-one .fs-c-productList {
  display: none;
}

/*********************************
  下層レイアウト
*********************************/
.layout-two .fs-c-subgroup,
.layout-two .fs-c-subgroup,
.layout-two .fs-c-productList {
  display: none;
}

/*********************************
	グループページ共通
*********************************/
/* グループページ：配下のグループ */
.fs-c-subgroupList {
  margin-top: 40px;
  padding: 0;
}

.fs-c-subgroup .fs-c-listControl__status {
  display: none;
}

@media screen and (min-width: 768px) {
  .fs-c-subgroupList__item {
    margin-right: 2.86%;
    width: 47.132%;
    overflow: hidden;
  }
}

.fs-c-subgroupList__image {
  max-width: 100%;
}

.fs-c-subgroupList__link {
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  padding: 8px 0;
}

.fs-c-subgroupList__link::after {
  display: none;
}

.fs-c-subgroupList__label {
  align-self: flex-start;
}

.fs-c-subgroupList__comment {
  color: #000000;
  font-size: calc(12rem / 16);
}

/* グループページ：商品リスト：並べ替え */
.fs-c-sortItems__label {
  border: solid 1px #ccc;
  display: inline-block;
  font-size: calc(13rem / 16);
  padding: 0 5px;
}

@media screen and (min-width: 640px) {
  .fs-c-sortItems__label {
    font-size: calc(14rem / 16);
  }
}

.fs-c-sortItems__list__item {
  margin-left: 0.5em;
}

.fs-c-sortItems__list__item__label {
  color: #000;
  display: inline-block;
  font-size: calc(13rem / 16);
  padding: 0 5px;
}

@media screen and (min-width: 640px) {
  .fs-c-sortItems__list__item__label {
    font-size: calc(14rem / 16);
  }
}

.fs-c-sortItems__list__item__label:hover,
.fs-c-sortItems__list .is-active .fs-c-sortItems__list__item__label {
  background-color: #3c3c3c;
  color: #fff;
}

.fs-c-listControl__status {
  display: none;
}

/* グループページ：商品リスト：ページネーション */
.fs-c-pagination__item {
  border: solid 1px #ccc;
  color: #000;
  margin-left: 0.5em;
  text-decoration: none;
}

/* グループページ：商品リスト */
.fs-c-productList__list {
  display: flex;
  flex-wrap: wrap;
  font-size: calc(15rem / 16);
  margin: 24px 0;
}

@media screen and (min-width: 768px) {
  .fs-c-productList__list {
    font-size: calc(16rem / 16);
    margin: 36px 0;
  }
}

.fs-c-productList__list__item {
  margin-bottom: 24px;
  width: 46%;
}

@media not all and (min-width: 768px) {
  .fs-c-productList__list__item:nth-child(odd) {
    margin-right: 4%;
  }
}

@media screen and (min-width: 768px) {
  .fs-c-productList__list__item {
    margin-bottom: 40px;
    margin-right: 33px;
    width: 200px;
  }
}

/* グループページ：商品リスト：サムネイル */
.fs-c-productListItem__viewMoreImageButton {
  display: none;
}

/* グループページ：商品リスト：商品名 */
.fs-c-productListItem__productName a {
  text-decoration: none;
}

.fs-c-productListItem__productName .fs-c-productName__name {
  display: block;
  font-size: calc(16rem / 16);
  font-weight: normal;
  line-height: 1.3;
}

/* グループページ：商品リスト：商品名：キャッチコピー */
.fs-c-productName__copy {
  display: none;
}

/* グループページ：商品リスト：一言説明 */
.fs-c-productListItem__productDescription {
  white-space: pre-wrap;
}

/* グループページ：商品リスト：カートお気に入り */
.fs-c-productListItem__control {
  flex-direction: row;
  justify-content: flex-start;
}

/* グループページ：商品リスト：カート */
.fs-c-button--addToCart--list {
  background-color: #bf0008;
  border-radius: 3px;
  color: #fff;
  display: block;
  font-size: calc(14rem / 16);
  line-height: 1;
  padding: 0.5em;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .fs-c-button--addToCart--list {
    display: inline-block;
    padding: 8px 16px 8px 12px;
    width: auto;
  }
}

/* グループページ：商品リスト：お気に入り */
.fs-c-button--particular.fs-c-button--addToWishList--icon::before,
.fs-c-button--particular.fs-c-button--removeFromWishList--icon::before {
  font-size: calc(18rem / 16);
}

.fs-c-productListItem__control>*:last-child {
  margin-left: 8px;
  margin-top: 0;
}

.fs-c-productListItem__control .fs-c-button--addToWishList--icon .fs-c-button__label,
.fs-c-productListItem__control .fs-c-button--removeFromWishList--icon .fs-c-button__label {
  display: none;
}