@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

:root {
  scroll-padding-top: 8rem;
  --color-main:#e0bf77;
  --color-point:#d8af54;
  --font-en: "Oswald", sans-serif;
  --font-icon: "Material Symbols Outlined";
}

.pc-only {
  display: none !important;
}

img {
  vertical-align: middle;
}

address {
  font-style: normal;
}

:where(figure) {
  margin: 0;
}

/*-------------
  header
---------------*/
.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
}

.header {
  background-color: #000;
}
.header_info {
  border-bottom: 1px solid var(--color-point);
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.6;
  margin: 0;
}
.header_info li {
  padding: 0.8rem 1rem;
}
.header_info li:has(> .fs-pt-list__link) {
  padding: 0 !important;
}
.header_info a {
  color: #fff;
}
.header_info a:not(.fs-pt-list__link) {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.header_info .fs-pt-list__link {
  display: block;
  padding: 0.8rem 1rem;
}
.header_main {
  display: grid;
  grid-template-columns: 1fr 8.8rem 1fr;
  align-items: center;
  border-bottom: 1px solid var(--color-point);
}
.header_main_btn button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 1.2rem;
}
.header_main_btn button#drawer_open img {
  width: 3.6rem;
}
.header_main_btn button#js-search img {
  width: 2.5rem;
}
.header_main_logo a {
  display: block;
  padding: 1rem 0;
}
.header_main_tool {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header_main_tool button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 1.2rem;
}
.header_main_tool img {
  width: 2.5rem;
}
.header_main_tool a {
  display: block;
  padding: 1.2rem;
}
.header_main_cart a {
  position: relative;
}
.header_menu {
  display: flex;
  justify-content: center;
}
.header_menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header_menu .nav_category > .fs-pt-menu__item--lv1,
.header_menu .g-nav_sub > li {
  position: relative;
  margin: 0 1.5rem;
}
.header_menu .nav_category .fs-pt-menu__heading--lv1:has(+ ul) a,
.header_menu .g-nav_sub .g-nav_sub-main:has(+ ul) a {
  position: relative;
  padding-right: 2.5rem;
}
.header_menu .nav_category .fs-pt-menu__heading--lv1:has(+ ul) a:after,
.header_menu .g-nav_sub .g-nav_sub-main:has(+ ul) a:after {
  content: "\e313";
  font-family: var(--font-icon);
  color: #5f6368;
  position: absolute;
  font-size: 2.4rem;
  top: 2.6rem;
  right: -0.1rem;
  line-height: 1;
}
.header_menu .nav_category .fs-pt-menu__heading--lv1 a,
.header_menu .g-nav_sub .g-nav_sub-main a {
  font-family: var(--font-en);
  color: var(--color-point);
  font-size: 1.6rem;
  font-weight: 500;
  padding: 2.5rem 1rem;
  display: block;
  transition: 0.3s;
}
.header_menu .nav_category .fs-pt-menu--lv2,
.header_menu .g-nav_sub .fs-pt-menu--lv1 {
  background-color: var(--color-main);
  padding: 2.5rem 0;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.header_menu .nav_category .fs-pt-menu--lv2 a,
.header_menu .g-nav_sub .fs-pt-menu--lv1 a {
  color: #000;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  display: block;
  padding: 0.5rem 5rem 0.5rem 1rem;
  white-space: nowrap;
}
.header_menu .nav_category {
  display: flex;
}
.header_menu .nav_category .fs-pt-menu__heading--lv2 {
  font-weight: 700;
}
.header_menu .nav_category .fs-pt-menu--lv3 a {
  padding-left: 2rem;
}
.header_menu .nav_category .fs-pt-menu--lv2 {
  position: absolute;
}
.header_menu .nav_category .fs-pt-menu__item--lv2 + .fs-pt-menu__item--lv2 {
  margin-top: 2rem;
}
.header_menu .g-nav_sub .fs-pt-menu--lv1 {
  position: absolute;
}
.header_menu .g-nav_sub:last-child .fs-pt-menu--lv1 {
  right: 0;
}

.header_menu > ul > li.is-open > span > a {
  background-color: var(--color-main) !important;
  color: #000 !important;
}
.header_menu > ul > li.is-open > ul {
  opacity: 1 !important;
  pointer-events: visible !important;
}

.search_modal {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  display: flex;
  background-color: rgba(0, 0, 0, 0.95);
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  overscroll-behavior-y: contain;
  overflow-y: scroll;
}
.search_modal:before, .search_modal:after {
  content: "";
  width: 1px;
  height: calc(100vh + 1px);
  display: flex;
}
.search_modal_item {
  width: 85%;
  max-width: 50rem;
  margin: 20vh auto 0;
}
.search_modal.active {
  opacity: 1;
  pointer-events: visible;
}
.search_group {
  display: grid;
  grid-template-columns: 1fr 12.8vw;
}
.search_input {
  width: 100%;
  border: none;
  padding: 2.1333333333vw 3.2vw;
  font-size: 3.2vw;
  height: 12.8vw;
  background: #fff;
  color: #333;
  border-radius: 0;
  border: none;
}
.search_button {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  background-color: #fff;
  width: 100%;
  padding: 0;
  transform: translateX(-1px);
}
.search_button svg {
  width: 6.6666666667vw;
  height: auto;
  vertical-align: middle;
}

#search_close, #drawer_close {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  background-color: transparent;
  position: absolute;
  right: 2rem;
  top: 2rem;
  z-index: 100;
}

.mypageItemNumberWrap {
  width: auto;
  position: absolute;
  top: 0.8rem;
  left: 50%;
  transform: translate(1.4rem, 0);
}
.mypageItemNumberWrap .fs-p-cartItemNumber {
  color: #000;
  font-size: 1rem;
  background-color: var(--color-point);
  border-radius: 50vw;
  line-height: 15px;
  width: 15px;
  height: 15px;
  text-align: center;
  z-index: 10;
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  font-weight: 500;
}
.mypageItemNumberWrap .fs-p-cartItemNumber.is-ready {
  display: block;
}
.mypageItemNumberWrap .fs-p-cartItemNumber.fs-client-cart-count--0 {
  display: none !important;
}

.fs-clientInfo .drawer_point.is-loggedIn--false {
  display: none;
}

