@charset "UTF-8";
/* ===============================
  変数
=============================== */
:root {
  --color-main: #FCA028;
  --color-sub: #EB6E00;
  --color-text: #111111;
  --color-blue: #2F5FB3;
  --color-border: #e5e5e5;
  --color-bg: #FEF8F2;
  --color-gray: #B4B4B4;
}


/* ===============================
  全体
=============================== */
.sp {
    display: none;
}
@media screen and (max-width: 767px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }    
}
div.wrapper_ {
    width: 100%;
}
.product-detail {
  /* width: 1200px; */
  margin: 0 auto;
  /* padding: 40px 20px; */
  /* color: var(--color-text); */
  line-height: 1.5;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 14px;
}

.product-ttl {
    font-size: 30px;
    position: relative;
    padding-left: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .product-ttl {
    font-size: 20px;
  }
}
.product-ttl::before {
    content: "";
    position: absolute;
    background-color: var(--color-main);
    width: 11px;
    height: 100%;
    border-radius: 3px;
    left: 0px;
}
@media screen and (max-width: 767px) {
  .product-ttl::before {
    width: 7px;
  }
}
.leftmenuframe_ {
  display: none;
}
div.container_ div.contents_,
div.container_ div.contents_ div.mainframe_ {
  width: auto;
  display: block;
}
/* ===============================
  パンくず
=============================== */
.navitopicpath_ {
  width: 1200px;
  margin: 0 auto 40px;
}
.navitopicpath_ a.topicpath_home_,
.navitopicpath_ li,
.navitopicpath_ li a,
.navitopicpath_ li:last-child a {
  color: #707070;
}
/* ===============================
  ヘッダー
=============================== */
.product-header {
  box-shadow: 1px 1px 4px rgb(0 0 0 / 10%);
  position: relative;
  padding: 18px 34px;
  border-radius: 5px;
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .product-header {
    padding: 20px 15px 20px 23px;
  }
}
.product-header::before {
  content: "";
  position: absolute;
  background-color: var(--color-main);
  width: 8px;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 5px 0 0 5px;
}
.product-header__brand {
  font-size: 18px;
  color: var(--color-blue);
  margin-bottom: 6px;
  font-weight: bold;
  display: block;
}
@media screen and (max-width: 767px) {
  .product-header__brand {
    font-size: 14px;
  }
}
.product-header__title {
  font-size: 54px;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .product-header__title {
    font-size: 32px;
  }
}
.product-header__model {
  font-size: 24px;
  /* color: var(--color-gray); */
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .product-header__model {
    font-size: 16px;
  }
}
.product-header__desc {
  font-size: 18px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .product-header__desc {
    font-size: 13px;
  }
}

/* バッジ */
.product-header__badges {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.product-header__badge {
  font-size: 14px;
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 4px 10px 4px 22px;
  border-radius: 20px;
  position: relative;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .product-header__badge {
    font-size: 12px;
  }
}
.product-header__badge.product-header__badge--shipping {
  padding: 4px 10px 4px 32px;
}
.product-header__badge--stock::before {
  content: "";
  position: absolute;
  /* color: var(--color-main); */
  background-image: url(/img/usr/event/col001/icon_original.png);
  width: 11px;
  height: 13px;
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
}
.product-header__badge--shipping::before {
  content: "";
  position: absolute;
  /* color: var(--color-main); */
  background-image: url(/img/usr/event/col001/icon_delivery.png);
  width: 19px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
}

/* ===============================
  メインエリア
=============================== */
.product-main {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  align-items: center;
  width: 1200px;
  margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
  .product-main {
    flex-direction: column;
    gap: 20px;
  }
}
/* 画像 */
.product-main__image {
  background-color: #F5F5F5;
  border-radius: 5px;
  width: 600px;
  /* display: flex; */
  /* align-items: center; */
  /* margin: 0 auto; */
  text-align: center;
  padding: 56px 10px;
}
@media screen and (max-width: 767px) {
  .product-main__image img {
    max-width: 100%;
  }
}

.product-main__image img {
  width: 100%;
  max-width: 408px;
  /* display: block; */
}


/* ===============================
  スペック
=============================== */
.product-spec {
  flex: 1;
}

.product-spec__title {
  font-weight: bold;
  /* margin-bottom: 10px; */
  background-color: #E7E2DC;
  display: inline-block;
  padding: 5px 19px;
  font-size: 16px;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .product-spec__title {
    font-size: 14px;
    padding: 4.5px 12px;
  }
}
.product-spec__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* font-size: 16px; */
  margin-top: 20px;
}

