@charset "UTF-8";

/* 文字コードの指定 */
/* ページ全般の設定 */
/** {
    outline: 1px solid red;
  }*/
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

@media screen and (max-width: 320px) {
  html {
    font-size: 2.5641025641vw;
  }
}

body {
  color: #575858;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.015em;
  font-style: normal;
  margin-block-start: 0;
  margin-block-end: 0;
}

li {
  list-style: none;
}

a {
  color: #575858;
  text-decoration: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

em {
  font-style: normal;
}

/*=================================================
    共通スタイル
===================================================*/
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

/* .view_timer_s {
  display: none;
} */

.flex {
  display: flex;
  justify-content: space-between;
}

/* コンテンツ幅 */
.content-width {
  margin: 0 auto;
  max-width: 98rem;
}

@media (max-width: 767px) {
  .content-width {
    width: 100%;
  }
}

/* タイトル */
.section__ttl {
  line-height: 1.2;
  text-align: center;
}

.section__ttl span {
  display: block;
}

.section__ttl .en {
  color: #363636;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 3.5rem;
  font-weight: bold;
  letter-spacing: -0.01em;
}

@media (max-width: 767px) {
  .section__ttl .en {
    font-size: 2.4rem;
  }
}

.section__ttl .ja {
  color: #575858;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}

@media (max-width: 767px) {
  .section__ttl .ja {
    font-size: 1.6rem;
  }
}

.coupon-gide .section__ttl,
.support .section__ttl,
.privacy .section__ttl,
.guide .section__ttl,
.company .section__ttl,
.contract .section__ttl,
.security .section__ttl {
  display: flex;
  align-items: center;
  padding-bottom: 2.7rem;
  border-bottom: solid 1px #d5d5d5;
}

@media (max-width: 767px) {

  .coupon-gide .section__ttl,
  .support .section__ttl,
  .privacy .section__ttl,
  .guide .section__ttl,
  .company .section__ttl,
  .contract .section__ttl,
  .security .section__ttl {
    align-items: center;
    padding-bottom: 1rem;
  }
}

.coupon-gide .section__ttl .en,
.support .section__ttl .en,
.privacy .section__ttl .en,
.guide .section__ttl .en,
.company .section__ttl .en,
.contract .section__ttl .en,
.security .section__ttl .en {
  margin-right: 2.8rem;
  color: #575858;
  font-size: 2.8rem;
}

@media (max-width: 767px) {

  .coupon-gide .section__ttl .en,
  .support .section__ttl .en,
  .privacy .section__ttl .en,
  .guide .section__ttl .en,
  .company .section__ttl .en,
  .contract .section__ttl .en,
  .security .section__ttl .en {
    margin-right: 2rem;
    font-size: 2.4rem;
  }
}

.coupon-gide .section__ttl .ja,
.support .section__ttl .ja,
.privacy .section__ttl .ja,
.guide .section__ttl .ja,
.company .section__ttl .ja,
.contract .section__ttl .ja,
.security .section__ttl .ja {
  font-size: 1.8rem;
}

@media (max-width: 767px) {

  .coupon-gide .section__ttl .ja,
  .support .section__ttl .ja,
  .privacy .section__ttl .ja,
  .guide .section__ttl .ja,
  .company .section__ttl .ja,
  .contract .section__ttl .ja,
  .security .section__ttl .ja {
    font-size: 1.6rem;
  }
}

/* 本文 */
.section__txt {
  line-height: 1.4;
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  .section__txt {
    line-height: 2.1428571429;
    font-size: 1.4rem;
  }
}

/* グレー背景 */
.bg--gray {
  background: #f4f4f4;
}

/* 白背景 */
.bg--white {
  background: #fff;
}

/* 画像ホバー */
.item__image {
  transition: opacity 0.2s;
}

.item__image:hover {
  opacity: 0.6;
}

/*=================================================
    アニメーション
===================================================*/
/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeInTrigger {
  opacity: 0;
}

/*=================================================
    パンくずリスト
===================================================*/
.c-breadcrumb {
  padding: 1.95rem 0;
  color: #9b9b9b;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
}

@media (max-width: 767px) {
  .c-breadcrumb {
    margin-top: 4.9rem;
    padding: 1rem 2.8rem;
    color: #575858;
    font-size: 1rem;
  }
}

.c-breadcrumb ol {
  display: flex;
}

.c-breadcrumb ol li {
  margin-right: 1rem;
}

.c-breadcrumb ol li a {
  color: #9b9b9b;
}

@media (max-width: 767px) {
  .c-breadcrumb ol li a {
    color: #575858;
  }
}

/*=================================================
    テーブル
===================================================*/
.table-list {
  width: 100%;
  border: solid 1px #707070;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: left;
  letter-spacing: -0.01em;
  border-collapse: collapse;
}

@media (max-width: 767px) {
  .table-list {
    font-size: 1.4rem;
  }
}

.table-list th {
  padding: 1rem 0 1rem 1.5rem;
  background: #363636;
  color: #fff;
  font-weight: 400;
  border-bottom: solid 1px #fff;
}

.table-list td {
  padding: 1rem 2.2rem 1rem 2.9rem;
  background: #fff;
  border-bottom: solid 1px #9b9b9b;
}

@media (max-width: 767px) {
  .table-list td {
    line-height: 1.75;
    padding-left: 1.5rem;
  }
}

@media (max-width: 767px) {
  .table-list tr {
    display: flex;
    flex-direction: column;
  }
}

.table-list tr:last-child th,
.table-list tr:last-child td {
  border-bottom: none;
}

/*=================================================
    ヘッダー
===================================================*/
.header {
  position: relative;
  height: 10.5rem;
  padding: 0 2.78%;
  background: #2c2d2d;
  color: #bfbfbf;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic",
    sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  transition: top 300ms;
  /* アイコン */
  /* ドロップダウンメニュー */
  /* hover 下線 */
}

@media (max-width: 1100px) {
  .header {
    padding: 0 1%;
    font-size: 1.4rem;
  }
}

@media (max-width: 767px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 4.9rem;
    padding: 0 1.5rem 0 0;
  }
}

.header .header__wrapper {
  display: flex;
  align-items: center;
}

@media (max-width: 1023px) {
  .header .header__wrapper {
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .header .header__wrapper {
    height: 4.9rem;
  }
}

.header .header__menu {
  display: flex;
  align-items: center;
  width: 100%;
  height: 10.5rem;
}

@media (max-width: 1023px) {
  .header .header__menu {
    width: 81.63%;
  }
}

@media (max-width: 767px) {
  .header .header__menu {
    justify-content: flex-end;
    height: 4.9rem;
  }
}

.header .header__logo {
  width: 100%;
  margin-right: 4.88rem;
  max-width: 12.7rem;
}

@media (max-width: 1023px) {
  .header .header__logo {
    margin-right: 1rem;
    max-width: 10.7rem;
  }
}

@media (max-width: 767px) {
  .header .header__logo {
    margin-right: 0;
    margin-left: 0.3rem;
    max-width: 8.7rem;
  }
}

.header .header__logo img {
  width: 100%;
  max-width: 12.7rem;
}

@media (max-width: 1023px) {
  .header .header__logo img {
    max-width: 10.7rem;
  }
}

@media (max-width: 767px) {
  .header .header__logo img {
    vertical-align: baseline;
    max-width: 8.7rem;
  }
}

.header .header__menu-link {
  justify-content: flex-start;
  width: 100%;
  max-width: 69%;
}

@media (max-width: 1023px) {
  .header .header__menu-link {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .header .header__menu-link {
    display: none;
  }
}

.header .header__menu-link a {
  position: relative;
}

.header .header__menu-link a:hover {
  color: #fff;
}

.header .header__menu-link .top-link {
  display: block;
  display: block;
  position: relative;
  color: #bfbfbf;
  font-size: 1.6rem;
  font-weight: 500;
}

@media (max-width: 1365px) {
  .header .header__menu-link .top-link {
    font-size: 1.1vw;
  }
}

@media (max-width: 1023px) {
  .header .header__menu-link .top-link {
    font-size: 1.2rem;
  }
}

@media (min-width: 768px) {
  .header .header__menu-link .top-link:hover::after {
    position: absolute;
    right: 50%;
    bottom: -0.7rem;
    left: 50%;
    width: 4.8rem;
    height: 1px;
    background: #fff;
    content: "";
    transform: translateY(-50%) translateX(-50%);
  }
}

.header .header__icon {
  display: flex;
  align-items: flex-end;
}

@media (max-width: 1023px) {
  .header .header__icon {
    align-items: flex-end;
  }
}

@media (max-width: 767px) {

  .header .header__icon .cart-icon,
  .header .header__icon .mypage-icon {
    display: none;
  }
}

.header .header__icon li {
  margin-right: 2.5rem;
  padding-right: 0;
  padding-left: 0;
}

@media (max-width: 1023px) {
  .header .header__icon li {
    margin-right: 1.3rem;
  }
}

@media (max-width: 767px) {
  .header .header__icon li {
    margin-right: 1rem;
    text-align: center;
  }
}

.header .header__icon li:last-child {
  margin-right: 0;
}

.header .header__icon a:last-of-type {
  margin-right: 0;
}

@media (max-width: 767px) {
  .header .header__icon a span {
    margin: 0 auto;
  }
}

.header .header__icon .favorite {
  display: block;
  width: 2.3rem;
  height: 2rem;
  background-image: url(../images/icon_favorite.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .header .header__icon .favorite {
    width: 1.7rem;
    height: 1.4rem;
    margin-bottom: 0.2rem;
  }
}

.header .header__icon .favorite:hover {
  background-image: url(../images/icon_favorite-wh.svg);
}

.header .header__icon .maypage {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background-image: url(../images/icon_mypage.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .header .header__icon .maypage {
    width: 1.7rem;
    height: 1.7rem;
  }
}

.header .header__icon .maypage:hover {
  background-image: url(../images/icon_mypage-wh.svg);
}

.header .header__icon .cart {
  display: block;
  width: 2.8rem;
  height: 2.5rem;
  background-image: url(../images/icon_cart.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .header .header__icon .cart {
    width: 2.1rem;
    height: 1.9rem;
  }
}

.header .header__icon .cart:hover {
  background-image: url(../images/icon_cart-wh.svg);
}

.header .header__search-link {
  align-items: flex-end;
}

.header .header__menu-link__second {
  position: absolute;
  top: 10.5rem;
  left: 0;
  z-index: 13;
  width: 100%;
  visibility: hidden;
  padding: 1.6rem 0 3.4rem;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.5);
  background-color: rgba(51, 51, 51, 0.9);
  /* アイコンの設定 */
}

.header .header__menu-link__second .inner {
  display: grid;
  justify-content: center;
  margin: 0 auto;
  padding: 0 1rem;
  max-width: 126.1rem;
  grid-template-columns: repeat(auto-fit, 161px);
  gap: 1.9rem;
  row-gap: 5rem;
}

.header .header__menu-link__second .more-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 17.1rem;
  height: 3.7rem;
  margin: 3.5rem auto 0;
  border: solid 1px #fff;
  color: #fff;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic",
    sans-serif;
  font-size: 1.5rem;
  border-radius: 1.9rem;
}

.header .header__menu-link__second .header__product__item {
  margin-top: 0;
}

.header .header__menu-link__second .header__products__ttl {
  padding-bottom: 0.9rem;
  color: #f7f7f7;
  font-family: "Open Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-bottom: solid 0.5px #fff;
}

@media (max-width: 1023px) {
  .header .header__menu-link__second .header__products__ttl {
    font-size: 1.2rem;
  }
}

.header .header__menu-link__second .header__products__list {
  display: block;
  margin-top: 3rem;
}

.header .header__menu-link__second .header__products__list li {
  display: flex;
  position: relative;
  align-items: center;
  margin-bottom: 5.5rem;
  font-size: 1rem;
  font-weight: 400;
}

.header .header__menu-link__second .header__products__list li:before {
  position: absolute;
  top: 50%;
  bottom: 50%;
  background-size: contain;
  content: "";
  transform: translateY(-50%);
}

.header .header__menu-link__second .header__products__list li a {
  color: #bfbfbf;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic",
    sans-serif;
}

.header .header__menu-link__second .header__products__list li a:hover {
  color: #fff;
  transition: 0.3s;
}

.header .header__menu-link__second .header__products__list li:last-child {
  margin-bottom: 0;
}

.header .header__menu-link__second .category-home li {
  padding-left: 5.9rem;
}

.header .header__menu-link__second .category-home li:nth-child(1)::before {
  left: 1.7rem;
  width: 2.5rem;
  height: 3.3rem;
  background-image: url(../images/icon_steamer.svg);
}

.header .header__menu-link__second .category-home li:nth-child(2)::before {
  left: 0.8rem;
  width: 3.8rem;
  height: 2.2rem;
  background-image: url(../images/icon_iron.svg);
}

.header .header__menu-link__second .category-home li:nth-child(3)::before {
  left: 1.3rem;
  width: 3.1rem;
  height: 4.5rem;
  background-image: url(../images/icon_futon-cleaner.svg);
}

.header .header__menu-link__second .category-vacuum li {
  padding-left: 4.5rem;
}

.header .header__menu-link__second .category-vacuum li:nth-child(1)::before {
  left: 0.7rem;
  width: 2.1rem;
  height: 4.4rem;
  background-image: url(../images/icon_stick.svg);
}

.header .header__menu-link__second .category-vacuum li:nth-child(2)::before {
  left: -0.7rem;
  width: 3.8rem;
  height: 2.6rem;
  background-image: url(../images/icon_cyclone.svg);
}

.header .header__menu-link__second .category-vacuum li:nth-child(3)::before {
  left: -0.7rem;
  width: 3.2rem;
  height: 1.4rem;
  background-image: url(../images/icon_robot-cleaner.svg);
}

.header .header__menu-link__second .category-kitchen li {
  padding-left: 5.6rem;
}

.header .header__menu-link__second .category-kitchen li:nth-child(1)::before {
  left: 1.1rem;
  width: 2.6rem;
  height: 2.8rem;
  background-image: url(../images/icon_suihanki.svg);
}

.header .header__menu-link__second .category-kitchen li:nth-child(2)::before {
  left: 1.4rem;
  width: 2rem;
  height: 3.9rem;
  background-image: url(../images/icon_water.svg);
}

.header .header__menu-link__second .category-kitchen li:nth-child(3)::before {
  left: 1.1rem;
  width: 2.6rem;
  height: 3.2rem;
  background-image: url(../images/icon_dryer.svg);
}

.header .header__menu-link__second .category-seasonal li {
  padding-left: 7.6rem;
}

.header .header__menu-link__second .category-seasonal li:nth-child(1)::before {
  left: 2.7rem;
  width: 2.1rem;
  height: 3.6rem;
  background-image: url(../images/icon_fun.svg);
}

.header .header__menu-link__second .category-seasonal li:nth-child(2)::before {
  left: 2.6rem;
  width: 2.4rem;
  height: 2.5rem;
  background-image: url(../images/icon_takujo-heater.svg);
}

.header .header__menu-link__second .category-seasonal li:nth-child(3)::before {
  left: 2.6rem;
  width: 2.4rem;
  height: 2.8rem;
  background-image: url(../images/icon_tankujo-fun.svg);
}

.header .header__menu-link__second .category-beauty li {
  padding-left: 5.7rem;
}

.header .header__menu-link__second .category-beauty li:nth-child(1)::before {
  left: 2rem;
  width: 1.4rem;
  height: 3.5rem;
  background-image: url(../images/icon_suiso.svg);
}

.header .header__menu-link__second .category-beauty li:nth-child(2)::before {
  left: 0.7rem;
  width: 3.9rem;
  height: 2rem;
  background-image: url(../images/icon_active.svg);
}

.header .header__menu-link__second .category-beauty li:nth-child(3)::before {
  left: 1.7rem;
  width: 2.5rem;
  height: 3.5 rem;
  background-image: url(../images/icon_kubikake.svg);
}

.header .header__menu-link__second .category-storage li {
  padding-left: 6.4rem;
}

.header .header__menu-link__second .category-storage li:nth-child(1)::before {
  left: 1.3rem;
  width: 2.6rem;
  height: 2.8rem;
  background-image: url(../images/icon_storage.svg);
}

.header .header__menu-link__second .category-storage li:nth-child(2)::before {
  left: 1rem;
  width: 3.3rem;
  height: 3.6rem;
  background-image: url(../images/icon_light.svg);
}

.header .header__menu-link__single.cart-drop {
  position: inherit;
}

.header .link-line {
  position: relative;
}

@media (min-width: 768px) {
  .header .link-line:hover::after {
    position: absolute;
    right: 50%;
    bottom: -0.8rem;
    left: 50%;
    width: 4.8rem;
    height: 1px;
    background: #fff;
    content: "";
    transform: translateY(-50%) translateX(-50%);
  }
}

.header .cart-menu {
  right: 0;
  left: inherit;
  width: 19.2rem;
  padding: 2.6rem 0 1.8rem 2rem;
}

@media (max-width: 767px) {
  .header .cart-menu {
    display: none;
  }
}

.header .cart-menu .cart-menu__list .list-item {
  margin-right: 0;
  margin-bottom: 2.7rem;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.header .cart-menu .cart-menu__list .list-item:hover::after {
  background: none;
}

.header .cart-menu .cart-menu__list .list-item .cart-icon {
  width: 2.8rem;
  margin-right: 0.54rem;
}

.header .cart-menu .cart-menu__list .list-item .mypage-icon {
  width: 2.3rem;
  margin-right: 0.9rem;
}

.header .cart-menu .cart-menu__list .list-item a {
  color: #fff;
}

/* ヘッダーメニュー */
.header__menu-link__single {
  display: flex;
  align-items: center;
  padding-right: 1.75rem;
  padding-left: 1.75rem;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .header__menu-link__single {
    height: 10.5rem;
  }
}

@media (max-width: 1023px) {
  .header__menu-link__single {
    margin-right: 1.4vw;
    padding-right: 0;
    padding-left: 0;
  }
}

.header__menu-link__single:last-child {
  margin-right: 0;
}

.header__menu-link__single:hover .header__menu-link__second {
  visibility: visible;
}

/* 検索 */
@media (min-width: 768px) {
  .seach__btn {
    display: flex;
    align-items: center;
    height: 10.5rem;
  }
}

/* カートBOX内数表示 */
.cart_quantity {
  position: absolute;
  top: -4px;
  right: 12px;
  left: 14px;
  z-index: 1;
  width: 16px;
  height: 16px;
  line-height: 16px;
  box-shadow: 0px 1px 2px #ccc;
  background: #3778e1;
  color: #fff;
  font-size: 12px;
  text-align: center;
  border-radius: 8px;
}

/*=================================================
    SP ハンバーガーメニュー
===================================================*/
/* ハンバーガーメニューボタン */
.hamburger-btn {
  width: 4.9rem;
  height: 4.9rem;
}

@media (min-width: 768px) {
  .hamburger-btn {
    display: none;
  }
}

.hamburger-btn .hamburger-btn__line {
  position: relative;
  right: 50%;
  left: 50%;
  width: 4.9rem;
  height: 4.9rem;
  transform: translateX(-50%);
}

.hamburger-btn .hamburger-btn__line .line {
  position: absolute;
  right: 50%;
  left: 50%;
  width: 2.1rem;
  height: 1px;
  background: #fff;
  content: "";
  transform: translateY(-50%) translateX(-50%);
  transition: 0.3s;
}

.hamburger-btn .hamburger-btn__line .line:nth-child(1) {
  top: 1.6rem;
}

.hamburger-btn .hamburger-btn__line .line:nth-child(2) {
  top: 2.4rem;
}

.hamburger-btn .hamburger-btn__line .line:nth-child(3) {
  top: 3.2rem;
}

/* ×　オープン */
.hamburger-btn.open .line:nth-child(1),
.hamburger-btn.open .line:nth-child(2),
.hamburger-btn.open .line:nth-child(3) {
  top: 2.3rem;
  left: 1.8rem;
}

.hamburger-btn.open .line:nth-child(1) {
  transform: rotate(-45deg);
}

.hamburger-btn.open .line:nth-child(2) {
  transform: rotate(45deg);
}

.hamburger-btn.open .line:nth-child(3) {
  transform: rotate(45deg);
}

.l-header__hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  line-height: 1;
  border: none;
  background-color: transparent;
  font-size: 3rem;
}

@media (min-width: 768px) {
  .l-header__hamburger {
    display: none;
  }
}

/* メニューの中身 */
#hamburger-menu {
  position: fixed;
  top: 4.9rem;
  left: -86.41%;
  z-index: 99;
  width: 100%;
  height: 100%;
  visibility: hidden;
  padding: 0.7rem 1.8rem 2.6rem;
  background-color: #333333;
  color: #fff;
}

#hamburger-menu .member-button {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  gap: 2.4rem;
}

#hamburger-menu .member-button .button--border {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 14.1rem;
  height: 3.3rem;
  border: solid 1px #fff;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 10rem;
}

#hamburger-menu .tel {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.25rem;
}