.drawer {
  display: block;
  position: fixed;
  background-color: #000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 30;
  transform: translateX(-10%);
  pointer-events: none;
  transition: transform 0.1s, opacity 0.2s;
  opacity: 0;
}
.drawer.active {
  transform: translateX(0);
  pointer-events: visible;
  opacity: 1;
}
.drawer_inner {
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 17.3333333333vw 4vw 5.3333333333vw;
  overscroll-behavior-y: contain;
}
.drawer_header {
  margin-bottom: 8vw;
}
.drawer_tool {
  list-style: none;
  margin: 0 0 8vw;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.drawer_tool a {
  display: grid;
  row-gap: 1.3333333333vw;
  text-align: center;
}
.drawer_tool a img {
  width: 8vw;
  margin: 0 auto;
}
.drawer_tool a strong {
  font-size: 2.6666666667vw;
  color: #ccc;
  font-weight: 400;
  line-height: 1;
}
.drawer .search {
  border: 1px solid #fff;
}
.drawer .search_input, .drawer .search_button {
  background-color: #000;
  color: #fff;
}
.drawer_menu {
  border-top: 1px solid var(--color-point);
  overflow: hidden;
}
.drawer_menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.drawer_menu > ul > li {
  border-bottom: 1px solid var(--color-point);
}
.drawer_menu .nav_category .fs-pt-menu__heading--lv1 a,
.drawer_menu .g-nav_sub .g-nav_sub-main a {
  position: relative;
  font-family: var(--font-en);
  color: var(--color-point);
  font-size: 5.3333333333vw;
  line-height: 1;
  font-weight: 500;
  padding: 5.3333333333vw 0;
  display: block;
  transition: 0.3s;
}
.drawer_menu .nav_category .fs-pt-menu__heading--lv1 a:after,
.drawer_menu .g-nav_sub .g-nav_sub-main a:after {
  content: "\e5cc";
  font-family: var(--font-icon);
  color: #5f6368;
  position: absolute;
  font-size: 7.4666666667vw;
  top: 50%;
  right: 0;
  margin-top: -3.7333333333vw;
  line-height: 1;
}
.drawer_menu .nav_category .fs-pt-menu__heading--lv1:has(+ ul) a,
.drawer_menu .g-nav_sub .g-nav_sub-main:has(+ ul) a {
  pointer-events: none;
}
.drawer_menu .nav_category .fs-pt-menu__heading--lv1:has(+ ul) a:after,
.drawer_menu .g-nav_sub .g-nav_sub-main:has(+ ul) a:after {
  content: "\e313";
}
.drawer_menu .nav_category .fs-pt-menu__heading--lv1 + ul,
.drawer_menu .g-nav_sub .g-nav_sub-main + ul {
  height: 0;
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
}
.drawer_menu .nav_category .fs-pt-menu__heading--lv1.is-open + ul,
.drawer_menu .g-nav_sub .g-nav_sub-main.is-open + ul {
  opacity: 1;
  height: auto;
  pointer-events: visible;
}
.drawer_menu .nav_category .fs-pt-menu__heading--lv1.is-open a:after,
.drawer_menu .g-nav_sub .g-nav_sub-main.is-open a:after {
  content: "\e316";
}
.drawer_menu .nav_category .fs-pt-menu__heading--lv2 {
  font-weight: 500;
}
.drawer_menu .nav_category .fs-pt-menu--lv3 a {
  margin-left: 4vw;
}
.drawer_menu .nav_category .fs-pt-menu__item--lv2 + .fs-pt-menu__item--lv2 {
  margin-top: 5.3333333333vw;
}
.drawer_menu .nav_category .fs-pt-menu--lv2 a, .drawer_menu .g-nav_sub .fs-pt-menu--lv1 a {
  font-size: 4vw;
  letter-spacing: 0.1em;
  padding: 2.1333333333vw 4vw;
  display: block;
}
.drawer_menu .nav_category .fs-pt-menu__item--lv2:last-child,
.drawer_menu .g-nav_sub .fs-pt-menu__item--lv1:last-child {
  padding-bottom: 5.3333333333vw;
}
.drawer_sns {
  margin-top: 10.6666666667vw;
}
.drawer_sns_ttl {
  margin: 0 0 4vw;
  text-align: center;
  font-size: 5.3333333333vw;
  font-family: var(--font-en);
  font-weight: 400;
}

.sns_item {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sns_item a {
  display: block;
  padding: 5.3333333333vw;
}
.sns_item a img {
  width: auto;
  height: 8vw;
}

/*-------------
  footer
---------------*/
.footer_bottom {
  border-top: 1px solid var(--color-point);
  padding: 4rem 1.5rem 2rem;
}
.footer_bottom ul {
  list-style: none;
  padding: 0;
}
.footer_bottom .nav_info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  margin: 0 0 1.5rem;
  position: relative;
}
.footer_bottom .nav_info a {
  font-size: 1.2rem;
  display: block;
  padding: 1.5rem 0 1.5rem 1.2rem;
  color: #ccc;
}
.footer_bottom .nav_info li {
  border-bottom: 1px solid #999;
  border-left: 1px solid #999;
}
.footer_bottom .nav_info li.nav_magazine {
  display: none;
}
.footer_bottom .sns_item {
  margin-bottom: 1.5rem;
}
.footer_magazine {
  text-align: center;
  margin: 0 0 2rem;
  font-size: 1.2rem;
  text-decoration: underline;
  text-underline-offset: 0.3em;
}
.footer_copy {
  font-family: var(--font-en);
  font-size: 1.2rem;
  text-align: center;
  margin: 0;
}

/*-------------
  common
---------------*/
.inner {
  position: relative;
  padding-left: 4vw;
  padding-right: 4vw;
}

.secBlock {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.secBlock + .secBlock {
  margin-top: 16vw;
}
.secBlock:before {
  content: "";
  width: 92vw;
  background-color: #333;
  position: absolute;
  top: 8.5333333333vw;
  left: 0;
  z-index: -1;
}

.sec_common {
  padding-bottom: 16vw;
}
.sec_common:before {
  width: 100%;
  height: 26.6666666667vw;
  right: 0 !important;
}

#advantage {
  margin-bottom: 17.3333333333vw;
}
#advantage:before {
  height: 237.3333333333vw;
  right: 0;
}

.secBlock_title {
  margin: 0 0 8vw;
  font-family: var(--font-en);
  font-size: 13.3333333333vw;
  color: #999;
  font-weight: 500;
  line-height: 1.2;
}
.secBlock_title span {
  display: block;
  font-size: 4.8vw;
  color: #fff;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-top: 1.3333333333vw;
}

.secBlock_sub {
  position: absolute;
  top: min(1.8333333333vw, 2.2rem);
  left: -5.5rem;
  font-family: var(--font-en);
  font-weight: 500;
  font-size: clamp(2.8rem, 3.3333333333vw, 4rem);
  writing-mode: vertical-rl;
  color: var(--color-main);
  line-height: 1;
  margin: 0;
}

.advantage_list {
  list-style: none;
  margin: 0 0 10.6666666667vw;
  padding: 0;
  display: grid;
  gap: 10.1333333333vw 0;
}
.advantage_list figure img {
  width: 100%;
}
.advantage_list figure figcaption {
  font-size: 3.2vw;
  color: #ccc;
  padding-top: 4.2666666667vw;
}
.advantage_ttl {
  display: flex;
  flex-direction: column;
  row-gap: 1em;
  margin: 0 0 4vw;
}
.advantage_ttl h3 {
  margin: 0;
  font-size: 4.8vw;
}
.advantage_ttl p {
  font-family: var(--font-en);
  font-size: 5.8666666667vw;
  line-height: 1;
  margin: 0;
}
.advantage_ttl p span {
  color: var(--color-main);
}
.advantage_about {
  background-color: #333;
  margin: 0;
  padding: 5.3333333333vw 4vw;
}
.advantage_about dt {
  font-size: 4vw;
  font-weight: 700;
  margin: 0 0 3.2vw;
}
.advantage_about dd {
  margin: 0;
  font-size: 3.2vw;
}

/*-------------
  TOP
---------------*/
.fs-body-top .fs-l-main {
  margin-top: 0;
}

.sec__topSlider__pc .slick-list,
.sec__topSlider__pc .slick-track {
  height: 100% !important;
}

.kv_video video {
  width: 100%;
}

/*news*/
.news_ttl {
  font-family: var(--font-en);
  font-size: 6.4vw;
  font-weight: 500;
  margin: 0;
  line-height: 1;
}
.news_item {
  margin: 5.3333333333vw 0 0 3.7333333333vw;
  max-height: 66.6666666667vw;
  overflow-y: auto;
}
.news_item li:has(> a) {
  display: block;
}
.news_item li + li {
  margin-top: 6.6666666667vw;
}
.news time {
  font-family: var(--font-en);
  font-size: 3.2vw;
  color: var(--color-main);
  font-weight: 500;
  line-height: 1;
  display: block;
  margin-bottom: 1.3333333333vw;
}
.news p {
  margin: 0;
  font-size: 3.7333333333vw;
  line-height: 1.5;
}

/*ranking*/
#ranking:before {
  width: 100%;
  height: 100%;
}