.product-spec__item {
  position: relative;
  padding-left: 43px;
  padding-bottom: 12px;
  font-size: 16px;
  border-bottom: 1px solid #E7E2DC;
}
@media screen and (max-width: 767px) {
  .product-spec__item {
    font-size: 14px;
    padding-left: 30px;
  }
}
.product-spec__item span {
  text-indent: -1em;
  padding-left: 1em;
  display: inline-block;
}
.product-spec__item:last-child {
  border-bottom: none;
}
.product-spec__item::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-main);
  z-index: 1;
  /* transition: 0.2s; */
}
@media screen and (max-width: 767px) {
  .product-spec__item::before {
    width: 18px;
    height: 18px;
  }
}
.product-spec__item::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 9px;
  width: 10px;
  height: 6px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(-45deg);
  z-index: 2;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .product-spec__item::after {
    top: 5px;
    left: 5px;
    width: 6px;
    height: 4px;
  }
}
/* ボタン */
.product-spec__btn {
  display: inline-block;
  margin-top: 20px;
  padding: 17.5px 49.5px;
  background: var(--color-sub);
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
  position: relative;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .product-spec__btn {
    width: 100%;
  }
}
.product-spec__btn::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  margin: 0 0 0 5px;
  border-right: #FFFFFF 3px solid;
  border-top: #FFFFFF 3px solid;
  /* display: block; */
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
  right: 22px;
}
.product-spec__btn:link {
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .product-spec__btn:link {
    padding: 12.5px 40.5px 12.5px 18px;
    text-align: center;
  }
}
.product-spec__btn:hover {
  opacity: 0.85;
}
.product-spec__btn:visited {
  text-decoration: underline;
    color: #FFFFFF;
}
/* ===============================
  目次（中央）
=============================== */
.toc {
  background: var(--color-bg);
  padding: 30px 70px 50px;
  margin: 60px auto 0;
  width: 872px;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .toc {
    padding: 20px 10px;
  }
}
.toc__title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 25px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .toc__title {
    margin-bottom: 10px;
  }
}
.toc__title::before {
  content: "";
  display: inline-block;
  background-image: url(/img/usr/event/col001/icon_toc_b.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 19px;
  height: 16px;
  padding-right: 4px;
}

.toc__item {
  border-bottom: 1px solid #d8d1c9;
}

.toc__item a {
  display: block;
  padding: 12px 12px 12px 30px;
  font-size: 18px;
  text-decoration: none;
  color: var(--color-text);
  position: relative;
}
@media screen and (max-width: 767px) {
  .toc__item a {
    font-size: 16px;
  }
}
.toc__item a::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  margin: 0 0 0 5px;
  border-right: var(--color-main) 2px solid;
  border-top: var(--color-main) 2px solid;
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
  left: 0;
}

/* ===============================
  追従目次
=============================== */
.floating-toc {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(100%);
  z-index: 10;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .floating-toc {
    transform: translateY(100%) translateX(0%);
    top: auto;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 1001;
  }
}

