@charset "UTF-8";
@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes clipPath {
  100% {
    clip-path: inset(0);
  }
}
@keyframes clipPathCircle {
  100% {
    clip-path: circle(100% at 50% 50%);
  }
}
/*
A modern CSS reset 2023 / 9 / 18
https://github.com/Andy-set-studio/modern-css-reset
*/
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

/**  base  **/
p,
ul,
ol,
h1,
h2,
h3,
figure,
dl,
dd,
button,
pre {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

ul,
ol {
  list-style: none;
}

img,
video {
  max-width: 100%;
  vertical-align: bottom;
  line-height: 1;
}

select,
option {
  color: currentColor;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
}

a,
button {
  color: currentColor;
  text-decoration: none;
  transition: filter 0.1s ease;
}
@media (hover: hover) {
  a:hover,
  button:hover {
    filter: brightness(1.12);
  }
}

[x-cloak],
[v-cloak] {
  display: none !important;
}

*:focus {
  outline: none;
}

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

.device-pc {
  display: none;
}
@media (min-width: 600px) {
  .device-pc {
    display: block;
  }
}

br {
  display: none;
}
@media (min-width: 600px) {
  br {
    display: block;
  }
}

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

body {
  font-size: 1.6rem;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}
body.scroll_lock {
  overflow: hidden;
}

/**  common  **/
html {
  scroll-padding: 6.5rem;
}

body {
  color: #000;
  font-family: "Yu Gothic Pr6N D", sans-serif;
}

header {
  height: 6.5rem;
  background-color: #B7C0C1;
  position: sticky;
  top: 0;
  z-index: 100;
}
header a,
header button {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}
header a:hover,
header button:hover {
  opacity: 0.5;
}
header .menu-toggle {
  margin-right: 0.8rem;
  margin-left: 0.8rem;
}
@media (min-width: 600px) {
  header .menu-toggle {
    order: 1;
    margin-right: 0;
    margin-left: 0;
  }
}
header div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  overflow: hidden;
}
@media (min-width: 600px) {
  header div {
    margin-right: 1.6rem;
    margin-left: 1.6rem;
  }
}
header h1 {
  margin-right: auto;
}
header .badge {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1rem;
  background-color: #7FB9B6;
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
  z-index: 10;
}
header .nav_cart {
  position: relative;
}

.header-nav {
  position: relative;
  z-index: 100;
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.8rem;
}
@media (min-width: 600px) {
  .header-nav {
    width: min(100%, 37.5rem);
    margin-left: auto;
  }
}
.header-nav li {
  border-top: 1px solid currentColor;
}
.header-nav a {
  padding: 0.4em 1em;
  display: block;
}
.header-nav .global-menu {
  background-color: #B7C0C1;
}
.header-nav .global-menu a {
  background-color: #B7C0C1;
}
.header-nav .hobo-menu {
  background-color: #EDEDED;
}
.header-nav .hobo-menu a {
  background-color: #EDEDED;
}

.page-header {
  position: relative;
  aspect-ratio: 375/148;
  width: 100%;
}
@media (min-width: 600px) {
  .page-header {
    aspect-ratio: 1512/217;
    max-height: 21.7rem;
  }
}
.page-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

main a[target=_blank]::after {
  margin: 0 3px 0 1px;
  font-family: "Hobonichi-Icons";
  content: "\e914";
  font-size: 85%;
  position: relative;
  top: -3px;
}

.breadcrumbs {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  font-size: 1.2rem;
  margin: 1em;
}
@media (min-width: 992px) {
  .breadcrumbs {
    font-size: 1.4rem;
    margin-right: 0;
    margin-left: 0;
  }
}
.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumbs ul li:not(:last-of-type)::after {
  content: "/";
  margin: 0 0.5em;
}
.breadcrumbs a {
  color: #646464;
}