#hamburger-menu .tel a {
  color: #fff;
}

#hamburger-menu .tel .icon_phone {
  width: 4.1rem;
  margin-right: 0.7rem;
}

#hamburger-menu .tel .tel__txt .open {
  font-size: 1.3rem;
}

#hamburger-menu .tel .tel__txt .number {
  font-size: 2.4rem;
}

#hamburger-menu .contact-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 21.9rem;
  height: 3rem;
  margin: 0.68rem auto 0;
  background: #fff;
  color: #000000;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 10rem;
}

#hamburger-menu .contact-button span {
  position: relative;
  padding-right: 2.1rem;
}

#hamburger-menu .contact-button span:after {
  position: absolute;
  top: 14%;
  right: 0;
  width: 1.7rem;
  height: 1.4rem;
  background-image: url(../images/icon_mail.svg);
  background-size: contain;
  content: "";
}

#hamburger-menu .sns-list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 4.9rem;
  padding-bottom: 5rem;
  gap: 1.5rem;
}

#hamburger-menu .sns-list .twitter {
  width: 2.5rem;
}

/* ハンバーガーメニュー開いた時 */
#hamburger-menu.open {
  left: 0;
  width: 86.41%;
  /* メニューをスクロールさせる */
  overflow: scroll;
  visibility: visible;
  transform: translate(0px, 0px) translateZ(0px);
  transition: all 0.5s;
  webkit-overflow-scrolling: touch;
}

/* ハンバーガーメニュー */
.hamburger-menu__list li {
  position: relative;
  color: #fff;
  font-size: 1.6rem;
  border-bottom: solid 1px #989797;
  /* アコーディオン タイトル */
  /* アコーディオンメニュー開く */
  /* アコーディオン中身 */
  /* アコーディオンなし 通常リンク */
}

.hamburger-menu__list li a {
  display: block;
  padding: 2rem 2rem 2rem 0.9rem;
  color: #fff;
}

.hamburger-menu__list li .hamburger-menu__accordion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.63rem 0 1.83rem 1.5rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  /* 矢印 */
}

.hamburger-menu__list li .hamburger-menu__accordion .arrow {
  display: block;
  width: 13px;
  height: 13px;
  transform: rotate(45deg);
  border-bottom: solid 2px #fff;
  border-right: solid 2px #fff;
}

.hamburger-menu__list li .open .arrow {
  transform: rotate(-135deg);
}

.hamburger-menu__list li .hamburger-menu__list__inner {
  display: none;
  position: relative;
  border-top: solid 1px #989797;
}

.hamburger-menu__list li .hamburger-menu__list__inner li {
  width: 95%;
  margin: 0 0 0 auto;
}

.hamburger-menu__list li .hamburger-menu__list__inner li a {
  padding: 1.63rem 0 1.83rem 1.5rem;
  font-size: 1.3rem;
  font-weight: 500;
}

.hamburger-menu__list li .hamburger-menu__list__inner li:last-child {
  border-bottom: none;
}

.hamburger-menu__list li .hamburger-menu__single {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.63rem 0 1.83rem 1.5rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.hamburger-menu__list li .hamburger-menu__single .arrow {
  display: block;
  width: 13px;
  height: 13px;
  transform: rotate(-45deg);
  border-bottom: solid 2px #fff;
  border-right: solid 2px #fff;
}

.hamburger-menu__list li .hamburger-menu__single .cart-icon {
  width: 2.3rem;
  margin-right: 0.3rem;
}

.hamburger-menu__list li .hamburger-menu__single .maypage-icon {
  width: 1.863rem;
  margin-right: 0.65rem;
}

/* 背景 */
.menu-background {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 0;
  height: 0;
  background-color: transparent;
  content: "";
  transition: opacity 0.5s;
  opacity: 0;
}

/* 背景表示 */
.menu-background.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}

/* 背景スクロールさせない */
body.open {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

header.open {
  position: fixed;
  z-index: 100;
}

/*　上に上がる動き　*/
@media (max-width: 767px) {

  @keyframes UpAnime {
    from {
      transform: translateY(0);
    }

    to {
      transform: translateY(-100px);
    }
  }

  @keyframes DownAnime {
    from {
      transform: translateY(-100px);
    }

    to {
      transform: translateY(0);
    }
  }
  #header.UpMove {
    animation: UpAnime 0.5s forwards;
  }

  /*　下に下がる動き　*/
  #header.DownMove {
    animation: DownAnime 0.5s forwards;
  }
}

/*=================================================
    ヘッダー PRODUCTS 商品カテゴリー覧
===================================================*/
.header__menu-link__second {
  /* カテゴリ */
  /* アイコンの設定 */
}

.header__menu-link__second .products__list__wrapper {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 0;
}

@media (max-width: 1023px) {
  .header__menu-link__second .products__list__wrapper {
    justify-content: space-evenly;
  }
}

@media (max-width: 767px) {
  .header__menu-link__second .products__list__wrapper {
    flex-direction: column;
    margin-top: 2rem;
  }
}

.header__menu-link__second .product__item {
  width: 100%;
  margin-top: 0;
  margin-right: 2.04%;
  max-width: 16.1rem;
  /* カテゴリータイトル */
}

@media (max-width: 767px) {
  .header__menu-link__second .product__item:nth-child(1) {
    border-top: solid 0.5px #fff;
  }
}

.header__menu-link__second .product__item:nth-child(4n) {
  margin-right: 2.04%;
}

.header__menu-link__second .product__item:last-child {
  margin-right: 0;
}

@media (max-width: 767px) {
  .header__menu-link__second .product__item:nth-child(1) .products__icon {
    width: 1.5rem;
  }

  .header__menu-link__second .product__item:nth-child(2) .products__icon {
    width: 1.4rem;
  }

  .header__menu-link__second .product__item:nth-child(3) .products__icon {
    width: 1.8rem;
  }

  .header__menu-link__second .product__item:nth-child(4) .products__icon {
    width: 1.4rem;
  }

  .header__menu-link__second .product__item:nth-child(5) .products__icon {
    width: 0.9rem;
  }

  .header__menu-link__second .product__item:nth-child(6) .products__icon {
    width: 1.7rem;
  }
}

.header__menu-link__second .product__item .products__ttl {
  padding-bottom: 0.8rem;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-bottom: solid 0.5px #fff;
}

@media (max-width: 767px) {
  .header__menu-link__second .product__item .products__ttl {
    display: flex;
    position: relative;
    align-items: center;
    padding: 1.7rem 0 1.7rem 0.4rem;
    font-size: 1.4rem;
  }

  .header__menu-link__second .product__item .products__ttl:after {
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 50%;
    width: 12.5px;
    height: 0.5px;
    background: #fff;
    content: "";
    transform: translateY(-50%) translateX(-50%);
  }

  .header__menu-link__second .product__item .products__ttl:before {
    position: absolute;
    top: 50%;
    right: 12px;
    bottom: 50%;
    width: 0.5px;
    height: 12.5px;
    background: #fff;
    content: "";
    transform: translateY(-50%) translateX(-50%);
  }
}

@media (max-width: 767px) {
  .header__menu-link__second .product__item .products__ttl .en {
    margin-right: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
  }
}

@media (max-width: 767px) {
  .header__menu-link__second .product__item .products__ttl .ja {
    font-size: 1.3rem;
    font-weight: 400;
  }
}

.header__menu-link__second .product__item .products__list {
  display: block;
  margin-top: 3rem;
}

@media (max-width: 767px) {
  .header__menu-link__second .product__item .products__list {
    display: none;
    margin-top: 0;
  }
}

.header__menu-link__second .product__item .products__list li {
  display: flex;
  position: relative;
  align-items: center;
  margin-bottom: 5.5rem;
}

@media (max-width: 767px) {
  .header__menu-link__second .product__item .products__list li {
    margin-bottom: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 6rem;
  }
}

.header__menu-link__second .product__item .products__list li:before {
  position: absolute;
  top: 50%;
  bottom: 50%;
  background-size: contain;
  content: "";
  transform: translateY(-50%);
}

.header__menu-link__second .product__item .products__list li a {
  color: #f7f7f7;
  font-size: 1rem;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .header__menu-link__second .product__item .products__list li:last-child {
    border-bottom: solid 0.5px #fff;
  }
}

@media (max-width: 767px) {
  .header__menu-link__second .products__ttle.open:before {
    display: none;
  }
}

.header__menu-link__second .category-home--header li {
  padding-left: 5.9rem;
}

.header__menu-link__second .category-home--header li:nth-child(1)::before {
  left: 0.9rem;
  width: 3.5rem;
  height: 4.3rem;
  background-image: url(../images/icon_futon-cleaner.svg);
}

.header__menu-link__second .category-home--header li:nth-child(2)::before {
  left: 0.5rem;
  width: 3.8rem;
  height: 2.2rem;
  background-image: url(../images/icon_iron.svg);
}

.header__menu-link__second .category-home--header li:nth-child(3)::before {
  left: 1.3rem;
  width: 2.3rem;
  height: 3.2rem;
  background-image: url(../images/icon_oritatami.svg);
}

.header__menu-link__second .category-vacuum li {
  padding-left: 6.2rem;
}

.header__menu-link__second .category-vacuum li:nth-child(1)::before {
  left: 0.9rem;
  width: 2.1rem;
  height: 4.4rem;
  background-image: url(../images/icon_stick.svg);
}

.header__menu-link__second .category-vacuum li:nth-child(2)::before {
  left: -0.7rem;
  width: 3.8rem;
  height: 2.6rem;
  background-image: url(../images/icon_cyclone.svg);
}

.header__menu-link__second .category-kitchen li {
  padding-left: 7.8rem;
}

.header__menu-link__second .category-kitchen li:nth-child(1)::before {
  left: 1.6rem;
  width: 2.6rem;
  height: 2.8rem;
  background-image: url(../images/icon_suihanki.svg);
}

.header__menu-link__second .category-kitchen li:nth-child(2)::before {
  left: 2rem;
  width: 2rem;
  height: 3.9rem;
  background-image: url(../images/icon_water.svg);
}

.header__menu-link__second .category-kitchen li:nth-child(3)::before {
  left: 1.6rem;
  width: 2.6rem;
  height: 3.2rem;
  background-image: url(../images/icon_dryer.svg);
}

.header__menu-link__second .category-kitchen li:nth-child(4)::before {
  left: 1.1rem;
  width: 2.6rem;
  height: 3.2rem;
  background-image: url(../images/icon_dryer.svg);
}

.header__menu-link__second .category-seasonal--header li {
  padding-left: 7.6rem;
}

.header__menu-link__second .category-seasonal--header li:nth-child(1)::before {
  left: 2.7rem;
  width: 2.1rem;
  height: 3.6rem;
  background-image: url(../images/icon_fun.svg);
}

.header__menu-link__second .category-seasonal--header li:nth-child(2)::before {
  left: 2.6rem;
  width: 2.4rem;
  height: 2.5rem;
  background-image: url(../images/icon_takujo-heater.svg);
}

.header__menu-link__second .category-seasonal--header li:nth-child(3)::before {
  left: 2.5rem;
  width: 2.7rem;
  height: 2.3rem;
  background-image: url(../images/icon_humidifier.svg);
}

.header__menu-link__second .category-beauty--header li {
  padding-left: 5.9rem;
}

.header__menu-link__second .category-beauty--header li:nth-child(1)::before {
  left: 2.2rem;
  width: 1.4rem;
  height: 3.5rem;
  background-image: url(../images/icon_suiso.svg);
}

.header__menu-link__second .category-beauty--header li:nth-child(2)::before {
  left: 0.9rem;
  width: 3.9rem;
  height: 2rem;
  background-image: url(../images/icon_active.svg);
}

.header__menu-link__second .category-beauty--header li:nth-child(3)::before {
  left: 1.4rem;
  width: 2.4rem;
  height: 2.4rem;
  background-image: url(../images/icon_air-leg.svg);
}

.header__menu-link__second .category-storage li {
  padding-left: 6.4rem;
}

.header__menu-link__second .category-storage li:nth-child(1)::before {
  left: 1.3rem;
  width: 2.6rem;
  height: 2.8rem;
  background-image: url(../images/icon_storage.svg);
}

.header__menu-link__second .category-storage li:nth-child(2)::before {
  left: 1rem;
  width: 3.3rem;
  height: 3.6rem;
  background-image: url(../images/icon_light.svg);
}

.header__menu-link__second .category-storage li:nth-child(3)::before {
  left: 1.2rem;
  width: 3rem;
  height: 3rem;
  background-image: url(../images/icon_zakka.svg);
}

.header__menu-link__second .category-emf li {
  padding-left: 6.4rem;
}

.header__menu-link__second .category-emf li:nth-child(1)::before {
  left: 1.3rem;
  width: 2.6rem;
  height: 2.9rem;
  background-image: url(../images/icon_sheat.svg);
}

/* カレント表示 */
.header__menu-link__single a.current {
  color: #fff;
}

.header__menu-link__single a.current::after {
  position: absolute;
  right: 50%;
  bottom: -0.7rem;
  left: 50%;
  width: 4.8rem;
  height: 1px;
  background: #fff;
  content: "";
  transform: translateY(-50%) translateX(-50%);
}

/*=================================================
    検索ボックス
===================================================*/
@media (max-width: 767px) {
  .seach__btn {
    margin-right: 1rem;
    text-align: center;
  }
}

/*========= 検索窓を開くためのボタン設定 ===========*/
.open-btn {
  position: relative;
  width: 2rem;
  height: 2.2rem;
  margin-right: 2.5rem;
  background: url("../images/icon_serch.svg") no-repeat center;
  background-size: 2rem 2.2rem;
  cursor: pointer;
  transition: 0.3s;
}

@media (min-width: 1024px) {
  .open-btn:hover {
    width: 2rem;
    height: 2.2rem;
    background: url("../images/icon_serch-wh.svg") no-repeat center;
    background-size: 2rem 2.2rem;
  }
}

@media (max-width: 1023px) {
  .open-btn {
    margin-right: 1.3rem;
  }
}

@media (max-width: 767px) {
  .open-btn {
    width: 1.48rem;
    height: 1.6rem;
    margin-right: 0;
    background-size: contain;
    background-position: center;
  }
}

/*========= 検索窓の設定 ===============*/
/*==検索窓背景のエリア*/
#search-wrap {
  position: absolute;
  /*絶対配置にして*/
  top: 10.5rem;
  left: 0;
  z-index: -1;
  width: 100%;
  transition: ease 0.4s;
  /*最背面に設定*/
  opacity: 0;
  /*transitionを使ってスムースに現れる*/
}

/*ボタンクリック後、JSで#search-wrapに panelactive クラスが付与された後の見た目*/
#search-wrap.panelactive {
  top: 10.5rem;
  left: 0;
  /*不透明に変更*/
  z-index: 3;
  /*全面に出現*/
  width: 100%;
  padding: 3.5rem 0;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.5);
  background-color: rgba(51, 51, 51, 0.8);
  opacity: 1;
}

@media (max-width: 767px) {
  #search-wrap.panelactive {
    top: 4.9rem;
    padding: 6px 0;
  }
}

/*==検索窓*/
#search-wrap #searchform {
  display: none;
  position: relative;
  width: 76.4rem;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 1023px) {
  #search-wrap #searchform {
    width: 55.4rem;
  }
}

@media (max-width: 767px) {
  #search-wrap #searchform {
    width: 26.6rem;
    margin: 0 auto;
  }
}

/*ボタンクリック後、JSで#search-wrapに panelactive クラスが付与された後*/
#search-wrap.panelactive #searchform {
  display: block;
  /*検索窓を表示*/
}

/*==検索フォームの設定*/
/*==テキスト入力とボタンinput共通設定*/
#search-wrap input {
  /*カーソルを指マークに*/
  color: #989797;
  font-size: 16px;
  /*SafariやChromeのデフォルトの設定を無効*/
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
}

@media (max-width: 767px) {
  #search-wrap input {
    font-size: 10px;
  }
}

#search-wrap input {
  /*入力済み*/
  background: #fff;
}

#search-wrap :-moz-placeholder-shown {
  /*未入力*/
  background: #fff;
}

#search-wrap :placeholder-shown {
  /*未入力*/
  background: #fff;
}

/*テキスト入力input設定*/
#search-wrap input[type="text"] {
  width: 76.4rem;
  height: 40px;
  padding: 0.8rem 2.5rem;
  border: 1px solid #707070;
  background: #fff;
  background: #fff;
  letter-spacing: 0.05em;
  transition: all 0.5s;
  border-radius: 20px;
}

@media (max-width: 1023px) {
  #search-wrap input[type="text"] {
    width: 55.4rem;
  }
}

@media (max-width: 767px) {
  #search-wrap input[type="text"] {
    width: 26.6rem;
    height: 23px;
    padding: 5px 20px;
  }
}

/*テキスト入力inputにフォーカスされたら*/
/*背景色を付ける*/
/*#search-wrap input[type="text"]:focus {
    background: #eee;
}*/
/*ボタンinput設定*/
#search-wrap input[type="submit"] {
  position: absolute;
  top: 50%;
  right: -5.7%;
  bottom: 50%;
  width: 30px;
  height: 60px;
  background: url("../images/icon_serch.svg") no-repeat right;
  /*虫眼鏡アイコンを背景に表示*/
  background-size: 27px 30px;
  transform: translateY(-50%);
}

@media (max-width: 1023px) {
  #search-wrap input[type="submit"] {
    right: -7.7%;
  }
}

@media (max-width: 767px) {
  #search-wrap input[type="submit"] {
    right: -6vw;
    width: 15px;
    height: 17px;
    background-size: contain;
  }
}

/*=================================================
    メインビジュアル
===================================================*/
.mv {
  position: relative;
  height: 100%;
  /* スライダー */
  /* 前へボタン */
  /* 次へボタン */
}

/* スライダーの改行 */
.pc-space {
  white-space: pre;
  /* PCでは半角スペースを表示 */
}

.swiper-slide .sp-only {
  display: none;
  /* PCでは改行を非表示 */
}

@media (max-width: 767px) {
  .mv {
    padding-top: 4.9rem;
  }

  .pc-space {
    display: none;
    /* スマホでは半角スペースを非表示 */
  }
}

.mv .mv__about {
  position: absolute;
  top: 6rem;
  right: 50%;
  left: 50%;
  z-index: 2;
  z-index: 3;
  width: 100%;
  transform: translateX(-50%);
}

@media (min-width: 1367px) {
  .mv .mv__about {
    top: 4.39vw;
  }
}

@media (max-width: 767px) {
  .mv .mv__about {
    top: 3.5rem;
  }
}

.mv .mv__about .square {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 13.9rem;
  height: 4.7rem;
  margin: 0 auto;
  border: 1px solid #fff;
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
}

@media (min-width: 1367px) {
  .mv .mv__about .square {
    width: 10.18vw;
    height: 3.44vw;
    font-size: 1.46vw;
  }
}

@media (max-width: 767px) {
  .mv .mv__about .square {
    width: 10rem;
    height: 3rem;
    font-size: 1.4rem;
  }
}

.mv .mv__about .mv__ttl {
  margin-top: 3rem;
  color: #fff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 4.8rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: -0.01em;
}

@media (min-width: 1367px) {
  .mv .mv__about .mv__ttl {
    margin-top: 2.2vw;
    font-size: 3.51vw;
  }
}

