@charset "utf-8";

/* +++++++++++++++++++++++++++++++

 style_catalog.css

+++++++++++++++++++++++++++++++ */


/* header
-----------------------------------*/
.main-nav__list > li:nth-of-type(4)::before {
  width: 24px;
}


/* main
-----------------------------------*/
/* title */
.catalog-container__title {
  margin-bottom: 40px;
}
.catalog-container__title h3 {
  margin-bottom: 20px;
  font-size: 2.6rem;
  font-weight: 400;
}
.catalog-container__title-jp {
  display: block;
  font-size: 1.6rem;
  font-weight: normal;
}
.catalog-container__title-tag {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .catalog-container__title h3 {
    font-size: 2.0rem;
  }
  .catalog-container__name {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .catalog-container__title {
    margin-bottom: 30px;
  }
  .catalog-container__title h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
  .catalog-container__title-jp {
    margin: 4px 0 0;
    font-size: 1.2rem;
  }
}

/* list */
.catalog-container__list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 14px;
}
.catalog-container__list li {
  position: relative;
  width: calc((100% - 42px) / 4);
}
.catalog-container__type {
  margin: 10px 0 0;
  line-height: 1;
}
.catalog-container__type span {
  display: inline-block;
  padding: 2px 8px;
  font-size: 1.0rem;
  line-height: 1;
  border: var(--border-black);
  border-radius: 20px;
}
.catalog-container__tag {
  height: 1.2em;
  margin: 4px 0 0;
  line-height: 1;
  overflow: hidden;
}
.catalog-container__tag span {
  display: inline-block;
  margin-right: 4px;
  padding: 3px 8px;
  font-size: 1.0rem;
  line-height: 1;
  color: var(--white);
  background: var(--gray);
  border-radius: 20px;
}
.catalog-container__name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin: 6px 0 0;
  font-size: 1.6rem;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .catalog-container__list li {
    width: calc((100% - 28px) / 3);
  }
}
@media screen and (max-width: 480px) {
  .catalog-container__list {
    gap: 40px 14px;
  }
  .catalog-container__list li {
    width: calc((100% - 14px) / 2);
  }
}


/* detail
-----------------------------------*/
/* swiper */
.catalog-container__img {
  position: relative;
  margin-bottom: 60px;
}
#slider01.swiper {
  position: relative;
  overflow: hidden;
}
.catalog-container__img .swiper-button-prev,
.catalog-container__img .swiper-button-next {
  top: 50%;
  left: 6px;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  background: var(--gray);
  border-radius: 50%;
  opacity: .8;
  transition: .2s;
}
.catalog-container__img .swiper-button-next {
  left: auto;
  right: 6px;
}
.catalog-container__img .swiper-button-prev::after,
.catalog-container__img .swiper-button-next::after {
  content: '\e5c8';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
  font-family: 'Material Icons Outlined';
  color: var(--white);
}
.catalog-container__img .swiper-button-prev::after {
  content: '\e5c4';
}
@media screen and (max-width: 768px) {
  .catalog-container__img {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 480px) {
  .catalog-container__img .swiper-button-prev,
  .catalog-container__img .swiper-button-next {
    top: 50%;
    left: 4px;
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
  .catalog-container__img .swiper-button-next {
    left: auto;
    right: 4px;
  }
  .catalog-container__img .swiper-button-prev::after,
  .catalog-container__img .swiper-button-next::after {
    width: 10px;
    height: 10px;
    margin: -4px 0 0 -3px;
  }
}

/* swiper thumb */
#thumbs01 {
  margin: 10px 0 0;
}
#thumbs01 .swiper-wrapper {
  transform: none !important;
}
#thumbs01 .swiper-slide {
  width: calc((100% - 32px) / 9);
  opacity: 0.5;
  cursor: pointer;
}
#thumbs01 .swiper-slide-thumb-active {
  opacity: 1;
}

/* table */
.catalog-container__table table {
  width: 100%;
  margin-bottom: 40px;
  border-collapse: collapse;
}
.catalog-container__table table tr {
  border-bottom: 1px solid #ddd;
}
.catalog-container__table table tr:nth-of-type(1) {
  border-top: 1px solid #ddd;
}
.catalog-container__table table th {
  width: 20%;
  vertical-align: middle;
  padding: 20px;
  white-space: nowrap;
}
.catalog-container__table table th small {
  font-size: .7em;
}
.catalog-container__table table td {
  width: 80%;
  padding: 20px;
}
.catalog-container__table table a {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .catalog-container__table table th {
    width: 30%;
    vertical-align: middle;
    padding: 14px;
  }
  .catalog-container__table table th small {
    display: block;
  }
  .catalog-container__table table td {
    width: 70%;
    padding: 14px;
  }
}

/* notice */
.catalog-container__notice {
  margin: 0 0 60px;
}
.catalog-container__notice p {
  font-size: 1.4rem;
}
.catalog-container__notice a {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .catalog-container__notice {
    margin: 0 0 30px;
  }
  .catalog-container__notice p {
    font-size: 1.2rem;
  }
}