footer {
  background-color: #EDEDED;
  padding: 4rem 5.2rem;
}
footer a:hover {
  opacity: 0.5;
}
footer .wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  width: min(100%, 120rem);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 600px) {
  footer .wrapper {
    gap: 2.8rem;
  }
}
footer .footer-share {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 2rem;
}
footer .footer-share li:first-child {
  margin-right: 0.8rem;
}
footer .footer-hobo {
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media (min-width: 600px) {
  footer .footer-hobo {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.8rem 4rem;
  }
}
footer .footer-store {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
footer .footer-store ul {
  font-size: 1rem;
}
footer .footer-store div {
  font-size: 1.2rem;
}
footer .footer-store div span {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.btn-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  gap: 0.5em;
  line-height: 1;
}
.btn-arrow::after {
  content: "";
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  background-color: currentColor;
  mask-image: url(/store/taekokusaba/images/common/ico-arrow.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
}
.btn-arrow.disabled {
  background-color: #D9D9D9;
  border-color: #D9D9D9;
  pointer-events: none;
}
.btn-arrow.disabled::before {
  content: none;
}

.btn-orange {
  background-color: #D16F4C;
  border: 1.5px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Yu Gothic Pr6N B", sans-serif;
  position: relative;
  gap: 0.5em;
  line-height: 1;
  color: currentColor;
}
.btn-orange.disabled, .btn-orange[disabled] {
  background-color: #D9D9D9;
  border-color: #D9D9D9;
  color: #646464;
  pointer-events: none;
}
.btn-orange.disabled::before, .btn-orange[disabled]::before {
  content: none;
}

.favorite-btn {
  fill: transparent;
  width: 2rem;
  aspect-ratio: 20/24;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D16F4C;
}
.favorite-btn.is-disabled {
  pointer-events: none;
  opacity: 0.5;
}
.favorite-btn.is-favorite {
  color: #D16F4C;
}
.favorite-btn.is-favorite svg {
  fill: currentColor;
}
.favorite-btn svg {
  width: 100%;
  aspect-ratio: 20/24;
  display: block;
}

.select-wrapper {
  position: relative;
  font-size: 1.4rem;
  min-width: 16rem;
}
.select-wrapper::after {
  content: "";
  pointer-events: none;
  position: absolute;
  right: 1em;
  width: 1em;
  height: 100%;
  mask-image: url(../../images/common/select-arrow.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  background-color: currentColor;
}
.select-wrapper select {
  width: 100%;
  padding: 0.5em 2.5em 0.5em 1em;
  border: 1px solid #000;
  box-sizing: border-box;
  appearance: none;
  cursor: pointer;
}
.select-wrapper select:hover {
  filter: brightness(1.12);
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  column-gap: 1.5em;
}
.checkbox-wrapper li {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  cursor: pointer;
}
.checkbox-wrapper li:hover input[type=checkbox] {
  background-color: rgba(255, 255, 255, 0.3);
}
.checkbox-wrapper input[type=checkbox] {
  appearance: none;
  position: relative;
  width: 1em;
  height: 1em;
  border: 1px solid currentColor;
  margin-right: 0.5em;
  cursor: pointer;
}
.checkbox-wrapper input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 4px;
  width: 20px;
  height: 12px;
  background-image: url(../../images/common/ico-check.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.checkbox-wrapper label {
  cursor: pointer;
}

.btn-color-compare {
  background-color: #D16F4C;
  border: 1.5px solid #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Yu Gothic Pr6N B", sans-serif;
  position: relative;
  gap: 0.5em;
  line-height: 1;
}
.btn-color-compare::after {
  content: "";
  display: inline-block;
  width: 1.6em;
  height: 1.6em;
  background-image: url(../../images/common/ico-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.btn-color-compare.disabled, .btn-color-compare[disabled] {
  background-color: #D9D9D9;
  border-color: #D9D9D9;
  pointer-events: none;
}
.btn-color-compare.disabled::before, .btn-color-compare[disabled]::before {
  content: none;
}

body {
  background-color: #F7F7F7;
  font-size: 1.5rem;
}

main {
  position: relative;
}
main a[target=_blank]::after {
  margin: 0 3px 0 1px;
  font-family: "Hobonichi-Icons";
  content: "\e914";
  font-size: 85%;
  position: relative;
  top: -3px;
}
main .swiper-horizontal {
  touch-action: auto;
}

iframe {
  max-width: 100%;
  height: auto;
  aspect-ratio: 560/315;
}

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

.from-kusaba {
  border: 1.5px solid #028B6D;
  position: relative;
  color: #028B6D;
  padding-top: 4em;
  padding-right: 1.5em;
  padding-bottom: 1em;
  padding-left: 1.5em;
  margin-right: 1em;
  margin-left: 1em;
  margin-top: 1em;
}
@media (min-width: 600px) {
  .from-kusaba {
    margin-right: 0;
    margin-left: 0.8em;
    margin-top: 4rem;
    padding: 2em;
    padding-left: 6em;
  }
}
.from-kusaba::before, .from-kusaba::after {
  content: "";
  display: inline-block;
  aspect-ratio: 104/68;
  width: 10.4rem;
  height: auto;
  position: absolute;
  top: -1em;
  left: -0.8em;
  z-index: 1;
}
.from-kusaba::before {
  mask: url('data:image/svg+xml;utf8,<svg width="104" height="68" viewBox="0 0 104 68" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M102.5 1H1V67H84.8154L102.5 1Z" fill="currentColor"/></svg>');
  background-color: #F7F7F7;
}
.from-kusaba::after {
  mask-image: url("/store/taekokusaba/images/common/comment-title.svg");
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  background-color: #028B6D;
}
.from-kusaba a {
  color: #D16F4C;
}

.selected-product-wrapper,
.quantity-wrapper {
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
}

.select-title {
  color: #646464;
  font-size: 1rem;
}

.btn-cart,
.btn-color-compare {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  width: min(100%, 32rem);
  font-size: 1.6rem;
  height: 4.8rem;
  display: flex;
  gap: 0.5em;
  justify-content: center;
  align-items: center;
  margin-top: 1.6rem;
  margin-bottom: 0.4rem;
}

.btn-cart {
  background-color: #7FB9B6;
  border: 1.5px solid #000;
}
.btn-cart::before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background-image: url(../../images/common/ico-cart.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.btn-cart.disabled {
  background-color: #D9D9D9;
  border-color: #D9D9D9;
  pointer-events: none;
}
.btn-cart.disabled::before {
  content: none;
}
.btn-cart.btn-soldout {
  color: #028B6D;
}

.btn-cart-top {
  position: sticky;
  bottom: 0;
  right: 0;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}
.btn-cart-top.is-active {
  opacity: 1;
  pointer-events: auto;
}
.btn-cart-top a {
  position: absolute;
  width: 4.8rem;
  height: 4.8rem;
  bottom: 2.4rem;
  right: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #D16F4C;
  border-radius: 100%;
}
@media (min-width: 992px) {
  .btn-cart-top a {
    right: 0;
  }
}
.btn-cart-top svg {
  width: 2.2em;
  height: 2em;
  display: block;
}

.btn-color-compare {
  height: 4.8rem;
  justify-content: center;
}
.product-top-left .btn-color-compare {
  display: none;
}
@media (min-width: 600px) {
  .product-top-left .btn-color-compare {
    display: flex;
  }
}
.product-top-right .btn-color-compare {
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 600px) {
  .product-top-right .btn-color-compare {
    display: none;
  }
}

.product-options {
  margin-bottom: 2.8rem;
}

.description {
  margin-top: 3.2rem;
  margin-bottom: 1.6rem;
  margin-right: 1.2rem;
  margin-left: 1.2rem;
}
@media (min-width: 600px) {
  .description {
    margin-right: 0;
    margin-left: 0;
  }
}

.product-article div,
.product-article h3 {
  margin-top: 1em;
  margin-bottom: 1em;
  margin-right: 2.8rem;
  margin-left: 2.8rem;
}
@media (min-width: 600px) {
  .product-article div,
  .product-article h3 {
    margin-right: 0;
    margin-left: 0;
  }
}
.product-article h3 {
  font-size: 2rem;
  font-family: "Yu Gothic Pr6N B", sans-serif;
}
.product-article img {
  margin-bottom: 2em;
}
.product-article a {
  color: #D16F4C;
}

.is-cloaked {
  display: none;
}

.wrapper {
  width: min(100%, 100rem);
  margin-left: auto;
  margin-right: auto;
}

.breadcrumbs {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  font-size: 1.2rem;
  margin: 1em;
}
@media (min-width: 992px) {
  .breadcrumbs {
    font-size: 1.4rem;
    margin-right: 0;
    margin-left: 0;
  }
}
.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumbs ul li:not(:last-of-type)::after {
  content: "/";
  margin: 0 0.5em;
}
.breadcrumbs a {
  color: #646464;
}

.product-top {
  padding-bottom: 4rem;
}
@media (min-width: 600px) {
  .product-top {
    width: calc(100% - 2.8rem);
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 992px) {
  .product-top {
    width: 100%;
  }
}
@media (min-width: 600px) {
  .product-top .wrapper {
    display: grid;
    grid-template-columns: calc(50% - 2rem) calc(50% - 2rem);
    gap: min(4vw, 4rem);
  }
}
@media (min-width: 992px) {
  .product-top .wrapper {
    grid-template-columns: calc(50% - 4.5rem) calc(50% - 4.5rem);
    gap: 4rem 9rem;
  }
}

.product-slide .caption {
  font-size: 1.2rem;
  text-align: right;
  margin-right: 1em;
  margin-left: 1em;
}

.slider-thumbnail {
  margin-top: 1em;
  margin-bottom: 1em;
  padding-left: 2.8rem;
}
@media (min-width: 600px) {
  .slider-thumbnail {
    padding-left: 0;
  }
}

.product {
  width: min(100%, 32rem);
  margin-right: 2.8rem;
  margin-left: 2.8rem;
}
@media (min-width: 600px) {
  .product {
    margin-right: 0;
    margin-left: 0;
  }
}
.product-brand {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  font-size: 1.4rem;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
}
@media (min-width: 600px) {
  .product-brand {
    margin-bottom: 1rem;
  }
}
.product-brand a {
  color: #646464;
}
.product-name {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  font-size: 2.2rem;
  word-break: keep-all;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
}
@media (min-width: 600px) {
  .product-name {
    font-size: 2rem;
  }
}
.product-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.product-price {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  font-size: 1.8rem;
}
@media (min-width: 600px) {
  .product-price {
    font-size: 2rem;
  }
}
.product-like {
  margin-left: auto;
}

.sku-details,
.presale-info,
.stock-info {
  font-size: 1.4rem;
}

.sku-info {
  display: flex;
  gap: 1.2rem;
}

.rearrival-info {
  color: #8E2726;
}

.product-info .page-column-title {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  margin-bottom: 0.5em;
  font-size: 1.4rem;
}
.product-info .page-column-text {
  font-size: 1.2rem;
  margin-bottom: 1em;
}
.product-info ul {
  list-style: disc;
}
.product-info ol {
  list-style: decimal;
}

.product-info h3,
.brand-info h3 {
  font-family: "helvetica-neue-lt-pro-cond", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.4rem;
  border-bottom: 1.5px solid #000;
  margin-bottom: 1.2rem;
  padding-bottom: 0.4rem;
  margin-top: 3.2rem;
  margin-left: 2.8rem;
}
@media (min-width: 600px) {
  .product-top .product-info h3,
  .product-top .brand-info h3 {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .product-info h3,
  .brand-info h3 {
    margin-left: 0;
    font-size: 2rem;
  }
}
.product-info .page-columns,
.brand-info .page-columns {
  margin-right: 2.8rem;
  margin-left: 2.8rem;
}
@media (min-width: 600px) {
  .product-info .page-columns,
  .brand-info .page-columns {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (min-width: 600px) {
  .brand-info {
    grid-column: 1/3;
  }
}
.brand-info .brand-logo {
  width: 100%;
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
}
@media (min-width: 600px) {
  .brand-info .brand-logo {
    margin: 0;
  }
}
@media (min-width: 600px) {
  .brand-info .page-columns {
    display: grid;
    grid-template-columns: minmax(20%, 45rem) minmax(45rem, 1fr);
    gap: 4%;
  }
}
@media (min-width: 992px) {
  .brand-info .page-columns {
    gap: 9rem;
  }
}
@media (min-width: 600px) {
  .brand-info h3 {
    margin-bottom: 4rem;
  }
}
.brand-info dt {
  font-size: 1.6rem;
  margin-bottom: 0.5em;
}
.brand-info .brand-name-en {
  font-size: 1.1em;
}
.brand-info dd {
  margin-bottom: 3em;
}
@media (min-width: 600px) {
  .brand-info dd {
    font-size: 1.5rem;
  }
}

.product-bottom {
  border-bottom: 1px solid transparent;
  border-top: 1px solid transparent;
}
.product-bottom.is-visible {
  background-color: #B7C0C1;
  padding-bottom: 6rem;
}
.product-bottom .wrapper {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.product-bottom h3 {
  font-size: 2rem;
  font-family: "helvetica-neue-lt-pro-cond", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-top: 1em;
  margin-bottom: 1em;
}
.product-bottom h4 {
  font-size: 2rem;
  font-family: "Yu Gothic Pr6N B", sans-serif;
  margin-top: 1em;
  margin-bottom: 1em;
}
.product-bottom h5 {
  font-size: 1.6rem;
  font-family: "Yu Gothic Pr6N B", sans-serif;
  margin-top: 1em;
  margin-bottom: 1em;
}

.brand-detail {
  width: min(100%, 45rem);
}
.brand-detail div {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}

@keyframes arrow-tap-next {
  0% {
    transform: translateX(0);
  }
  60% {
    transform: translateX(0);
  }
  68% {
    transform: translateX(32%);
  }
  76% {
    transform: translateX(0);
  }
  84% {
    transform: translateX(24%);
  }
  92% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes arrow-tap-prev {
  0% {
    transform: translateX(0);
  }
  60% {
    transform: translateX(0);
  }
  68% {
    transform: translateX(-32%);
  }
  76% {
    transform: translateX(0);
  }
  84% {
    transform: translateX(-24%);
  }
  92% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}
.related-content .swiper,
.related-product .swiper {
  padding-left: 2.8rem;
}
@media (min-width: 992px) {
  .related-content .swiper,
  .related-product .swiper {
    padding-left: 0;
  }
}
.related-content img,
.related-product img {
  border: 1px solid #000;
}
.related-content .swiper-button-wrapper,
.related-product .swiper-button-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 2rem;
  margin-top: 1.2rem;
}
.related-content .swiper-button-next,
.related-content .swiper-button-prev,
.related-product .swiper-button-next,
.related-product .swiper-button-prev {
  position: relative;
  width: 3.2rem;
  height: 2rem;
}
.related-content .swiper-button-next::after,
.related-content .swiper-button-prev::after,
.related-product .swiper-button-next::after,
.related-product .swiper-button-prev::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../../images/common/ico-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.related-content .swiper-button-next,
.related-product .swiper-button-next {
  margin-right: 1.2rem;
  animation: arrow-tap-next 2s reverse infinite;
}
.related-content .swiper-button-prev,
.related-product .swiper-button-prev {
  animation: arrow-tap-prev 2s reverse infinite;
}
.related-content .swiper-button-prev::after,
.related-product .swiper-button-prev::after {
  transform: scale(-1, 1);
}
.related-content .swiper-button-disabled,
.related-product .swiper-button-disabled {
  opacity: 0;
}

.related-content {
  font-size: 1.4rem;
  font-family: "Yu Gothic Pr6N B", sans-serif;
}
@media (min-width: 600px) {
  .related-content img {
    margin-bottom: 1em;
  }
}

.related-product img {
  margin-bottom: 0.8rem;
}
.related-product div {
  font-size: 1.2rem;
  font-family: "Yu Gothic Pr6N B", sans-serif;
}
.related-product div:last-child {
  margin-top: 0.8rem;
}/*# sourceMappingURL=product.css.map */