@media (max-width: 1023px) {
  .mv .mv__about .mv__ttl {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .mv .mv__about .mv__ttl {
    line-height: 1.1666666667;
    margin-top: 1.7rem;
    font-size: 2.4rem;
  }
}

.mv .mv__about .mv__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16.7rem;
  height: 4.3rem;
  margin: 2.4rem auto 0;
  background-color: rgba(255, 255, 255, 0.8);
  color: #333333;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  transition: 0.3s;
  border-radius: 4.5rem;
}

@media (min-width: 1367px) {
  .mv .mv__about .mv__btn {
    width: 12.23vw;
    height: 3.15vw;
    font-size: 1.32vw;
  }

  .mv .mv__about .mv__btn:hover {
    width: 18.2rem;
  }
}

@media (min-width: 768px) {
  .mv .mv__about .mv__btn:hover {
    width: 13.32vw;
  }
}

@media (max-width: 767px) {
  .mv .mv__about .mv__btn {
    width: 11.8rem;
    height: 3.1rem;
    margin-top: 1.8rem;
    font-size: 1.4rem;
    border-radius: 1.55rem;
  }
}

.mv .swiper {
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .mv .swiper {
    height: 49.4rem;
  }
}

.mv .swiper .swiper-slide {
  position: relative;
}

/* マクロジ追記 2025.01.24
====================================================*/
.mv .swiper .swiper-slide:has(.mv__about)::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  content: "";
}

/* .mv .swiper .swiper-slide::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 100%;
  z-index: 1;
} */
@media (max-width: 767px) {

  /* マクロジ追記 2025.01.24
====================================================*/
  .mv .swiper .swiper-slide:has(.mv__about)::after {
    height: 49.4rem;
  }

  /* .mv .swiper .swiper-slide::after {
    height: 49.4rem;
  } */
}

.mv .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

@media (max-width: 767px) {
  .mv .swiper .swiper-slide img {
    height: 49.4rem;
  }
}

.mv .swiper-button-prev {
  left: 4%;
  width: 5rem;
  height: 5rem;
  background: transparent;
  border-radius: 50%;
}

@media (min-width: 1367px) {
  .mv .swiper-button-prev {
    width: 3.66vw;
    height: 3.66vw;
  }
}

@media (max-width: 767px) {
  .mv .swiper-button-prev {
    left: 0;
  }
}

.mv .swiper-button-prev:after {
  position: absolute;
  top: 50%;
  right: 21%;
  width: 2.1rem;
  height: 2.1rem;
  margin-top: -1rem;
  content: "";
  transform: rotate(45deg);
  border-bottom: solid 0.4rem #fff;
  border-left: solid 0.4rem #fff;
}

@media (max-width: 767px) {
  .mv .swiper-button-prev:after {
    top: 59%;
    right: 35%;
    width: 1.1rem;
    height: 1.1rem;
    border-bottom: solid 0.2rem #fff;
    border-left: solid 0.2rem #fff;
  }
}

.mv .swiper-button-next,
.mv .swiper-button-prev {
  top: 40%;
  z-index: 10;
}

@media (max-width: 767px) {

  .mv .swiper-button-next,
  .mv .swiper-button-prev {
    top: 50%;
  }
}

.mv .swiper-button-next {
  right: 4%;
  width: 5rem;
  height: 5rem;
  background: transparent;
  border-radius: 50%;
}

@media (min-width: 1367px) {
  .mv .swiper-button-next {
    width: 3.66vw;
    height: 3.66vw;
  }
}

@media (max-width: 767px) {
  .mv .swiper-button-next {
    right: 0;
  }
}

.mv .swiper-button-next:after {
  position: absolute;
  top: 50%;
  left: 21%;
  width: 2.1rem;
  height: 2.1rem;
  margin-top: -1rem;
  content: "";
  transform: rotate(45deg);
  border-top: solid 0.4rem #fff;
  border-right: solid 0.4rem #fff;
}

@media (max-width: 767px) {
  .mv .swiper-button-next:after {
    top: 59%;
    left: 35%;
    width: 1.1rem;
    height: 1.1rem;
    border-top: solid 0.2rem #fff;
    border-right: solid 0.2rem #fff;
  }
}

.mv .swiper-pagination {
  bottom: -5rem;
}

@media (max-width: 767px) {
  .mv .swiper-pagination {
    bottom: -4rem;
  }
}

.mv .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  margin: 0 7px !important;
  background-color: #000000;
}

@media (max-width: 767px) {
  .mv .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    margin: 0 4px !important;
  }
}

/*=================================================
    TOPページ RECOMMEND おすすめ商品
===================================================*/
.recommend {
  padding: 10.3rem 0 6.5rem;
  /* 商品画像 */
  /* 商品名 */
}

@media (max-width: 767px) {
  .recommend {
    padding: 8.2rem 0 4rem 2.8rem;
  }
}

.recommend .content-width {
  /* max-width: 126.2rem; */
  max-width: 108rem;
}

.recommend .recommend__item {
  margin-top: 1.9rem;
}

@media (max-width: 767px) {
  .recommend .recommend__item {
    margin-top: 0;
    padding-bottom: 2rem;
    overflow-x: scroll;
  }
}

.recommend .item__image {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  max-width: 23.9rem;
}

@media (max-width: 767px) {
  .recommend .item__image {
    width: 21.8rem;
  }
}

.recommend .item__ttl span {
  display: block;
  text-align: center;
}

.recommend .item__ttl .en {
  margin-top: 0.8rem;
  font-size: 1.5rem;
  font-weight: 700;
}

@media (max-width: 767px) {
  .recommend .item__ttl .en {
    margin-top: 0;
    font-size: 1.7rem;
  }
}

.recommend .item__ttl .ja {
  margin-top: 1.3rem;
  font-size: 1.5rem;
  font-weight: 400;
}

@media (max-width: 767px) {
  .recommend .item__ttl .ja {
    margin-top: 1rem;
    font-size: 1.6rem;
  }
}

.recommend .btn__more__wrapper .btn__more {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 17.1rem;
  height: 3.7rem;
  margin: 6rem auto 0;
  border: 1px solid #575858;
  background: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  transition: 0.3s;
  border-radius: 16px;
}

@media (min-width: 768px) {
  .recommend .btn__more__wrapper .btn__more:hover {
    width: 18.1rem;
    border: 1px solid #000000;
    color: #000000;
  }
}

@media (max-width: 767px) {
  .recommend .btn__more__wrapper .btn__more {
    width: 14.5rem;
    height: 3.1rem;
    margin-top: 3.8rem;
    font-size: 1.3rem;
  }
}

/*=================================================
    共通パーツ RECOMMEND おすすめ商品
===================================================*/
.p-recommend {
  padding: 8.1rem 0 7.9rem;
  background-color: rgb(244, 244, 244);
  /* 商品画像 */
  /* 商品名 */
  /* スマホのみスライダー */
  /* 前へボタン */
  /* 次へボタン */
}

@media (max-width: 767px) {
  .p-recommend {
    padding: 2.7rem 2.8rem 5rem;
  }
}

.p-recommend .section__ttl .en {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.p-recommend .section__ttl .ja {
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic",
    sans-serif;
  font-weight: 300;
}

.p-recommend .section__ttl .en,
.p-recommend .section__ttl .ja {
  color: #525252;
}

.p-recommend .recommend__item {
  margin-top: 2rem;
  background-color: #f4f4f4;
}

@media (max-width: 767px) {
  .p-recommend .recommend__item {
    margin-top: 0;
    padding-bottom: 2rem;
  }
}

.p-recommend .recommend__item .item__wrap {
  margin-right: 1.12%;
}

@media (min-width: 768px) {
  .p-recommend .recommend__item .item__wrap {
    width: 17.86% !important;
  }
}

@media (max-width: 767px) {
  .p-recommend .recommend__item .item__wrap {
    width: 13.2rem;
  }
}

.p-recommend .recommend__item .item__wrap:last-child {
  margin-right: 0;
}

.p-recommend .item__image {
  position: relative;
  width: 100%;
  background: #f4f4f4;
  max-width: 17.5rem;
  isolation: isolate;
}

.p-recommend .item__image img {
  height: auto;
  mix-blend-mode: multiply;
}

.recommend__item .item__image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 190px;
  mix-blend-mode: multiply;
}

@media (max-width: 767px) {
  .recommend__item .item__image img {
    max-width: 130px;
  }
}

@media (max-width: 767px) {
  .p-recommend .item__image {
    margin: 0 auto;
    max-width: 13.2rem;
  }
}

.p-recommend .item__ttl {
  color: #525252;
}

.p-recommend .item__ttl span {
  display: block;
  text-align: center;
}

.p-recommend .item__ttl .en {
  margin-top: 0.8rem;
  font-family: "Open Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
}

.p-recommend .item__ttl .ja {
  margin-top: 1.3rem;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic",
    sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
}

@media (max-width: 767px) {
  .p-recommend .item__ttl .ja {
    margin-top: 0.6rem;
    font-size: 1.3rem;
  }
}

.p-recommend .swiper:not(.swiper-initialized) {
  padding: 0;
}

.p-recommend .swiper:not(.swiper-initialized) .swiper-button-prev,
.p-recommend .swiper:not(.swiper-initialized) .swiper-button-next {
  display: none;
}

@media (max-width: 767px) {
  .p-recommend .swiper__container {
    position: relative;
  }
}

.p-recommend .swiper-button-next,
.p-recommend .swiper-button-prev {
  z-index: 3;
}

.p-recommend .swiper-button-prev {
  z-index: 2;
  background: transparent;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .p-recommend .swiper-button-prev {
    top: 40%;
    left: -2.7rem;
    width: 3.6rem;
    height: 3.6rem;
  }
}

.p-recommend .swiper-button-prev:after {
  position: absolute;
  top: 50%;
  content: "";
  transform: rotate(45deg);
}

@media (max-width: 767px) {
  .p-recommend .swiper-button-prev:after {
    top: 37%;
    right: 28%;
    width: 1.1rem;
    height: 1.1rem;
    border-bottom: solid 0.2rem #9f9e9e;
    border-left: solid 0.2rem #9f9e9e;
  }
}

.p-recommend .swiper-button-next {
  background: transparent;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .p-recommend .swiper-button-next {
    top: 40%;
    right: -2.7rem;
    width: 3.6rem;
    height: 3.6rem;
  }
}

.p-recommend .swiper-button-next:after {
  position: absolute;
  top: 50%;
  left: 21%;
  content: "";
  transform: rotate(45deg);
}

@media (max-width: 767px) {
  .p-recommend .swiper-button-next:after {
    top: 37%;
    left: 28%;
    width: 1.1rem;
    height: 1.1rem;
    border-top: solid 0.2rem #9f9e9e;
    border-right: solid 0.2rem #9f9e9e;
  }
}

/*=================================================
    TOPICS 特集
===================================================*/
.topics {
  padding: 5.1rem 0 5.5rem;
  background: #f4f4f4;
}

@media (max-width: 767px) {
  .topics {
    padding: 3.7rem 2.5rem 3.9rem;
  }
}

@media (min-width: 768px) {
  .topics .section__ttl .en {
    font-size: 3.7rem;
  }
}

.topics .topics__item {
  margin-top: 4.5rem;
}

@media (max-width: 767px) {
  .topics .topics__item {
    flex-direction: column;
    margin-top: 3.2rem;
  }
}

.topics .item__wrap {
  margin-right: 1.98%;
}

@media (max-width: 767px) {
  .topics .item__wrap {
    margin-right: 0;
    margin-bottom: 3.1rem;
  }
}

.topics .item__wrap:last-child {
  margin-right: 0;
}

@media (max-width: 767px) {
  .topics .item__wrap:last-child {
    margin-bottom: 0;
  }
}

.topics .item__image {
  width: 100%;
  max-width: 31.4rem;
}

@media (max-width: 767px) {
  .topics .item__image {
    max-width: 100%;
  }
}

.topics .item__image img {
  width: 100%;
  height: 19.2rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.topics .item__ttl {
  margin-top: 1.4rem;
  font-size: 1.8rem;
  font-weight: 400;
}

@media (max-width: 767px) {
  .topics .item__ttl {
    margin-top: 1.3rem;
    font-size: 1.6rem;
    text-align: center;
  }
}

.topics .item__about {
  line-height: 1.3333333333;
  margin-top: 1.1rem;
  font-size: 1.3rem;
}

@media (max-width: 767px) {
  .topics .item__about {
    margin-top: 0.8rem;
    text-align: center;
  }
}

.topics .item__price {
  margin-top: 1.3rem;
  font-size: 1.3rem;
}

@media (max-width: 767px) {
  .topics .item__price {
    margin-top: 0.4rem;
    text-align: center;
  }
}

/*=================================================
    RANKING 人気ランキング
===================================================*/
.ranking {
  padding: 4.5rem 0 6.6rem;
  /* 商品画像 */
  /* ランキングアイコン */
  /* 商品名 */
  /* 金額 */
  /* 前へボタン */
  /* 次へボタン */
  /* スマホのみスライダー */
}

@media (max-width: 767px) {
  .ranking {
    padding: 3.7rem 3.8rem 4rem;
  }
}

.ranking .content-width {
  max-width: 108.2rem;
}

@media (min-width: 768px) {
  .ranking .content-width {
    padding: 0 4rem;
  }
}

.ranking .swiper__container {
  position: relative;
}

.ranking .swiper {
  width: 100%;
}

.ranking .ranking__list {
  margin-top: 4.6rem;
}

@media (max-width: 767px) {
  .ranking .ranking__list {
    margin-top: 2rem;
  }
}

@media (min-width: 768px) {
  .ranking .item__wrap {
    width: 18.94% !important;
    margin-right: 1.32%;
  }
}

@media (max-width: 767px) {
  .ranking .item__wrap {
    width: 100%;
    text-align: center;
    max-width: 100%;
  }
}

.ranking .item__wrap:last-child {
  margin-right: 0;
}

.ranking .item__image {
  position: relative;
}

.ranking .item__image::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-size: contain;
  content: "";
}

.ranking .item__image img {
  width: 100%;
}

@media (max-width: 767px) {
  .ranking .item__image {
    width: 100%;
    max-width: 100%;
  }
}

.ranking .rank-1::before {
  width: 4.9rem;
  height: 4.9rem;
  background-image: url(../images/icon_rank-1.svg);
}

@media (max-width: 767px) {
  .ranking .rank-1::before {
    width: 3.3rem;
    height: 3.3rem;
  }
}

.ranking .rank-2::before {
  width: 4.9rem;
  height: 4.9rem;
  background-image: url(../images/icon_rank-2.svg);
}

@media (max-width: 767px) {
  .ranking .rank-2::before {
    width: 3.3rem;
    height: 3.3rem;
  }
}

.ranking .rank-3::before {
  width: 4.9rem;
  height: 4.9rem;
  background-image: url(../images/icon_rank-3.svg);
}

@media (max-width: 767px) {
  .ranking .rank-3::before {
    width: 3.3rem;
    height: 3.3rem;
  }
}

.ranking .rank-4::before {
  width: 4.9rem;
  height: 5.1rem;
  background-image: url(../images/icon_rank-4.svg);
}

@media (max-width: 767px) {
  .ranking .rank-4::before {
    width: 3.3rem;
    height: 3.3rem;
  }
}

.ranking .rank-5::before {
  width: 4.9rem;
  height: 5.1rem;
  background-image: url(../images/icon_rank-5.svg);
}

@media (max-width: 767px) {
  .ranking .rank-5::before {
    width: 3.3rem;
    height: 3.3rem;
  }
}

.ranking .rank-6::before {
  width: 4.9rem;
  height: 5.1rem;
  background-image: url(../images/icon_rank-6.svg);
}

@media (max-width: 767px) {
  .ranking .rank-6::before {
    width: 3.3rem;
    height: 3.3rem;
  }
}

.ranking .item__ttl {
  margin-top: 1.1rem;
  font-size: 1.5rem;
  font-weight: 400;
}

@media (max-width: 767px) {
  .ranking .item__ttl {
    margin-top: 0.7rem;
    font-size: 1.3rem;
  }
}

.ranking .item__price {
  margin-top: 1.3rem;
  font-size: 1.3rem;
}

@media (min-width: 768px) {
  .ranking .item__price {
    padding-right: 1.5rem;
  }
}

@media (max-width: 767px) {
  .ranking .item__price {
    margin-top: 0.5rem;
  }
}

.ranking .swiper-button-next,
.ranking .swiper-button-prev {
  z-index: 3;
}

.ranking .swiper-button-prev {
  top: 50%;
  left: -3.5rem;
  z-index: 2;
  width: 3.6rem;
  height: 3.6rem;
  background: transparent;
  border-radius: 50%;
}

.ranking .swiper-button-prev:after {
  position: absolute;
  width: 2.1rem;
  height: 2.1rem;
  content: "";
  transform: rotate(45deg);
  border-bottom: solid 0.2rem #9f9e9e;
  border-left: solid 0.2rem #9f9e9e;
}

@media (max-width: 767px) {
  .ranking .swiper-button-prev:after {
    top: 37%;
    right: 28%;
    width: 1.1rem;
    height: 1.1rem;
  }
}

.ranking .swiper-button-next {
  top: 50%;
  right: -3.5rem;
  width: 3.6rem;
  height: 3.6rem;
  background: transparent;
  border-radius: 50%;
}

.ranking .swiper-button-next:after {
  position: absolute;
  width: 2.1rem;
  height: 2.1rem;
  content: "";
  transform: rotate(45deg);
  border-top: solid 0.2rem #9f9e9e;
  border-right: solid 0.2rem #9f9e9e;
}

@media (max-width: 767px) {
  .ranking .swiper-button-next:after {
    top: 37%;
    left: 28%;
    width: 1.1rem;
    height: 1.1rem;
  }
}

@media (min-width: 768px) {

  .ranking .swiper-button-prev,
  .ranking .swiper-button-next {
    display: none;
  }
}

/*=================================================
    INFORMATION お知らせ
===================================================*/
.info {
  padding: 5.1rem 0 5.8rem;
  background: #dbdbdb;
}

@media (max-width: 1023px) {
  .info {
    padding: 5.8rem 1rem 5.2rem;
  }
}

@media (max-width: 767px) {
  .info {
    padding: 3.7rem 2.8rem 3.4rem;
  }
}

.info .info__list {
  margin-top: 4.58rem;
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  .info .info__list {
    font-size: 1.4rem;
  }
}

.info .info__list li {
  letter-spacing: 0.03em;
  border-bottom: solid 1px #fff;
}

.info .info__list li a {
  display: flex;
  align-items: center;
  padding: 2rem 0;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .info .info__list li a {
    padding: 1.8rem 0;
  }
}

@media (min-width: 768px) {
  .info .info__list li a:hover {
    opacity: 0.6;
  }
}

.info .info__list li:first-child {
  border-top: solid 1px #fff;
}

.info .info__list li .info__date {
  margin-right: 2.3rem;
}

@media (max-width: 767px) {
  .info .info__list li .info__date {
    margin-right: 2.5rem;
    padding-left: 1.3rem;
  }
}

.info .btn__more__wrapper {
  margin-top: 3.2rem;
  text-align: right;
}

@media (max-width: 767px) {
  .info .btn__more__wrapper {
    margin-top: 2rem;
  }
}

.info .btn__more__wrapper .btn__more {
  margin-right: 1.85rem;
  font-size: 1.7rem;
}

@media (max-width: 767px) {
  .info .btn__more__wrapper .btn__more {
    margin-right: 1rem;
    font-size: 1.6rem;
  }
}

.info .btn__more__wrapper .right {
  width: 4.3rem;
  vertical-align: baseline;
}

@media (max-width: 767px) {
  .info .btn__more__wrapper .right {
    width: 3.6rem;
  }
}

/*=================================================
    PRODUCTS 商品カテゴリー覧
===================================================*/
.page-products .p-recommend {
  margin-top: 6.9rem;
}

@media (max-width: 767px) {
  .page-products .p-recommend {
    margin-top: 0;
  }
}

.products {
  padding: 7.6rem 0 7.4rem;
  background: #323132;
  color: #f7f7f7;
}

@media (max-width: 1023px) {
  .products {
    padding: 5.2rem 1rem 5.8rem;
  }
}

@media (max-width: 767px) {
  .products {
    padding: 3.7rem 2.8rem 3.8rem;
  }
}