/* パネル */
.floating-toc__panel {
  background: #FEF8F2;
  border-radius: 6px 0 0 6px;
  border: 1px solid #E0D2CF;
  padding: 24px 100px 24px 100px;
  width: 418px;

}
@media screen and (max-width: 767px) {
  .floating-toc__panel {
    padding: 20px 15px 80px 15px;
  }
}
/* 開いた状態 */
.floating-toc.is-open {
  transform: translateY(-50%) translateX(0%);
}
@media screen and (max-width: 767px) {
  .floating-toc.is-open {
    transform: translateY(0%) translateX(0%);
    top: auto;
    bottom: 0;
  }
  .floating-toc__overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(207, 207, 207, 0.7);
      opacity: 0;
      transition: opacity .3s ease;
      visibility: hidden;
  }
  .floating-toc__overlay.is-open {
      opacity: 1;
      z-index: 1000;
      visibility: visible;
  }
}
@media screen and (max-width: 767px) {
  .floating-toc__title {
    text-align: center;
    font-weight: bold;
    font-size: 25px;    
  }
  .floating-toc__title::before {
    content: "";
    display: inline-block;
    background-image: url(/img/usr/event/col001/icon_toc_b.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 19px;
    height: 16px;
    margin-right: 1px  
  }
}
/* リスト */
.floating-toc__list {
  display: flex;
  flex-direction: column;
}

.floating-toc__item {
  border-bottom: 1px solid #ddd;
}

.floating-toc__item a {
  display: block;
  padding: 10px 10px 10px 30px;
  font-size: 15px;
  color: var(--color-text);
  text-decoration: none;
  position: relative;
}
.floating-toc__item a::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    margin: 0 0 0 5px;
    border-right: #FCA028 2px solid;
    border-top: #FCA028 2px solid;
    transform: translateY(-50%) rotate(45deg);
    top: 50%;
    left: 0;
}
/* ボタン */
.floating-toc__toggle {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  background: var(--color-sub);
  color: #fff;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  height: 245.3px;
  z-index: 11;
}
@media screen and (max-width: 767px) {
  .floating-toc__toggle {
    border-radius: 10px 0 0 10px;
    height: 97px;
    width: 55px;
    padding: 10px 12px 10px 10px;
    z-index: 1002;
  }
}
.floating-toc__toggle-text {
  font-size: 22px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .floating-toc__toggle-text {
    font-size: 18px;
  }
}
.floating-toc__toggle-text::before {
  content: "";
  display: inline-block;
  background-image: url(/img/usr/event/col001/icon_toc_w.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 19px;
  height: 16px;
  top: 0;
  left: 0;
  margin-bottom: 4px;
  /* padding-left: 0px; */
  margin-left: 5px;
}
.floating-toc__close {
    position: absolute;
    background: none;
    border: none;
    top: 50%;
    left: 25px;
    width: 40px;
    height: 52px;
    padding: 0;
    display: flex;
    align-items: flex-end;
    transform: translateY(-50%);cursor: pointer;
    color: var(--color-text);
}
@media screen and (max-width: 767px) {
  .floating-toc__close {
    width: 96px;
    top: auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    text-indent: 2em;
    font-size: 16px;
    -webkit-appearance: none;
    appearance: none;
  }
}
.floating-toc__close span {
  position: relative;
}
.floating-toc__close span::before,
.floating-toc__close span::after{
  content: "";
  position: absolute;
  
}
.floating-toc__close span::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-main);
  /* z-index: 1; */
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .floating-toc__close span::before {
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
  }
}

.floating-toc__close span::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-image: url(/img/usr/event/col001/icon_x.png);
  background-size: contain;
  background-repeat: no-repeat;
  /* top: 0; */
  left: 50%;
  transform: translateX(-50%);
  top: -22px;
}
@media screen and (max-width: 767px) {
  .floating-toc__close span::after {
    left: -25px;
    transform: translateX(-50%);
    top: calc(50% - 6px);
  }
}
/* ===============================
  消耗品一覧
=============================== */
.product-consumables {
  margin: 80px auto 0;
  width: 1200px;
}
@media screen and (max-width: 767px) {
  .product-consumables {
    margin: 50px auto 0;
    width: 100%;
  }
}
.product-item__list {
  display: flex;
  gap: 75px;
  margin-top: 50px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .product-item__list {
    gap: 15px;
  }
}
.product-item__list li {
  width: calc((100% - 300px )/ 5);
  padding: 0;
  /* margin: 0 0 50px 0; */
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 767px) {
  .product-item__list li {
    width: calc((100% - 15px )/ 2);
  }
}
.product-item__img {
  width: 180px;
  height: 180px;
  padding: 0;
  margin: 0 0 5px 0;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-item__img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 180px;
  box-sizing: border-box;
}


