@charset "utf-8";
/* CSS Document */
body {
  overflow-x: hidden;
}
ul {
  padding-left: 0;
}
img {
  width: 100%;
}
.fs-l-main {
  margin: 0;
  padding: 0;
  max-width: 100%;
}
.fs-l-pageMain {
  max-width: 100%;
}
#main_contents a,
#main_contents a:visited {
  color: #222;
}
#main_contents .inner {
  width: 100%;
  max-width: 1180px;
  padding: 60px 40px;
  margin: 0 auto;
}
#main_contents ul {
  list-style: none;
}
#main_contents h2 {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
}
#main_contents h2 span {
  font-size: 1.4rem;
  font-weight: normal;
}
/*--スライダー-----------------------------------------------------------------------*/
#top_slide_wrap {
  width: 100vw;
  overflow-x: hidden;
}
#top_slide_wrap .top_slide_inner {
  margin: 0 auto;
  position: relative;
  max-width: 1100px;
  overflow: visible;
}
#top_slide_wrap #top_slider.slider {
  margin: 0;
  overflow: visible;
}
#top_slide_wrap .slick-slide {
  transition: all ease-in-out 0.3s;
}
#top_slide_wrap ul.slider .slick-list li img {
  width: 100%;
  height: auto;
  max-width: 1100px;
  object-fit: contain;
}
#top_slide_wrap #top_slider .slick-list {
  overflow: visible !important;
}
/* 中央以外も z-index でちゃんと重なるように */
#top_slide_wrap .slick-slide {
  z-index: 1;
}
#top_slide_wrap .slick-slide.slick-center {
  z-index: 2;
}
#top_slide_wrap .top_slide_inner .arrow_box {
  display: flex;
  justify-content: space-between;
  max-width: 1180px;
  position: relative;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.prev-arrow,
.next-arrow {
  /*display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;*/
  transition: all 0.3s ease;
  cursor: pointer;
  width: 40px;
}
.slick-dots {
  position: absolute;
  bottom: 1em;
}
.slick-dots li button:before {
  font-size: 20px;
}
#top_slide_wrap .slick-track.is-sliding {
  overflow: visible !important;
}
/*--ブランド一覧-----------------------------------------------------------------------*/
#brand_list ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 4em;
}
#brand_list ul li a {
  display: block;
}
#brand_list ul li a:hover {
  text-decoration: none;
}
#brand_list ul li a .img_wrap {
  overflow: hidden;
}
#brand_list ul li a img {
  transition: transform 0.6s ease;
  display: block;
}
#brand_list ul li a:hover img {
  transform: scale(1.1); /* 拡大 */
}
#brand_list ul li a h3 {
  font-weight: bold;
  border-bottom: 1px solid transparent;
  display: inline-block;
}
#brand_list ul li a:hover h3 {
  border-bottom: 1px solid #1e1e1e;
}
@media (width < 768px) {
  #brand_list ul {
    grid-template-columns: repeat(2, 1fr);
    grid-row: auto;
    grid-gap: 2em;
  }
}
/*--新着商品-----------------------------------------------------------------------*/
#newarrival_list article h2 {
  margin-bottom: 2.4rem;
  text-align: left;
}
#newarrival_list .fs-c-button--addToCart--list {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 0.5em;
  border-radius: 25px;
  font-size: clamp(1rem, 1.319vw, 1.4rem);
  transition: all 0.5s 0s ease; /*transitionの記述を追加*/
}
#newarrival_list .fs-c-button--addToCart--list:hover {
  text-decoration: none;
  background-color: #fff;
  color: #222;
  border: 1px solid #222;
}
#newarrival_list .fs-c-productListItem__lowInStock {
  border: none;
  background-color: #fff450;
}
#newarrival_list .salechips {
  background-color: #ed1a3d;
}
/*--おすすめ特集-----------------------------------------------------------------------*/
#pickUp ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 4em;
}
#pickUp a.btn {
  display: block;
  width: fit-content;
  padding: 0.5em 1em;
  background-color: #222;
  color: #fff;
  border-radius: 25px;
  transition: all 0.5s ease 0s;
}
#pickUp .btn_wrap {
  text-align: center;
  margin-top: 60px;
}
#pickUp a.btn {
  border: 1px solid transparent;
  margin: 0 auto;
}
#pickUp a.btn::after {
  content: "";
  background-image: url("https://worldwidewatch.itembox.design/item/index/link_arrow_w.svg");
  background-size: contain;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  margin-left: 0.5em;
  transition: all 0.5s ease 0s;
}
#pickUp a.btn:hover {
  background-color: #fff;
  border: 1px solid #222;
  color: #222;
  text-decoration: none;
}
#pickUp a.btn:hover::after {
  background-image: url("https://worldwidewatch.itembox.design/item/footer/contact_arrow.svg");
}
@media (width < 768px) {
  #pickUp ul {
    grid-template-columns: repeat(2, 1fr);
    grid-row: auto;
    grid-gap: 2em;
  }
}
/*--お知らせ-----------------------------------------------------------------------*/
#news ul li {
  border-bottom: 1px dotted #222;
  padding: 1em 0.5em;
}
#news ul li > div {
  margin-bottom: 1em;
}
#news ul li .date {
  display: inline-block;
  margin-right: 1em;
}
#news ul li .tag {
  font-size: 1.2rem;
  padding: 0.3em 0.5em;
  border: 1px solid #222;
  margin-right: 1em;
  display: inline-block;
}
#news ul li p {
  margin: 0;
}