.products .section__ttl .en {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.products .section__ttl .ja {
  color: #6d6d6e;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic",
    sans-serif;
  font-weight: 300;
}

/* カテゴリ */
.products__list__wrapper {
  display: grid;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.3rem;
  grid-template-columns: repeat(auto-fit, 222px);
  gap: 2.6rem;
}

@media (max-width: 767px) {
  .products__list__wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    gap: 0;
  }
}

.product__item {
  margin-top: 4.5rem;
  /* カテゴリータイトル */
  /* トグルボタン */
  /* トグルボタンの動き */
}

@media (max-width: 767px) {
  .product__item {
    position: relative;
    margin-top: 0;
    margin-right: 0;
    max-width: 100%;
  }

  .product__item::before {
    position: absolute;
    top: 1.5rem;
    background-size: contain;
    content: "";
  }
}

@media (max-width: 767px) {
  .product__item:nth-child(1) {
    border-top: solid 0.5px #fff;
  }
}

.product__item:nth-child(4n) {
  margin-right: 0;
}

@media (max-width: 767px) {
  .product__item:nth-child(1)::before {
    left: 0.5rem;
    width: 1.8rem;
    height: 1.9rem;
    background-image: url(../images/icon_suihanki.svg);
  }

  .product__item:nth-child(2)::before {
    left: 0.5rem;
    width: 1.4rem;
    height: 3rem;
    background-image: url(../images/icon_stick.svg);
  }

  .product__item:nth-child(3)::before {
    left: 0.2rem;
    width: 2rem;
    height: 2.9rem;
    background-image: url(../images/icon_futon-cleaner.svg);
  }

  .product__item:nth-child(4)::before {
    left: 0.5rem;
    width: 1.4rem;
    height: 2.4rem;
    background-image: url(../images/icon_fun.svg);
  }

  .product__item:nth-child(5)::before {
    left: 0.8rem;
    width: 0.9rem;
    height: 2.3rem;
    background-image: url(../images/icon_suiso.svg);
  }

  .product__item:nth-child(6)::before {
    left: 0.5rem;
    width: 1.7rem;
    height: 1.9rem;
    background-image: url(../images/icon_storage.svg);
  }

  .product__item:nth-child(7)::before {
    left: 0.5rem;
    width: 1.9rem;
    height: 2.1rem;
    background-image: url(../images/icon_sheat.svg);
  }
}

@media (max-width: 767px) {
  .product__item .c-menu__accordion {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid 0.5px #fff;
  }
}

.product__item .products__ttl {
  padding-bottom: 0.8rem;
  font-family: "Open Sans", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-bottom: solid 0.5px #fff;
}

@media (max-width: 767px) {
  .product__item .products__ttl {
    display: flex;
    position: relative;
    align-items: center;
    padding: 1.7rem 0 1.7rem 3.7rem;
    border: none;
    font-size: 1.4rem;
  }
}

@media (max-width: 767px) {
  .product__item .products__ttl .en {
    margin-right: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
  }
}

@media (max-width: 767px) {
  .product__item .products__ttl .ja {
    font-family: "ヒラギノ角ゴシック", "Hiragino Sans",
      "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic",
      sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
  }
}

.product__item .products__list {
  display: block;
  margin-top: 5rem;
}

@media (max-width: 767px) {
  .product__item .products__list {
    display: none;
    margin-top: 0;
  }
}

.product__item .products__list li {
  display: flex;
  position: relative;
  align-items: center;
  margin-bottom: 5.5rem;
}

@media (max-width: 767px) {
  .product__item .products__list li {
    margin-bottom: 0;
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 6rem;
  }
}

.product__item .products__list li:last-child {
  margin-bottom: 4rem;
}

.product__item .products__list li:before {
  position: absolute;
  top: 50%;
  bottom: 50%;
  background-size: contain;
  content: "";
  transform: translateY(-50%);
}

.product__item .products__list li a {
  color: #bfbfbf;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic",
    sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  white-space: nowrap;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .product__item .products__list li a:hover {
    color: #fff;
  }
}

@media (max-width: 767px) {
  .product__item .products__list li:last-child {
    border-bottom: solid 0.5px #fff;
  }
}

.product__item .toggle-open {
  display: block;
  position: relative;
  width: 31px;
  height: 31px;
  transition: 0.3s;
}

.product__item .toggle-open:before,
.product__item .toggle-open:after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 12.5px;
  height: 0.5px;
  background: #fff;
  content: "";
  transform: translateY(-50%);
}

.product__item .toggle-open:after {
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}

@media (min-width: 768px) {
  .product__item .toggle-open {
    display: none;
  }
}

.product__item .c-menu__accordion.open .toggle-open::before {
  opacity: 0;
}

.product__item .c-menu__accordion.open .toggle-open:after {
  transform: rotate(180deg);
}

@media (max-width: 767px) {
  .products__ttl.open:before {
    display: none;
  }
}

.products__list .category-btn {
  display: block;
  width: fit-content;
  padding: 5px 22px;
  border: 0.5px solid #fff;
  color: #fff;
  font-size: 15px;
}

@media (max-width: 767px) {
  .products__list .category-btn {
    margin: 2rem 0;
  }
}

/* アイコンの設定 */
.category-home li {
  padding-left: 8.2rem;
}

.category-home li:nth-child(1)::before {
  left: 2.4rem;
  width: 3.7rem;
  height: 3.9rem;
  background-image: url(../images/icon_suihanki.svg);
}

@media (max-width: 767px) {
  .category-home li:nth-child(1)::before {
    left: 1rem;
    width: 2.8rem;
    height: 3.7rem;
  }
}

.category-home li:nth-child(2)::before {
  left: 2.8rem;
  width: 2.8rem;
  height: 5.4rem;
  background-image: url(../images/icon_water.svg);
}

@media (max-width: 767px) {
  .category-home li:nth-child(2)::before {
    left: 1.3rem;
    width: 2.3rem;
    height: 4.6rem;
  }
}

.category-home li:nth-child(3)::before {
  left: 2.4rem;
  width: 3.7rem;
  height: 4.5rem;
  background-image: url(../images/icon_dryer.svg);
}

@media (max-width: 767px) {
  .category-home li:nth-child(3)::before {
    left: 0.9rem;
    width: 3.2rem;
    height: 4.1rem;
  }
}

.category-vacuum li {
  padding-left: 6.2rem;
}

.category-vacuum li:nth-child(1)::before {
  left: 0.9rem;
  width: 3rem;
  height: 6.1rem;
  background-image: url(../images/icon_stick.svg);
}

@media (max-width: 767px) {
  .category-vacuum li:nth-child(1)::before {
    left: 1rem;
    width: 2.4rem;
    height: 5rem;
  }
}

.category-vacuum li:nth-child(2)::before {
  left: -0.7rem;
  width: 5.2rem;
  height: 3.6rem;
  background-image: url(../images/icon_cyclone.svg);
}

@media (max-width: 767px) {
  .category-vacuum li:nth-child(2)::before {
    left: 0;
    width: 4.3rem;
    height: 3rem;
  }
}

.category-vacuum li:nth-child(3)::before {
  left: 0.3rem;
  width: 4.2rem;
  height: 1.8rem;
  background-image: url(../images/icon_robot-cleaner.svg);
}

@media (max-width: 767px) {
  .category-vacuum li:nth-child(3)::before {
    left: 0;
    width: 4.3rem;
    height: 3rem;
  }
}

.category-kitchen li {
  padding-left: 7.8rem;
}

.category-kitchen li:nth-child(1)::before {
  left: 1.6rem;
  width: 4.3rem;
  height: 6.2rem;
  background-image: url(../images/icon_futon-cleaner.svg);
}

@media (max-width: 767px) {
  .category-kitchen li:nth-child(1)::before {
    left: 1rem;
    width: 3rem;
    height: 3.2rem;
  }
}

.category-kitchen li:nth-child(2)::before {
  left: 1rem;
  width: 5.2rem;
  height: 3.1rem;
  background-image: url(../images/icon_iron.svg);
}

@media (max-width: 767px) {
  .category-kitchen li:nth-child(2)::before {
    left: 0rem;
    width: 4.3rem;
    height: 2.7rem;
  }
}

.category-kitchen li:nth-child(3)::before {
  left: 1.6rem;
  width: 3.2rem;
  height: 4.5rem;
  background-image: url(../images/icon_oritatami.svg);
}

@media (max-width: 767px) {
  .category-kitchen li:nth-child(3)::before {
    left: 1rem;
    width: 3rem;
    height: 3.7rem;
  }
}

.category-seasonal li {
  padding-left: 10.1rem;
}

.category-seasonal li:nth-child(1)::before {
  left: 3.6rem;
  width: 2.7rem;
  height: 5rem;
  background-image: url(../images/icon_fun.svg);
}

@media (max-width: 767px) {
  .category-seasonal li:nth-child(1)::before {
    left: 1rem;
    width: 2.4rem;
    height: 4.1rem;
  }
}

.category-seasonal li:nth-child(2)::before {
  left: 3.2rem;
  width: 3.4rem;
  height: 3.4rem;
  background-image: url(../images/icon_takujo-heater.svg);
}

@media (max-width: 767px) {
  .category-seasonal li:nth-child(2)::before {
    left: 1rem;
    width: 2.8rem;
    height: 2.84rem;
  }
}

.category-seasonal li:nth-child(3)::before {
  left: 3.2rem;
  width: 3.3rem;
  height: 2.9rem;
  background-image: url(../images/icon_humidifier.svg);
}

@media (max-width: 767px) {
  .category-seasonal li:nth-child(3)::before {
    left: 1rem;
    width: 2.7rem;
    height: 3.2rem;
  }
}

.category-beauty li {
  padding-left: 8.2rem;
}

.category-beauty li:nth-child(1)::before {
  left: 3rem;
  width: 1.9rem;
  height: 4.8rem;
  background-image: url(../images/icon_suiso.svg);
}

@media (max-width: 767px) {
  .category-beauty li:nth-child(1)::before {
    left: 1rem;
    width: 1.6rem;
    height: 4rem;
  }
}

.category-beauty li:nth-child(2)::before {
  left: 1.2rem;
  width: 5.3rem;
  height: 2.8rem;
  background-image: url(../images/icon_active.svg);
}

@media (max-width: 767px) {
  .category-beauty li:nth-child(2)::before {
    left: 0;
    width: 4.4rem;
    height: 2.3rem;
  }
}

.category-beauty li:nth-child(3)::before {
  left: 1.6rem;
  width: 3.5rem;
  height: 4.8rem;
  background-image: url(../images/icon_air-leg.svg);
}

@media (max-width: 767px) {
  .category-beauty li:nth-child(3)::before {
    left: 0.1rem;
    width: 2.9rem;
    height: 3.9rem;
  }
}

.category-storage li {
  padding-left: 8.9rem;
}

.category-storage li:nth-child(1)::before {
  left: 1.8rem;
  width: 3.6rem;
  height: 3.9rem;
  background-image: url(../images/icon_storage.svg);
}

@media (max-width: 767px) {
  .category-storage li:nth-child(1)::before {
    left: 1rem;
    width: 3rem;
    height: 3.2rem;
  }
}

.category-storage li:nth-child(2)::before {
  left: 1.3rem;
  width: 4.8rem;
  height: 5rem;
  background-image: url(../images/icon_light.svg);
}

@media (max-width: 767px) {
  .category-storage li:nth-child(2)::before {
    left: 0.5rem;
    width: 3.8rem;
    height: 4.1rem;
  }
}

.category-storage li:nth-child(3)::before {
  left: 1.7rem;
  width: 4.2rem;
  height: 4.2rem;
  background-image: url(../images/icon_zakka.svg);
}

@media (max-width: 767px) {
  .category-storage li:nth-child(3)::before {
    left: 0.5rem;
    width: 3.8rem;
    height: 4.1rem;
  }
}

.category-emf li {
  padding-left: 8.9rem;
}

.category-emf li:nth-child(1)::before {
  left: 2.8rem;
  width: 3.5rem;
  height: 3.9rem;
  background-image: url(../images/icon_sheat.svg);
}

@media (max-width: 767px) {
  .category-emf li:nth-child(1)::before {
    left: 1rem;
    width: 3rem;
    height: 3.2rem;
  }
}

/*=================================================
    カテゴリ一覧
===================================================*/
/* ページ上部 */
@media (max-width: 767px) {
  .page-header {
    padding: 4.9rem 0 0;
  }
}

@media (max-width: 767px) {
  .page-header .content-width {
    padding: 0 2.8rem 0;
  }
}

.page-header .page-header__ttl {
  padding: 1.1rem 0;
  letter-spacing: 0.03em;
}

@media (max-width: 767px) {
  .page-header .page-header__ttl {
    line-height: 1;
  }
}

.page-header .page-header__ttl .en {
  margin-right: 1.4rem;
  color: #363636;
  font-size: 3.2rem;
  font-weight: 700;
}

@media (max-width: 767px) {
  .page-header .page-header__ttl .en {
    margin-right: 0.8rem;
    font-size: 1.8rem;
  }
}

.page-header .page-header__ttl .ja {
  font-size: 1.8rem;
  font-weight: 400;
}

@media (max-width: 767px) {
  .page-header .page-header__ttl .ja {
    font-size: 1rem;
  }
}

.page-header .page-header__img {
  position: relative;
}

.page-header .page-header__img::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  content: "";
}

/* ページ内カテゴリリンク */
.page-about {
  padding: 5.6rem 2rem 5.1rem;
}

@media (max-width: 767px) {
  .page-about {
    padding: 2.7rem 2.8rem 3rem;
  }
}

.page-about .section__ttl .en {
  font-size: 3.6rem;
}

@media (max-width: 767px) {
  .page-about .section__ttl .en {
    font-size: 2.4rem;
  }
}

.page-about .section__ttl .ja {
  font-size: 1.8rem;
}

@media (max-width: 767px) {
  .page-about .section__ttl .ja {
    font-size: 1.6rem;
  }
}

.page-about .section__txt {
  margin-top: 3.5rem;
}

@media (max-width: 767px) {
  .page-about .section__txt {
    margin-top: 1.8rem;
  }
}

.page-about .category-link {
  margin-top: 7.9rem;
  gap: 0.9rem;
}

@media (max-width: 767px) {
  .page-about .category-link {
    flex-wrap: wrap;
    margin-top: 2.4rem;
  }
}

.page-about .category-link li {
  width: 16.6666666667%;
}

@media (max-width: 767px) {
  .page-about .category-link li {
    width: calc(50% - 0.5rem);
  }
}

.page-about .category-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 4.4rem;
  border: solid 1px #575858;
  font-size: 1.5rem;
  font-weight: 700;
  transition: 0.3s;
  border-radius: 2.2rem;
  max-width: 15.6rem;
}

@media (min-width: 768px) {
  .page-about .category-button:hover {
    transform: scaleX(1.05);
  }
}

@media (max-width: 767px) {
  .page-about .category-button {
    height: 3.7rem;
    font-size: 1.4rem;
    max-width: 100%;
  }
}

/* 商品一覧 */
.category {
  padding: 6.1rem 0 7.1rem;
}

@media (max-width: 767px) {
  .category {
    padding: 2.8rem 2.8rem 3.6rem;
  }
}

.category .category__ttl {
  padding-bottom: 2.6rem;
  border-bottom: solid 1px #d5d5d5;
}

@media (max-width: 767px) {
  .category .category__ttl {
    line-height: 1;
    padding-bottom: 1rem;
  }
}

.category .category__ttl .en {
  margin-right: 4rem;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

@media (max-width: 767px) {
  .category .category__ttl .en {
    display: block;
    font-size: 1.8rem;
  }
}

.category .category__ttl .ja {
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}

@media (max-width: 767px) {
  .category .category__ttl .ja {
    font-size: 1.3rem;
  }
}

.category .category__item {
  display: grid;
  margin-top: 4.4rem;
  max-width: 98rem;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  row-gap: 5.7rem;
  /*.item__wrap {
      @media (max-width: 767px) {
          &:nth-of-type(n+5) {
              display: none;
          }
      }
  }*/
}

.category__item .item__image {
  display: grid;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 62%;
  background: url(../images/category-item_background.jpg) no-repeat center / cover;
  place-items: center;
}

.category__item .item__image img {
  position: absolute;
  height: auto;
  max-width: 172px;
  mix-blend-mode: multiply;
}

@media (max-width: 767px) {
  .category__item .item__image img {
    max-width: 85px;
  }
}

@media (max-width: 767px) {
  .category .category__item {
    margin-top: 2rem;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    row-gap: 2.9rem;
  }
}

.category .item__ttl {
  margin-top: 1.6rem;
  font-size: 1.5rem;
  font-weight: 400;
}

@media (max-width: 767px) {
  .category .item__ttl {
    margin-top: 0.9rem;
    font-size: 1.3rem;
  }
}

.category .color-list {
  display: flex;
  margin-top: 1.4rem;
  gap: 6px;
}

@media (max-width: 767px) {
  .category .color-list {
    margin-top: 1rem;
    gap: 3px;
  }
}

.category .color {
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #707070;
  background: #fff;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .category .color {
    width: 9px;
    height: 9px;
  }
}

/* SP 5商品目以降非表示 */
.sp-item__more-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 14rem;
  height: 3rem;
  margin: 2.7rem auto 0;
  border: solid 1px #575858;
  background: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 2.2rem;
}

@media (min-width: 768px) {
  .sp-item__more-button {
    display: none;
  }
}

@media (min-width: 768px) {
  .item--sp-more {
    display: none;
  }
}

@media (max-width: 767px) {
  .item--sp-more {
    display: none;
  }
}

/*=================================================
    カテゴリ一覧
===================================================*/
.page-parts .category-link {
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 7.9rem;
  gap: 1.1rem;
}

@media (max-width: 767px) {
  .page-parts .category-link {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 2.4rem;
  }
}

.page-parts .category-link li {
  width: 15.8%;
  text-align: center;
}

@media (max-width: 767px) {
  .page-parts .category-link li {
    width: calc(50% - 0.6rem);
  }
}

.page-parts .category-link li .category-button {
  line-height: 1.2307692308;
  font-size: 1.3rem;
}

/*=================================================
    カートページ_20240821
===================================================*/
@media (max-width: 767px) {
  .page-header--sp {
    background: #f6f6f6;
  }
}

.page-header--cart .page-header__ttl .ja {
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic",
    sans-serif;
  font-size: 2.6rem;
  font-weight: 500;
}

@media (max-width: 767px) {
  .page-header--cart .page-header__ttl .ja {
    font-size: 1.6rem;
  }
}

.cart-content {
  padding: 7.4rem 0 8.9rem;
  /* PC表示 テーブル */
  /* SP表示 */
  /* 数量入力 */
  /* 価格 */
  /* クーポンコード入力フォーム */
  /* 割引金額 */
  /* 購入の流れ */
  /* 合計金額 */
  /* 各種ボタン */
}

@media (max-width: 767px) {
  .cart-content {
    padding: 2.5rem 0 5.2rem;
    background: #fff;
  }
}

.cart-content .cart__item {
  width: 100%;
  border: solid 1px #707070;
  background: #fff;
  color: #525252;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic",
    sans-serif;
  border-spacing: 0;
  letter-spacing: 0.03em;
  /* 見出し */
  /* 商品 */
}

@media (max-width: 767px) {
  .cart-content .cart__item {
    width: 94%;
    margin: 0 auto;
    border: solid 1px #e1e1e1;
    border-left: none;
    border-right: none;
  }
}

.cart-content .cart__item .cart__item__ttl {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 767px) {
  .cart-content .cart__item .cart__item__ttl {
    display: none;
  }
}

.cart-content .cart__item .cart__item__ttl th {
  padding: 1.2rem 0 1.3rem;
  font-weight: 700;
}

.cart-content .cart__item .cart__item__ttl th:last-of-type {
  border-right: none;
}

.cart-content .cart__item td,
.cart-content .cart__item th {
  border-right: solid 1px #707070;
  border-bottom: solid 1px #707070;
}

@media (max-width: 767px) {

  .cart-content .cart__item td,
  .cart-content .cart__item th {
    border-right: none;
    border-bottom: solid 1px #e1e1e1;
  }
}

.cart-content .cart__item td:last-of-type,
.cart-content .cart__item th:last-of-type {
  border-right: none;
}