.ranking .slick-slide {
  position: relative;
}
.ranking .slick-slide:before {
  content: "";
  width: 8vw;
  height: auto;
  aspect-ratio: 144/140;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
.ranking .slick-slide:nth-child(n+4):before {
  width: 5.3333333333vw;
  top: 1.3333333333vw;
  left: 1.3333333333vw;
}
.ranking .slick-slide:nth-child(1):before {
  background-image: url(https://jewelrygod.itembox.design/item/assets/img/top/rank1.webp);
}
.ranking .slick-slide:nth-child(2):before {
  background-image: url(https://jewelrygod.itembox.design/item/assets/img/top/rank2.webp);
}
.ranking .slick-slide:nth-child(3):before {
  background-image: url(https://jewelrygod.itembox.design/item/assets/img/top/rank3.webp);
}
.ranking .slick-slide:nth-child(4):before {
  background-image: url(https://jewelrygod.itembox.design/item/assets/img/top/rank4.webp);
}
.ranking .slick-slide:nth-child(5):before {
  background-image: url(https://jewelrygod.itembox.design/item/assets/img/top/rank5.webp);
}
.ranking .slick-slide:nth-child(6):before {
  background-image: url(https://jewelrygod.itembox.design/item/assets/img/top/rank6.webp);
}
.ranking .slick-slide:nth-child(7):before {
  background-image: url(https://jewelrygod.itembox.design/item/assets/img/top/rank7.webp);
}
.ranking .slick-slide:nth-child(8):before {
  background-image: url(https://jewelrygod.itembox.design/item/assets/img/top/rank8.webp);
}
.ranking .slick-slide:nth-child(9):before {
  background-image: url(https://jewelrygod.itembox.design/item/assets/img/top/rank9.webp);
}

.top_tab {
  padding-bottom: 21.3333333333vw;
}
.top_tab .tgl-swi-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  margin-bottom: 8vw;
}
.top_tab .tgl-swi_1 {
  max-width: 45.8666666667vw;
  height: 12vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #fff;
  transition: 0.3s;
  cursor: pointer;
}
.top_tab .tgl-swi_1 p {
  font-family: var(--font-en);
  color: #000;
  font-size: 3.7333333333vw;
  margin: 0;
  transition: 0.3s;
}
.top_tab .tgl-swi_1.active {
  background-color: #000;
}
.top_tab .tgl-swi_1.active p {
  color: #fff;
}
.fs-c-productListCarousel .fs-c-productListCarousel__ctrl {
  position: absolute;
  top: calc(100% + 1rem);
}
.fs-c-productListCarousel .fs-c-productListCarousel__ctrl--prev {
  left: 0;
}
.fs-c-productListCarousel .fs-c-productListCarousel__ctrl--next {
  right: 0;
}
.fs-c-productListCarousel .fs-c-button--carousel::before {
  color: #ccc;
}
.fs-c-productListCarousel .fs-c-productListItem__productName {
  margin: 1rem 0;
  font-weight: 400;
}
.fs-c-productListCarousel .fs-c-productMarks {
  display: none;
}

.fs-c-price {
  font-family: var(--font-en);
  font-weight: 300 !important;
}
/*NEW ALLIVALS*/
#new:before {
  height: 100%;
}

/*LINK*/

.link {
  list-style: none;
  padding: 0;
  margin: 0;
}
.link li {
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
  background-color: #333;
}
.link li.link_gold {
  background-image: url(https://jewelrygod.itembox.design/item/assets/img/top/link_gold_sp.webp);
}
.link li.link_platinum {
  background-image: url(https://jewelrygod.itembox.design/item/assets/img/top/link_platinum_sp.webp);
}
.link li.link_shop {
  background-image: url(https://jewelrygod.itembox.design/item/assets/img/top/link_shop_sp_v2.webp);
}
.link li.link_choice {
  background-image: url(https://jewelrygod.itembox.design/item/assets/img/top/link_choice_sp.webp);
}
.link li + li {
  border-top: 1px solid #000;
}
.link li a {
  display: block;
  padding: 8vw 44vw 8vw 8vw;
}
.link h2 {
  margin: 0 0 4.8vw;
  font-size: 5.8666666667vw;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1.2;
}
.link p {
  margin: 0;
  font-size: 3.2vw;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.btn_detail {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40vw;
  font-size: 3.2vw;
  height: 12vw;
  font-family: var(--font-en);
  text-align: center;
  margin-top: 5.3333333333vw;
  border: 1px solid #fff;
  transition: 0.3s;
}

/*BLOG*/
#blog:before {
  width: 100%;
  height: 100%;
}

.top_blog {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw 4vw;
}
.top_blog + .top_blog {
  margin-top: 8vw;
}
.top_blog .fs-pt-column__item {
  display: flex;
  flex-direction: column;
  row-gap: 2.6666666667vw;
}
.top_blog .fs-pt-column__image img {
  width: 100%;
}
.top_blog .fs-pt-column__heading {
  font-size: 3.2vw;
  line-height: 1.4;
}

.all_btn {
  width: -webkit-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 8vw;
}

/*TEXT SLIDER*/
.txt_slide {
  position: relative;
  margin: 8vw 0 16vw;
}
.txt_slide_wrap {
  display: flex;
  gap: 1em;
  justify-content: flex-end;
  width: 100%;
  overflow: hidden;
  min-width: unset;
}
.txt_slide_item {
  margin: 0;
  font-family: var(--font-en);
  font-size: 13.3333333333vw;
  font-weight: 500;
  color: #333;
  line-height: 1;
  white-space: nowrap;
  animation: loop-text 20s linear infinite reverse;
  word-break: break-all;
  min-width: unset;
}

@keyframes loop-text {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(100% + 50px));
  }
}
/*ABOUT*/
.about {
  padding: 29.3333333333vw 5.3333333333vw 54.6666666667vw 0;
}
.about_img1 {
  position: absolute;
  top: 0;
  right: 0;
}
.about_img1 img {
  width: 66.6666666667vw;
}
.about_img2 {
  position: absolute;
  bottom: 24vw;
  right: 4vw;
  z-index: 1;
}
.about_img2 img {
  width: 34.6666666667vw;
}
.about_img3 {
  position: absolute;
  bottom: 0;
  left: 0;
}
.about_img3 img {
  width: 54.6666666667vw;
}
.about_box {
  position: relative;
  background-color: #000;
  margin: 0;
  padding: 5.3333333333vw 4vw 8vw;
}
.about_box dt {
  display: grid;
  row-gap: 4vw;
}
.about_box dt span {
  font-family: var(--font-en);
  font-size: 5.8666666667vw;
  font-weight: 400;
  line-height: 1;
}
.about_box dt em {
  font-style: normal;
  font-size: 3.2vw;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 400;
}
.about_box dd {
  margin: 6.6666666667vw 0 0;
}
.about_box dd p {
  margin: 0;
  font-size: 3.2vw;
  line-height: 1.6;
}

/*instagram*/
#instagram {
  padding-bottom: 13.3333333333vw;
}
#instagram:before {
  width: 100%;
  height: 100%;
}

/*-------------
  caregory
---------------*/
.fs-c-subgroup {
  background-color: #333;
  padding: 8vw 4vw;
  display: block;
  width: 100%;
}
.fs-c-subgroup .fs-c-subgroupList {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.fs-c-subgroup .fs-c-subgroupList__item {
  margin: 0;
}
.fs-c-subgroup .fs-c-subgroupList__item a {
  border: 1px solid #000;
  background: #fff;
  color: #000;
  line-height: 1.5;
  transition: 0.3s;
}
.fs-c-subgroup .fs-c-subgroupList__label {
  min-height: 4.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fs-c-sortItems__list__item__label,
.fs-c-listControl,
.fs-c-pagination__item--next, .fs-c-pagination__item--prev {
  color: #ccc;
}

.fs-c-sortItems__list__item.is-active .fs-c-sortItems__list__item__label {
  color: #fff;
}

.fs-c-pagination__item:not(.fs-c-pagination__item--next, .fs-c-pagination__item--prev) {
  background-color: #000;
  border: 1px solid #fff;
  color: #ccc;
}

.fs-c-pagination__item.is-active {
  color: #000;
  border-color: #fff;
  background-color: #fff;
}

.fs-c-productList__list .fs-c-productListItem .fs-c-productListItem__imageContainer {
  margin-bottom: 1.5rem;
}

.fs-c-productMarks .fs-c-productMark {
  gap: 0.5rem;
}

.fs-c-productList__list .fs-c-productListItem .fs-c-productListItem__productName,
.fs-c-productList__list .fs-c-productListItem .fs-c-productMarks {
  margin: 0 0 0.8rem;
}

.fs-c-productList__list + .fs-c-productList__controller {
  margin-top: 6rem;
}
.category_top_main figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category_summary {
  text-align: center;
  padding: 5.3333333333vw 4vw 10.6666666667vw;
}
.category_summary h2 {
  margin: 0 0 4vw;
  font-size: 4.2666666667vw;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.category_summary p {
  margin: 0;
  font-size: 3.2vw;
  color: #ccc;
}

/*-------------
  product
---------------*/
.fs-body-product .fs-c-productCarouselMainImage {
  margin-bottom: 0 !important;
}

.item_cart {
  display: grid;
  grid-template-columns: 6.75rem 1fr 5rem;
  gap: 0.5rem;
  position: relative;
  margin-top: 3rem;
}
.item_cart .fs-c-productQuantityAndWishlist__wishlist.fs-c-buttonContainer {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 5rem;
}

.fs-c-variationAndActions {
  grid-column: 1/4;
}

.fs-c-variationCart {
  padding: 0;
}
.fs-c-variationCart > li {
  grid-template-columns: auto 1fr 4rem;
}
.fs-c-variationCart > li + li {
  margin-top: 3rem;
}

.fs-c-variationCart__variationName {
  grid-area: 1/1/2/2;
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  padding-right: 1rem;
}
.fs-c-variationCart__variationName .fs-c-variationCart__variationName__name {
  grid-area: 1/1/2/2;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
}
.fs-c-variationCart__variationName .fs-c-variationCart__variationName__price {
  grid-area: 2/1/3/3;
}
.fs-c-variationCart__variationName .fs-c-variationCart__variationName__price .fs-c-productVariationPrice {
  display: flex;
  align-items: baseline;
}
.fs-c-variationCart__variationName .fs-c-variationCart__variationName__price .fs-c-productVariationPrice .fs-c-price {
  font-size: 2rem;
  letter-spacing: 0.03em;
}
.fs-c-variationCart__variationName .fs-c-variationCart__variationName__price .fs-c-productVariationPrice .fs-c-productVariationPrice__addon__label {
  font-size: 1rem;
  display: flex;
}
.fs-c-variationCart__variationName .fs-c-variationCart__variationName__price .fs-c-productVariationPrice .fs-c-productVariationPrice__addon__label:before {
  content: "（";
}
.fs-c-variationCart__variationName .fs-c-variationCart__variationName__price .fs-c-productVariationPrice .fs-c-productVariationPrice__addon__label:after {
  content: "）";
}
.fs-c-variationCart__variationName .fs-c-variationCart__variationName__stock {
  grid-area: 1/2/2/3;
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.fs-c-variationCart__variationName .fs-c-variationCart__variationName__stock:before {
  content: "/";
  padding: 0 0.5rem;
}

.fs-c-variationCart__wishlist {
  grid-area: 1/3/2/4;
}

.fs-c-variationCart__cartButton {
  grid-area: 1/2/2/3;
}

.fs-c-productPrice__main__addon__label {
  display: flex;
}
.fs-c-productPrice__main__addon__label:before {
  content: "（";
}
.fs-c-productPrice__main__addon__label:after {
  content: "）";
}

.fs-c-slick .slick-prev, .fs-c-slick .slick-next {
  background: none;
}

.fs-c-slick .slick-prev:before, .fs-c-slick .slick-next:before {
  font-family: var(--font-icon);
  font-weight: 100;
  color: #000;
  display: block;
}

.fs-c-slick .slick-prev:before {
  content: "\e5e0";
}

.fs-c-slick .slick-next:before {
  content: "\e5e1";
  transform: translateX(1rem);
}

.fs-c-rating__stars.fs-c-reviewStars::before,
.fs-c-rating .fs-c-rating__value,
.fs-c-aggregateRating .fs-c-aggregateRating__count {
  color: #fff;
}

.product_line-contact {
  margin: 3rem 0 0;
}
.product_line-contact a {
  display: block;
  background-color: #06c755;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 1.4rem;
  padding: 1.2rem 0;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.product_linkarea {
  background-color: #333;
  padding: 2rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 1rem;
  margin-top: 3rem;
}
.product_linkarea .fs-c-aggregateRating {
  display: none !important;
}

.share_wrap {
  display: flex;
  align-items: center;
  margin-top: 3rem;
  justify-content: center;
}

.product_sns_ttl {
  margin: 0;
  margin: 0 2rem 0 0;
}

.product_sns {
  display: flex;
  align-items: center;
}
.product_sns a {
  padding: 1rem;
}

.product_desc_area {
  margin-top: 5rem;
}

.itemDetail_ttl {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 2rem;
}

.acc-wrap:first-of-type {
  border-top: 1px solid #ccc;
}

.review-cnt-copy {
  margin-top: 5rem;
}

.col-ttl__pri {
  display: none;
}

.review-cnt-copy .output-reviw_ttl .col-ttl__sec {
  text-align: left;
  font-size: 1.8rem !important;
  font-weight: 700;
  margin: 0;
}

.review-cnt-copy__none-review p {
  color: #fff;
}

.item-article dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 3rem;
}

.item-article dl dt {
  letter-spacing: 0.1em;
}

.item-article dl dd {
  margin-left: 0;
}

.fs-c-productMark__mark--1 {
  background-color: #000;
  border: 1px solid #ccc;
  color: #ccc;
}

.fs-body-product .fs-c-button--addToWishList--detail::after {
  color: #fff;
}

.fs-c-productQuantityAndWishlist {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.fs-body-product .fs-c-button--removeFromWishList--detail::after {
  color: #ec4a4a;
}

.fs-c-featuredProduct__header .fs-c-wishlistProduct__title, .fs-c-featuredProduct__header .fs-c-featuredProduct__title, .fs-c-wishlistProduct__header .fs-c-wishlistProduct__title, .fs-c-wishlistProduct__header .fs-c-featuredProduct__title {
  color: #ccc;
}

.fs-body-cart .fs-c-productListCarousel .fs-c-productMarks, .fs-body-my-top .fs-c-productListCarousel .fs-c-productMarks {
  display: none;
}

.fs-c-button--plain.fs-c-button--addReview--detail:before {
  transform: translateY(4px);
  display: inline-block;
}

#fs_form .fs-c-productReview__reviewList {
  display: grid;
  row-gap: 1rem;
}
#fs_form .fs-c-reviewList__item {
  background-color: #333;
  border-bottom: none;
}
#fs_form .fs-c-reviewList__item:not(:nth-of-type(1)) {
  margin-top: 0;
}
#fs_form .fs-c-reviewList__item:nth-of-type(1) {
  padding: 1.5rem;
}
#fs_form .fs-c-reviewer__name {
  font-size: 1.4rem;
}
#fs_form .fs-c-reviewer__profile {
  font-size: 1.2rem;
}
#fs_form .fs-c-reviewInfo__date dt {
  margin-right: 0;
}

.fs-c-reviewList--productDescription .fs-c-reviewList__item__info {
  flex-direction: row;
  flex-wrap: wrap;
}
.fs-c-reviewList--productDescription .fs-c-reviewInfo__reviewer {
  align-items: baseline;
}
.fs-c-reviewList--productDescription .fs-c-reviewInfo__date {
  margin: 0 0 0 auto !important;
}
.fs-c-reviewList--productDescription .fs-c-reviewList__item__info .fs-c-reviewRating {
  margin-top: 0.5rem;
  width: 100%;
}

.fs-c-modal__header {
  background-color: #333;
}
.fs-c-modal .fs-c-checkbox__labelText a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 0.3em;
}
.fs-c-modal .fs-c-inputTable__headerCell {
  color: #000;
  font-weight: 500;
}
.fs-c-modal .fs-c-modal__close {
  color: #fff;
}

/*-------------
  GUIDE/FAQ
---------------*/
#ac_link {
  border: 2px solid var(--color-point);
  color: #fff;
  margin-bottom: 3.5rem;
  background-color: #000;
}
#guide article + article, #faq article + article {
  margin-top: 5rem;
}
#guide h3, #faq h3 {
  background-color: #333;
  font-size: 1.6rem;
  font-weight: 600;
  min-height: 5rem;
  display: flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  margin: 0 0 2.5rem;
}
#guide h4, #faq h4 {
  margin: 0 0 1.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  color: #ccc;
}
#guide h4:before, #faq h4:before {
  content: "";
  width: 0.6rem;
  height: 0.1rem;
  background-color: var(--color-point);
  margin-right: 0.6rem;
}
#guide h4 + div, #faq h4 + div {
  color: #ccc;
  font-size: 1.2rem;
}
#guide h4 + div b, #faq h4 + div b {
  display: block;
  font-weight: 600;
  margin: 0.5rem 0 0;
}
#guide h4 + div em, #faq h4 + div em {
  font-weight: 600;
  font-style: normal;
}
#guide h4 + div strong, #faq h4 + div strong {
  color: #f96a6a;
}
#guide h4 + div + h4, #faq h4 + div + h4 {
  margin-top: 3rem;
}
#guide h4 + div a, #faq h4 + div a {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

