@charset "utf-8";
/* CSS Document */
html {
  scroll-behavior: smooth;
}
/*--ヘッダーお知らせ----------------------------------------------------------*/
.news-ticker {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 1em;
  background-color: #222;
  color: #fff;
  font-size: 1.2rem;
}

.news-ticker__list {
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%;
  width: 100%;
  position: relative;
  list-style: none;
  max-width: 1100px;
  margin: auto;
}

.news-ticker__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  animation: news-fade 10s linear infinite; /*6個目まであるときは24sに*/
}

/* 各項目のアニメーション遅延 */
.news-ticker__item:nth-child(1) {
  animation-delay: 0s;
}
.news-ticker__item:nth-child(2) {
  animation-delay: 5s; /*6個目まであるときは4sに*/
}
/*3個目以降のお知らせが出来た時
.news-ticker__item:nth-child(3) {
  animation-delay: 8s;
}
.news-ticker__item:nth-child(4) {
  animation-delay: 12s;
}
.news-ticker__item:nth-child(5) {
  animation-delay: 16s;
}
.news-ticker__item:nth-child(6) {
  animation-delay: 20s;
}
*/

/* フェードイン・フェードアウトのアニメーション */
@keyframes news-fade {
  0%,
  2% {
    opacity: 0;
    visibility: hidden;
  }
  4%,
  12% {
    opacity: 1;
    visibility: visible;
  }
  14%,
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

/* レスポンシブ対応*/
@media (max-width: 768px) {
  .news-ticker {
    height: 40px;
  }

  .news-ticker__item {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* 長いテキスト対応 - 横スクロールアニメーション */
@media (max-width: 480px) {
  .news-ticker__item {
    white-space: nowrap;
    overflow: hidden;
  }

  /* 長いテキストの場合、横スクロールアニメーションを追加 */
  .news-ticker__item:nth-child(2) {
    animation: news-fade 24s linear infinite, text-scroll 8s linear;
    animation-delay: 4s, 4.5s; /* フェードインした後にスクロール開始、フェードアウト前に終了 */
  }

  @keyframes text-scroll {
    0%,
    5% {
      transform: translateX(0);
    }
    80%,
    100% {
      transform: translateX(calc(-100% + 100vw));
    }
  }
}

/*--ヘッダーメニュー----------------------------------------------------------*/
.fs-l-header {
  padding-top: 0;
  width: 100%;
  position: relative;
  z-index: 1000;
}
.fs-l-header .nw:after {
  content: "";
  display: inline-block;
  background-image: url("https://worldwidewatch.itembox.design/item/betsumado.svg");
  width: 1em;
  height: 1em;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: baseline;
  margin: 0 0.3rem;
  transform: translateY(2px);
}
.header_wrap {
  background-color: #fff;
  z-index: 1000;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.header_wrap a,
.header_wrap a:visited {
  color: #222;
}
.fs-p-headerNavBar {
  background: #ffffff;
  border-bottom: none;
  color: #222;
  padding: 1em 0;
  border-bottom: 1px solid #f5f5f5;
}
.fs-p-headerNavigation {
  max-width: 1180px;
  padding: 0 40px;
}
.fs-p-headerNavigation__list > li:first-child {
  margin-right: 3em;
}
.fs-p-headerNavigation__link:link {
  color: #222;
}
.fs-p-headerNavigation__link:visited {
  color: #222;
}
.fs-p-inputGroup {
  border: 1px solid #efefef;
  background: #efefef;
}
.fs-p-searchForm__input {
  width: 12.5em;
}
.fs-p-searchForm__input::placeholder {
  color: #ccc;
}
.fs-p-inputGroup__button {
  background: #efefef;
  color: #222;
}
.fs-p-logo__image {
  height: 100vh;
  max-height: 50px;
}
/*--ヘッダーメニュー 右----------------------------------------------------------*/
.fs-clientInfo.header_nav_right {
  display: flex;
}
.header_nav_right li a {
  padding: 8px;
  margin: 0;
  display: flex;
  align-items: center;
}
.fs-p-headerNavigation ul li a .icon {
  width: 1em;
  margin-right: 0.5em;
}
.header_wrap .brand_list {
  padding: 1em 0;
}
.header_wrap .brand_list > ul {
  display: flex;
  max-width: 1180px;
  padding: 0 40px;
  margin: auto;
  justify-content: space-between;
}

.header_wrap .brand_list ul li {
  list-style: none;
  font-size: 1.2rem;
  position: relative;
}
.header_wrap .fs-p-cartItemNumber {
  background: #50d0ff;
}
.header_wrap .logout.my-false {
  display: none;
}
.header_wrap .login.my-true {
  display: none;
}
.header_wrap .regist.my-true {
  display: none;
}
.header_wrap .mypage.my-false {
  display: none;
}

/*--ヘッダーメニュー SP----------------------------------------------------------*/

.header_wrap.sp .fix_header_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
}
.header_wrap.sp .fix_header_nav a {
  display: inline-block;
  text-align: center;
}
.header_wrap.sp .fix_header_nav .fs-p-headerNavigation__link > i {
  font-size: 4rem;
}
.header_wrap.sp .fs-p-cartItemNumber {
  font-size: 1.2rem;
  top: -1rem;
  right: auto;
  left: -1rem;
  background: #50d0ff;
}
.header_wrap.sp .fix_header_nav a span {
  display: block;
}
.header_wrap.sp {
  margin: 0;
  padding: 0.8rem;
}

/* ハンバーガーメニュートリガー */
.hamburger-trigger {
  position: relative;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background-color: #333;
  transition: 0.3s;
}
/* オーバーレイ */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1500;
}
/* サイドメニュー */
.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background-color: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s;
  z-index: 2000;
  overflow-y: auto;
}
body.menu-open .menu-overlay {
  opacity: 1;
  visibility: visible;
}
body.menu-open .side-menu {
  transform: translateX(0);
}
/* ハンバーガーメニューが開いているときのアイコン変化（オプション） */
body.menu-open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
body.menu-open .hamburger-line:nth-child(2) {
  opacity: 0;
}
body.menu-open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
/* サイドメニュー中身 */
.side-menu a,
.side-menu a:visited {
  color: #222;
}
.side-menu .border {
  border: 1px solid #f5f5f5;
}
.side-menu .inner {
  padding: 1em;
}
.side-menu .side-menu__header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.side-menu .side-menu__header .inner .side-menu__logo img {
  width: 48px;
}
.side-menu button {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
}
.side-menu button span {
  display: block;
}
.side-menu__buttons .inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-gap: 1.6rem;
}
.side-menu__buttons .inner a {
  border-radius: 25px;
  padding: 0.8rem 0.8rem;
  border: 1px solid #222;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}
.side-menu__buttons .inner a img:first-child {
  margin-right: 0.5rem;
  width: 1em;
}
.side-menu .login a,
.side-menu .mypage a {
  background-color: #222;
  color: #fff;
}
.side-menu .logout.my-false {
  display: none;
}
.side-menu .login.my-true {
  display: none;
}
.side-menu .regist.my-true {
  display: none;
}
.side-menu .mypage.my-false {
  display: none;
}

.side-menu__nav .title {
  background-color: #f5f5f5;
}
.side-menu__favorites a {
  padding: 2.4rem 1em;
  display: block;
  align-items: center;
  line-height: 1;
}
.side-menu__favorites a span {
  font-size: 1.4rem;
  font-weight: bold;
}
.side-menu__favorites .fs-p-headerNavigation__link > i {
  font-size: 1.4rem;
}
.side-menu__nav .title h2 {
  padding: 0 1em;
  font-size: 1.2rem;
  color: #999;
}
.side-menu__nav ul {
  list-style: none;
  padding: 0 1rem;
}
.side-menu__nav ul li {
  display: block;
  padding: 0.8rem 0;
  position: relative;
  padding-left: 2rem;
}
.side-menu__nav ul li::before {
  content: "—"; /* ダッシュ */
  position: absolute;
  left: 0;
  color: #222; /* ダッシュの色 */
}
.side-menu__guide a {
  flex-direction: row;
  font-size: 1.2rem;
}
.side-menu__guide img {
  margin-right: 0.5rem;
  width: 1em;
}

/*--アコーディオン------------------------------------------------------------*/
/* PC用メニューのスタイル */
.brand_list.pc a.notEffect {
  text-decoration: none;
  cursor: default;
}
.brand_list.pc li.has-children > a {
  position: relative;
  padding-right: 20px;
  font-size: min(1.2vw, 12px);
}

/* PC用メニューの矢印アイコン - CSSで描画 */
.brand_list.pc li.has-children > a:after {
  content: "";
  position: absolute;
  right: 5px;
  top: 40%;
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: translateY(-50%) rotate(45deg); /* 下向き矢印 */
  transition: transform 0.3s ease;
}

/* PC用メニューのホバー時の矢印アイコン */
.brand_list.pc li.has-children:hover > a:after,
.brand_list.pc li.has-children.open > a:after {
  transform: translateY(-50%) rotate(-135deg); /* 右向き矢印 */
  top: 65%;
}

/* モバイル用メニューのスタイル */
.sp_menu .brand_list li.has-children > a {
  position: relative;
  padding-right: 20px;
  cursor: pointer;
}

/* モバイル用メニューの矢印アイコン - CSSで描画 */
.sp_menu .brand_list li.has-children > a:after {
  content: "";
  position: absolute;
  right: 5px;
  top: 40%;
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: translateY(-50%) rotate(45deg); /* 下向き矢印 */
  transition: transform 0.3s ease;
}

/* モバイル用メニューの開いているメニューの矢印アイコン */
.sp_menu .brand_list li.has-children.open > a:after {
  transform: translateY(-50%) rotate(-135deg); /* 右向き矢印 */
  top: 65%;
}

/* アコーディオンメニューのスタイル */
.brand_list ul {
  list-style: none;
  padding-left: 20px;
  margin: 0;
}

.brand_list > ul {
  padding-left: 0;
}

.brand_list li {
  margin: 5px 0;
}

/* サブメニューを初期状態で非表示にする */
.brand_list ul,
.brand_list--child,
.brand_list--child--in {
  display: none;
}
.header_wrap.pc.loading .brand_list--child,
.header_wrap.pc.loading .brand_list--child--in {
  display: none !important;
}

/* 矢印アイコンを持つ親要素のスタイル */
.brand_list li.has-children > a {
  position: relative;
  padding-right: 20px;
  cursor: pointer;
}

.brand_list--child {
  position: absolute;
  left: 0;
  top: 2em;
  width: 100%;
}

.side-menu__nav .brand_list--child {
  position: relative;
  left: auto;
  top: auto;
}

.header_wrap .brand_list ul.brand_list--child {
  display: block;
  padding: 0.5em;
  background-color: #efefef;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.15);
  min-width: 10em;
}
.header_wrap .brand_list ul.brand_list--child li {
  margin: 0;
}
.header_wrap .brand_list ul.brand_list--child li a {
  display: block;
  padding: 0.5em 0;
  white-space: nowrap;
}
.header_wrap .brand_list ul.brand_list--child .brand_list--child--in {
  position: absolute;
  left: 100%;
  width: fit-content;
  padding: 0 1em;
  overflow-y: auto;
  max-height: 70vh;
  top: -0.5em;
  background-color: #f5f5f5;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.15);
}
/*--コンテンツ------------------------------------------------------------*/
.fs-l-main {
  margin-top: 0;
  padding-top: 0;
}
@media screen and (min-width: 769px) and (max-width: 926px) {
  .fs-p-headerNavigation__list {
    margin: auto;
  }
  .fs-clientInfo.header_nav_right {
    margin: auto;
  }
}
@media screen and (min-width: 769px) {
  .header_wrap.sp {
    display: none;
  }
  .sp_menu {
    display: none;
  }
  .fs-p-headerNavigation__listItem {
    display: flex;
    min-width: fit-content;
  }
  .fs-p-logo__image {
    height: 50px;
    width: 100%;
  }
  .fs-p-headerNavigation__list > li:nth-of-type(2) {
    margin-right: 8px;
  }
  .fs-p-headerNavigation__viewCartButton {
    padding: 8px;
  }

  .fs-p-headerNavigation__link > i {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 768px) {
  .header_wrap.pc {
    display: none;
  }
  .sp_menu {
    display: block;
  }
  .fs-p-headerNavigation ul li a .icon {
    height: 2.6em;
    width: auto;
  }
}