.cart-content .cart__item .item__img-name {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 4.2rem 4.8rem 4.3rem 4.8rem;
}

@media (max-width: 767px) {
  .cart-content .cart__item .item__img-name {
    padding: 2.9rem 1.1rem 4rem 0;
  }
}

.cart-content .cart__item .item__img-name img {
  width: 100%;
  height: 11.9rem;
  max-width: 11.2rem;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 767px) {
  .cart-content .cart__item .item__img-name img {
    max-width: 8.7rem;
  }
}

.cart-content .cart__item .item-name {
  line-height: 1.7647058824;
  margin-left: 5.6rem;
  font-size: 1.7rem;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.03em;
}

@media (max-width: 767px) {
  .cart-content .cart__item .item-name {
    margin-left: 0;
    font-size: 1.2rem;
  }
}

.cart-content .cart__item .item-name a {
  color: #525252;
  text-decoration: underline;
}

.cart-content .cart__item tr:last-of-type td {
  border-bottom: none;
}

.cart-content .cart__item .item__price {
  color: #525252;
}

.cart-content .cart__item .item__price .delete {
  border: none;
  background-color: transparent;
  font-size: 1.5rem;
  font-weight: 400;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .cart-content .cart__item .item__price .delete {
    font-size: 1.2rem;
    white-space: nowrap;
  }
}

.cart-content .cart__item .del-line {
  display: block;
  text-decoration: line-through;
}

.cart-content .cart__item .discount {
  color: #e21b24;
}

.cart-content .cart__item .cart__item__price {
  font-family: "Open Sans", sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
}

@media (max-width: 767px) {
  .cart-content .cart__item .cart__item__price {
    margin-top: 1.8rem;
  }
}

.cart-content .sp-cart__item {
  padding: 2.3rem 1rem 1.7rem;
  border-top: solid 0.8px #707070;
  border-bottom: solid 0.8px #707070;
}

@media (min-width: 768px) {
  .cart-content .sp-cart__item {
    display: none;
  }
}

.cart-content .sp-cart__item .item__img-name-price {
  display: flex;
  align-items: center;
}

.cart-content .sp-cart__item .item__img-name-price .item__img {
  width: 100%;
  margin-right: 4.6rem;
  max-width: 11.5rem;
}

.cart-content .sp-cart__item .item__img-name-price .item__img img {
  mix-blend-mode: multiply;
}

.cart-content .sp-cart__item .item__img-name-price .item-txt-price .item__name {
  font-size: 1.4rem;
}

.cart-content .sp-cart__item .item__img-name-price .item-txt-price .cart__item__price {
  font-family: "Open Sans", sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
}

.cart-content .sp-cart__item .item__delete__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
}

.cart-content .sp-cart__item .item__delete {
  display: flex;
  align-items: center;
}

.cart-content .sp-cart__item .delete-mark {
  display: block;
  position: relative;
  width: 13px;
  height: 13px;
  margin-right: 1.5rem;
}

.cart-content .sp-cart__item .delete-mark:after,
.cart-content .sp-cart__item .delete-mark:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 13px;
  height: 1px;
  background: #707070;
  content: "";
}

.cart-content .sp-cart__item .delete-mark:before {
  transform: rotate(45deg);
}

.cart-content .sp-cart__item .delete-mark:after {
  transform: rotate(-45deg);
}

.cart-content .item__lot {
  padding-right: 4.98rem;
  padding-left: 5.6rem;
}

@media (max-width: 767px) {
  .cart-content .item__lot {
    padding: 0;
  }
}

.cart-content .item__lot .input-lot {
  width: 7.6rem;
  height: 6.2rem;
  margin-right: 1.3rem;
  border: solid 1px #707070;
  color: #575858;
  font-size: 2rem;
  text-align: center;
}

@media (max-width: 767px) {
  .cart-content .item__lot .input-lot {
    width: 6.4rem;
    height: 5rem;
    margin-right: 0.9rem;
    font-size: 1.6rem;
  }
}

.cart-content .item__lot .update-button {
  width: 13.6rem;
  height: 6.2rem;
  border: solid 1px #719743;
  color: #669933;
  border-radius: 2.5rem;
}

@media (max-width: 767px) {
  .cart-content .item__lot .update-button {
    width: 8.8rem;
    height: 5rem;
    font-size: 1.4rem;
  }
}

.cart-content .item__price {
  padding-right: 2.8rem;
  padding-left: 3.4rem;
  color: #333333;
  font-size: 1.7rem;
  font-weight: 500;
}

@media (max-width: 767px) {
  .cart-content .item__price {
    padding: 0;
  }
}

.cart-content .item__delete {
  padding-right: 5.4rem;
  color: #bfbfbf;
  font-size: 1.5rem;
  font-weight: 500;
}

@media (max-width: 767px) {
  .cart-content .item__delete {
    padding-right: 0;
    font-size: 1.4rem;
  }
}

.cart-content .cart__coupon-code {
  margin-top: 4.3rem;
}

@media (max-width: 767px) {
  .cart-content .cart__coupon-code {
    padding: 0 1rem;
  }
}

.cart-content .cart__coupon-code .flex {
  align-items: center;
}

.cart-content .cart__coupon-code .cart__ttl {
  margin-right: 3%;
}

@media (max-width: 1023px) {
  .cart-content .cart__coupon-code .cart__ttl {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .cart-content .cart__coupon-code .cart__ttl {
    line-height: 1;
    margin-right: 1.2rem;
    text-align: center;
  }
}

.cart-content .cart__coupon-code .cart__ttl .en {
  margin-right: 2.7rem;
  color: #363636;
  font-size: 2.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

@media (max-width: 1023px) {
  .cart-content .cart__coupon-code .cart__ttl .en {
    display: block;
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .cart-content .cart__coupon-code .cart__ttl .en {
    display: block;
    margin-right: 0;
    font-size: 1.6rem;
  }
}

.cart-content .cart__coupon-code .cart__ttl .ja {
  color: #575858;
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  .cart-content .cart__coupon-code .cart__ttl .ja {
    font-size: 1rem;
  }
}

.cart-content .cart__coupon-code .cart__code-form {
  width: 100%;
  max-width: 72.8rem;
}

.cart-content .cart__coupon-code .cart__code-form .coupon-code {
  width: 100%;
  padding: 2rem;
  border: solid 1px #707070;
  background: #fff;
  text-align: center;
}

@media (max-width: 767px) {
  .cart-content .cart__coupon-code .cart__code-form .coupon-code {
    height: 5rem;
    padding: 1.5rem;
  }
}

.cart-content .cart__coupon-code .cart__code-form input::-moz-placeholder {
  font-size: 14px;
}

.cart-content .cart__coupon-code .cart__code-form input::placeholder {
  font-size: 14px;
}

@media (max-width: 767px) {
  .cart-content .cart__coupon-code .cart__code-form input::-moz-placeholder {
    font-weight: 400;
  }

  .cart-content .cart__coupon-code .cart__code-form input::placeholder {
    font-weight: 400;
  }
}

.cart-content .cart__price {
  padding: 3.3rem 3.1rem 4.3rem 3.1rem;
  background: #e6f4fc;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic",
    sans-serif;
  text-align: right;
  border-right: solid 1px #707070;
  border-left: solid 1px #707070;
  border-bottom: solid 1px #707070;
}

@media (max-width: 767px) {
  .cart-content .cart__price {
    width: 94%;
    margin: 1rem auto 0;
    padding: 2rem 1rem;
    border: none;
  }
}

.cart-content .cart__price .cart__price__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 0.8rem auto;
  letter-spacing: 0.03em;
  max-width: 30.7rem;
}

@media (max-width: 767px) {
  .cart-content .cart__price .cart__price__item {
    max-width: 28rem;
  }
}

.cart-content .cart__price .cart__price__item dt {
  font-size: 1.7rem;
  font-weight: 400;
}

@media (max-width: 767px) {
  .cart-content .cart__price .cart__price__item dt {
    font-size: 1.5rem;
  }
}

.cart-content .cart__price .cart__price__item dt .detail {
  text-decoration: underline;
}

.cart-content .cart__price .cart__price__item dd {
  font-family: "Open Sans", sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
}

.cart-content .cart__price .cart__price__item dd .ja {
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic",
    sans-serif;
  font-weight: 400;
}

@media (max-width: 767px) {
  .cart-content .cart__price .cart__price__item dd {
    font-size: 2.5rem;
  }
}

.cart-content .cart__price .cart__price__item .blue {
  font-size: 3rem;
}

@media (max-width: 767px) {
  .cart-content .cart__price .cart__price__item .blue {
    font-size: 2.7rem;
  }
}

.cart-content .get-point {
  margin-top: 1.2rem;
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  .cart-content .get-point {
    font-size: 1.3rem;
  }
}

.cart-content .blue {
  color: #3778e1;
}

.cart-content .cart-flow {
  margin-bottom: 4.8rem;
  text-align: center;
}

@media (max-width: 767px) {
  .cart-content .cart-flow {
    margin-bottom: 3.4rem;
  }
}

.cart-content .cart-flow img {
  width: 100%;
  max-width: 55.7rem;
}

@media (max-width: 767px) {
  .cart-content .cart-flow img {
    max-width: 26.4rem;
  }
}

.cart-content .cart__bottom {
  margin-top: 7.6rem;
  padding-right: 4rem;
}

@media (max-width: 767px) {
  .cart-content .cart__bottom {
    flex-direction: column-reverse;
    margin-top: 4rem;
    padding-right: 0;
  }
}

.cart-content .cart__bottom .cart__amazon {
  width: 100%;
  padding: 3.9rem 2.1rem 5.8rem;
  border: solid 1px #707070;
  background: #fff;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic",
    sans-serif;
  max-width: 48.9rem;
}

@media (max-width: 767px) {
  .cart-content .cart__bottom .cart__amazon {
    margin-top: 7.6rem;
    padding: 0;
    border: none;
    max-width: 100%;
  }
}

.cart-content .cart__bottom .cart__amazon .cart__amazon__ttl {
  font-size: 1.7rem;
  font-weight: 500;
}

@media (max-width: 767px) {
  .cart-content .cart__bottom .cart__amazon .cart__amazon__ttl {
    padding: 1.1rem 0 1.3rem 2.5rem;
    background: #f2f2f2;
    font-size: 1.3rem;
  }
}

.cart-content .cart__bottom .cart__amazon .cart__amazon__txt {
  line-height: 1.5384615385;
  margin-top: 0.8rem;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
}

@media (max-width: 767px) {
  .cart-content .cart__bottom .cart__amazon .cart__amazon__txt {
    margin-top: 1.8rem;
    padding-left: 1.8rem;
    font-size: 1rem;
  }
}

.cart-content .cart__bottom .cart__amazon .amazon-button {
  display: block;
  width: 100%;
  margin: 4.8rem auto 0;
  max-width: 35.8rem;
}

@media (max-width: 767px) {
  .cart-content .cart__bottom .cart__amazon .amazon-button {
    margin: 1.9rem auto 0;
    max-width: 28.4rem;
  }
}

.cart-content .discout-price-wrapper {
  color: #9b9b9b;
  font-size: 1.9rem;
  font-weight: 500;
  text-align: right;
}

@media (max-width: 767px) {
  .cart-content .discout-price-wrapper {
    font-size: 1.6rem;
  }
}

.cart-content .discout-price-wrapper .ja {
  margin-right: 1.5rem;
}

.cart-content .total-price-wrapper {
  margin-top: 2.3rem;
  color: #333333;
  font-weight: 500;
  text-align: right;
}

.cart-content .total-price-wrapper .ja {
  margin-right: 3.4rem;
  font-size: 2.3rem;
}

@media (max-width: 767px) {
  .cart-content .total-price-wrapper .ja {
    margin-right: 2.2rem;
    font-size: 2rem;
  }
}

.cart-content .total-price-wrapper .total-price {
  font-size: 2.9rem;
}

@media (max-width: 767px) {
  .cart-content .total-price-wrapper .total-price {
    font-size: 2.5rem;
  }
}

.cart-content .cart__button {
  width: 100%;
  max-width: 36.5rem;
}

@media (max-width: 767px) {
  .cart-content .cart__button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
}

.cart-content .cart__button .continue-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 6rem;
  margin-top: 2.9rem;
  color: #3778e1;
  font-size: 1.9rem;
  font-weight: 600;
  max-width: 37.6rem;
}

@media (max-width: 767px) {
  .cart-content .cart__button .continue-button {
    margin-top: 2rem;
  }
}

.cart-content .cart__button .continue-button .arrow {
  margin-right: 1rem;
}

.cart-content .cart__button .next-button {
  display: flex;
  justify-content: end;
  align-items: center;
  width: 100%;
  height: 7.7rem;
  padding-right: 2rem;
  background: #3778e1;
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 1.2rem;
  max-width: 36.5rem;
  gap: 6.7rem;
}

@media (max-width: 767px) {
  .cart-content .cart__button .next-button {
    height: 5.8rem;
    padding-right: 1.6rem;
    gap: 3.6rem;
    border-radius: 0.6rem;
  }
}

.cart-content .cart__button .next-button .arrow {
  display: block;
  width: 14px;
  height: 14px;
  background: transparent;
  cursor: pointer;
  transform: rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.cart-content .cart__button .continue-button,
.cart-content .cart__button .next-button {
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic",
    sans-serif;
}

@media (max-width: 767px) {

  .cart-content .cart__button .continue-button,
  .cart-content .cart__button .next-button {
    font-size: 1.9rem;
    max-width: 28.1rem;
  }
}

.cart-content .cart__button .delete-button,
.cart-content .cart__button .link {
  text-align: center;
}

.cart-content .cart__button .delete-button a,
.cart-content .cart__button .link a {
  font-size: 1.7rem;
  font-weight: 400;
  text-decoration: underline;
}

@media (max-width: 767px) {

  .cart-content .cart__button .delete-button a,
  .cart-content .cart__button .link a {
    font-size: 1.3rem;
  }
}

.cart-content .cart__button .link {
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .cart-content .cart__button .link {
    margin-top: 1.5rem;
  }
}

.spinner-container {
  display: flex;
  justify-content: center;
  user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

@media (max-width: 767px) {
  .spinner-container {
    justify-content: flex-start;
    align-items: center;
    margin-top: 1.3rem;
  }
}

.spinner {
  width: 98px;
  height: 41px;
  padding: 10px 12px;
  border: solid 1px #949595;
  background: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  text-align: left;
  outline: none;
  pointer-events: none;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .spinner {
    width: 91px;
    height: 38px;
    font-size: 1.4rem;
    border-radius: 5px;
  }
}

.sipnner-ttl {
  margin-right: 1.1rem;
  font-size: 1.2rem;
  font-weight: 400;
}

@media (min-width: 768px) {
  .sipnner-ttl {
    display: none;
  }
}

.spinner-button {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 21px;
  height: 42px;
  margin-left: 3px;
  padding: 6.8px 0;
  border: solid 1px #949595;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .spinner-button {
    width: 19px;
    height: 39px;
  }
}

.spinner::-webkit-inner-spin-button,
.spinner::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.spinner-sub,
.spinner-add {
  display: block;
  width: 7px;
  height: 7px;
  background: transparent;
  cursor: pointer;
  border-top: 1px solid #949595;
  border-right: 1px solid #949595;
}

@media (max-width: 767px) {

  .spinner-sub,
  .spinner-add {
    width: 5px;
    height: 5px;
  }
}

.spinner-add {
  transform: rotate(-45deg);
}

.spinner-sub {
  transform: rotate(135deg);
}

.disabled {
  cursor: inherit;
}

/*=================================================
    関連商品
===================================================*/
.p-recommend--cart {
  margin-top: 7.2rem;
  /* スマホのみスライダー */
  /* 前へボタン */
  /* 次へボタン */
}

@media (max-width: 767px) {
  .p-recommend--cart {
    margin-top: 3.5rem;
    margin-bottom: 6.7rem;
    padding: 0 1.8rem;
  }
}

.p-recommend--cart .section__ttl {
  padding-bottom: 2.3rem;
  font-size: 2.6rem;
  font-weight: 700;
  text-align: left;
  letter-spacing: -0.01em;
  border-bottom: solid 1px #d5d5d5;
}

@media (max-width: 767px) {
  .p-recommend--cart .section__ttl {
    padding-bottom: 1rem;
    font-size: 1.8rem;
  }
}

.p-recommend--cart .recommend__item {
  justify-content: flex-start;
  margin-top: 3.7rem;
}

.p-recommend--cart .item__wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 31rem;
}

@media (min-width: 768px) {
  .p-recommend--cart .item__wrap {
    width: 17.2% !important;
    margin-right: 3% !important;
  }
}

@media (max-width: 767px) {
  .p-recommend--cart .item__wrap {
    width: 13.2rem;
    min-height: 25.8rem;
  }
}

.p-recommend--cart .item__wrap:last-child {
  margin-right: 0;
}

.p-recommend--cart .item__ttl {
  width: 85%;
  line-height: 1.5384615385;
  margin: 0 auto;
  font-size: 1.3rem;
  font-weight: 400;
  text-align: center;
}

@media (max-width: 767px) {
  .p-recommend--cart .item__ttl {
    width: 93%;
  }
}

.p-recommend--cart .item__image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 17.2rem;
  margin: 0 auto;
  background: #fff;
  max-width: 17.2rem;
}

@media (max-width: 767px) {
  .p-recommend--cart .item__image {
    width: 100%;
    height: 14.2rem;
    max-width: 14.2rem;
  }
}

.p-recommend--cart .item__price {
  text-align: center;
}

@media (max-width: 767px) {
  .p-recommend--cart .item__price {
    margin-top: 0.6rem;
    font-size: 1.3rem;
  }
}

.p-recommend--cart .add-cart-button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3.6rem;
  margin: 2.9rem auto 0;
  border: 1px solid #575858;
  background: #fff;
  font-size: 1.4rem;
  max-width: 17.2rem;
  border-radius: 1.6rem;
}

@media (max-width: 767px) {
  .p-recommend--cart .add-cart-button {
    height: 3.1rem;
    margin-top: 1.9rem;
    font-size: 1.3rem;
    max-width: 14.2rem;
  }
}

.p-recommend--cart .swiper:not(.swiper-initialized) {
  padding: 0;
}

.p-recommend--cart .swiper:not(.swiper-initialized) .swiper-button-prev,
.p-recommend--cart .swiper:not(.swiper-initialized) .swiper-button-next {
  display: none;
}

@media (max-width: 767px) {
  .p-recommend--cart .swiper__container {
    position: relative;
  }
}

.p-recommend--cart .swiper-button-next,
.p-recommend--cart .swiper-button-prev {
  z-index: 3;
}

.p-recommend--cart .swiper-button-prev {
  top: 40%;
  left: -1.8rem;
  z-index: 2;
  width: 3.6rem;
  height: 3.6rem;
  background: transparent;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .p-recommend--cart .swiper-button-prev {
    display: none;
  }
}

.p-recommend--cart .swiper-button-prev:after {
  position: absolute;
  top: 39%;
  right: 1rem;
  width: 1.1rem;
  height: 1.1rem;
  content: "";
  transform: rotate(45deg);
  border-bottom: solid 0.2rem #9f9e9e;
  border-left: solid 0.2rem #9f9e9e;
}

.p-recommend--cart .swiper-button-next {
  top: 40%;
  right: -1.8rem;
  width: 3.6rem;
  height: 3.6rem;
  background: transparent;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .p-recommend--cart .swiper-button-next {
    display: none;
  }
}

.p-recommend--cart .swiper-button-next:after {
  position: absolute;
  top: 39%;
  left: 1rem;
  width: 1.1rem;
  height: 1.1rem;
  content: "";
  transform: rotate(45deg);
  border-top: solid 0.2rem #9f9e9e;
  border-right: solid 0.2rem #9f9e9e;
}

/*=================================================
    ご利用方法
===================================================*/
.qa {
  margin-top: 8.2rem;
  padding-bottom: 2.2rem;
  /* トグルボタンの動き */
}

@media (max-width: 767px) {
  .qa {
    margin-top: 6.7rem;
    padding: 0 1.8rem 0;
  }
}

.qa .qa__item {
  margin-bottom: 7.5rem;
}

.qa .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2.6rem;
  cursor: pointer;
  border-bottom: solid 1px #d5d5d5;
  /* トグルボタン */
}