#faq h4 {
  align-items: flex-start;
}
#faq h4:before {
  content: "Q.";
  color: #3e81f0;
  font-weight: 500;
  width: auto;
  height: auto;
  background-color: transparent;
  font-size: 1.8rem;
  line-height: 1;
  transform: translateY(-0.2rem);
}
#faq h4 + div {
  position: relative;
  padding-left: 2.4rem;
}
#faq h4 + div:before {
  content: "A.";
  color: #f96a6a;
  font-weight: 500;
  width: auto;
  height: auto;
  background-color: transparent;
  font-size: 1.8rem;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0.1rem;
}
#faq h4 + div + h4 {
  border-top: 1px solid #ccc;
  padding-top: 3rem;
}

/*-------------
  法務系
---------------*/
.fs-c-documentColumn__heading {
  color: #fff;
  border: none;
  background-color: #333;
}

.fs-c-documentColumn__content p,
.fs-c-documentColumn__content li,
.fs-c-orderedList > li::before {
  color: #ccc;
}

.fs-c-list > li {
  margin-left: 1em;
  text-indent: -1em;
  padding-left: 0.4em;
  color: #ccc;
}

ul.fs-c-list > li::before {
  border: none;
  background: #ccc;
  width: 0.3em;
  height: 0.3em;
  margin: auto 0.7em auto 0;
  transform: translateY(-0.2em);
}

/*-------------
  会社概要
---------------*/
#company:before {
  width: 100%;
  height: 100%;
  right: 0;
}

.company_main {
  margin: 0;
  padding: 0 2.6666666667vw 8vw;
}
.company_main dt {
  text-align: center;
}
.company_main dt img {
  width: 58.6666666667vw;
}
.company_main dd {
  margin: 6.6666666667vw 0 0;
}
.company_main dd p {
  margin: 0;
  font-size: 3.2vw;
  color: rgba(204, 204, 204, 0.8);
  line-height: 1.7;
}
.company_main dd p strong {
  color: #fff;
  font-weight: 700;
}
.company_main dd p + p {
  margin-top: 1.5em;
}

.txt_right {
  text-align: right;
}

.company_inner {
  padding: 14.6666666667vw 4vw;
}

.grid_table {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5.3333333333vw;
  align-items: flex-start;
}
.grid_table dt {
  border: 1px solid #fff;
  text-align: center;
  font-size: 3.2vw;
  color: #ccc;
  padding: 1.6vw 1.3333333333vw;
  line-height: 1.3;
}
.grid_table dd {
  margin: 0;
  font-size: 3.2vw;
  color: #ccc;
  min-height: 8vw;
  display: flex;
  align-items: center;
}

.h3_ttl {
  margin: 0 0 5.3333333333vw;
  font-size: 4.8vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}

#company_history {
  background-color: #333;
}

.company_content {
  list-style: none;
  margin: 0;
  padding: 0;
}
.company_content h3 {
  font-size: 3.2vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0 0 3.7333333333vw;
}
.company_content p {
  margin: 0;
  font-size: 3.2vw;
  letter-spacing: 0.1em;
  color: #ccc;
  line-height: 1.7;
}
.company_content li:first-child {
  position: relative;
}
.company_content li + li {
  margin-top: 10.6666666667vw;
}

/*-------------
  HOW TO CHOOSE
---------------*/
#choice:before {
  width: 100%;
  height: 100%;
  right: 0;
}
#choice p {
  color: #ccc;
}