.product-item__icon {
  margin-bottom: 2px;
}
.product-item__icon img {
  height: 35px;
}
@media screen and (max-width: 767px) {
  .product-item__icon img {
    height: 30px;
  }
}
.product-item__name a {
  height: 60.5px !important;
  margin: 0 0 5px 0;
  font-size: 14px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .product-item__name a {
    height: 58.8px !important;
    margin: 0 0 5px 0;
    font-size: 14px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
}
.product-item__name a {
  text-decoration: none;
  color: #3F76BA;
}
.product-item__order_number {
  margin: 0 0 5px 0;
  display: flex;
  align-items: center;  
}
.product-item__order_number dt {
  padding: 0 10px 0 0;
  font-size: 14px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .product-item__order_number dt {
    padding: 0 10px 0 0;
    font-size: 11px;
  }
}
.product-item__order_number dd {
  font-size: 14px;
  letter-spacing: -0.5px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .product-item__order_number dt {
    font-size: 12px;
    letter-spacing: -0.5px;
  }
}
.product-item__maker_price {
  margin: 0 0 5px;
  display: flex;
  align-items: center;  
}
@media screen and (max-width: 767px) {
  .product-item__maker_price {
    margin: 0 0 3px;
    display: flex;
    align-items: center;
  }
}
.product-item__maker_price dt {
  margin: 0 10px 0 0;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .product-item__maker_price dt {
    margin: 0 10px 0 0;
    font-size: 11px;
  }
}
.product-item__maker_price dd {
  font-size: 10px;
}
@media screen and (max-width: 767px) {
  .product-item__maker_price dd {
    font-size: 11px;
  }
  .product-item__maker_price dd .large_ {
    font-size: 11px;
  }
}
.product-item__g_price {
  margin: 0 0 5px;
  display: flex;
  align-items: center;
}
.product-item__g_price dt {
  margin: 0 10px 0 0;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .product-item__g_price dt {
    font-size: 11px;
  }
}
.product-item__g_price dd {
  font-size: 14px;
  font-weight: bold;
  color: #D60000;
}
@media screen and (max-width: 767px) {
  .product-item__g_price dd {
    font-size: 11px;
  }
}
.product-item__g_price dd .large_ {
  font-size: 16px;
  font-weight: bold;
  color: #D60000;
}
@media screen and (max-width: 767px) {
  .product-item__g_price dd .large_ {
    font-size: 14px;
  }
}
.product-item__g_price dd .small_ {
  font-size: 12px;
  font-weight: normal;
  color: #D60000;
}
@media screen and (max-width: 767px) {
  .product-item__g_price dd .small_ {
    font-size: 10px;
  }
}
.product-item__item .cart_qty_ {
    margin: 0 0 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media screen and (max-width: 767px) {
  .product-item__item .cart_qty_ {
    margin: 5px 0;
  }
}
.product-item__item .qty_ {
    width: 63px;
    height: 40px;
}
@media screen and (max-width: 767px) {
  .product-item__item .qty_ {
    width: 52px;
    height: 34px;
  }
}
.product-item__item .qty_ .numberInput_ {
    padding: 0 22px 0 0;
}
@media screen and (max-width: 767px) {
  .product-item__item .qty_ .numberInput_ {
    padding: 0 20px 0 0;
  }
}
.product-item__item .qty_ .numberInput_ input[type="text"] {
    height: 38px;
    min-height: 38px;
    padding: 4px 0;
    text-align: center;
}
@media screen and (max-width: 767px) {
  .product-item__item .qty_ .numberInput_ input[type="text"] {
    width: 100%;
    height: 34px;
    min-height: 34px;
    padding: 0;
    text-align: center;
  }
}
.product-item__item .qty_ .numberInput_ .upBtn_ {
    width: 22px;
}
@media screen and (max-width: 767px) {
  .product-item__item .qty_ .numberInput_ .upBtn_ {
      width: 20px;
  }
}
.product-item__item .qty_ .numberInput_ .downBtn_ {
    width: 22px;
}
@media screen and (max-width: 767px) {
  .product-item__item .qty_ .numberInput_ .downBtn_  {
      width: 20px;
  }
}
.product-item__item .qty_ .numberInput_ .upBtn_::after,
.product-item__item .qty_ .numberInput_ .downBtn_::after {
    content: '';
    width: 6px;
    height: 6px;
    margin: 0;
    border-right: #111111 2px solid;
    border-top: #111111 2px solid;
    display: inline-block;
    transform: rotate(-45deg);
    position: absolute;
    right: 10px;
    top: calc(50% + 1px);
}
@media screen and (max-width: 767px) {
  .product-item__item .qty_ .numberInput_ .upBtn_::after,
  .product-item__item .qty_ .numberInput_ .downBtn_::after {
    width: 5px;
    height: 5px;
    right: 5px;
  }
}
.product-item__item .qty_ .numberInput_ .downBtn_::after {
    transform: rotate(135deg);
    top: calc(50% - 9px);
}
@media screen and (max-width: 767px) {
  .product-item__item .qty_ .numberInput_ .downBtn_::after {
    top: calc(50% - 7px);
  }
}
.product-item__item .cart_ {
    margin: 0;
    text-align: right;
}
@media screen and (max-width: 767px) {
  .product-item__item .cart_ {
    width: calc(100% - 57px);
  }
  .product-item__item .cart_ a {
    width: 100%;
    height: 34px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    color: #52433D;
    background: #FFEC8D;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.product-item__item .cart_ a img {
    height: 40px;
}
@media screen and (max-width: 767px) {
  .product-item__item .cart_ a img {
    height: 34px;
  }
}
.product-item__item .bookmark_ a {
    width: 100%;
    height: 32px;
    border: #E0D2CF 1px solid;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    color: #111111;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}
.product-item__item .bookmark_ a::before {
    content: 'お気に入りに追加';
    font-size: 12px;
    font-weight: bold;
}
.product-item__item .bookmark_ a::after {
    content: '';
    width: 8px;
    height: 8px;
    margin: 0 0 0 10px;
    display: inline-block;
    background: url(https://ec-shop.fielding.co.jp/img/usr/icon/ico_bookmark_plus.png) center center no-repeat;
    -webkit-background-size: 8px 8px;
    background-size: 8px 8px;
}

.product-consumables div.StyleP_Frame_ {
    padding: 0 20px;
}
.product-consumables div.StyleP_Line_ {
    column-gap: 60px;
}
/* ===============================
  ガイド（動画）
=============================== */
.product-guide {
  margin-top: 80px;
  background-color: var(--color-bg);
  padding: 80px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .product-guide {
    margin-top: 70px;
    padding: 60px 0px;
  }
  .product-guide::before {
    content: "";
    background-color: var(--color-bg);
    position: absolute;
    top: 0;
    left: -15px;
    width: calc(100% + 30px);
    height: 100%;
    z-index: -1;
  }
}
.product-guide-inner {
  width: 1200px;
  margin: 0 auto;
}
.product-guide__note {
  text-align: center;
  font-size: 14px;
  /* color: #999; */
  margin: 40px 0 10px;
}
@media screen and (max-width: 767px) {
  .product-guide__note {
    font-size: 13px;
  }
}
.product-guide__movie {
  aspect-ratio: 16 / 9;
  max-width: 600px;
  margin: 20px auto;
}
@media screen and (max-width: 767px) {
  .product-guide__movie {
    max-width: 600px;
  }
}
.product-guide__movie iframe {
  width: 100%;
  height: 100%;
}

.product-guide__movie-caption {
  text-align: center;
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .product-guide__movie-caption {
    font-size: 15px;
  }
}
.product-guide__movie .hacobune-app-container[data-v-147f80d2] {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .product-guide__movie .hacobune-app-container[data-v-147f80d2] {
    width: 100%;
    background-color: transparent;
  }
  .product-guide__movie .hacobune-unit-video[data-v-253249c8] {
    width: 100%;
    margin: 0;
  }
}
.product-guide__movie .hacobune-unit-video-outline {
  display: none;
}

/* ===============================
  手順（デザイン再現）
=============================== */
.product-guide__steps {
  margin-top: 30px;
  /* border-top: 1px solid #ddd; */
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .product-guide__steps {
    gap: 15px;
  }
}
.product-guide__step {
  display: grid;
  grid-template-columns: 103px 330px 1fr;
  align-items: center;
  background: #ffffff;
  /* border-bottom: 1px solid #ddd; */
  padding: 14px 20px;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .product-guide__step {
    display: block;
    padding: 15px 10px;
    border-radius: 5px;
  }
}

/* 左：手順 */
.product-guide__step-label {
  display: inline-block;
  font-size: 16px;
  color: var(--color-sub);
  background: #FEF8F2;
  padding: 5px 5px;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .product-guide__step-label {
    font-size: 14px;
    padding: 4.5px 18px;
    margin-bottom: 10px;
  }
}

/* 中央：タイトル */
.product-guide__step-title {
  font-weight: bold;
  font-size: 14px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .product-guide__step-title {
    font-size: 16px;
    padding-bottom: 10px;
  }
}
.product-guide__step-title::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 41px;
  background-color: #E7E2DC;
}
@media screen and (max-width: 767px) {
  .product-guide__step-title::after {
    right: auto;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 1px;
    left: 0;
  }
}
/* 右：説明 */
.product-guide__step-text {
  font-size: 15px;
  color: #666;
}
@media screen and (max-width: 767px) {
  .product-guide__step-text {
    padding-top: 10px;
  }
}

/* head不要に近いのでフラット化 */
.product-guide__step-head {
  display: contents;
}



/* ===============================
  FAQ 全体
=============================== */
.product-faq {
  margin: 80px auto;
  width: 1200px;
}
@media screen and (max-width: 767px) {
  .product-faq {
    margin: 60px auto;
  }
}
.product-faq__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 40px auto 0;
  width: 1166px;
}
@media screen and (max-width: 767px) {
  .product-faq__list {
    gap: 15px;
  }
}

/* ===============================
  質問（クリック部分）
=============================== */
.product-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px 10px 10px;
  background: #FEF8F2;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: 0.2s;
  border-radius: 5px;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* Qラベル */
.product-faq__q::before {
  content: "Q";
  position: absolute;
  background: var(--color-main);
  color: #fff;
  font-size: 20px;
  padding: 1.5px 8px;
  border-radius: 5px;
  flex-shrink: 0;
  font-weight: bold;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}


/* テキスト */
.product-faq__q {
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  padding-left: 40px;
  font-weight: bold;
}


/* ===============================
  ＋ / − アイコン
=============================== */
.product-faq__icon {
  position: relative;
  width: 14px;
  height: 14px;
  margin-left: auto;
  flex-shrink: 0;
}

/* 横線（常に表示） */
.product-faq__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-main);
  transform: translateY(-50%);
}

/* 縦線（閉じてる時だけ＝＋） */
.product-faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--color-main);
  transform: translateX(-50%);
  transition: 0.2s;
}