@media (max-width: 767px) {
  .qa .question {
    padding: 0 1rem 1rem;
  }
}

.qa .question .q-ttl {
  font-size: 2.4rem;
  letter-spacing: -0.01em;
}

@media (max-width: 767px) {
  .qa .question .q-ttl {
    line-height: 1.7222222222;
    font-size: 1.8rem;
  }
}

.qa .question .toggle-open {
  position: relative;
  width: 31px;
  height: 31px;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .qa .question .toggle-open {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.qa .question .toggle-open:before,
.qa .question .toggle-open:after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 31px;
  height: 1px;
  background: #575858;
  content: "";
  transform: translateY(-50%);
}

@media (max-width: 767px) {

  .qa .question .toggle-open:before,
  .qa .question .toggle-open:after {
    width: 1.5rem;
  }
}

.qa .question .toggle-open:after {
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}

.qa .question.open .toggle-open::before {
  opacity: 0;
}

.qa .question.open .toggle-open:after {
  transform: rotate(180deg);
}

.qa .answer {
  display: none;
  line-height: 1.8125;
  padding: 1.7rem 0;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
}

@media (max-width: 767px) {
  .qa .answer {
    padding: 2.4rem 1rem 0;
    font-size: 1.4rem;
  }
}

/*=================================================
    クーポンご利用方法
===================================================*/
.coupon-gide {
  padding: 5.7rem 0 11.8rem;
}

@media (max-width: 767px) {
  .coupon-gide {
    padding: 2.3rem 2.8rem 7rem;
  }
}

.coupon-gide .flow {
  margin-top: 3.3rem;
}

@media (max-width: 767px) {
  .coupon-gide .flow {
    margin-top: 2.5rem;
  }
}

.coupon-gide .flow li {
  margin-bottom: 6.2rem;
}

@media (max-width: 767px) {
  .coupon-gide .flow li {
    margin-bottom: 4rem;
  }
}

.coupon-gide .flow li .flow__ttl {
  margin-top: 3.3rem;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.coupon-gide .flow li .flow__ttl .number {
  margin-right: 1rem;
}

@media (max-width: 767px) {
  .coupon-gide .flow li .flow__ttl {
    display: flex;
    margin-top: 2.3rem;
    font-size: 1.8rem;
  }
}

.coupon-gide .flow li .flow__item {
  display: flex;
  align-items: center;
  margin-top: 4.7rem;
}

@media (max-width: 767px) {
  .coupon-gide .flow li .flow__item {
    flex-direction: column;
    margin-top: 0.9rem;
  }
}

.coupon-gide .flow li .flow__item img {
  width: 100%;
  margin-right: 6rem;
  max-width: 31.4rem;
}

@media (max-width: 767px) {
  .coupon-gide .flow li .flow__item img {
    margin-right: 0;
    max-width: 100%;
  }
}

.coupon-gide .flow li .flow__item p {
  line-height: 1.8235294118;
  font-size: 1.7rem;
  letter-spacing: 0.03em;
}

@media (max-width: 767px) {
  .coupon-gide .flow li .flow__item p {
    line-height: 1.4285714286;
    font-size: 1.4rem;
    letter-spacing: 0.01em;
    font-feature-settings: "palt";
  }
}

.coupon-gide .flow li:last-child {
  margin-bottom: 0;
}

/*=================================================
    商品詳細
===================================================*/
.page-item {
  /* パンくず */
}

.page-item .c-breadcrumb {
  color: #575858;
}

@media (max-width: 767px) {
  .page-item .c-breadcrumb {
    display: none;
  }
}

.page-item .c-breadcrumb a {
  color: #575858;
}

.page-item #hamburger-menu {
  top: 8.4rem;
}

@media (max-width: 767px) {
  .page-item #search-wrap.panelactive {
    top: 8.4rem;
  }
}

.item-content {
  position: relative;
  padding: 4rem 0 0;
  color: #525252;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic",
    sans-serif;
}

@media (max-width: 767px) {
  .item-content {
    padding: 11.4rem 2.8rem 4rem;
  }
}

.item-content a {
  color: #525252;
}

@media (max-width: 767px) {
  .item-content .flex {
    flex-direction: column;
  }
}

.item-content .sns-share {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
  gap: 1rem;
}

.item-content .arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 1rem;
  transform: rotate(45deg);
  border-top: solid 1px #525252;
  border-right: solid 1px #525252;
}

/* 左 スライダーグループ */
.item-slider {
  margin-right: 5rem;
  /* メイン画像 */
  /* サムネイル */
  /* 現在のスライド */
  /* 矢印 */
}

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

@media (max-width: 767px) {
  .item-slider {
    margin-right: 0;
  }
}

.item-slider .swiper {
  width: 100%;
  max-width: 49.1rem;
}

@media (max-width: 767px) {
  .item-slider .swiper {
    max-width: 100%;
  }
}

.item-slider .slider {
  padding-bottom: 7.18rem;
}

@media (max-width: 767px) {
  .item-slider .slider {
    padding-bottom: 5.4rem;
  }
}

.item-slider .swiper-pagination {
  bottom: 24px;
}

@media (max-width: 767px) {
  .item-slider .swiper-pagination {
    bottom: 1px;
  }
}

.item-slider .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #e1e1e1;
  opacity: 1;
}

.item-slider .swiper-pagination-bullet-active {
  background: #808080;
}

.item-slider .swiper-slide img {
  width: 100%;
  height: auto;
}

.item-slider .slider-thumbnail {
  cursor: pointer;
}

.item-slider .slider-thumbnail .swiper-wrapper {
  flex-wrap: wrap;
}

.item-slider .slider-thumbnail .swiper-slide {
  width: calc(20% - 0.8rem) !important;
  margin-right: 1rem;
  margin-bottom: 1rem;
  transition: opacity 0.5s;
}

@media (max-width: 767px) {
  .item-slider .slider-thumbnail .swiper-slide {
    margin-right: 0.8rem;
    margin-bottom: 0.8rem;
  }
}

.item-slider .slider-thumbnail .swiper-slide:nth-of-type(5n) {
  margin-right: 0;
}

.item-slider .slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.item-slider .swiper-button-next,
.item-slider .swiper-button-prev {
  width: 3.7rem;
  height: 3.7rem;
  color: #9b9b9b;
  cursor: pointer;
}

.item-slider .swiper-button-next:after,
.item-slider .swiper-button-prev:after {
  font-size: 2.8rem;
}

@media (max-width: 767px) {
  .item-slider .swiper-button-prev {
    left: 0;
  }
}

@media (max-width: 767px) {
  .item-slider .swiper-button-next {
    right: 0;
  }
}

/* 右 商品説明・各種ボタン */
.item-detail {
  /* カートに入れる */
  /* SNSシェア */
  /* お気に入り */
  /* カラー選択 */
  /* 数量選択 */
  /* 決済 */
}

.item-detail .section__ttl {
  text-align: left;
}

@media (max-width: 767px) {
  .item-detail .section__ttl {
    margin-top: 2.7rem;
  }
}

.item-detail .section__ttl .en {
  margin-top: 0.4rem;
  color: #525252;
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
}

@media (max-width: 767px) {
  .item-detail .section__ttl .en {
    font-size: 1.6rem;
  }
}

.item-detail .section__ttl .ja {
  color: #525252;
  font-size: 2.8rem;
  font-weight: 500;
}

@media (max-width: 767px) {
  .item-detail .section__ttl .ja {
    font-size: 2.5rem;
  }
}

.item-detail .item-detail__txt {
  line-height: 1.4285714286;
  margin-top: 2.6rem;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  font-feature-settings: "palt";
}

@media (max-width: 767px) {
  .item-detail .item-detail__txt {
    margin-top: 1.8rem;
  }
}

.item-detail .item-detail__price {
  margin-top: 5.8rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
}

.item-detail .item-detail__price .yen {
  font-size: 1.9rem;
}

@media (max-width: 767px) {
  .item-detail .item-detail__price .yen {
    font-size: 1.7rem;
  }
}

.item-detail .item-detail__price .number {
  font-size: 3rem;
}

@media (max-width: 767px) {
  .item-detail .item-detail__price .number {
    font-size: 2.7rem;
  }
}

.item-detail .item-detail__price .tax {
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic",
    sans-serif;
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  .item-detail .item-detail__price .tax {
    font-size: 1.3rem;
  }
}

.item-detail .item-detail__price .plus {
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  .item-detail .item-detail__price .plus {
    font-size: 1.3rem;
  }
}

.item-detail .item-detail__price .postage-free {
  color: #3778e1;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic",
    sans-serif;
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  .item-detail .item-detail__price .postage-free {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .item-detail .item-detail__price {
    margin-top: 3rem;
    font-size: 1.7rem;
  }
}

.item-detail .item-detail__item-code {
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: 300;
}

@media (max-width: 767px) {
  .item-detail .item-detail__item-code {
    margin-top: 1.2rem;
    font-size: 1.2rem;
  }
}

.item-detail .item-detail__shipping {
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: 300;
}

@media (max-width: 767px) {
  .item-detail .item-detail__shipping {
    font-size: 1.2rem;
  }
}

.item-detail .item-detail__point {
  margin-top: 0.7rem;
  color: #3778e1;
  font-size: 1.4rem;
  font-weight: 300;
}

@media (max-width: 767px) {
  .item-detail .item-detail__point {
    margin-top: 1rem;
    font-size: 1.2rem;
  }
}

.item-detail .cart-add-button-wrapper {
  position: relative;
  justify-content: flex-start;
  align-items: center;
  margin-top: 2.9rem;
}

@media (max-width: 767px) {
  .item-detail .cart-add-button-wrapper {
    flex-direction: row;
    align-items: center;
    margin-top: 0;
    margin-top: 2.3rem;
  }
}

.item-detail .share-button {
  margin-right: 1.5rem;
  cursor: pointer;
}

@media (max-width: 767px) {
  .item-detail .share-button {
    width: 1.6rem;
    margin: 0 1rem 0 0.8rem;
  }
}

@media (max-width: 767px) {
  .item-detail .favorite-button {
    width: 2.3rem;
  }
}

.item-detail .share-list {
  display: none;
  position: absolute;
  right: 0;
  bottom: -13.5rem;
  z-index: 1;
  border: solid 1px #707070;
  background: #fff;
  border-radius: 12px;
}

.item-detail .share-list::before {
  position: absolute;
  top: -14.3px;
  left: 46%;
  width: 22px;
  height: 16px;
  background-image: url(../images/share-tri.svg);
  content: "";
}

@media (max-width: 767px) {
  .item-detail .share-list::before {
    top: -15.7px;
    left: 64%;
  }
}

.item-detail .share-list li {
  padding: 1rem 2.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  border-bottom: solid 1px #707070;
}

.item-detail .share-list li img {
  margin-right: 1rem;
}

.item-detail .share-list li:last-child {
  border-bottom: none;
}

.item-detail .is-show {
  display: block;
}

.item-detail .cart-add-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 6.1rem;
  margin-right: 2.4rem;
  background: #3778e1;
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  max-width: 33.8rem;
  border-radius: 3.1rem;
}

@media (max-width: 767px) {
  .item-detail .cart-add-button {
    width: 27.3rem;
    height: 5rem;
    margin-right: 0;
    font-size: 1.7rem;
    max-width: 100%;
  }
}

.item-detail .cart-add-button .cart-icon {
  width: 3.8rem;
  margin-right: 1.3rem;
}

@media (max-width: 767px) {
  .item-detail .cart-add-button .cart-icon {
    width: 3.1rem;
    margin-right: 1rem;
  }
}

@media (max-width: 767px) {
  .item-detail .item-detail__color {
    margin-top: 1.2rem;
  }
}

@media (max-width: 767px) {

  .item-detail .item-detail__color,
  .item-detail .item-detail__lot {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.item-detail .item-detail__color .ja,
.item-detail .item-detail__lot .ja {
  margin-right: 4.1rem;
  font-size: 1.4rem;
  font-weight: 400;
}

@media (max-width: 767px) {

  .item-detail .item-detail__color .ja,
  .item-detail .item-detail__lot .ja {
    margin-right: 0;
    font-size: 1.2rem;
  }
}

.item-detail .selectbox-color {
  display: inline-flex;
  position: relative;
  align-items: center;
  margin-top: 1.9rem;
  margin-bottom: 2.1rem;
}

@media (max-width: 767px) {
  .item-detail .selectbox-color {
    width: 100%;
    max-width: 27.1rem;
  }
}

.item-detail .selectbox-color::after {
  position: absolute;
  right: 18px;
  width: 13px;
  height: 12px;
  background-color: #575858;
  content: "";
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}

.item-detail .selectbox-color select {
  width: 18.3rem;
  height: 4.8rem;
  padding: 0.4em calc(0.8em + 30px) 0.4em 0.8em;
  border: 1px solid #949494;
  background-color: #fff;
  color: #575858;
  font-size: 1.8rem;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 3rem;
}

@media (max-width: 767px) {
  .item-detail .selectbox-color select {
    width: 100%;
    height: 5rem;
    max-width: 27.1rem;
  }
}

.item-detail .input-lot {
  width: 18.3rem;
  height: 4.8rem;
  padding: 1rem 1.9rem;
  border: 1px solid #949494;
  background: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: right;
  cursor: pointer;
  border-radius: 3rem;
}

@media (max-width: 767px) {
  .item-detail .input-lot {
    width: 100%;
    height: 4.8rem;
    font-size: 16px;
    max-width: 27.1rem;
  }
}

.item-detail .item-detail__cash {
  margin-top: 3.56rem;
  padding: 1.2rem;
  border: solid 1px #e1e1e1;
  border-radius: 1.2rem;
}

@media (max-width: 767px) {
  .item-detail .item-detail__cash {
    margin-top: 3.1rem;
  }
}

.item-detail .item-detail__cash .more-link {
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic",
    sans-serif;
  font-size: 1.3rem;
  text-align: right;
}

.item-detail .item-detail__cash .more-link img {
  margin-left: 0.45rem;
  vertical-align: baseline;
}

.item-detail .cash-name {
  margin-right: 2.8rem;
  font-size: 1.4rem;
  font-weight: 500;
}

.item-detail .cash-name img {
  margin-right: 0.3rem;
  vertical-align: text-top;
}

.item-detail .cash-img {
  margin-top: 0.64rem;
}

.item-detail .item-detail__recommend {
  overflow: hidden;
  margin-top: 1.27rem;
  border: solid 1px #e1e1e1;
  border-radius: 1.2rem;
}

.item-detail .item-detail__recommend .more-link {
  display: block;
  font-size: 1.3rem;
  text-align: left;
}

.item-detail .item-detail__recommend .more-link img {
  margin-left: 0.45rem;
  vertical-align: baseline;
}

.item-detail .item-detail__recommend .recommend-title {
  padding: 0.9rem 0 0.8rem;
  background: #e6f4fc;
  color: #525252;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
}

.item-detail .item-detail__recommend .item-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4.2rem;
}

.item-detail .item-detail__recommend .item-wrapper img {
  width: 100%;
  max-width: 13.4rem;
}

.item-detail .item-detail__recommend .item-wrapper .item-text {
  line-height: 2;
  font-size: 1.4rem;
  font-weight: 500;
}

/*=================================================
    商品詳細 タブ切り替え
===================================================*/
.item-about {
  padding: 9.8rem 0 10rem;
  color: #525252;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic",
    sans-serif;
}

@media (max-width: 767px) {
  .item-about {
    padding: 3.4rem 2.8rem 5rem;
  }
}

.item-about a {
  color: #525252;
}

/*tabの形状*/
.tab {
  display: flex;
  position: relative;
  z-index: 1;
  background: #fff;
}

.tab li {
  width: 33.3333333333%;
}

@media (max-width: 767px) {
  .tab li:nth-child(1) {
    width: 100%;
    /* max-width: 12.9rem; */
  }
}

@media (max-width: 767px) {
  .tab li:nth-child(2) {
    width: 100%;
    /* max-width: 9.7rem; */
  }
}

@media (max-width: 767px) {
  .tab li:nth-child(3) {
    width: 100%;
    /* max-width: 9.7rem; */
  }
}

.tab li:nth-child(3) a {
  border-right: solid 1px #949494;
}

.tab li a {
  display: block;
  padding: 1.5rem;
  background: #f2f2f2;
  color: #525252;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  border-top: solid 1px #949494;
  border-bottom: solid 1px #949494;
  border-left: solid 1px #949494;
}

@media (max-width: 1023px) {
  .tab li a {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .tab li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 5rem;
    margin: 0;
    padding: 0.5rem 0;
    font-size: 1.4rem;
  }
}

/*liにactiveクラスがついた時の形状*/
.tab li.active a {
  background: #fff;
  border-bottom: none;
}

/*エリアの表示非表示と形状*/
.area {
  display: none;
  margin-top: -5.9rem;
  padding: 10.2rem 3.4rem 5rem;
  background: #fff;
  font-weight: 500;
  opacity: 0;
}

@media (max-width: 767px) {
  .area {
    margin-top: -5rem;
    padding: 8.4rem 0 4.7rem;
  }
}

.area .tab__ttl {
  padding-bottom: 3rem;
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.03em;
  border-bottom: solid 1px #949494;
}

@media (max-width: 767px) {
  .area .tab__ttl {
    padding-bottom: 1rem;
    font-size: 1.7rem;
  }
}

/* 特徴 */
.feature-list {
  margin-top: 6rem;
}

@media (max-width: 767px) {
  .feature-list {
    margin-top: 2rem;
  }
}

.feature-list li {
  margin-bottom: 5.7rem;
}

@media (max-width: 767px) {
  .feature-list li {
    margin-bottom: 2.5rem;
  }
}

.feature-list li .feature-list__ttl {
  font-size: 1.9rem;
  font-weight: 500;
}

@media (max-width: 767px) {
  .feature-list li .feature-list__ttl {
    font-size: 1.7rem;
  }
}

.feature-list li .flex {
  margin-top: 2.4rem;
  gap: 3.4rem;
}

@media (max-width: 767px) {
  .feature-list li .flex {
    flex-direction: column;
    gap: 1.1rem;
  }
}

.feature-list li .flex img {
  width: 100%;
  max-width: 41.6rem;
}

@media (max-width: 767px) {
  .feature-list li .flex img {
    max-width: 100%;
  }
}

.feature-list li .flex p {
  line-height: 1.6428571429;
  margin-top: 2.2rem;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  font-feature-settings: "palt";
}

@media (max-width: 767px) {
  .feature-list li .flex p {
    margin-top: 1rem;
  }
}

.feature-list li:nth-child(2n) .flex {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .feature-list li:nth-child(2n) .flex {
    flex-direction: column;
  }
}

.feature-list li:last-child {
  margin-bottom: 0;
}

/* よくある質問 */
.feature__qa {
  margin-top: 9.5rem;
}

@media (max-width: 767px) {
  .feature__qa {
    margin-top: 7.7rem;
  }
}

.feature__qa li {
  border-bottom: solid 1px #707070;
}

.feature__qa .qa-list {
  width: 100%;
}

.feature__qa .qa-list .q,
.feature__qa .qa-list .a {
  margin-right: 1.68rem;
  font-family: "Open Sans", sans-serif;
  font-size: 2.3rem;
  font-weight: 600;
}

@media (max-width: 767px) {

  .feature__qa .qa-list .q,
  .feature__qa .qa-list .a {
    line-height: 1.2857142857;
    margin-right: 0.75rem;
    font-size: 1.6rem;
    flex-shrink: 0;
  }
}

.feature__qa .qa-list .qa-list__answer {
  display: none;
  align-items: center;
  background: #f2f2f2;
}

.feature__qa .qa-list .answer-wrapper {
  display: flex;
  align-items: center;
  padding: 2.5rem 1rem;
  border-top: solid 1px #707070;
}

@media (max-width: 767px) {
  .feature__qa .qa-list .answer-wrapper {
    padding: 1.2rem 0 1.2rem 0.6rem;
  }
}

.feature__qa .qa-list .qa-list__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 1rem;
  cursor: pointer;
}

@media (max-width: 767px) {
  .feature__qa .qa-list .qa-list__question {
    padding: 1.3rem 0 0.87rem 0.6rem;
  }
}