.choice_main {
  margin: 0;
  padding: 0 0 8vw;
}
.choice_main dt {
  margin: 0 -4vw;
}
.choice_main dt img {
  width: 100%;
}
.choice_main dd {
  margin: 8vw 2.6666666667vw 0;
}
.choice_main p {
  margin: 0;
  font-size: 3.2vw;
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.choice_main p + p {
  margin-top: 1.2em;
}
.choice_detail {
  padding: 13.3333333333vw 0;
}
.choice_detail_item {
  padding: 0 2.6666666667vw;
}
.choice_detail_item + .choice_detail_item {
  margin-top: 16vw;
}
.choice_detail_item p {
  font-size: 1.2rem;
  margin: 0;
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.choice_detail_item p + p {
  margin-top: 1.2em;
}
.choice_kinds {
  list-style: none;
  margin: 8vw 0 0;
  padding: 0;
  display: flex;
  text-align: center;
}
.choice_kinds li {
  flex: 1;
}
.choice_kinds figcaption {
  font-size: 2.6666666667vw;
  display: block;
  padding-top: 2.6666666667vw;
  color: #ccc;
}
.choice_kinds img {
  width: 17.3333333333vw;
}
.choice_cut {
  margin-top: 8vw;
  text-align: center;
}
.choice_cut img {
  width: 100%;
}

/*-------------
  SHOP
---------------*/
#shop:before {
  width: 100%;
  height: 21.3333333333vw;
  right: 0;
}
#shop .secBlock_title {
  margin-bottom: 13.3333333333vw;
}

.swiper-wrapper {
  list-style: none;
  margin: 0;
  padding: 0;
}

.swiper_main {
  margin-left: -4vw !important;
  margin-right: -4vw !important;
}
.swiper_main img {
  width: 100%;
}

.swiper_thumb {
  margin: 4vw 0 0;
}

.shop {
  padding-bottom: 16vw;
}
.shop_img {
  margin-top: 9.3333333333vw;
}
.shop_img_map {
  aspect-ratio: 1/0.65;
}
.shop_img iframe {
  width: 100%;
  height: 100%;
}
.shop_detail h3 {
  margin: 0 0 5.3333333333vw;
  font-size: 4.2666666667vw;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.shop_detail h3 img {
  width: 37.3333333333vw;
}
.shop_detail_item {
  margin: 0 4vw;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5.3333333333vw;
  align-items: flex-start;
}
.shop_detail_item dt {
  font-size: 3.2vw;
  border: 1px solid #ccc;
  padding: 1.3333333333vw 2.6666666667vw;
  color: #ccc;
  text-align: center;
}
.shop_detail_item dd {
  margin: 0;
  font-size: 3.2vw;
  color: #ccc;
  min-height: 8.5333333333vw;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.shop_detail_item dd a {
  display: flex;
  align-items: center;
}
.shop_detail .material-symbols-outlined {
  font-weight: 300;
  color: #ccc;
}
.shop_detail p {
  font-size: 2.9333333333vw;
  margin: 6.6666666667vw 4vw 0;
  color: #ccc;
}

/*-------------
  contact
---------------*/
.contact_lead {
  text-align: center;
  margin: 0;
  background-color: #000;
  padding: 4vw;
  font-size: 3.2vw;
  line-height: 1.7;
}
.contact_lead a {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

#contact iframe {
  margin-top: 5.3333333333vw;
}

/*-------------
  OTHER
---------------*/
.fs-c-subSection__title, .fs-c-linkedServiceLogin__title {
  color: #ccc;
  padding-bottom: 1rem;
  text-align: center;
}

.fs-body-login .fs-c-loginForm {
  max-width: 100rem;
  margin: 0 auto;
}

.fs-c-inputInformation__link {
  text-align: center;
}
.fs-c-inputInformation__link a {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

.fs-body-login .fs-c-newUsers {
  margin-top: 8rem;
}

.fs-c-panel, .pt-selecter select, .fs-c-dropdown select, [type=hidden].is-error, [type=text].is-error, [type=search].is-error, [type=tel].is-error, [type=url].is-error, [type=email].is-error, [type=password].is-error, [type=datetime].is-error, [type=date].is-error, [type=month].is-error, [type=week].is-error, [type=time].is-error, [type=datetime-local].is-error, [type=number].is-error, select.is-error, textarea.is-error, .pt-selecter select:focus, .fs-c-dropdown select:focus {
  background-color: #000;
}

.pt-selecter option, .fs-c-dropdown option {
  color: #000;
  background-color: #fff;
}

.pt-selecter select, .fs-c-dropdown select {
  color: #fff;
}

.fs-c-inputTable__headerCell {
  background: #333;
}

.fs-c-reviewInfo__stars.fs-c-reviewStars::before {
  color: #fff;
}

.fs-body-about-shippingPayment .fs-c-documentContent {
  text-align: left;
}

.fs-c-wishlistProduct {
  margin-top: 3rem;
}

.fs-c-checkbox__labelText a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.fs-c-requiredMark::before {
  line-height: 1;
  transform: translateY(0.1em);
}

.fs-l-checkout__mainColumn *,
.fs-c-checkout-preview__title {
  color: #333;
}

.fs-l-checkout__mainColumn .fs-c-button__label {
  color: #fff !important;
}

.fs-c-button--confirmOrder {
  background-color: var(--color-point);
  color: #000;
}
.fs-c-checkout-shippingParcel__productList {
  list-style: none;
  padding: 1rem;
  border: 1px solid #ccc;
}

.fs-c-checkout-shippingParcel__productList li {
  display: flex;
  align-items: center;
}

.fs-c-checkout-shippingParcel__productList li + li {
  border-top: 1px solid #ccc;
}

.fs-c-checkout-heading {
  background: #ccc;
  padding: 1rem;
}

.fs-c-checkout-shippingOptionPreview {
  display: flex;
  align-items: center;
}

.fs-c-checkout-shippingOptionPreview__value,
.fs-c-checkout-shippingDetail__shippingCarrier__value {
  font-size: 1.6rem;
}

.fs-c-checkout-shippingOptionPreview dt,
.fs-c-deliveryDateInfo__info__date {
  font-weight: 500;
}

.fs-c-checkout-shippingDetail__deliveryDetailPreview {
  background-color: #f7f7f7;
  padding: 1rem;
}

.fs-c-checkout-heading-lv2 {
  margin: 3rem 0 1rem 0;
}

.fs-body-checkout .fs-c-modal__contents p {
  color: #333;
}

.fs-body-checkout .fs-c-modal__close {
  color: #fff;
}

.fs-c-checkout-settings__title {
  background-color: #eee;
  padding: 1rem;
  font-weight: 500;
}

.fs-c-checkout-settings dd,
.fs-c-checkout-deliveryScheduleSetting dd {
  margin: 0;
  color: #333;
}

.fs-c-checkout-settings dt,
.fs-c-checkout-deliveryScheduleSetting dt {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.fs-c-checkout-deliveryScheduleSetting dt {
  font-weight: 500;
}

.fs-c-checkout-deliveryScheduleSetting__note {
  margin-top: 0.5rem;
}

.fs-c-checkout-deliveryScheduleAdditionalInfoComment {
  margin-bottom: 0.5rem;
}

.fs-body-checkout th.fs-c-inputTable__headerCell {
  color: #333;
  font-weight: 400;
}

.fs-body-checkout ul.fs-c-checkout-customerInfo li,
.fs-body-checkout .fs-c-syncDeliveryListField .fs-c-checkbox__labelText,
.fs-body-checkout .fs-c-inputInformation__field .fs-c-radio__radioLabelText,
.fs-body-checkout .fs-system-assistTarget > span,
.fs-body-checkout .fs-c-creditCardInfoField .fs-c-inputField__explanation {
  color: #333;
}

.fs-c-checkout-paymentMethod.is-active .fs-c-radio__radioLabelText,
.fs-c-returnedSpecialContract__link a {
  color: #fff;
}

.fs-c-subgroupList__comment {
  display: none;
}

.fs-body-register th.fs-c-inputTable__headerCell,
.fs-body-login th.fs-c-inputTable__headerCell,
.fs-body-newsletter-subscribe th.fs-c-inputTable__headerCell,
.fs-body-newsletter-unsubscribe th.fs-c-inputTable__headerCell,
.fs-body-my-account-password th.fs-c-inputTable__headerCell,
.fs-body-my-account-settings th.fs-c-inputTable__headerCell {
  color: #fff;
}

/*-------------
  blog 記事
---------------*/
#blog_article {
  padding-left: 4vw;
  padding-right: 4vw;
  margin-bottom: 6.5rem;
}
#blog_article figure {
  margin: 0;
  text-align: center;
  margin: 2rem 0;
}
#blog_article .all_btn {
  margin-top: 6.5rem;
}
#blog_article hr {
  margin: 3rem 0;
}

.toc {
  border: 1px solid currentColor;
  padding: 2em 2em 2em 3em;
  margin: 3em 0;
}
.toc:before {
  content: "目次";
  display: block;
  margin-bottom: 0.5em;
  text-indent: -1.2em;
}
.toc li a {
  display: block;
  padding: 0.2em;
}