/* open時 → 縦線消える（＝−） */
.product-faq__item.is-open .product-faq__icon::after {
  opacity: 0;
}


/* ===============================
  回答
=============================== */
.product-faq__answer {
  padding: 18px 20px 18px 10px;
  background: #fff;

  font-size: 13px;
  line-height: 1.7;
  color: #555;
}

.product-faq__a {
  position: relative;
  padding-left: 40px;
  font-size: 15px;

}
/* Aラベル */
.product-faq__a::before {
  content: "A";
  position: absolute;
  background: #333;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 0px 8.5px;
  border-radius: 5px;
  top: 0;
  left: 0;
}
/* ===============================
  この機種をお使いの方はこちらも購入しています
=============================== */
.product-recommend {
  position: relative;
  background-color: var(--color-bg);
  padding: 80px 0 30px;
}
@media screen and (max-width: 767px) {
  .product-recommend {
    padding: 60px 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .product-recommend::before {
    content: "";
    background-color: var(--color-bg);
    position: absolute;
    top: 0;
    left: -15px;
    width: calc(100% + 30px);
    height: 100%;
  }
}
.product-recommend div.recommend_template_frame_ {
  border-top: none;
  padding-top: 0;
}
.product-recommend div.recommend_template_frame_ .recommend_template_title_ {
  font-size: 30px;
  position: relative;
  padding-left: 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .product-recommend div.recommend_template_frame_ .recommend_template_title_ {
    font-size: 20px;
  }
}
.product-recommend .recommend_template_title_::before {
  content: "";
  position: absolute;
  background-color: #FCA028;
  width: 11px;
  height: 100%;
  border-radius: 3px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .product-recommend .recommend_template_title_::before {
    width: 7px;
  }
}
.product-recommend div.StyleP_Frame_.slider-on::before,
.product-recommend div.StyleP_Frame_.slider-on::after {
  background-color: #FEF8F2;
}
.product-recommend div.StyleP_Item_ {
  background-color: #ffffff;
  padding: 6px 10px;
}
.product-recommend div.StyleP_Item_ .img_ {
  width: 160px;
  height: 160px;
}
@media screen and (max-width: 767px) {
  .product-recommend div.StyleP_Item_ .img_ {
    width: 100%;
      height: auto;
  }
  .product-recommend .recommend_template_frame_ ul.goods_p_ {
      width: auto;
      max-width: unset;
      column-gap: 15px;
      overflow-x: scroll;
      flex-wrap: nowrap;
      padding: 0 15px 10px 0;
      margin: 0 -15px 0 0;
      justify-content: flex-start;
  }
  .product-recommend .recommend_template_frame_ ul.goods_p_ .goods_p_item_ {
    background-color: #ffffff;
    padding: 6px 10px;
    width: 150px !important;
    min-width: 150px !important;
    margin: 0;
  }
}
.product-recommend div.StyleP_Item_ .cart_qty_ {
  gap: 5px;
}
/* ===============================
  その他のNEC製品
=============================== */
.product-others {
  padding: 70px 0;
  display:none;
}
.product-others-inner {
  width: 1200px;
  margin: 0 auto;
}
.product-others-content {
  display: flex;
  gap: 40px 20px;
  margin: 30px auto 0;
  width: 1166px;
  flex-wrap: wrap;
}
.product-others-content li {
  width: calc((100% - 60px) / 4);
}
@media screen and (max-width: 767px) {
  .product-others-content {
      width: auto;
      max-width: unset;
      column-gap: 20px;
      overflow-x: scroll;
      flex-wrap: nowrap;
      padding: 0 15px 10px 0;
      margin: 30px -15px 0 0;
      justify-content: flex-start;
  }
  .product-others-content li {
    width: 300px !important;
    min-width: 300px !important;
    margin: 0;
  }
}
.product-others__name {
  font-size: 15px;
  margin-top: 10px;
}
.product-name-text {
  color: #0067C0;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .product-name-text {
    font-size: 15px;
  }
}
/* その他NEC製品：テキストリンク全体 */
.product-others__name a {
  color: var(--color-text);   /* 型番は通常の文字色に */
  text-decoration: none;      /* 下線を消す */
}
.product-others__name a .product-name-text {
  color: #0067C0;             /* 製品名は青を維持 */
}