.feature__qa .qa-list .qa__txt-wrapper {
  display: flex;
  align-items: center;
}

.feature__qa .qa-list .qa__txt {
  font-size: 1.7rem;
  font-weight: 300;
}

@media (max-width: 767px) {
  .feature__qa .qa-list .qa__txt {
    font-size: 1.4rem;
  }
}

.feature__qa .qa-list .arrow {
  width: 10px;
  height: 11px;
  transform: rotate(135deg);
  transition: 0.3s;
  border-top: solid 2px #525252;
  border-right: solid 2px #525252;
}

@media (max-width: 767px) {
  .feature__qa .qa-list .arrow {
    width: 14px;
    height: 10px;
  }
}

.feature__qa .qa-list .js-accordion.open .arrow {
  transform: rotate(-45deg);
}

/* 商品の仕様 */
.detail-list {
  width: 100%;
  border-spacing: 0;
}

.detail-list th {
  width: 25%;
  text-align: left;
}

.detail-list td {
  width: 75%;
}

.detail-list th,
.detail-list td {
  padding: 2rem 0 2rem 3.3rem;
  font-size: 1.3rem;
  font-weight: 300;
  border-bottom: solid 1px #707070;
}

@media (max-width: 767px) {

  .detail-list th,
  .detail-list td {
    padding: 1.5rem 0 1.5rem 0.5rem;
    font-weight: 400;
  }
}

.detail-list2 {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.detail-list2 th,
.detail-list2 td {
  padding: 8px;
  border: 1px solid #ddd;
  text-align: left;
  word-wrap: break-word;
}

.detail-list2 th {
  width: 25%;
  background-color: #f9f9f9;
  font-weight: bold;
  /* デスクトップ用の列幅 */
}

.detail-list2 td {
  width: 37.5%;
}

@media (max-width: 767px) {

  .detail-list2,
  .detail-list2 tbody,
  .detail-list2 tr,
  .detail-list2 th,
  .detail-list2 td {
    display: block;
    width: 100%;
  }

  .detail-list2 tr {
    margin-bottom: 16px;
  }

  .detail-list2 th {
    width: 100%;
    background-color: #efefef;
  }

  .detail-list2 td {
    width: 100%;
    margin-top: 4px;
  }
}

.review .tab__ttl {
  text-align: right;
}

.review .tab__ttl span {
  margin-right: 20%;
}

.review .review-button {
  display: inline-block;
  width: 22.5rem;
  padding: 1rem 0;
  background: #575858;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 300;
  text-align: center;
  cursor: pointer;
}

@media (max-width: 767px) {
  .review .review-button {
    display: none;
  }
}

.review .review-list {
  margin-top: 4.5rem;
  color: #333;
}

@media (max-width: 767px) {
  .review .review-list {
    margin-top: 1.6rem;
  }
}

.review .review-list li {
  margin-bottom: 3.24rem;
}

@media (max-width: 767px) {
  .review .review-list li {
    margin-bottom: 2rem;
  }
}

.review .review-list li .review__ttl {
  margin-right: 15.7rem;
  font-size: 1.6rem;
  font-weight: 500;
}

@media (max-width: 767px) {
  .review .review-list li .review__ttl {
    margin-right: 0;
    font-size: 1.4rem;
  }
}

.review .review-list li .review__ttl span {
  line-height: 1;
}

.review .review-list li .review-top {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .review .review-list li .review-top {
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .review .review-list li .review-star {
    display: flex;
    align-items: center;
  }
}

.review .review-list li .review-star img {
  margin-left: -0.5rem;
}

@media (max-width: 767px) {
  .review .review-list li .review-star img {
    margin-left: 0;
    max-width: 1.1rem;
  }
}

.review .review-list li .review-star .number {
  margin-left: 1.5rem;
  font-size: 1.1rem;
  vertical-align: bottom;
}

@media (max-width: 767px) {
  .review .review-list li .review-star .number {
    margin-left: 1.2rem;
    font-size: 1.2rem;
  }
}

.review .review-list li .review__txt {
  line-height: 1.4285714286;
  margin-top: 1.8rem;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}

@media (max-width: 767px) {
  .review .review-list li .review__txt {
    margin-top: 1.38rem;
    font-size: 1.4rem;
  }
}

.review .review-list li .review__date {
  margin-top: 5.16rem;
  font-size: 1.4rem;
  font-weight: 300;
}

@media (max-width: 767px) {
  .review .review-list li .review__date {
    margin-top: 1.2rem;
  }
}

.review .review-list li:last-child {
  margin-bottom: 0;
}

.review .review-list--more {
  display: none;
}

.review .more-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22.5rem;
  height: 4rem;
  margin: 5.9rem auto 0;
  border: 1px solid #575858;
  background: transparent;
  font-size: 1.4rem;
  font-weight: 300;
  cursor: pointer;
}

@media (max-width: 767px) {
  .review .more-button {
    width: 100%;
    height: 3.2rem;
    margin-top: 3.2rem;
    font-size: 1.2rem;
    max-width: 18.1rem;
  }
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
  display: block;
  /*表示*/
  animation-name: displayAnime;
  /*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*=================================================
    商品詳細 追従ナビ
===================================================*/
.item-detail-navi {
  position: fixed;
  right: 0;
  bottom: 9.2rem;
  z-index: 10;
  width: 17.6rem;
  overflow: hidden;
  border: solid 1px #575858;
  border-radius: 12px 0 0 12px;
}

@media (max-width: 767px) {
  .item-detail-navi {
    display: flex;
    position: absolute;
    top: 4.9rem;
    right: 0;
    bottom: inherit;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 3.5rem;
    border: none;
    background-color: #f2f2f2;
    gap: 1.2rem;
    border-radius: 0;
  }
}

.item-detail-navi li {
  transition: 0.3s;
  border-bottom: solid 1px #575858;
}

@media (max-width: 767px) {
  .item-detail-navi li {
    border-bottom: none;
  }
}

@media (min-width: 768px) {
  .item-detail-navi li:hover a {
    background: #f2f2f2;
  }
}

.item-detail-navi li a {
  display: block;
  padding: 1rem 1.6rem 1rem 1.7rem;
  background: #fff;
  color: #525252;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic",
    sans-serif;
  font-size: 1.4rem;
  text-align: center;
}

@media (max-width: 767px) {
  .item-detail-navi li a {
    display: flex;
    align-items: center;
    padding: 0;
    background: transparent;
    font-size: 1rem;
  }
}

.item-detail-navi li:last-child {
  border-bottom: none;
}

@media (max-width: 767px) {
  .item-detail-navi li .arrow {
    display: inline-block;
    width: 5px;
    height: 5px;
    margin-left: 0.4rem;
    transform: rotate(135deg);
    border-top: solid 0.8px #707070;
    border-right: solid 0.8px #707070;
  }
}

@media (min-width: 768px) {
  .item-detail-navi .item-detail-navi__cart a {
    background: #3778e1;
    color: #fff;
  }
}

/* カレント表示 */
@media (min-width: 768px) {
  .item-detail-navi li.current a {
    background: #f2f2f2;
    color: #525252;
  }
}

@media (max-width: 767px) {
  .item-detail-navi li.current a {
    background: transparent;
  }
}

@media (min-width: 768px) {
  .back-navi {
    display: none;
    position: fixed;
    right: 0;
    bottom: 4.2rem;
    z-index: 10;
    width: 17.6rem;
    overflow: hidden;
    padding: 1rem 1.6rem 1rem 1.7rem;
    border: solid 1px #575858;
    background: #bfbfbf;
    color: #fff;
    font-family: "ヒラギノ角ゴシック", "Hiragino Sans",
      "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic",
      sans-serif;
    font-size: 1.4rem;
    text-align: center;
    border-radius: 12px 0 0 12px;
  }

  .back-navi.is-show {
    display: block;
  }
}

/*=================================================
    クーポン　モーダル
===================================================*/
/* クーポン追従バナー */
.coupon-banner {
  position: fixed;
  bottom: 12rem;
  left: 0;
  z-index: 10;
  width: 100%;
  padding: 0 0 1.9rem;
  background: #3778e1;
  max-width: 28rem;
}

@media (max-width: 767px) {
  .coupon-banner {
    padding-bottom: 1.3rem;
    max-width: 18.9rem;
  }
}

.coupon-banner .coupon-name {
  line-height: 1.1;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 767px) {
  .coupon-banner .coupon-name {
    font-size: 1.9rem;
  }
}

.coupon-banner .parcent {
  font-size: 4.1rem;
  text-align: center;
}

@media (max-width: 767px) {
  .coupon-banner .parcent {
    font-size: 2.8rem;
  }
}

.coupon-banner .parcent em {
  font-size: 6.6rem;
}

@media (max-width: 767px) {
  .coupon-banner .parcent em {
    font-size: 3.8rem;
  }
}

.coupon-banner .coupon-code {
  margin: 1rem auto 0;
  padding: 0.6rem 0;
  border: solid 1px #707070;
  background: #fff;
  font-size: 1rem;
  text-align: center;
  max-width: 20.2rem;
}

@media (max-width: 767px) {
  .coupon-banner .coupon-code {
    margin-top: 0.4rem;
    padding: 0.4rem 0;
    max-width: 13.5rem;
  }
}

.coupon-banner .continue-button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.5rem;
  margin: 1rem auto 0;
  border: solid 1px #fff;
  color: #fff;
  font-size: 1rem;
  text-align: center;
  max-width: 20.2rem;
  border-radius: 3.6rem;
}

@media (max-width: 767px) {
  .coupon-banner .continue-button {
    height: 2rem;
    margin-top: 0.7rem;
    max-width: 13.5rem;
  }
}

.coupon-banner .close-coupon {
  display: block;
  position: relative;
  width: 18px;
  height: 18px;
  margin: 0 0 0 auto;
  border: solid 1px #707070;
  background: #575858;
  cursor: pointer;
}

@media (max-width: 767px) {
  .coupon-banner .close-coupon {
    width: 12px;
    height: 12px;
  }
}

.coupon-banner .close-coupon:before {
  position: absolute;
  top: 48%;
  right: 3.5px;
  width: 10px;
  height: 2px;
  background: #fff;
  content: "";
  transform: rotate(45deg);
}

@media (max-width: 767px) {
  .coupon-banner .close-coupon:before {
    top: 41%;
    right: 0;
    width: 9px;
  }
}

.coupon-banner .close-coupon:after {
  position: absolute;
  right: 3.5px;
  bottom: 40%;
  width: 10px;
  height: 2px;
  background: #fff;
  content: "";
  transform: rotate(-45deg);
}

@media (max-width: 767px) {
  .coupon-banner .close-coupon:after {
    right: 0;
    bottom: 39%;
    width: 9px;
  }
}

/* 閉じるボタン */
.coupon-banner.click {
  display: none;
}

/*coupon-modalエリアをはじめは非表示*/
#coupon-modal {
  display: none;
}

/* 背景リセット */
.modaal-container {
  box-shadow: none;
  background: transparent;
}

@media (max-width: 767px) {
  .modaal-content-container {
    padding: 0;
  }
}

/*モーダル*/
.coupon-modal-wrapper {
  width: 80%;
  margin: 0 auto;
  padding: 3.7rem 0 5rem;
  background: #3778e1;
  max-width: 90.4rem;
}

@media (max-width: 767px) {
  .coupon-modal-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 2.3rem 0;
    max-width: 100%;
  }
}

.coupon-modal-wrapper .coupon-name {
  line-height: 1.1;
  color: #fff;
  font-size: 8.4rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 767px) {
  .coupon-modal-wrapper .coupon-name {
    margin-top: -1rem;
    font-size: 3.4rem;
  }
}

.coupon-modal-wrapper .parcent {
  font-size: 11.3rem;
  text-align: center;
}

@media (max-width: 767px) {
  .coupon-modal-wrapper .parcent {
    font-size: 4.9rem;
  }
}

.coupon-modal-wrapper .parcent em {
  font-size: 16.2rem;
}

@media (max-width: 767px) {
  .coupon-modal-wrapper .parcent em {
    font-size: 6.7rem;
  }
}

.coupon-modal-wrapper .coupon-code {
  width: 80%;
  margin: 2.6rem auto 0;
  padding: 1.8rem 0;
  border: solid 1px #707070;
  background: #fff;
  font-size: 3.2rem;
  text-align: center;
  max-width: 64.9rem;
}

@media (max-width: 767px) {
  .coupon-modal-wrapper .coupon-code {
    width: 100%;
    margin-top: 1rem;
    padding: 0.7rem 0;
    font-size: 1.3rem;
    max-width: 24rem;
  }
}

.coupon-modal-wrapper .continue-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 7.9rem;
  margin: 2.8rem auto 0;
  border: solid 1px #fff;
  color: #fff;
  font-size: 2.2rem;
  text-align: center;
  max-width: 64.9rem;
  border-radius: 3.6rem;
}

@media (max-width: 767px) {
  .coupon-modal-wrapper .continue-button {
    width: 100%;
    height: 2.9rem;
    margin-top: 1.1rem;
    font-size: 1rem;
    max-width: 24rem;
  }
}

/*モーダルのボタン*/
.modaal-wrapper .modaal-close {
  position: absolute;
  top: 2.9rem;
  right: 12.3rem;
  width: 5.6rem;
  height: 5.6rem;
  background: #575858;
  border-radius: 0;
}

@media (max-width: 1023px) {
  .modaal-wrapper .modaal-close {
    right: 12vw;
  }
}

@media (max-width: 767px) {
  .modaal-wrapper .modaal-close {
    top: 0;
    right: 0;
    width: 2.1rem;
    height: 2.1rem;
  }
}

.modaal-close:after,
.modaal-close:before {
  top: 1.4rem;
  left: 2.7rem;
  width: 2.5px;
  height: 3rem;
  background: #fff;
}

@media (max-width: 767px) {

  .modaal-close:after,
  .modaal-close:before {
    top: 0.3rem;
    left: 0.9rem;
    height: 1.6rem;
  }
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #fff;
}

/*=================================================
    カラー選択　モーダル
===================================================*/
#cart-select {
  display: none;
}

#cart-select .cart-select-wrapper {
  margin: 0 auto;
  max-width: 90.2rem;
}

.select-color {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 3.5rem;
  row-gap: 5.6rem;
}

@media (max-width: 767px) {
  .select-color {
    flex-direction: column;
  }
}

.select-color li {
  max-width: 43.3rem;
}

@media (max-width: 767px) {
  .select-color li {
    width: 100%;
    max-width: 85.9vw;
  }
}

.select-color .swiper__container {
  position: relative;
}

.select-color .swiper-button-next,
.select-color .swiper-button-prev {
  width: 28px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #6a685e;
  border-radius: 5px;
}

.select-color .swiper-button-next:after,
.select-color .swiper-button-prev:after {
  font-size: 2rem;
}

@media (max-width: 767px) {
  .select-color .select-img img {
    width: 100%;
  }
}

.modal-cart-button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5.6rem;
  margin: 3.4rem auto 0;
  background: #3778e1;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  max-width: 37.5rem;
  border-radius: 2.5rem;
}

@media (max-width: 767px) {
  .modal-cart-button {
    height: 5rem;
    font-size: 1.8rem;
    max-width: 33.5rem;
  }
}

.modal-cart-button img {
  margin-right: 1.1rem;
}

@media (max-width: 767px) {
  .modal-cart-button img {
    width: 3.1rem;
  }
}

/*=================================================
    SP 下部固定バナー
===================================================*/
.bottom-navi {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  padding: 0.8rem 1.8rem;
  background: #bfbfbf;
  content: "";
  gap: 0.5rem;
}

.bottom-navi .favorite-button {
  background: #f4f4f4;
  color: #575858;
}

.bottom-navi a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44.87vw;
  height: 4rem;
  font-size: 1.6rem;
}

.bottom-navi .buy-button {
  background: #3778e1;
  color: #fff;
}

@media (min-width: 768px) {
  .bottom-navi {
    display: none;
  }
}

/*=================================================
    ポップアップウィンドウ
===================================================*/
.popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  visibility: hidden;
  transition: 0.6s;
  opacity: 0;
}

.popup.is-show {
  visibility: visible;
  opacity: 1;
}

.popup-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 80%;
  padding: 3.7rem 0 5rem;
  background-color: #3778e1;
  transform: translate(-50%, -50%);
  border-radius: 3px;
  max-width: 75.2rem;
}

@media (max-width: 767px) {
  .popup-inner {
    padding: 2.3rem 0;
  }
}

.popup-inner .coupon-modal-wrapper {
  padding: 0;
}

.popup-inner img {
  width: 100%;
  border-radius: 3px 3px 0 0;
}

div#modalCloseCloss:hover {
  opacity: 0.7;
}

.modalCloseButton {
  position: absolute;
  top: 0px;
  right: 0;
  width: 56px;
  height: 56px;
  line-height: 56px;
  background: #575858;
  text-align: center;
  cursor: pointer;
}

@media (max-width: 767px) {
  .modalCloseButton {
    width: 2.1rem;
    height: 2.1rem;
    line-height: 2.1rem;
  }
}

.lineClose {
  display: inline-block;
  position: relative;
  width: 3rem;
  height: 0.25rem;
  line-height: 1;
  background: currentColor;
  color: #fff;
  vertical-align: middle;
  transform: rotate(45deg);
  border-radius: 0.1rem;
}

@media (max-width: 767px) {
  .lineClose {
    width: 1.6rem;
  }
}

.lineClose::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  content: "";
  transform: rotate(90deg);
  border-radius: inherit;
}

.black-background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(54, 54, 54, 0.5);
  cursor: pointer;
}

/* スクロール禁止 */
body.open-popup {
  overflow: hidden;
}

/*=================================================
    サポート
===================================================*/
.support {
  padding: 5.3rem 0 10rem;
}

@media (max-width: 767px) {
  .support {
    padding: 5rem 2rem;
  }
}

.support .flex {
  margin-top: 3.53rem;
}

@media (max-width: 767px) {
  .support .flex {
    flex-direction: column;
  }
}

.support .flex h3 {
  font-size: 1.8rem;
  font-weight: 500;
}

.support .tel {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 1.58rem;
  margin-left: -1rem;
}

@media (max-width: 767px) {
  .support .tel {
    justify-content: flex-start;
    margin-top: 2rem;
  }
}

.support .tel .icon_phone {
  width: 100%;
  max-width: 5.78rem;
}

@media (max-width: 767px) {
  .support .tel .icon_phone {
    max-width: 14.1vw;
  }
}