/* button */
.catalog-container__button {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.catalog-container__button a {
  position: relative;
  display: block;
  flex: 1;
  max-width: 260px;
  padding: 20px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--white);
  background: var(--black);
  border: var(--border-black);
  border-radius: 60px;
  transition: .3s;
}
.catalog-container__button a:first-child {
  margin-right: 50px;
}
.catalog-container__button a[target=_blank]::after {
  content: '\e89e';
  position: absolute;
  top: 10px;
  right: 26px;
  font-size: 1.2rem;
  font-family: 'Material Icons Outlined';
}
.catalog-container__button a:hover {
  color: var(--black);
  background: none;
}
@media screen and (max-width: 768px) {
  .catalog-container__button {
    max-width: 260px;
    margin: 0 auto;
  }
  .catalog-container__button a {
    width: 100%;
    flex: none;
  }
  .catalog-container__button a:first-child {
    margin: 0 0 20px;
  }
  .catalog-container__button a[target=_blank]::after {
    right: 16px;
  }
}

/* 関連商品 */
.catalog-relations__list {
  margin-top: 160px;
}
.catalog-relations__list h4 {
  display: flex;
  align-items: center;
  margin: 0;
  padding-bottom: 40px;
  font-size: 2.0rem;
}
.catalog-relations__list h4::before,
.catalog-relations__list h4::after {
  content: '';
  display: block;
  flex-grow: 1;
  height: 1px;
  background: var(--black);
}
.catalog-relations__list h4::before {
  margin-right: 1em;
}
.catalog-relations__list h4::after {
  margin-left: 1em;
}
@media screen and (min-width: 769px) {
  .catalog-relations__list ul {
    display: flex;
    flex-wrap: wrap;
  }
  .catalog-relations__list ul li {
    width: calc((100% - 42px) / 4);
    margin: 0 14px 60px 0;
  }
  .catalog-relations__list ul li:nth-child(4n) {
    margin-right: 0;
  }
  .catalog-relations__list ul li:nth-child(n+5) {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .catalog-relations__list {
    margin-top: 80px;
  }
  .catalog-relations__list h4 {
    margin: 0 0 20px;
    padding: 0 0 14px 14px;
    font-size: 1.8rem;
    border-bottom: var(--border-black);
  }
  .catalog-relations__list h4::before,
  .catalog-relations__list h4::after {
    content: none;
  }
  .catalog-relations__list ul li {
    width: 120px;
    margin: 0 14px 0 0;
  }
  .catalog-relations__list .swiper {
    overflow: initial;
  }
  .catalog-relations__list .catalog-container__name {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin: 10px 0 0;
    font-size: 1.2rem;
    overflow: hidden;
  }
}

/* 一覧にもどるボタン */
.catalog-detail__link {
  position: relative;
  display: block;
  max-width: 260px;
  margin: 120px auto 140px;
  padding: 20px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--white);
  background: var(--black);
  border: var(--border-black);
  border-radius: 60px;
  transition: .3s;
}
.catalog-detail__link::after {
  content: '\e5c8';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-family: 'Material Icons Outlined';
}
.catalog-detail__link:hover {
  color: var(--black);
  background: none;
}
@media screen and (max-width: 768px) {
  .catalog-detail__link {
    margin: 80px auto;
  }
}


/* banner
-----------------------------------*/
.nav-banner__item {
  margin: 50px 0 0;
}
.nav-banner__item ul li {
  position: relative;
  margin: 0 0 20px;
}
.nav-banner__item ul li:last-child {
  margin: 0;
}
.nav-banner__item ul li a {
  position: relative;
  display: block;
  overflow: hidden;
}
.nav-banner__item ul li .banner__bg {
  transition: .3s;
}
.nav-banner__item ul li:nth-of-type(1) .banner__bg::before,
.nav-banner__item ul li:nth-of-type(4) .banner__bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.4);
}
.nav-banner__item ul li a:hover .banner__bg {
  transform: scale(1.1);
}
.nav-banner__item ul li a::before {
  content: '';
  position: absolute;
  bottom: 8px;
  right: 10px;
  width: 30px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  z-index: 10;
}
.nav-banner__item ul li:nth-of-type(1) a::before,
.nav-banner__item ul li:nth-of-type(4) a::before {
  background-color: rgba(255, 255, 255, 0.4);
}
.nav-banner__item ul li:nth-of-type(1) a::after,
.nav-banner__item ul li:nth-of-type(4) a::after {
  content: '\e5c8';
  position: absolute;
  bottom: 9px;
  right: 16px;
  font-size: 1.6rem;
  font-family: 'Material Icons Outlined';
  color: var(--white);
}
.nav-banner__item ul li a::after {
  content: '\e89e';
  position: absolute;
  bottom: 11px;
  right: 18px;
  font-size: 1.4rem;
  font-family: 'Material Icons Outlined';
  color: var(--white);
  z-index: 10;
}
.nav-banner__item ul li a span {
  display: block;
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 2.2rem;
  line-height: 1;
  white-space: nowrap;
  font-weight: 700;
  color: var(--white);
  z-index: 10;
}
.nav-banner__item ul li a span small {
  display: block;
  margin: 0 0 4px;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-family-Helvetica-Bd);
  color: var(--pink);
}
@media screen and (max-width: 768px) {
  .nav-banner__item ul li:nth-of-type(1) a::after,
  .nav-banner__item ul li:nth-of-type(4) a::after {
    bottom: 11px;
  }
  .nav-banner__item ul li a::after {
    bottom: 13px;
  }
  .nav-banner__item ul li a span {
    font-size: 2.0rem;
  }
}