/*stock0 price hidden*/
.stock-none {
  display: none;
}
.stock-none ~ .fs-c-productPrices {
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 640px) {
  :root {
    scroll-padding-top: 21rem;
  }
  .sp-only {
    display: none !important;
  }
  .header_info {
    font-size: 1.4rem;
  }
  .header_info li {
    padding: 1.6rem 1rem;
  }
  .header_info .fs-pt-list__link {
    padding: 1.6rem 1rem;
  }
  .header_main {
    grid-template-columns: 1fr 14rem 1fr;
    margin: 0 auto;
  }
  .header_main_logo a {
    padding: 1.8rem 0;
  }
  .search_group {
    grid-template-columns: 1fr 6rem;
  }
  .search_input {
    padding: 0.5rem 0 0.5rem 1rem;
    font-size: 1.6rem;
    height: 6rem;
  }
  .search_button svg {
    width: 2.5rem;
  }
  .sns_item a {
    padding: 2rem;
  }
  .sns_item a img {
    height: 3rem;
  }
  .footer_bottom {
    padding: 5rem 2rem 2rem;
  }
  .footer_bottom .nav_info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border: none;
    margin: 0 0 2rem;
  }
  .footer_bottom .nav_info a {
    font-size: 1.4rem;
    padding: 1rem 1.6rem;
  }
  .footer_bottom .nav_info li {
    border: none;
  }
  .footer_bottom .nav_info li.nav_magazine {
    display: block;
  }
  .footer_bottom .sns_item {
    margin-bottom: 2rem;
  }
  .footer_copy {
    font-size: 1.4rem;
  }
  .inner {
    max-width: 1248px;
    padding-left: 24px;
    padding-right: 24px;
    margin: 0 auto;
  }
  .secBlock + .secBlock {
    margin-top: clamp(7rem, 0.8333333333vw, 10rem);
  }
  .secBlock:before {
    width: 100%;
    top: clamp(4.76rem, 5.6666666667vw, 6.8rem);
    left: auto;
    right: calc(50% - clamp(20rem, 30.4166666667vw, 36.5rem));
  }
  .sec_common {
    padding-bottom: min(5vw, 60rem);
  }
  .sec_common:before {
    height: min(15.8333333333vw, 19rem);
  }
  #advantage {
    margin-bottom: clamp(9.1rem, 10.8333333333vw, 13rem);
  }
  #advantage:before {
    height: clamp(24.5rem, 29.1666666667vw, 35rem);
  }
  .secBlock_title {
    margin: 0 0 clamp(2.8rem, 3.3333333333vw, 4rem);
    font-size: clamp(7rem, 8.3333333333vw, 10rem);
  }
  .secBlock_title span {
    padding-top: clamp(0.5rem, 1vw, 1.2rem);
    font-size: clamp(1.2rem, 2vw, 24rem);
  }
  .advantage_list {
    margin: 0 0 clamp(5.25rem, 2.5vw, 7.5rem);
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 clamp(2.1rem, 2.5vw, 3rem);
  }
  .advantage_list figure figcaption {
    font-size: clamp(1.2rem, 1.1666666667vw, 1.4rem);
    padding-top: clamp(1.75rem, 1.6666666667vw, 2rem);
  }
  .advantage_ttl {
    margin: 0 0 clamp(1.05rem, 1.25vw, 1.5rem);
  }
  .advantage_ttl h3 {
    font-size: clamp(1.4rem, 1.5833333333vw, 1.9rem);
  }
  .advantage_ttl p {
    font-size: clamp(1.8rem, 2.1666666667vw, 2.6rem);
  }
  .advantage_about {
    padding: clamp(2.45rem, 2.9166666667vw, 3.5rem);
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: clamp(3.36rem, 4vw, 1.8rem);
  }
  .advantage_about dt {
    font-size: clamp(1.4rem, 1.6666666667vw, 2rem);
    margin: 0;
  }
  .advantage_about dd {
    font-size: clamp(1.2rem, 1.6666666667vw, 1.4rem);
  }
  .news {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: clamp(3.15rem, 3.75vw, 4.5rem);
  }
  .news_ttl {
    font-size: clamp(2.8rem, 3.3333333333vw, 4rem);
    padding: 0 clamp(2.1rem, 2.5vw, 3rem);
    border-right: 1px solid #fff;
  }
  .news_item {
    margin: 0;
    max-height: 100%;
    height: clamp(9.1rem, 10.8333333333vw, 13rem);
  }
  .news_item li {
    display: grid;
    grid-template-columns: clamp(6.3rem, 7.5vw, 9rem) 1fr;
  }
  .news_item li > a {
    display: grid;
    grid-template-columns: clamp(6.3rem, 7.5vw, 9rem) 1fr;
  }
  .news_item li + li {
    margin-top: clamp(1.4rem, 1.6666666667vw, 2rem);
  }
  .news time {
    font-size: clamp(1.2rem, 1.1666666667vw, 1.4rem);
    margin-bottom: 0;
    line-height: 1.5;
  }
  .news p {
    font-size: clamp(1.2rem, 1.1666666667vw, 1.4rem);
  }
  #ranking:before {
    height: clamp(56rem, 66.6666666667vw, 80rem);
    right: 0;
  }
  .ranking .slick-slide:before {
    width: clamp(3.5rem, 4.1666666667vw, 5rem);
  }
  .ranking .slick-slide:nth-child(n+4):before {
    width: clamp(2.8rem, 3.3333333333vw, 4rem);
    top: clamp(0.2rem, 0.4166666667vw, 0.5rem);
    left: 0;
  }
  .top_tab {
    padding-bottom: 0;
  }
  .top_tab .tgl-swi-wrap {
    grid-template-columns: 15rem 15rem;
    column-gap: 0.5rem;
    margin-bottom: clamp(3.5rem, 4.1666666667vw, 5rem);
  }
  .top_tab .tgl-swi_1 {
    max-width: 100%;
    height: clamp(3.4rem, 3.3333333333vw, 4rem);
  }
  .top_tab .tgl-swi_1 p {
    font-size: clamp(1.4rem, 1.3333333333vw, 1.6rem);
  }
  .fs-c-productListCarousel .fs-c-productListItem__productName {
    margin: 2rem 0 1rem;
  }
  .col4-list.fs-c-productListCarousel .slick-slide {
    width: calc(33.33% + 0.26rem - 2rem);
    margin-right: 2rem;
  }
  #new:before {
    height: clamp(49rem, 58.3333333333vw, 70rem);
  }
  #link {
    padding-top: clamp(2.1rem, 2.5vw, 3rem);
  }
  .link li.link_gold {
    background-image: url(https://jewelrygod.itembox.design/item/assets/img/top/link_gold.webp);
  }
  .link li.link_platinum {
    background-image: url(https://jewelrygod.itembox.design/item/assets/img/top/link_platinum.webp);
  }
  .link li.link_shop {
    background-image: url(https://jewelrygod.itembox.design/item/assets/img/top/link_shop_v2.webp);
  }
  .link li.link_choice {
    background-image: url(https://jewelrygod.itembox.design/item/assets/img/top/link_choice.webp);
  }
  .link li a {
    padding: clamp(3.5rem, 4.1666666667vw, 5rem) clamp(29.75rem, 35vw, 42.5rem) clamp(2.1rem, 2.5vw, 3rem) clamp(5.25rem, 6.25vw, 7.5rem);
    min-height: clamp(21rem, 25vw, 30rem);
  }
  .link h2 {
    margin: 0 0 clamp(1.75rem, 2.0833333333vw, 2.5rem);
    font-size: clamp(2.1rem, 2.5vw, 3rem);
  }
  .link p {
    font-size: clamp(1.2rem, 1.1666666667vw, 1.4rem);
    line-height: 1.7;
  }
  .btn_detail {
    width: clamp(10.5rem, 12.5vw, 15rem);
    font-size: clamp(1.2rem, 1.1666666667vw, 1.4rem);
    height: clamp(2.8rem, 3.3333333333vw, 4rem);
    margin-top: clamp(2.1rem, 2.5vw, 3rem);
  }
  #blog:before {
    height: clamp(56rem, 66.6666666667vw, 80rem);
    right: 0;
  }
  .top_blog {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.2rem 2rem;
  }
  .top_blog + .top_blog {
    margin-top: 3.2rem;
  }
  .top_blog .fs-pt-column__item {
    row-gap: 1rem;
  }
  .top_blog .fs-pt-column__heading {
    font-size: 1.6rem;
  }
  .all_btn {
    padding-bottom: 3rem;
  }
  .txt_slide {
    margin: clamp(3.5rem, 4.1666666667vw, 5rem) 0;
  }
  .txt_slide_item {
    font-size: clamp(7rem, 8.3333333333vw, 10rem);
  }
  .about {
    padding: clamp(8.05rem, 13.5vw, 16.2rem) 0 clamp(11.7rem, 9.5833333333vw, 11.5rem);
  }
  .about_img1 {
    right: clamp(21rem, 32.5vw, 39rem);
  }
  .about_img1 img {
    width: clamp(30rem, 35.8333333333vw, 43rem);
  }
  .about_img2 {
    bottom: auto;
    top: clamp(5.6rem, 6.6666666667vw, 8rem);
    right: clamp(5.6rem, 6.6666666667vw, 8rem);
  }
  .about_img2 img {
    width: clamp(20rem, 24.25vw, 29.1rem);
  }
  .about_img3 {
    left: auto;
    bottom: clamp(2.1rem, 2.5vw, 3rem);
    right: clamp(9.8rem, 11.6666666667vw, 14rem);
  }
  .about_img3 img {
    width: clamp(30rem, 35.6666666667vw, 42.8rem);
  }
  .about_box {
    padding: clamp(2.8rem, 3.3333333333vw, 4rem) clamp(2.8rem, 3.3333333333vw, 4rem) clamp(4.9rem, 5.8333333333vw, 7rem) clamp(2.8rem, 3.3333333333vw, 4rem);
    width: clamp(49rem, 50vw, 60rem);
  }
  .about_box dt {
    gap: 0 clamp(0.98rem, 1.1666666667vw, 1.4rem);
    grid-template-columns: auto 1fr;
    align-items: baseline;
  }
  .about_box dt span {
    font-size: clamp(2.1rem, 2.5vw, 3rem);
  }
  .about_box dt em {
    font-size: clamp(1.2rem, 1.1666666667vw, 1.4rem);
  }
  .about_box dd {
    margin: clamp(2.45rem, 2.9166666667vw, 3.5rem) 0 0;
  }
  .about_box dd p {
    font-size: clamp(1.2rem, 1.1666666667vw, 1.4rem);
  }
  #instagram {
    padding-bottom: 0;
  }
  #instagram:before {
    height: clamp(31.5rem, 37.5vw, 45rem);
    right: 0;
  }
  .fs-c-subgroup {
    margin: 0;
    padding: 3rem 1.5rem;
  }
  .fs-c-subgroup .fs-c-subgroupList {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .fs-c-subgroup .fs-c-subgroupList__item {
    min-width: 15rem;
  }
  .fs-c-subgroup .fs-c-subgroupList__label {
    min-height: 4rem;
  }
  .fs-c-productList__list .fs-c-productListItem .fs-c-productListItem__productName,
  .fs-c-productList__list .fs-c-productListItem .fs-c-productMarks {
    margin: 0 0 1.5rem;
  }
  .fs-c-productList__list + .fs-c-productList__controller {
    margin-top: 10rem;
  }
  .category_summary {
    padding: 3rem 2rem 5rem;
  }
  .category_summary h2 {
    margin: 0 0 2rem;
    font-size: 18px;
  }
  .category_summary p {
    font-size: 14px;
  }
  .fs-body-product .fs-c-productPrices {
    margin-top: 3rem;
  }
  .item_cart {
    margin-top: 4rem;
  }
  .fs-c-variationCart__variationName .fs-c-variationCart__variationName__stock {
    font-size: 1.4rem;
  }
  .product_linkarea {
    background: none;
    margin-top: 3rem;
    padding: 0;
    justify-content: flex-start;
    gap: 2rem 2rem;
  }
  .share_wrap {
    margin-top: 4rem;
    justify-content: flex-start;
  }
  .product_desc_area {
    margin-top: 6rem;
  }
  .itemDetail_ttl {
    font-size: 2.4rem;
    margin: 0 0 4rem;
  }
  .review-cnt-copy {
    margin-top: 8rem;
  }
  .review-cnt-copy .output-reviw_ttl .col-ttl__sec {
    font-size: 2.4rem !important;
  }
  #guide article + article, #faq article + article {
    margin-top: 8rem;
  }
  #guide h3, #faq h3 {
    font-size: 2rem;
    min-height: 6rem;
    padding: 0.5rem 3rem;
    margin: 0 0 3.5rem;
  }
  #guide h4, #faq h4 {
    font-size: 1.8rem;
    padding: 0 3rem;
    margin: 0 0 2rem;
  }
  #guide h4 + div, #faq h4 + div {
    font-size: 1.4rem;
    padding: 0 3rem;
  }
  #guide h4 + div + h4, #faq h4 + div + h4 {
    margin-top: 5rem;
  }
  #faq h4:before {
    font-size: 2.4rem;
    transform: none;
  }
  #faq h4 + div {
    padding: 0 3rem 0 6rem;
  }
  #faq h4 + div:before {
    font-size: 2.4rem;
    top: -0.2rem;
    left: 3.1rem;
  }
  .company_main {
    padding: 0 0 clamp(3rem, 4.1666666667vw, 5rem);
    display: grid;
    grid-template-columns: 1fr max(43.5rem, 36.25vw);
    column-gap: max(2rem, 1.6666666667vw);
  }
  .company_main dt img {
    width: 90%;
    max-width: 28.9rem;
  }
  .company_main dd {
    margin: 0;
  }
  .company_main dd p {
    font-size: clamp(1.2rem, 1.1666666667vw, 1.4rem);
  }
  .company_main dd p + p {
    margin-top: 1.5em;
  }
  .company_inner {
    padding: clamp(6rem, 8.3333333333vw, 10rem) 0;
  }
  .grid_table {
    margin: 0 auto;
    width: -webkit-fit-content;
    width: fit-content;
    gap: clamp(1rem, 1.6666666667vw, 2rem);
  }
  .grid_table dt {
    font-size: 1.4rem;
    padding: 0.7rem 0.5rem;
  }
  .grid_table dd {
    font-size: 1.4rem;
    min-height: 4rem;
  }
  .h3_ttl {
    margin: 0 0 4rem;
    font-size: clamp(1.8rem, 2vw, 2.4rem);
  }
  .company_content {
    width: -webkit-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .company_content h3 {
    font-size: 1.4rem;
    margin: 0 0 1.5rem;
  }
  .company_content p {
    font-size: 1.4rem;
  }
  .company_content li + li {
    margin-top: 4rem;
  }
  .choice_main {
    padding: 0 0 clamp(3rem, 5vw, 6rem);
  }
  .choice_main dt {
    margin: 0;
  }
  .choice_main dd {
    margin: 3rem auto 0;
    width: -webkit-fit-content;
    width: fit-content;
  }
  .choice_main p {
    font-size: 1.2rem;
  }
  .choice_detail {
    padding: clamp(6rem, 8.3333333333vw, 10rem) 0;
  }
  .choice_detail_item + .choice_detail_item {
    margin-top: clamp(6rem, 8.3333333333vw, 10rem);
  }
  .choice_detail_item p {
    font-size: 1.2rem;
    text-align: center;
  }
  .choice_kinds {
    margin: clamp(2rem, 3.3333333333vw, 4rem) auto 0;
    justify-content: center;
    column-gap: min(6.6666666667vw, 8rem);
  }
  .choice_kinds li {
    flex: none;
  }
  .choice_kinds figcaption {
    font-size: clamp(1.2rem, 1.1666666667vw, 1.4rem);
    padding-top: 1rem;
  }
  .choice_kinds img {
    width: 8rem;
  }
  .choice_cut {
    margin-top: clamp(3rem, 5vw, 6rem);
  }
  .choice_cut img {
    max-width: clamp(50rem, 50vw, 60rem);
  }
  #shop:before {
    height: min(15.8333333333vw, 19rem);
  }
  #shop .secBlock_title {
    margin-bottom: min(15.8333333333vw, 19rem);
  }
  .swiper_main {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .swiper_thumb {
    margin: 2rem 0 0;
  }
  .shop {
    max-width: 70rem;
    margin: 0 auto;
    padding-bottom: 10rem;
  }
  .shop_img {
    margin-top: 5rem;
  }
  .shop_detail h3 {
    font-size: 1.8rem;
    margin: 0 0 2rem;
  }
  .shop_detail h3 img {
    width: min(15vw, 18rem);
  }
  .shop_detail_item {
    margin: 0 2rem;
    gap: 1.5rem;
  }
  .shop_detail_item dt {
    font-size: 1.2rem;
    padding: 0.6rem 1.5rem;
  }
  .shop_detail_item dd {
    font-size: 1.2rem;
    min-height: 3.4rem;
  }
  .shop_detail_item dd a {
    margin-right: 5rem;
  }
  .shop_detail .material-symbols-outlined {
    font-size: 3rem;
  }
  .shop_detail p {
    font-size: 1.2rem;
    margin: 3rem 2rem 0;
  }
  .contact_lead {
    font-size: clamp(1.2rem, 1.1666666667vw, 1.4rem);
    padding: min(4.1666666667vw, 50rem) min(1.6666666667vw, 20rem);
  }
  #contact iframe {
    max-width: 50rem;
    margin: 0 auto;
    display: block;
  }
  .fs-c-subSection__title, .fs-c-linkedServiceLogin__title {
    padding-bottom: 1.5rem;
  }
  .fs-c-wishlistProduct {
    margin-top: 6rem;
  }
  #blog_article {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
    margin: 0 auto 12rem;
    max-width: 104.8rem;
  }
  #blog_article figure {
    margin: 5rem 0;
  }
  #blog_article .all_btn {
    margin-top: 12rem;
  }
  #blog_article .share_wrap {
    justify-content: flex-end;
  }
  #blog_article hr {
    margin: 5rem 0;
  }
  .toc {
    width: -webkit-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 900px) {
  :root {
    scroll-padding-top: 23rem;
  }
  .sptab-only {
    display: none !important;
  }
  .pc-only {
    display: block !important;
  }
  .header_main {
    grid-template-columns: 1fr 17.6rem 1fr;
  }
  .header_main_tool button {
    padding: 2.5rem;
  }
  .header_main_tool a {
    padding: 2.5rem;
  }
  .mypageItemNumberWrap .fs-p-cartItemNumber {
    top: 1.2rem;
  }
  .fs-l-main {
    margin-bottom: 12rem;
  }
  .secBlock:before {
    right: calc(50% - clamp(32.34rem, 38.5vw, 46.2rem));
  }
  .col4-list.fs-c-productListCarousel .slick-slide {
    width: calc(25% + 0.4rem - 3rem);
    margin-top: 5rem;
    margin-right: 3rem;
  }
  .link {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }
  .link li + li {
    border-top: none;
  }
  .link li a {
    padding: clamp(4.55rem, 3.3854166667vw, 6.5rem) clamp(29.75rem, 21.875vw, 42.5rem) clamp(2.1rem, 1.5625vw, 3rem) clamp(5.25rem, 3.90625vw, 7.5rem);
    min-height: clamp(21rem, 15.625vw, 30rem);
  }
  .link h2 {
    margin: 0 0 clamp(1.75rem, 2.0833333333vw, 2.5rem);
    font-size: clamp(2.1rem, 2.5vw, 3rem);
  }
  .link p {
    font-size: clamp(1.2rem, 1.1666666667vw, 1.4rem);
  }
  .btn_detail {
    width: clamp(10.5rem, 12.5vw, 15rem);
    font-size: clamp(1.2rem, 1.1666666667vw, 1.4rem);
    height: clamp(2.8rem, 3.3333333333vw, 4rem);
    margin-top: clamp(2.1rem, 2.5vw, 3rem);
  }
  .top_blog {
    grid-template-columns: repeat(4, 1fr);
    gap: 5rem 3rem;
  }
  .top_blog + .top_blog {
    margin-top: 5rem;
  }
  .category_top_main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #333;
    margin-bottom: 5rem;
  }
  .category_summary {
    padding: 2rem min(3.3333333333vw, 4rem);
    text-align: left;
    max-width: 60rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .category_summary h2 {
    font-size: 2rem;
  }
  .fs-c-button--primary.fs-c-button--addToCart--variation {
    min-width: 1px;
    max-width: 25rem;
    display: block;
    margin: 0 auto;
  }
  .company_main {
    padding: 0 clamp(0.5rem, 3.3333333333vw, 4rem) clamp(3rem, 4.1666666667vw, 5rem);
    grid-template-columns: clamp(2.7rem, 37.5vw, 45rem) 1fr;
    column-gap: 0;
    align-items: center;
  }
  .company_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(4rem, 6.6666666667vw, 8rem);
  }
  .company_content li:first-child::after {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    right: clamp(-4rem, -3.3333333333vw, -2rem);
  }
  .company_content li + li {
    margin-top: 0;
  }
  .choice_main {
    display: grid;
    grid-template-columns: min(37.5vw, 50rem) 1fr;
    column-gap: min(2.5vw, 3rem);
  }
  .choice_main dd {
    margin: 0;
    width: auto;
  }
  .choice_main p {
    font-size: clamp(1.2rem, 1.1666666667vw, 1.4rem);
  }
  .choice_detail_item p {
    font-size: clamp(1.2rem, 1.1666666667vw, 1.4rem);
  }
  .shop {
    max-width: 100%;
    padding: 0 min(3.3333333333vw, 4rem) min(8.3333333333vw, 10rem);
    display: grid;
    grid-template-columns: min(41.6666666667vw, 50rem) 1fr;
    column-gap: min(4.1666666667vw, 5rem);
    align-items: center;
  }
  .shop:first-of-type {
    margin-top: 13rem;
  }
  .shop_img {
    margin-top: 0;
  }
  .shop_detail h3 {
    font-size: min(1.6666666667vw, 2rem);
    margin: 0 max(-3.3333333333vw, -4rem) min(2.9166666667vw, 3.5rem);
  }
  .shop_detail_item {
    margin: 0;
    gap: min(1.6666666667vw, 2rem);
  }
  .shop_detail_item dt {
    font-size: min(1.1666666667vw, 1.4rem);
    padding: min(0.5vw, 0.6rem) min(1.6666666667vw, 2rem);
  }
  .shop_detail_item dd {
    font-size: min(1.1666666667vw, 1.4rem);
    min-height: min(3.3333333333vw, 3rem);
  }
  .shop_detail_item dd a {
    margin-right: 0;
  }
  .shop_detail .material-symbols-outlined {
    font-size: min(3.3333333333vw, 3rem);
  }
  .shop_detail p {
    font-size: min(1.1666666667vw, 1.4rem);
    margin: min(3.3333333333vw, 4rem) 0 0;
  }
}
@media screen and (max-width: 639px) {
  .pctab-only {
    display: none !important;
  }
  .footer_bottom .nav_info:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #999;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .fs-c-productListCarousel {
    display: block;
    position: relative;
  }
  .fs-c-productListCarousel__list {
    margin-right: -4vw;
    overflow: auto;
  }
  .fs-c-productListCarousel .fs-c-slick .slick-list {
    overflow: auto;
  }
  .fs-c-productListCarousel .slick-slide {
    width: 39.4666666667vw !important;
    padding-right: 2.6666666667vw;
  }
  .fs-c-sortItems__list__item__label {
    font-size: 1.2rem;
  }
  .fs-c-listControl {
    flex-direction: row;
    align-items: center;
    column-gap: 2rem;
  }
  .fs-c-listControl__status {
    font-size: 1.2rem;
  }
  .fs-c-listControl__status,
  .fs-c-pagination {
    margin: 0;
  }
  #fs_form .fs-c-reviewInfo__date dt {
    display: none;
  }
  #ac_link {
    margin-bottom: 7rem;
  }
  .fs-c-newUsers .fs-c-newUsers__message {
    font-size: 1.2rem;
  }
}
@media (hover) {
  .header_menu .nav_category > .fs-pt-menu__item--lv1:hover > span a,
  .header_menu .g-nav_sub > li:hover > span a {
    background-color: var(--color-main);
    color: #000;
  }
  .header_menu .nav_category > .fs-pt-menu__item--lv1:hover > ul,
  .header_menu .g-nav_sub > li:hover > ul {
    opacity: 1;
    pointer-events: visible;
  }
  .header_menu .nav_category .fs-pt-menu--lv2 a:hover,
  .header_menu .g-nav_sub .fs-pt-menu--lv1 a:hover {
    text-decoration: underline;
    text-underline-offset: 0.2em;
  }
  .footer_bottom .nav_info a:hover {
    text-decoration: underline;
    text-underline-offset: 0.4em;
  }
  .link li a:hover span {
    background-color: #fff;
    color: #333;
  }
  a.btn_detail:hover {
    background-color: #fff;
    color: #000;
  }
  .fs-c-subgroup .fs-c-subgroupList__item a:hover {
    background-color: #000;
    color: #fff;
  }
}
@media screen and (min-width: 640px) and (max-width: 899px) {
  .col4-list.fs-c-productListCarousel .slick-slide:nth-of-type(4n) {
    margin-right: 2rem;
  }
}
@media screen and (min-width: 768px) {
  #ac_link {
    padding: 5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 3rem;
  }
  #ac_link summary {
    pointer-events: none;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
  }
  #ac_link div a {
    color: #ccc;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    padding: 0.4rem 0;
  }
  #ac_link div a:before {
    content: "";
    width: 0.5rem;
    height: 1px;
    margin-right: 0.5rem;
    background-color: var(--color-point);
  }
}
@media screen and (min-width: 768px) and (hover) {
  #ac_link div a:hover:hover {
    text-decoration: underline;
    text-underline-offset: 0.3em;
  }
}
@media screen and (max-width: 767px) {
  #ac_link details + details {
    border-top: 1px solid var(--color-point);
  }
  #ac_link details[open] summary:after {
    transform: rotate(-135deg);
  }
  #ac_link summary {
    padding: 0 1.5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  #ac_link summary:after {
    content: "";
    width: 0.6rem;
    height: 0.6rem;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(45deg);
  }
  #ac_link div {
    background-color: #333;
    display: grid;
  }
  #ac_link div a {
    color: #fff;
    display: flex;
    align-items: center;
    height: 4.5rem;
    padding: 0 1.2rem;
    font-size: 1.2rem;
    line-height: 1.3;
  }
  #ac_link div a + a {
    border-top: 1px solid #111;
  }
  #ac_link div a:before {
    content: "";
    width: 0.5rem;
    height: 1px;
    background-color: var(--color-main);
    margin-right: 0.3rem;
  }
}
@media (hover: hover) {
  .fs-l-checkout__mainColumn button:hover .fs-c-button__label,
  .fs-l-checkout__mainColumn button:hover .fs-c-button__label,
  .fs-l-checkout__mainColumn .fs-c-button--standard:hover .fs-c-button__label {
    color: #000 !important;
    background-color: #ffffff;
  }
  .fs-c-button--confirmOrder:hover {
    border: 1px solid #000;
  }
}
/*# sourceMappingURL=jewelrygod.css.map */