.support .tel .tel__txt {
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.support .tel .tel__txt .open {
  font-size: 2.9rem;
  text-align: center;
}

@media (max-width: 767px) {
  .support .tel .tel__txt .open {
    font-size: 6.9vw;
  }
}

.support .tel .tel__txt .number {
  font-size: 6.1rem;
}

@media (max-width: 1024px) {
  .support .tel .tel__txt .number {
    font-size: 5rem;
  }
}

@media (max-width: 767px) {
  .support .tel .tel__txt .number {
    font-size: 11.2vw;
  }
}

@media (max-width: 767px) {
  .support .contact-link {
    margin-top: 4rem;
  }
}

.support .contact-link .contact-button {
  display: block;
  width: 100%;
  margin-top: 3.3rem;
  padding: 2rem 4.5rem;
  background: #575858;
  color: #fff;
  font-size: 2rem;
  font-weight: 500;
  transition: 0.3s;
  max-width: 46rem;
}

@media (max-width: 1024px) {
  .support .contact-link .contact-button {
    padding: 2rem 3rem;
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .support .contact-link .contact-button {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    font-size: 1.6rem;
    text-align: center;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .support .contact-link .contact-button:hover {
    opacity: 0.7;
  }
}

/*=================================================
    プライバシーポリシー
===================================================*/
.privacy {
  padding: 5.3rem 0 5.8rem;
}

@media (max-width: 767px) {
  .privacy {
    padding: 5rem 2rem;
  }
}

.privacy p {
  line-height: 1.6;
  margin-bottom: 2.5rem;
  margin-left: 2rem;
}

@media (max-width: 767px) {
  .privacy p {
    margin-bottom: 3rem;
    margin-left: 0;
  }
}

.privacy .privacy__item {
  margin-top: 3.9rem;
  font-size: 1.4rem;
}

.privacy .list-square {
  line-height: 1.7857142857;
  margin-bottom: 5rem;
}

.privacy .list-square li {
  list-style: "■";
  margin-bottom: 2.5rem;
  margin-left: 4rem;
  padding-left: 1rem;
}

@media (max-width: 767px) {
  .privacy .list-square li {
    margin-left: 2rem;
  }
}

.privacy a {
  word-break: break-all;
}

.list-none li {
  margin-left: 2rem;
}

/*=================================================
    ご利用ガイド
===================================================*/
.guide {
  padding: 5.3rem 0 5.8rem;
}

@media (max-width: 767px) {
  .guide {
    padding: 5rem 2rem;
  }
}

.guide .category-link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 auto 5.8rem;
  row-gap: 1.5rem;
  -moz-column-gap: 1.35rem;
  column-gap: 1.35rem;
  max-width: 90.1rem;
}

@media (max-width: 767px) {
  .guide .category-link {
    margin: 0 auto 5rem;
    row-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
  }
}

.guide .category-link li {
  width: 100%;
  max-width: 21.4rem;
}

@media (max-width: 767px) {
  .guide .category-link li {
    width: calc(50% - 0.5rem);
  }
}

.guide .category-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 5rem;
  line-height: 1.2142857143;
  border: solid 1px #575858;
  background: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  transition: 0.3s;
  border-radius: 2.5rem;
  max-width: 21.4rem;
}

@media (min-width: 768px) {
  .guide .category-button:hover {
    transform: scaleX(1.05);
  }
}

@media (max-width: 767px) {
  .guide .category-button {
    height: 3.7rem;
    font-size: 1.2rem;
    max-width: 100%;
  }
}

.guide .category-button .small {
  font-size: 1.1rem;
}

@media (max-width: 767px) {
  .guide .category-button .small {
    font-size: 1rem;
  }
}

.guide .guide__item {
  padding: 0 2rem;
}

@media (max-width: 767px) {
  .guide .guide__item {
    padding: 0;
  }
}

.guide .white-box {
  line-height: 1.7857142857;
  margin-top: 3rem;
  padding: 2.1rem 2.2rem 1.7rem 2rem;
  background: #fff;
  font-size: 1.4rem;
}

.guide .white-box .caution-list p {
  display: flex;
  align-items: flex-start;
}

.guide .white-box .credit {
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 1.8rem;
  margin-left: 2rem;
  max-width: 23.2rem;
}

.guide .white-box--r {
  width: 100%;
  max-width: 45.2rem;
}

.guide .white-box--r2 {
  margin-top: 2rem;
}

.guide .guide-title {
  margin-top: 5rem;
}

.guide .guide-text {
  line-height: 1.7857142857;
  margin-bottom: 2.5rem;
  font-size: 1.4rem;
}

@media (max-width: 767px) {
  .guide .guide-text {
    margin-bottom: 3rem;
    margin-left: 0;
  }
}

.guide .guide-link {
  margin-top: 0.4rem;
}

.guide .guide-link .arrow {
  margin-right: 0.48rem;
  vertical-align: middle;
}

.guide .guide-link a {
  color: #3778e1;
  font-size: 1.6rem;
  text-decoration: underline;
}

.guide .list-square {
  line-height: 1.7857142857;
  margin-bottom: 5rem;
}

.guide .list-square li {
  list-style: "■";
  margin-bottom: 2.5rem;
  margin-left: 4rem;
  padding-left: 1rem;
}

@media (max-width: 767px) {
  .guide .list-square li {
    margin-left: 2rem;
  }
}

.guide a {
  word-break: break-all;
}

.guide .tab {
  justify-content: center;
  align-items: flex-end;
  margin-top: 5rem;
  background: #f4f4f4;
  gap: 2.2rem;
  border-bottom: solid 1px #575858;
}

@media (max-width: 767px) {
  .guide .tab {
    margin-top: 4rem;
    gap: 1rem;
  }
}

.guide .tab li {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 42.35%;
  height: 6.2rem;
  margin-top: 0;
  border: solid 1px #575858;
  background: #fff;
  border-bottom: none;
}

@media (max-width: 767px) {
  .guide .tab li {
    width: 100%;
    height: 5.2rem;
    max-width: 100%;
  }
}

.guide .tab a {
  width: 100%;
  border: none;
  background: #fff;
  font-size: 1.8rem;
}

@media (max-width: 767px) {
  .guide .tab a {
    font-size: 1.5rem;
  }
}

.guide .area {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 4rem 0 10rem;
  background: #f4f4f4;
}

@media (max-width: 767px) {
  .guide .area {
    padding: 4rem 0 0;
  }
}

.guide .tab li.active {
  height: 8.2rem;
  margin-top: 2rem;
  background: #575858;
  color: #fff;
}

@media (max-width: 767px) {
  .guide .tab li.active {
    height: 6.5rem;
    margin-top: 0;
  }
}

.guide .tab li.active a {
  background: #575858;
  color: #fff;
}

.guide-title {
  position: relative;
  margin-bottom: 1.7rem;
  padding-left: 2rem;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.guide-title::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 3rem;
  background: #575858;
  content: "";
  transform: translateY(-50%);
}

/*=================================================
    保証規定
===================================================*/
.security {
  padding: 5.3rem 0 10rem;
}

@media (max-width: 767px) {
  .security {
    padding: 5rem 2rem;
  }
}

.security .table-list {
  margin-top: 3.93rem;
}

.security .table-list th {
  width: 36.19%;
  line-height: 2.25;
}

@media (max-width: 767px) {
  .security .table-list th {
    width: 100%;
  }
}

.security .table-list td {
  line-height: 2.25;
  padding: 1rem 1.6rem 1rem 2.9rem;
  letter-spacing: 0.01em;
  font-feature-settings: "palt";
}

@media (max-width: 767px) {
  .security .table-list td {
    padding: 1rem 1.6rem 1rem 1.6rem;
  }
}

.security .num-list li {
  margin-left: 1.8rem;
  list-style-type: decimal;
}

/*=================================================
    会社概要
===================================================*/
.company {
  padding: 5.3rem 0 10rem;
}

@media (max-width: 767px) {
  .company {
    padding: 5rem 2rem;
  }
}

.company .table-list {
  margin-top: 2.6rem;
  margin-bottom: 8.7rem;
}

@media (max-width: 767px) {
  .company .table-list {
    margin-bottom: 5.7rem;
  }
}

.company .googlemap {
  margin-top: 3rem;
}

.company__about {
  margin-top: 3.6rem;
}

.company__about_item .about__ttl {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: -0.01em;
}

@media (max-width: 767px) {
  .company__about_item .about__ttl {
    font-size: 1.8rem;
  }
}

.company__about_item .section__txt {
  line-height: 1.4285714286;
  margin-top: 2.6rem;
  font-size: 1.4rem;
}

@media (max-width: 767px) {
  .company__about_item .section__txt {
    margin-top: 2rem;
  }
}

/*=================================================
    特定商取引法表示
===================================================*/
.contract {
  padding: 5.7rem 0 10rem;
}

@media (max-width: 767px) {
  .contract {
    padding: 5rem 2rem;
  }
}

.contract .table-list {
  margin-top: 3.9rem;
}

.contract .table-list th {
  width: 36.22%;
}

@media (max-width: 767px) {
  .contract .table-list th {
    width: 100%;
  }
}

/*=================================================
    フッター
===================================================*/
.footer {
  padding: 3.4rem 0 2.6rem;
  background: #262627;
  color: #949595;
  /* SNSアイコン */
}

@media (max-width: 1023px) {
  .footer {
    padding: 7.5rem 1rem 2.6rem;
  }
}

@media (max-width: 767px) {
  .footer {
    padding: 3rem 0 1.1rem;
  }
}

.footer .footer__list__wrapper {
  gap: 5rem;
}

@media (max-width: 767px) {
  .footer .footer__list__wrapper {
    flex-direction: column;
    padding: 0 2.8rem;
  }
}

.footer .footer__ttl {
  padding-bottom: 0.78rem;
  color: #949595;
  font-family: "Open Sans", "ヒラギノ角ゴシック", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic",
    sans-serif;
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-bottom: solid 0.5px #fff;
}

@media (max-width: 767px) {
  .footer .footer__ttl {
    font-size: 1.6rem;
  }
}

.footer .footer__item {
  width: 100%;
  max-width: 29.2rem;
}

@media (max-width: 767px) {
  .footer .footer__item {
    max-width: 100%;
  }
}

.footer .footer__menu {
  margin-top: 2.3rem;
  margin-right: 5.2%;
}

@media (max-width: 767px) {
  .footer .footer__menu {
    margin-right: 0;
    margin-bottom: 2.3rem;
  }
}

.footer .footer__menu li {
  margin-bottom: 0.9rem;
}

.footer .footer__menu li:last-child {
  margin-bottom: 0;
}

.footer .footer__menu li a {
  color: #949595;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic",
    sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  font-weight: 300;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .footer .footer__menu li a {
    font-size: 1.4rem;
  }
}

.footer .footer__menu li a:hover {
  color: #fff;
}

.footer .sns__menu {
  margin-top: 1.48rem;
  gap: 1.9rem;
}

@media (max-width: 767px) {
  .footer .sns__menu {
    justify-content: flex-start;
    margin-bottom: 2.3rem;
  }
}

.footer .sns__menu span {
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
}

.footer .sns__menu .twitter {
  width: 3.8rem;
  height: 3.9rem;
  background-image: url(../images/icon_twitter.svg);
}

@media (max-width: 767px) {
  .footer .sns__menu .twitter {
    width: 3rem;
    height: 3.2rem;
  }
}

.footer .sns__menu .twitter:hover {
  background-image: url(../images/icon_twitter-wh.svg);
}

.footer .sns__menu .facebook {
  width: 4rem;
  height: 3.9rem;
  background-image: url(../images/icon_facebook.svg);
}

@media (max-width: 767px) {
  .footer .sns__menu .facebook {
    width: 3.2rem;
    height: 3.12rem;
  }
}

.footer .sns__menu .facebook:hover {
  background-image: url(../images/icon_facebook-wh.svg);
}

.footer .sns__menu .insta {
  width: 3.9rem;
  height: 3.9rem;
  background-image: url(../images/icon_insta.svg);
}

@media (max-width: 767px) {
  .footer .sns__menu .insta {
    width: 3.2rem;
    height: 3.2rem;
  }
}

.footer .sns__menu .insta:hover {
  background-image: url(../images/icon_insta-wh.svg);
}

.footer .sns__menu .line {
  width: 4.1rem;
  height: 3.9rem;
  background-image: url(../images/icon_line.svg);
}

@media (max-width: 767px) {
  .footer .sns__menu .line {
    width: 3.3rem;
    height: 3.14rem;
  }
}

.footer .sns__menu .line:hover {
  background-image: url(../images/icon_line-wh.svg);
}

.footer .sns__menu .youtube {
  width: 3.6rem;
  height: 3.9rem;
  background-image: url(../images/icon_youtube.svg);
}

@media (max-width: 767px) {
  .footer .sns__menu .youtube {
    width: 3.1rem;
    height: 3.2rem;
  }
}

.footer .sns__menu .youtube:hover {
  background-image: url(../images/icon_youtube-wh.svg);
}

.footer .info_list {
  margin: 8.8rem auto 0;
  margin-top: 8.8rem;
  color: #fff;
}

@media (max-width: 767px) {
  .footer .info_list {
    flex-direction: column;
    margin-top: 0;
  }
}

.footer .info_list .tel {
  display: flex;
  align-items: center;
}

.footer .info_list .tel .icon_phone {
  width: 2.8rem;
  margin-right: 0.5rem;
}

@media (max-width: 767px) {
  .footer .info_list .tel .icon_phone {
    width: 2.9rem;
  }
}

.footer .info_list .tel .tel__txt {
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic",
    sans-serif;
  font-weight: 500;
}

.footer .info_list .tel .open {
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

@media (max-width: 767px) {
  .footer .info_list .tel .open {
    font-size: 1rem;
  }
}

.footer .info_list .tel .number {
  font-size: 2rem;
}

@media (max-width: 767px) {
  .footer .info_list .tel .number {
    font-size: 1.8rem;
  }
}

.footer .info_list .tel .number a {
  color: #fff;
}

.footer .info_list .site_menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 767px) {
  .footer .info_list .site_menu {
    justify-content: flex-start;
    width: 86%;
    margin: 0.95rem auto 0;
  }
}

.footer .info_list .site_menu li {
  height: 2rem;
  padding: 0 1rem;
  border-right: solid 1px #fff;
}

@media (max-width: 767px) {
  .footer .info_list .site_menu li {
    margin-top: 1.2rem;
    padding: 0 1.3rem;
  }
}

.footer .info_list .site_menu li a {
  color: #fff;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic",
    sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
}

@media (max-width: 767px) {
  .footer .info_list .site_menu li a {
    font-size: 1.3rem;
  }
}

.footer .info_list .site_menu li:last-child {
  border: none;
}

@media (max-width: 767px) {
  .footer .info_list .site_menu li:nth-child(4) {
    border: none;
  }
}

.footer .info_list .footer__logo {
  width: 100%;
  max-width: 12.2rem;
}

@media (max-width: 767px) {
  .footer .info_list .footer__logo {
    max-width: 12rem;
  }
}

@media (max-width: 767px) {
  .footer .sp-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 3.35rem;
    padding: 0 2.8rem;
  }
}

.footer .copryright {
  margin-top: 2.4rem;
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 767px) {
  .footer .copryright {
    font-size: 1.5rem;
    font-weight: 400;
  }
}

/*=================================================
    SP 商品ページのフッター
===================================================*/
@media (max-width: 767px) {
  .page-item footer {
    padding-bottom: 8rem;
  }
}

/*=================================================
    商品詳細 テンプレート
===================================================*/
.template1 h3 {
  padding: 0.5rem 0;
  font-size: 2rem;
  text-align: center;
}

.template2 {
  margin-top: 4rem;
}

.template2 h4 {
  padding: 0.5rem 0;
  font-size: 1.8rem;
  text-align: center;
}

.template2 p {
  margin-top: 1rem;
  padding: 1rem 1rem;
  font-weight: 300;
}

.template3 {
  margin-top: 4rem;
}

.template3 img {
  width: 100%;
}

.template4 {
  margin-top: 4rem;
}

.template4 ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 767px) {
  .template4 ul {
    flex-wrap: wrap;
  }
}

.template4 ul li {
  width: 25%;
}

@media (max-width: 767px) {
  .template4 ul li {
    width: 48%;
  }
}

.template5 {
  margin-top: 4rem;
}

.template5 ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 767px) {
  .template5 ul {
    flex-wrap: wrap;
  }
}

.template5 ul li {
  width: 50%;
}

@media (max-width: 767px) {
  .template5 ul li {
    width: 48%;
  }
}

.template6 {
  margin-top: 4rem;
}

.template6 ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 767px) {
  .template6 ul {
    flex-wrap: wrap;
  }
}

.template6 ul li {
  width: 33.3333333333%;
}

@media (max-width: 767px) {
  .template6 ul li {
    width: 48%;
  }
}

.template7 {
  margin-top: 4rem;
}

.template7 ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 767px) {
  .template7 ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.template7 ul li {
  width: 50%;
}

@media (max-width: 767px) {
  .template7 ul li {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .template7 ul li img {
    width: 100%;
  }
}

.template7 ul li h4 {
  margin-top: 1rem;
  padding: 0.5rem 0;
  font-size: 1.8rem;
  text-align: center;
}

@media (max-width: 767px) {
  .template7 ul li h4 {
    font-size: 1.4rem;
  }
}

.template7 ul li p {
  margin-top: 1rem;
  padding: 1rem 1rem;
  font-weight: 300;
}

@media (max-width: 767px) {
  .template7 ul li p {
    font-size: 1.2rem;
  }
}

.template8 {
  margin-top: 4rem;
}

.template8 ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 767px) {
  .template8 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}

.template8 ul li {
  width: 25%;
}

@media (max-width: 767px) {
  .template8 ul li {
    width: 48%;
  }
}

@media (max-width: 767px) {
  .template8 ul li img {
    width: 100%;
  }
}

.template8 ul li h4 {
  margin-top: 1rem;
  padding: 0.5rem 0;
  font-size: 1.8rem;
  text-align: center;
}

@media (max-width: 767px) {
  .template8 ul li h4 {
    font-size: 1.4rem;
  }
}

.template8 ul li p {
  margin-top: 1rem;
  padding: 1rem 1rem;
  font-weight: 300;
}

@media (max-width: 767px) {
  .template8 ul li p {
    font-size: 1.2rem;
  }
}

.template9 {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 4rem;
  gap: 1rem;
}

@media (max-width: 767px) {
  .template9 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.template9 img {
  width: 50%;
}

@media (max-width: 767px) {
  .template9 img {
    width: 48%;
  }
}

.template9 h4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 1.8rem;
  text-align: center;
}

@media (max-width: 767px) {
  .template9 h4 {
    font-size: 1.4rem;
  }
}

.template9 p {
  display: flex;
  align-items: stretch;
  margin-top: 1rem;
  padding: 1rem 1rem;
  font-weight: 300;
  flex-grow: 1;
}

@media (max-width: 767px) {
  .template9 p {
    font-size: 1.2rem;
  }
}

.template9 .text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 50%;
}

@media (max-width: 767px) {
  .template9 .text {
    width: 100%;
  }
}

.template10 {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 4rem;
  gap: 1rem;
}

@media (max-width: 767px) {
  .template10 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.template10 img {
  width: 49%;
}

@media (max-width: 767px) {
  .template10 img {
    width: 48%;
  }
}

.template10 h4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 1.8rem;
  text-align: center;
}

@media (max-width: 767px) {
  .template10 h4 {
    font-size: 1.4rem;
  }
}

.template10 p {
  display: flex;
  align-items: stretch;
  margin-top: 1rem;
  padding: 1rem 1rem;
  font-weight: 300;
  flex-grow: 1;
}

@media (max-width: 767px) {
  .template10 p {
    font-size: 1.2rem;
  }
}

.template10 .text {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 50%;
}

@media (max-width: 767px) {
  .template10 .text {
    width: 100%;
  }
}

.template11 {
  display: flex;
  align-items: stretch;
  margin-top: 4rem;
  gap: 1rem;
}

@media (max-width: 767px) {
  .template11 {
    flex-wrap: wrap;
    flex-direction: row-reverse;
  }
}

.template11 .left-image {
  width: 50%;
}

@media (max-width: 767px) {
  .template11 .left-image {
    width: 48%;
  }
}

.template11 .right-image {
  width: 50%;
}

@media (max-width: 767px) {
  .template11 .right-image {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 48%;
    gap: 1rem;
  }
}

.template11 .right-image img:nth-of-type(1) {
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .template11 .right-image img:nth-of-type(1) {
    margin-bottom: 0;
  }
}

.template12 {
  margin-top: 4rem;
}

.template12 .responsive {
  width: 100%;
  aspect-ratio: 16/9;
}

.template13 {
  margin-top: 4rem;
}

.template13 table {
  width: 100%;
  border-collapse: collapse;
}

.template13 table th {
  width: 30%;
  padding: 1rem;
  text-align: left;
}

.template13 table td {
  padding: 1rem;
  font-weight: 300;
  text-align: left;
}

.template14 {
  margin-top: 4rem;
}

.template14 span {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  font-weight: 300;
  border-radius: 2rem;
}

@media (max-width: 767px) {
  .template14 span {
    font-size: 1.4rem;
  }
}

/* 検索ボタン */
#search-wrap a#searchsubmit {
  position: absolute;
  top: 50%;
  right: -5.7%;
  bottom: 50%;
  width: 30px;
  height: 60px;
  background: url("https://gigaplus.makeshop.jp/souyi2023/images/icon_serch.svg") no-repeat right;
  /*虫眼鏡アイコンを背景に表示*/
  background-size: 27px 30px;
  color: #989797;
  font-size: 16px;
  transform: translateY(-50%);
}

@media (max-width: 1023px) {
  #search-wrap a#searchsubmit {
    right: -7.7%;
  }
}

@media (max-width: 767px) {
  #search-wrap a#searchsubmit {
    right: -6vw;
    width: 15px;
    height: 17px;
    background-size: contain;
    font-size: 10px;
  }
}