@charset "UTF-8";
:root {
  --font-primary: "Lato", "Noto Sans JP", sans-serif; /* メインフォント */
  --color-primary: #4f4c4c; /* 主要なテキスト色 */
  --color-background: #fff; /* 背景色 */
  --color-main: #73c6c4; /*メインカラー*/
  --spacing-base: 1rem; /* ベースのスペーシング */
}

:target {
  scroll-margin-top: 90px; /* ヘッダーの高さ分の余白を確保 */
}

/*------------------------------------------------全体*/
* {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
}

/* Google icon */
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 350, "GRAD" 0, "opsz" 24;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-size: 14px;
  font-weight: 400;
  background-color: #ffffff;
  color: var(--color-primary);
}

h1,
h2,
h3 {
  color: #4f545a;
}

h1 {
  font-size: 30px;
}

h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

h3 {
  margin-bottom: 10px;
}

a {
  text-decoration: none;
  color: #73c6c4;
  transition-duration: 0.5s;
}

button {
  transition-duration: 0.5s;
}

a:hover,
button:hover {
  opacity: 0.5;
}

.fs-l-page {
  /* margin: 160px auto 0 auto; */
  /*max-width: 1980px;*/
}

.fs-c-breadcrumb__list {
  padding: 0;
}

.fs-c-breadcrumb__listItem {
  overflow: hidden;
}

.fs-c-breadcrumb__listItem:last-child {
  /* display: none; */
  width: 200px; /* 省略せずに表示するサイズを指定 */
  white-space: nowrap;
  text-overflow: ellipsis;
}

.fs-c-breadcrumb__listItem + .fs-c-breadcrumb__listItem::before {
  content: ">";
  font-family: monospace;
  padding: 0 8px;
  font-size: 12px;
  color: #aaa;
}

.fs-c-heading {
  font-weight: 700;
  /*    margin: 0.67em 0 1.4em 0;*/
}

@media (max-width: 800px) {
  .fs-l-page {
    /* margin-top: 220px; */
  }
  .fs-c-productPrice__main__joint {
    font-size: 13px !important;
  }
  .value_favo {
    gap: 0 !important;
  }
}
/*------------------------------------------------ヘッダー*/
/*=======================アナウンスバー*/
.announcement {
  text-align: center;
  font-size: 13px;
  padding: 10px;
  background-color: #EF8100;
  color: #ffffff;
  font-weight: 700;
  transition-duration: 0.5s;
  height: 40px;
}

.scroll-nav {
  margin-top: -40px !important;
}

.scroll-modal {
  transform: translateY(40px) !important;
}

@media (max-width: 800px) {
  .announcement {
    font-size: 11px;
  }
  .scroll-modal {
    transform: translateY(20px) !important;
  }
}
/*=======================ロゴ*/
.logo {
  width: 180px;
  /* height: 100%; */
}

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  /* width: auto;
  height: 100%; */
}

/*=======================ヘッダー*/
.header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 998;
  /* background-color: #f8fcff; */
}

.header_wrapper {
  /* width: 100%; */
  /* height: 80px; */
  display: flex;
  /* justify-content: space-between; */
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin: 0 auto;
  padding: 2rem 3rem;
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.9) 20%, rgb(255, 255, 255) 100%);
  /* backdrop-filter: blur(19px);
  -webkit-backdrop-filter: blur(19px); */
}

/*=======================ナビゲーション*/
.nav {
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.nav_cat_wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 50px;
}

.nav_cat {
  /* width: 100%; */
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  padding: 0;
}

.nav_cat_one_col {
  flex-direction: column;
}

.nav_cat_two_col {
  flex-direction: row;
  align-items: center;
}

.nav_cat_two_col li {
  width: calc((100% - 30px) / 2);
}

.nav_cat_link {
  padding: 10px;
}

.nav_cat a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  color: var(--color-primary);
  font-weight: 500;
}

.drop_down {
  position: absolute;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.6);
  /* box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 ); */
  backdrop-filter: blur(19px);
  -webkit-backdrop-filter: blur(19px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: 0.2s;
}

.nav_utility {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.nav_item a,
.nav_item button {
  /* padding: 5px; */
}

#search_btn {
  padding: 2px 8px;
  background-color: #73c6c4;
  color: #FFFFFF;
  border-radius: 40px;
}

.nav_item button {
  background: none;
  border: none;
  cursor: pointer;
}

.nav_item .material-symbols-outlined {
  font-size: 30px;
}

.nav_cat img {
  width: 24px;
}

.fs-p-headerNavigation__link {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  font-size: 9px;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.fs-p-headerNavigation__link img {
  width: 30px;
}

.fs-icon--mypage:before,
.fs-icon--cart:before {
  font-size: 30px;
}

.fs-icon--mypage::before {
  content: "\e936" !important;
}

@media (max-width: 1500px) {
  .nav .nav_cat {
    display: none;
  }
}
@media (max-width: 1200px) {
  .header_wrapper {
    padding: 1.5rem;
    gap: 20px;
  }
  .nav {
    justify-content: space-between;
  }
  .nav_utility {
    gap: 9px;
  }
}
@media (max-width: 800px) {
  .menu_wrap {
    flex-direction: column;
  }
}
/*=======================検索ボックス*/
.menu_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.95);
  /* box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 ); */
  /* backdrop-filter: blur(30px); */
  -webkit-backdrop-filter: blur(30px);
  /* border: 1px solid rgba( 255, 255, 255, 0.18 ); */
  z-index: 998;
  overflow: auto;
  display: flex;
  align-items: center;
  transition: 0.5s;
}

.menu_wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 70px;
  position: relative;
}

.menu_item {
  width: calc((100% - 70px) / 2);
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.menu_child {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.menu_child h2 {
  margin: 0;
}

.utility {
  width: 100%;
}

.utility .nav_cat_one_col {
  flex-direction: row;
  justify-content: space-around;
  border-radius: 50px;
  padding: 20px;
  background-color: #FFF;
}

.search_bar {
  width: 100%;
  padding: 5px 10px;
  display: flex;
  flex-direction: row-reverse;
  border-radius: 100px;
  border: #ccc 1px solid;
  /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
  z-index: 997;
}

.search_bar input {
  background: none;
}

.search_bar .material-symbols-outlined {
  font-size: 24px;
}

.sp_only_search {
  display: none;
}

.search_bar_btn {
  border: none;
  background: none;
  cursor: pointer;
  cursor: hand;
  display: flex;
  align-items: center;
  padding: 0;
  color: var(--color-primary);
}

.container__input {
  width: 100%;
  border: none;
  outline: none;
  flex: 1;
  font-size: 16px;
  font-weight: 500;
}

#close_btn {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 100px;
  position: absolute;
  top: 20px;
  right: 20px;
  /* padding: 10px 50px; */
  cursor: pointer;
  color: #000;
}

#close_btn .material-symbols-outlined {
  font-size: 40px;
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24 !important;
}

.display {
  visibility: visible;
  opacity: 1;
}

.hidden {
  visibility: hidden;
  opacity: 0;
}

.sp {
  display: none;
}

@media (max-width: 800px) {
  .menu_content {
    align-items: flex-start;
  }
  .menu_wrap {
    padding: 50px 20px;
  }
  .menu_item {
    width: 100%;
  }
  .sp_only_search {
    display: block;
    width: 95%;
    margin: 0 auto;
  }
  .pc_only_search {
    display: none;
  }
  .pc {
    display: none;
  }
  .sp {
    display: flex;
  }
}
/*=======================カート内アイテム数*/
.fs-p-headerNavigation__viewCartButton {
  position: relative;
}

.fs-p-cartItemNumber {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #73c6c4;
  color: #ffffff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
}

/*=======================カテゴリモーダル*/
.category_modal h2 {
  margin: 0;
}

.category_modal {
  width: 54%;
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #ffffff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 5px;
  z-index: 998;
  /* display: none; */
  opacity: 0;
  visibility: hidden;
  max-height: 70vh;
  overflow-y: auto;
  overflow-y: scroll;
}

.category_modal::-webkit-scrollbar {
  height: 14px;
  margin: 0 10px;
  /* スクロールバーの高さ */
}

.category_modal::-webkit-scrollbar-thumb {
  background: #dddddd;
  /* ツマミの色 */
  border-radius: 7px;
  /* ツマミ両端の丸み */
}

.category_modal::-webkit-scrollbar-track {
  background: #ffffff;
  /* トラックの色 */
  border-radius: 7px;
  /* トラック両端の丸み */
}

.close_btn {
  position: absolute;
  top: 20px;
  right: 10px;
  cursor: pointer;
  cursor: hand;
}

.close_btn::before {
  font-family: "fs-icon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  white-space: pre;
  font-size: 2.5rem;
  color: #000000;
  content: "\e911";
}

.cate_area {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 50px;
  padding: 50px;
}

.cate_title {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #000000;
  gap: 10px;
}

.cate_item {
  width: calc((100% - 50px) / 2);
}

.cate_item ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 25px 20px;
  list-style: none;
  margin-top: 20px;
  padding: 0;
}

.cate_item a {
  position: relative;
  display: block;
}

.cate_item .cate_txt {
  background-color: #dddddd;
  color: #000000;
  padding: 5px 14px;
  border-radius: 50px;
  font-weight: 500;
}

.cate_item .hot .cate_txt {
  background-color: #73c6c4;
  color: #ffffff;
}

.hot_txt {
  position: absolute;
  top: -10px;
  left: -8px;
  background-color: #73c6c4;
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 10px;
}

@media (max-width: 800px) {
  .category_modal {
    width: 92%;
    padding: 10px;
    top: 140px;
  }
  .cate_area {
    padding: 50px 20px 20px 20px;
  }
}
@media (max-width: 1000px) {
  .cate_item {
    width: 100%;
  }
  .cate_item ul {
    pointer-events: none;
    opacity: 0;
    height: 0;
    margin: 0;
    padding: 0 15px;
    transition: 0.2s;
    gap: 0 20px;
    /* display: none; */
  }
  .cate_item .cate_txt,
  .hot_txt {
    color: white;
    height: 0;
    margin: 0;
    padding: 0;
  }
  .cate_title {
    cursor: pointer;
    cursor: hand;
  }
  .cate_title::after {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    border: 2px solid;
    border-color: transparent transparent #000000 #000000;
    transform: rotate(-45deg);
    right: 18px;
    transition: 0.2s;
  }
  .cate_title .is-active::after {
    transform: rotate(135deg);
  }
  .cate_contents.is-open {
    padding: 15px;
  }
}
.category_modal.modal-open {
  /* top: 80px; */
  transition: 0.5s;
  visibility: visible;
  opacity: 1;
  transform: translate(0, 80px);
  -webkit-transform: translate(0, 80px);
  -ms-transform: translate(0, 80px);
}

.cate_contents.is-open {
  pointer-events: auto;
  opacity: 1;
  height: auto;
  gap: 25px 20px;
}

.is-open .cate_txt {
  height: unset;
  padding: 5px 14px;
  color: #000000;
}

.is-open .hot_txt {
  height: unset;
  padding: 2px 5px;
}

@media (max-width: 800px) {
  .category_modal.modal-open {
    transform: translate(0, 60px);
    -webkit-transform: translate(0, 60px);
    -ms-transform: translate(0, 60px);
  }
}
/*=======================ガイドボタン*/
.info_btn {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 70px;
  height: 70px;
  padding: 10px;
  background-color: #73c6c4;
  border-radius: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  z-index: 998;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  cursor: pointer;
  cursor: hand;
  z-index: 996;
}

.btn-icon::before {
  font-family: "fs-icon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  white-space: pre;
  font-size: 2.5rem;
  color: #ffffff;
}

.i::before {
  content: "\e914";
}

.close::before {
  content: "\e911";
}

.info_txt {
  margin-top: -10px;
}

.info {
  position: fixed;
  width: 400px;
  bottom: 40px;
  right: 40px;
  /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 50px;
  border-radius: 40px;
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.2s;
  z-index: 995;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
}

.info a {
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
}

.info_icon {
  display: flex;
  align-items: center;
}

@media (max-width: 800px) {
  .info_btn {
    bottom: 20px;
    right: 20px;
  }
  .info {
    width: 100%;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    border-radius: 20px 20px 0 0;
  }
}
/*------------------------------------------------ファーストビュー*/
.first_main {
  width: 100%;
  height: 100svh;
  /* margin: 0 calc(50% - 50vw); */
  /* position: sticky; */
  z-index: -1;
  top: 0;
  /* background-color: #edf3f8; */
  /* padding-bottom: 500px; */
}

.first_view {
  /* 画面幅いっぱい */
  width: 100%;
  /* 画面高さいっぱい */
  height: 100%;
  /* height: 100dvh; */
  /* 基準位置とする */
  position: relative;
}

.first_view a:hover {
  opacity: 1;
}

.first_back {
  /* 要素いっぱいに画像を表示（はみ出た部分は削除） */
  -o-object-fit: cover;
     object-fit: cover;
  /* 親要素の幅いっぱい */
  width: calc(100% - 80px);
  /* 画面高さいっぱい */
  height: calc(100% - 80px);
  max-width: 85%;
  /* border-radius: 55% 45% 57% 43% / 41% 55% 45% 59%; */
  border-radius: 300px;
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  /* 中央 */
  /* top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%); */
}

.f-area {
  max-width: 800px;
  position: absolute;
  bottom: 80px;
  left: 50px;
  /* 中央 */
  /* top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%); */
}

.f_main {
  width: 100%;
  /* margin: 0 auto;
  text-align: center; */
}

.f_main h1 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  color: #4f545a;
  filter: drop-shadow(0px 5px 20px rgb(255, 255, 255));
  font-size: 6rem;
  line-height: 1.6;
  letter-spacing: 0.5rem;
  margin: 0;
  font-weight: 700;
}

.f_main img {
  filter: drop-shadow(0px 5px 20px rgb(255, 255, 255));
  /* margin-left: -20px; */
}

.back {
  width: 100%;
  height: 100vh;
  /* height: 100dvh; */
  position: absolute;
  top: 0;
  background-color: rgba(32, 32, 32, 0.2);
}

.f_logo {
  width: 100px !important;
  /* margin-bottom: 50px; */
}

@media (max-width: 1000px) {
  .first_back {
    width: 100%;
    height: 80%;
    /* border-radius: 0; */
    position: absolute;
    top: 0px;
    right: 0%;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    border-radius: 0 0 0 300px;
  }
  .f_img img {
    width: 100%;
  }
  .f-area {
    width: calc(100% - 20px);
    /* max-width: 320px; */
    position: absolute;
    bottom: 100px;
    left: 20px;
  }
  .f_main h1 {
    font-size: 4rem;
    line-height: 1.4;
  }
}
/*スクロールダウン全体の場所*/
.scrolldown {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  /*全体の高さ*/
  width: 50px;
  height: 100px;
}

/*Scrollテキストの描写*/
.scrolldown span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  color: #eee;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown::after {
  content: "";
  /*描画位置*/
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  /*線の形状*/
  width: 1px;
  height: 50px;
  background: #eee;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.6s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 15px;
    opacity: 0;
  }
  30% {
    height: 50px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 100px;
    opacity: 0;
  }
}
@media (max-width: 800px) {
  .scrolldown {
    height: 100px;
  }
}
.intro_section {
  background-color: #f8fcff;
  margin: 200px 0;
  border-radius: 200px;
}

.intro_content {
  max-width: 1500px;
  margin: 0 auto;
  padding: 300px 100px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 300px;
}

.reverse {
  flex-direction: row-reverse;
}

.renewal_wrap {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.renewal_item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.renewal_wrap .txt_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.renewal_wrap img {
  width: calc(50% - 80px);
}

.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 30px solid #73c6c4;
  border-right: 0;
}

.intro_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 120px;
}

.intro_img {
  width: calc(60% - 60px);
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.intro_img img {
  width: 100%;
  height: 900px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100px;
}

.intro_txt {
  width: calc(40% - 60px);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 50px;
  font-size: 18px;
}

@media (max-width: 1200px) {
  .intro_wrap {
    gap: 40px;
  }
  .intro_img {
    width: calc(60% - 20px);
  }
  .intro_txt {
    width: calc(40% - 20px);
  }
}
@media (max-width: 800px) {
  .intro_section {
    margin: 100px 0;
    border-radius: 50px;
  }
  .intro_content {
    width: 90%;
    padding: 100px 0;
  }
  .renewal_item {
    flex-direction: column;
    gap: 40px;
  }
  .renewal_wrap img {
    width: 100%;
  }
  .triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 30px solid transparent;
    border-left: 30px solid transparent;
    border-top: 30px solid #73c6c4;
    border-bottom: 0;
  }
  .intro_wrap {
    flex-direction: column;
    gap: 50px;
  }
  .intro_img,
  .intro_txt {
    width: 100%;
  }
  .intro_img img {
    height: 400px;
  }
}
/*------------------------------------------------スライダー*/
.slider {
  /* width: 90vw; */
  /* margin: 0 auto; */
}

.swiper {
  width: 100%;
  /* height: 80vh; */
  /* border-radius: 20px; */
}

.swiper .swiper-wrapper {
  /* wrapperのサイズを調整 */
  width: 100%;
  height: 100%;
}

.swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

:root {
  --swiper-navigation-color: gray;
  --swiper-pagination-color: gray;
}

.swiper .slider_item {
  /* 画面幅いっぱい */
  width: 100%;
  /* 画面高さいっぱい */
  /* height: 80vh; */
  /* 基準位置とする */
  position: relative;
}

.headline_area {
  background-color: #f3f3f3;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.14em;
}

.headline_small {
  font-size: 12px;
}

.swiper .slider_item a:hover {
  opacity: 1;
}

.slider_item img {
  border-radius: 20px;
}

.swiper-button-prev,
.swiper-button-next {
  background-color: var(--color-main);
  color: var(--color-background);
  font-weight: 700;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 15px;
}

@media (min-width: 1400px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 50px;
    height: 50px;
  }
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 18px;
  }
  .swiper-button-prev {
    left: 13.8%;
    /* 中央寄りに調整 */
  }
  .swiper-button-next {
    right: 13.8%;
  }
}
.s_img-area {
  width: 100%;
  position: absolute;
  top: 50px;
}

.s_img {
  width: 80%;
  margin: 0 auto;
  /* padding-top: 130px; */
}

.s_img img {
  width: 400px;
}

.s_txt-area {
  width: 100%;
  position: absolute;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, rgba(100, 100, 100, 0.5) 40%, rgba(50, 50, 50, 0.8) 100%);
}

.s_txt {
  width: 80%;
  margin: 0 auto;
  padding: 30px 0;
  color: #FFFFFF;
  /* line-height: 2; */
  filter: drop-shadow(0px 5px 8px rgba(0, 0, 0, 0.8));
}

/* .s_txt h2 {
    line-height: 1.5;
} */
@media (max-width: 800px) {
  .swiper {
    /* height: 60vh; */
  }
  .swiper .slider_item {
    /* height: 60vh; */
  }
  .s_img-area {
    top: 20px;
  }
  .s_img {
    width: 90%;
    padding: 20px;
    /* padding-top: 180px; */
  }
  .s_img img {
    width: 100%;
  }
  .s_txt h2 {
    font-size: 22px;
  }
  .slider_item .first_back {
    /* -ms-filter: blur(80px);
    filter: blur(80px); */
  }
}
/*------------------------------------------------トップメインコンテンツ*/
.fs-l-main {
  max-width: 1300px;
  margin: 0 auto 50px auto;
  padding: 0 30px;
}

.fs-c-breadcrumb {
  max-width: 1500px;
  margin: 0 auto;
  /* padding: 0 30px; */
}

.top_section {
  margin: 80px 0;
  /* display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 100px; */
}

.title-h2 {
  font-size: 34px;
  font-weight: 600;
}

.ranking article {
  padding: 10px;
}

@media (max-width: 800px) {
  .top_section {
    margin: 30px 0 20px 0;
  }
}
/*=======================価格表示*/
.value {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.fs-c-productPrice {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  flex-wrap: wrap;
}

.fs-c-productPrice__addon {
  /* margin-left: 10px; */
  margin-bottom: 5px;
}

.fs-c-productPrice--selling .fs-c-productPrice__main {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.fs-c-productPrice__main__price {
  justify-content: flex-start;
  line-height: 1.5;
}

.fs-c-price__currencyMark {
  margin-right: 3px;
  font-size: 24px;
  font-weight: 700;
}

.fs-c-price__value {
  font-family: "Lato";
  letter-spacing: 0.05em;
  font-size: 30px;
  font-weight: 900;
}

.fs-c-bundlePreview__item__total .fs-c-price__symbol,
.fs-c-bundlePreview__item__total .fs-c-symbol,
.fs-c-orderHistoryItem__product .fs-c-price__symbol,
.fs-c-orderHistoryItem__product .fs-c-symbol,
.fs-c-productPrice__main__joint {
  font-family: "Lato";
  letter-spacing: 0.05em;
  font-size: 30px;
  font-weight: 900;
  color: var(--color-primary);
}

.fs-c-productPrice--listed .fs-c-price__value {
  text-decoration: line-through;
}

.fs-c-productPrice--member {
  /* padding: 10px 20px;
  border-radius: 20px; */
  color: #00989e;
  margin-top: 0.5em;
}

.fs-c-productPrice__main__label {
  background-color: #e1f4f4; /* 淡いティール系でやさしく */
  border-radius: 4px;
  padding: 2px 6px;
  font-weight: 500;
}

/*.fs-c-productPrice--member .fs-c-price__currencyMark,
.fs-c-productPrice--member .fs-c-price__value {
    color: #fff;
}

.fs-c-productPostage {
    margin: 20px 0;
}

/*=======================サムネイル画像*/
.fs-c-productListItem__image__image {
  width: 100%;
  margin: 0;
  padding: 0;
}

/*=======================お気に入りボタン*/
.fs-c-button--addToWishList--icon,
.fs-c-button--removeFromWishList--icon {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

.fs-c-button--addToWishList--icon:before,
.fs-c-button--removeFromWishList--icon:before {
  font-family: "fs-icon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 3rem;
  content: "\e919";
}

.fs-c-button--addToWishList--icon:before {
  content: "\e919";
}

.fs-c-button--addToWishList--icon span,
.fs-c-button--removeFromWishList--icon span {
  display: none;
}

#fs_ProductDetails .fs-c-button--addToWishList--detail span,
#fs_ProductDetails .fs-c-button--removeFromWishList--detail span {
  display: inline;
  font-size: 0.8em;
  color: var(--color-primary);
}

@media (max-width: 800px) {
  .fs-l-main {
    width: 90%;
    margin: 0 auto 50px auto;
    padding: 0;
  }
}
/*------------------------------------------------寝具のこと、何でもお気軽にお問い合わせください。*/
.about_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 20px auto;
  gap: 20px;
}

.about_item {
  width: calc(60% - 10px);
}

.contact_item {
  width: calc(40% - 10px);
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
}

.contact_item .fs-c-inputInformation__button {
  margin: 0;
}

.about_tel {
  /* font-family: 'Lato'; */
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}

.about_tel span {
  color: #707070 !important;
}

.operation_time {
  text-align: center;
}

@media (max-width: 800px) {
  .about_item {
    width: 100%;
  }
  .contact_item {
    width: 100%;
  }
}
/*------------------------------------------------お知らせ*/
.news {
  max-width: 1200px;
  margin: 80px auto;
}

.news_content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.news_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}

.news_item {
  display: flex;
  align-items: center;
  gap: 30px;
}

.news_item a {
  display: flex;
  flex-direction: column;
}

.news_cat {
  width: 80px;
  text-align: center;
  background-color: #ddd;
  padding: 6px 20px;
  border-radius: 20px;
}

.resident_news {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 0;
  gap: 20px;
}

.resident_news li {
  list-style: none;
}

.resident_news a {
  text-decoration: none;
  display: block;
  border: solid 1px #000;
  color: black;
  padding: 10px 20px;
  border-radius: 10px;
}

.pass {
  padding: 0 20px;
}

.pass li {
  /* margin: 50px 0; */
}

.pass p {
  font-size: 16px;
}

@media (max-width: 800px) {
  .news_content {
    flex-direction: column;
  }
}
/*------------------------------------------------寝具を探す*/
.back_blue {
  margin: 0 calc(50% - 50vw);
  padding: 50px calc(50vw - 50%);
  background-color: #f8fcff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 800px) {
  .back_blue {
    padding: 20px calc(50vw - 50%);
  }
}
.pick_cate,
.pick_item-list {
  /* margin: 100px 0; */
}

.pick_cate {
  margin-top: 40px;
}

.pick_item-list {
  margin-bottom: 40px;
}

.pick_cate ul {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0;
  list-style: none;
}

.pickup {
  width: 100% !important;
  display: flex;
  flex-wrap: wrap;
  /* align-items: center; */
  gap: 20px 50px;
  /* margin-bottom: 10px; */
}

.pickup_txt {
  width: calc((100% - 50px) / 2);
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* padding-left: 50px; */
}

.pickup_txt h3 {
  position: static !important;
  filter: none !important;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  gap: 20px;
}

.pickup_txt h3 span > img {
  height: 50px;
}

.pickup_txt p {
  font-size: 16px;
}

.pickup_img {
  width: calc((100% - 50px) / 2);
}

.pickup_img img {
  border-radius: 20px;
}

.pick_cate .video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9比率 */
  height: 0;
  overflow: hidden;
}

.pick_cate .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.pick_cate li {
  /* width: calc((100% - 20px * 3) / 4); */
  position: relative;
}

.pick_cate .p_txt-area {
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 0, rgba(50, 50, 50, 0.8) 100%);
  border-radius: 20px 20px 0 0;
}

.pickup h3 {
  font-size: 22px;
}

.p_txt-area h3 {
  margin: 0;
  padding: 20px;
  color: #ffffff;
  font-size: 22px;
  filter: drop-shadow(0px 5px 8px rgba(0, 0, 0, 0.8));
}

@media (max-width: 800px) {
  .pick_cate,
  .pick_item-list {
    /* margin: 50px 0; */
  }
  .pickup_txt {
    gap: 10px;
  }
}
.graph {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
  /* margin-bottom: 40px; */
}

.graph_content {
  display: flex;
  gap: 0 10px;
  align-items: flex-start;
}

.graph_bar_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.graph_bar {
  height: 14px;
  border-radius: 9999px;
  background: #dddddd;
}

.emphasis {
  background-image: linear-gradient(-60deg, #bae3f9 0%, #a2d7dd 100%);
}

.pickup_detail {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 40px;
}

.pickup_detail_item {
  width: 33.3333333333%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pickup_detail_item img {
  width: 100%;
}

.pickup_detail_txt {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

@media (max-width: 1200px) {
  .pick_cate li {
    /* width: calc((100% - 20px * 1) / 2); */
  }
  .pick_cate h3 {
    font-size: 20px;
  }
}
@media (max-width: 800px) {
  .pickup h3 {
    font-size: 22px !important;
  }
  .pick_cate h3 {
    font-size: 4vw;
  }
  .pickup_txt,
  .pickup_img {
    width: 100%;
  }
  .pickup_txt {
    padding: 0;
  }
  .p_txt-area h3 {
    padding: 5vw;
  }
  .pickup_detail {
    flex-wrap: wrap;
    gap: 20px;
  }
  .pickup_detail_item {
    width: calc((100% - 20px) / 2);
  }
}
.pickup-item_recommend ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.pickup-item_recommend li {
  width: calc((100% - 90px) / 4);
}

.pickup-item_recommend a {
  text-decoration: none;
  color: #000;
  display: block;
  /* padding: 20px; */
  /* box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px; */
  border-radius: 20px;
}

.pickup-item_recommend img {
  width: 100%;
  border-radius: 10px;
}

.pickup-item_recommend h4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-weight: 700;
}

.pickup-item_recommend p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.pickup-item_recommend {
  margin-bottom: 80px;
}

@media (max-width: 1200px) {
  .pickup-item_recommend li {
    width: calc((100% - 60px) / 3);
  }
}
@media (max-width: 800px) {
  .pickup-item_recommend li {
    width: 200px !important;
    min-width: 200px !important;
  }
}
.concept_content {
  background-image: url("https://futonten.itembox.design/item/mot_line.png");
  background-size: cover;
  background-position: center;
  padding: 20px 10px 30px 10px;
  border-radius: 20px;
  margin: 10px auto;
  max-width: 550px;
}

.concept_content h2 {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.concept_wrap {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.concept_more {
  font-size: 14px;
  position: relative;
  top: 10px;
  text-decoration-line: underline;
}

@media (max-width: 800px) {
  .concept_content {
    background-image: url("https://futonten.itembox.design/item/mot_line.png");
    background-size: cover;
    background-position: center;
    padding: 15px 10px 30px 10px;
    margin: 10px auto;
  }
  .concept_content h2 {
    font-size: 20px;
  }
  .concept_wrap {
    flex-direction: column;
  }
  .concept_content .fs-c-button--primary {
    width: 200px;
  }
}
@media (max-width: 400px) {
  .logo {
    width: 170px;
  }
  .concept_more {
    font-size: 13px;
    position: relative;
    top: 0px;
  }
  .headline_area {
    font-size: 13px;
    letter-spacing: 0em;
  }
  .headline_small {
    font-size: 11px;
  }
}
.cat_list,
.keyword_list {
  max-width: 1300px;
  margin: 40px auto;
}

.cat_list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /*gap: 40px;*/
  padding: 0;
  list-style: none;
  overflow-x: scroll;
}
@media (max-width: 800px) {
  .cat_list ul {
    justify-content: center;
    gap: 20px;
  }
}

.cat_list ul li {
  /*---
    width: 80px;
    height: 80px;
    background-color: #f8fcff;
    border-radius: 50%;
  ---*/
}

.cat_list_item {
  width: calc(16.6666666667% - 40px);
  min-width: 80px;
}

.cat_list_item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-primary);
  text-align: center;
  text-decoration: underline;
}

.cat_list_item img {
  /*width: 90%;*/
}

.cat_list ul::-webkit-scrollbar,
.keyword_wrap::-webkit-scrollbar {
  height: 14px;
  margin: 0 10px;
  /* スクロールバーの高さ */
}

.cat_list ul::-webkit-scrollbar-thumb,
.keyword_wrap::-webkit-scrollbar-thumb {
  background: #dddddd;
  /* ツマミの色 */
  border-radius: 7px;
  /* ツマミ両端の丸み */
}

.cat_list ul::-webkit-scrollbar-track,
.keyword_wrap::-webkit-scrollbar-track {
  background: #ffffff;
  /* トラックの色 */
  border-radius: 7px;
  /* トラック両端の丸み */
}

.keyword_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem;
  padding: 0;
  list-style: none;
  overflow-x: scroll;
}

.cat_list h2,
.keyword_list h2 {
  font-size: 20px;
}

.keyword_wrap a {
  width: -moz-fit-content;
  width: fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  display: block;
  background-color: #f3f3f3;
  color: var(--color-primary);
  border-radius: 50px;
  padding: 1rem 1.4rem;
  /* text-decoration: underline; */
  white-space: nowrap;
}

@media (max-width: 800px) {
  .cat_list,
  .keyword_list {
    margin: 20px auto;
  }
  .keyword_wrap {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 10px;
  }
  .keyword_wrap a {
    margin: 10px 0;
  }
}
/*------------------------------------------------ブランドから探す・サイズから探す*/
/*.search_area {
display: flex;
flex-wrap: wrap;
gap: 20px;
margin-top: 50px;
}

.search {
width: calc((100% - 20px * 1) / 2);
}*/
.search .size_search {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.search .size_search a {
  display: block;
  padding: 10px 20px;
  font-weight: 700;
  color: #ffffff;
  background-color: #73c6c4;
  border-radius: 50px;
}

.search .brand_search {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.search .rich {
  gap: 50px !important;
}

.search .rich li {
  width: calc((100% - 50px) / 2) !important;
}

/* .brand_img {
    width: calc(30% - 20px);
} */
.brand_txt {
  width: 100%;
}

.brand_txt h3 {
  font-size: 22px;
}

.search .brand_search li {
  width: calc((100% - 140px) / 8);
}

@media (max-width: 800px) {
  .search {
    width: 100%;
  }
  .search .brand_search li {
    width: calc((100% - 20px) / 2);
  }
  .search .rich li {
    width: 100% !important;
  }
}
/*------------------------------------------------特集・ふとん屋さんの豆知識*/
.reading ul {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: scroll;
  gap: 20px;
  padding: 0;
  list-style: none;
}

.reading li,
.reading img {
  width: 400px;
  min-width: 400px;
}

.reading ul::-webkit-scrollbar {
  height: 14px;
  margin: 0 10px;
  /* スクロールバーの高さ */
}

.reading ul::-webkit-scrollbar-thumb {
  background: #dddddd;
  /* ツマミの色 */
  border-radius: 7px;
  /* ツマミ両端の丸み */
}

.reading ul::-webkit-scrollbar-track {
  background: #ffffff;
  /* トラックの色 */
  border-radius: 7px;
  /* トラック両端の丸み */
}

.reading_img {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 20px;
}
.reading_img img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  transition: scale 0.4s;
}

.reading a:hover img {
  scale: 1.15;
}

.reading_txt {
  padding: 20px 0;
  color: var(--color-primary);
}

.reading h3 {
  margin: 0;
  /* position: absolute; */
  top: 20px;
  left: 20px;
  right: 20px;
  font-size: 20px;
  /* filter: drop-shadow(0px 5px 8px rgba(0, 0, 0, 0.8)); */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reading-tt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 制限したい行数が3の場合 */
  overflow: hidden;
}
.reading-meta {
  display: flex;
  gap: 10px;
}
.reading-category {
  border: 1px solid #ccc;
  padding: 0px 6px;
  border-radius: 6px;
  display: inline-block;
}

@media (max-width: 800px) {
  .reading li,
  .reading img {
    width: 300px;
    min-width: 300px;
  }
}
/*------------------------------------------------実店舗について*/
.shopinfo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 100px;
  max-width: 1200px;
  margin: 80px auto;
}

.shopinfo_item {
  width: calc(50% - 50px);
}

.shopinfo_item img {
  border-radius: 20px;
}

@media (max-width: 800px) {
  .shopinfo_item {
    width: 100%;
  }
}
/*------------------------------------------------トップページタイトル装飾*/
#wp-tips h2, #wp-feature h2, .top_section h2, .review_title, .category_ranking_title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 40px 0 20px;
  padding-left: 0;
  text-align: center;
}

/*------------------------------------------------トップページレビュー*/
#review_display_wrap .fs-c-reviewBody {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

#review_display_wrap .fs-c-productName__name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

#review_display_wrap .fs-c-reviewList__item__info {
  margin: 1rem 0;
}

#review_display_wrap .fs-c-reviewInfo__reviewer {
  display: none;
}

/*------------------------------------------------フッター*/
footer {
  background-color: #f8fcff;
  color: #707070;
  font-size: 14px;
  padding-top: 100px;
}

footer a {
  color: #707070;
}

.footer_section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 10px 30px 50px 30px;
}

.footer_bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer_block {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer_item {
  width: calc((100% - 100px) / 6);
  display: flex;
  flex-direction: column;
}

.footer_txt {
  margin-bottom: 30px;
}

.order_flow {
  position: relative;
}

.order_flow .footer_item {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  width: calc((100% - 60px) / 4);
  z-index: 989;
}

/* .order_flow .step_bar:after {
    position: absolute;
    z-index: 988;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 90%;
    height: 10px;
    content: '';
    background-color: #73c6c4;
} */
.f_guide .footer_item {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  width: calc((100% - 40px) / 3);
}

.support {
  align-items: center;
}

.contact {
  width: calc(33.3333333333% - 20px);
}

.contact_content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #f3f3f3;
  padding: 30px;
  border-radius: 20px;
}

.contact_wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4f545a;
  text-decoration: none;
}

.contact_icon {
  font-size: 50px;
}

.contact_icon img {
  width: 50px;
}

.contact_text {
  width: calc(100% - 50px);
  display: flex;
  flex-direction: column;
}

.contact_title {
  font-family: "Lato";
  font-size: 2rem;
  font-weight: bold;
}

.tel {
  width: calc(50% - 20px);
}

.copyright {
  margin: 0;
  padding: 10px 0;
  text-align: center;
}

.footer_button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 90%;
  height: 50px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 100vh;
  text-decoration: none;
  background-color: #73c6c4;
  margin: auto auto 0 auto;
  transition: 0.3s;
}

.f_tel,
.f_mail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  margin: 10px 0;
}

.payment,
.payment-list_cart-bottom {
  list-style: none;
  padding: 0;
}

.payment ul,
.payment-list_cart-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.payment-list_cart-bottom {
  justify-content: center;
  padding-top: 10px;
  gap: 10px;
}

@media (max-width: 800px) {
  footer a {
    color: #707070;
  }
  .footer_section {
    width: 90%;
    padding: 10px 0px 50px 0px;
  }
  .footer_item {
    width: 100%;
  }
  .footer_button {
    width: 100%;
    margin: 20px auto;
  }
  .f_guide .footer_item {
    width: 100%;
  }
  .order_flow .footer_item {
    width: calc((100% - 20px) / 2);
  }
  .order_flow .step_bar:after {
    width: 30px;
    height: 90%;
  }
  .contact {
    text-align: left;
  }
  .f_tel,
  .f_mail {
    width: 100%;
  }
}
/*------------------------------------------------検索結果*/
/* 「会員価格」の検索結果画面にのみ表示（&tag=会員価格） */
#sr-member-sale {
  display: none;
}

/*=======================抽出条件*/
.fs-c-productList__controller {
  margin: 50px 0;
}

.fs-c-sortItems {
  position: relative;
  margin: 10px 0;
  /*text-align: right;*/
}

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

.fs-c-sortItems__list {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 10px;
  overflow-x: scroll;
  white-space: nowrap;
}

.fs-c-sortItems__list::-webkit-scrollbar {
  height: 14px;
  margin: 0 10px;
}

.fs-c-sortItems__list::-webkit-scrollbar-thumb {
  background: #dddddd;
  border-radius: 7px;
}

.fs-c-sortItems__list::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 7px;
}

.fs-c-sortItems__list__item {
  font-weight: 700;
  flex-shrink: 0;
  margin-bottom: 10px;
}

.fs-c-sortItems__list__item a {
  background-color: #f8fcff;
  padding: 10px 20px;
  border-radius: 50px;
  color: #73c6c4;
  display: block;
  text-decoration: none;
}

.fs-c-sortItems__list .is-active {
  background-color: #73c6c4;
  padding: 10px 20px;
  border-radius: 50px;
  color: #ffffff;
}

.fs-c-subgroup .fs-c-listControl {
  display: none;
}

.fs-c-productList__controller:first-child .fs-c-listControl .fs-c-pagination {
  display: none;
}

.fs-c-productList__controller:not(:first-child) .fs-c-sortItems {
  display: none;
}

/*=======================商品一覧*/
.fs-c-productList__list {
  display: flex;
  flex-wrap: wrap;
  /*margin-left: -8px;*/
  /*margin-right: -8px;*/
  gap: 30px;
}

.fs-c-productList__list article {
  width: calc((100% - 120px) / 5);
  /* padding: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 20px; */
}

.fs-c-productList__list__item {
  /*  box-shadow: 2px 2px 2px rgba(0,0,0,.1);  */
  padding: 5px;
}

@media (max-width: 1200px) {
  .fs-c-productList__list article {
    width: calc((100% - 60px) / 3);
  }
}
.fs-c-productListItem__image img {
  border-radius: 10px;
}

.fs-c-button--viewMoreImage {
  display: none;
}

.fs-c-productListItem__productName {
  font-size: 1em !important;
  margin: 5px 0;
}

.fs-c-productListItem__productName a {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  font-size: 1em;
}

.fs-c-productName__copy {
  color: var(--color-primary);
  letter-spacing: 0.05em;
  font-size: 0.9em;
  line-height: 1.5;
}

.fs-c-productName__name {
  color: black;
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.5;
}

.value_favo {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 10px;
  gap: 10px;
}

/* .fs-c-productListItem__prices {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
} */
.search_item_img {
  position: relative;
}

.fs-c-productListItem__outOfStock {
  position: absolute;
  top: 0;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 10px;
  background-color: rgba(32, 32, 32, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  pointer-events: none;
}

.fs-c-listControl__status {
  text-align: right;
}

.fs-c-productListItem__prices > .fs-c-productPrice > .fs-c-productPrice__main > .fs-c-productPrice__main__price > .fs-c-price__value {
  font-size: 22px;
}

.fs-c-productListItem__prices > .fs-c-productPrice > .fs-c-productPrice__addon > .fs-c-productPrice__addon__label {
  font-size: 10px;
}

.fs-c-productPrice__main__addon__label {
  font-size: 10px;
  color: var(--color-primary);
}

.fs-c-productListItem__prices > .fs-c-productPrice > .fs-c-productPrice__addon {
  margin-bottom: 2px;
}

/* .fs-c-productListItem__control {
    position: absolute;
    bottom: 5px;
    right: 5px;
}

.fs-c-productListItem__control .fs-c-button--addToWishList--icon:before {
    color: #FFF !important;
} */
@media (max-width: 800px) {
  .fs-c-productList__list {
    gap: 30px 10px;
  }
  .fs-c-productList__list article {
    width: calc((100% - 10px) / 2);
    /* flex-basis: 100%; */
  }
}
/*=======================ページネーション*/
.fs-c-listControl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  flex-grow: 2;
  padding: 0;
}

.fs-c-pagination {
  margin: 50px auto 0 auto;
  font-size: 18px;
  align-items: center;
}

.fs-c-pagination__item {
  padding: 0 10px;
}

.fs-c-pagination .is-active {
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background-color: #73c6c4;
  color: #ffffff;
  border-radius: 50%;
  padding: 0;
}

.fs-c-pagination__item--prev::before,
.fs-c-pagination__item--next::before {
  font-size: 1.4em;
}

.fs-c-productList__controller:not(:first-child) .fs-c-listControl .fs-c-listControl__status {
  display: none;
}

/*------------------------------------------------商品詳細ページ*/
.fs-c-variationAndActions {
  margin-top: 50px;
}

/*=======================パンくずリスト*/
.fs-c-breadcrumb {
  white-space: nowrap;
  /* 改行（行送り）を禁止させる */
  overflow-x: scroll;
  /* 横スクロールを可能にする */
}

.fs-c-breadcrumb::-webkit-scrollbar {
  height: 14px;
  margin: 0 10px;
  /* スクロールバーの高さ */
}

.fs-c-breadcrumb::-webkit-scrollbar-thumb {
  background: #dddddd;
  /* ツマミの色 */
  border-radius: 7px;
  /* ツマミ両端の丸み */
}

.fs-c-breadcrumb::-webkit-scrollbar-track {
  background: #ffffff;
  /* トラックの色 */
  border-radius: 7px;
  /* トラック両端の丸み */
}

/*=======================2カラム*/
.two_col {
  /* margin-top: 20px; */
  display: flex;
  gap: 50px;
}

/*=======================メイン画像カラム*/
.item_img {
  width: 50vw;
  position: sticky;
  position: -webkit-sticky;
  top: 70px;
  height: 100%;
}

.fs-c-productCarouselMainImage__carousel {
  width: 100% !important;
  max-width: 100%;
  /*max-height: 1000px;*/
}

.fs-c-productCarouselMainImage__image img {
  width: 595px !important;
  height: auto !important;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  border-radius: 20px;
}

.fs-c-slick .slick-prev,
.fs-c-slick .slick-next {
  border-radius: 8px;
}

.fs-c-photoswipe .pswp__caption__center {
  text-align: center;
}

@media (max-width: 1300px) {
  .fs-c-productCarouselMainImage__image img {
    width: calc(50vw - 54px) !important;
  }
}
/*=======================画像拡大ボタン*/
.fs-c-productCarouselMainImage__expandButton {
  width: 695px !important;
  text-align: right;
  margin-right: 10px;
  max-width: 100%;
  /*max-height: 1000px;*/
}

@media (max-width: 1500px) {
  .fs-c-productCarouselMainImage__expandButton {
    width: calc(50vw - 63px) !important;
  }
}
.fs-c-button--viewExtendedImage {
  background: none;
  border: none;
}

.fs-c-button--viewExtendedImage::before {
  font-family: "fs-icon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #707070;
  font-size: 2.2rem;
  content: "\e912";
}

.fs-c-button--viewExtendedImage span {
  display: none;
}

/*=======================画像一覧*/
.fs-c-productCarouselMainImage__thumbnailList {
  width: 695px !important;
  max-width: 100%;
  /*max-height: 1000px;*/
}

@media (max-width: 1500px) {
  .fs-c-productCarouselMainImage__thumbnailList {
    width: calc(50vw - 63px) !important;
  }
}
.fs-c-productCarouselMainImage__thumbnailList > .slick-active img {
  border: solid 2px #73c6c4;
  border-radius: 10px;
}

.fs-c-productCarouselMainImage__thumbnail img {
  border-radius: 10px;
}

.fs-c-productCarouselMainImage__image__caption {
  background-color: rgb(255, 255, 255);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  bottom: 15px;
  right: initial;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.fs-c-productCarouselMainImage__thumbnailList::-webkit-scrollbar {
  height: 14px;
  margin: 0 10px;
  /* スクロールバーの高さ */
}

.fs-c-productCarouselMainImage__thumbnailList::-webkit-scrollbar-thumb {
  background: #dddddd;
  /* ツマミの色 */
  border-radius: 7px;
  /* ツマミ両端の丸み */
}

.fs-c-productCarouselMainImage__thumbnailList::-webkit-scrollbar-track {
  background: #ffffff;
  /* トラックの色 */
  border-radius: 7px;
  /* トラック両端の丸み */
}

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

/*=======================商品情報カラム*/
.item_detail {
  width: 50vw;
}

/*=======================商品名*/
.fs-c-productNameHeading {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
}

.fs-c-productNameHeading__copy {
  font-size: 16px;
  color: var(--color-primary);
  font-weight: 500;
}

.fs-c-productNameHeading__name {
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 26px);
}

/*=======================商品マーク*/
.fs-c-productMarks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.fs-c-productMark {
  gap: 10px;
}

.item-icon {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  border-radius: 4px;
  padding: 0.4em 0.4em;
  margin: 0;
  border: 1px solid transparent;
  background-color: #fff;
  /*白抜きではなくベタ塗りver.    &__member-sale {
        background-color: #d96c6c;
        color: #fff;
        border-color: #d96c6c;

        &::before {
          mask-image: url('https://futonten.itembox.design/item/product/item-icon/tag.svg?t=20250602110046');
          background-color: #fff;
        }
      }*/
}
@media screen and (max-width: 800px) {
  .item-icon {
    font-size: 10px;
  }
}
.item-icon::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.item-icon__sale {
  color: #f29c9c;
  border-color: #f29c9c;
  font-weight: 700;
}
.item-icon__sale::before {
  -webkit-mask-image: url("https://futonten.itembox.design/item/product/item-icon/sale.svg?t=20250602110046");
          mask-image: url("https://futonten.itembox.design/item/product/item-icon/sale.svg?t=20250602110046");
}
.item-icon__same-day {
  color: #73c6c4;
  border-color: #73c6c4;
}
.item-icon__same-day::before {
  -webkit-mask-image: url("https://futonten.itembox.design/item/product/item-icon/truck.svg?t=20250602110046");
          mask-image: url("https://futonten.itembox.design/item/product/item-icon/truck.svg?t=20250602110046");
}
.item-icon__mail-delivery {
  color: #bae3f9;
  border-color: #bae3f9;
}
.item-icon__mail-delivery::before {
  -webkit-mask-image: url("https://futonten.itembox.design/item/product/item-icon/mail.svg?t=20250602110046");
          mask-image: url("https://futonten.itembox.design/item/product/item-icon/mail.svg?t=20250602110046");
}
.item-icon__member-sale {
  color: #d96c6c;
  border-color: #d96c6c;
}
.item-icon__member-sale::before {
  -webkit-mask-image: url("https://futonten.itembox.design/item/product/item-icon/tag.svg?t=20250602110046");
          mask-image: url("https://futonten.itembox.design/item/product/item-icon/tag.svg?t=20250602110046");
}
.item-icon__return-30days {
  color: #a2d7dd;
  border-color: #a2d7dd;
}
.item-icon__return-30days::before {
  -webkit-mask-image: url("https://futonten.itembox.design/item/product/item-icon/return.svg?t=20250602110046");
          mask-image: url("https://futonten.itembox.design/item/product/item-icon/return.svg?t=20250602110046");
}
.item-icon__original {
  color: #707070;
  border-color: #707070;
}
.item-icon__original::before {
  -webkit-mask-image: url("https://futonten.itembox.design/item/product/item-icon/house.svg?t=20250602110046");
          mask-image: url("https://futonten.itembox.design/item/product/item-icon/house.svg?t=20250602110046");
}
.item-icon__gift-bag {
  color: #f8c3cd;
  border-color: #f8c3cd;
}
.item-icon__gift-bag::before {
  -webkit-mask-image: url("https://futonten.itembox.design/item/product/item-icon/gift.svg?t=20250602110046");
          mask-image: url("https://futonten.itembox.design/item/product/item-icon/gift.svg?t=20250602110046");
}
.item-icon__bundle-deal {
  color: #a2d7dd;
  border-color: #a2d7dd;
}
.item-icon__bundle-deal::before {
  -webkit-mask-image: url("https://futonten.itembox.design/item/product/item-icon/bundle.svg?t=20250602110046");
          mask-image: url("https://futonten.itembox.design/item/product/item-icon/bundle.svg?t=20250602110046");
}

/*=======================販売期間*/
.fs-c-productSalesPeriod {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  gap: 5px 20px;
  background: #ddd;
  padding: 10px;
  justify-content: center;
  align-items: flex-start;
  font-weight: 500;
  flex-direction: row;
  align-content: center;
}

/* .fs-c-productSalesPeriod__label {
    width: 100%;
    margin-bottom: 5px;
} */
/*=======================プルダウン*/
.fs-c-variationSelect__select {
  margin: 10px 0;
}

/*=======================数量*/
.fs-c-quantity__select {
  height: 100%;
}

/*=======================お気に入りボタン*/
.fs-c-productQuantityAndWishlist {
  display: flex;
  flex-direction: row-reverse;
  justify-content: start;
  margin: 50px 0;
}

.fs-c-productQuantityAndWishlist__wishlist {
  margin-left: auto;
}

.fs-c-button--addToWishList--detail,
.fs-c-button--removeFromWishList--detail {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

.fs-c-button--addToWishList--detail:before,
.fs-c-button--removeFromWishList--detail:before {
  font-family: "fs-icon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 3rem;
  content: "\e919";
}

.fs-c-button--addToWishList--detail:before {
  content: "\e919";
}

.fs-c-button--removeFromWishList--detail:before {
  content: "\e931";
  color: #73c6c4 !important;
}

.fs-c-button--addToWishList--detail span,
.fs-c-button--removeFromWishList--detail span {
  display: none;
}

/*=======================サイズ一覧*/
.item-series_wrap {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.item-series ul,
.item-series_wrap ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin-top: 10px;
  margin-bottom: 30px;
}

.item-series li,
.item-series_wrap li {
  /* background-color: #dddddd; */
  border-radius: 10px;
  transition-duration: 0.2s;
  border: solid 1px #ccc;
  width: 150px;
}

.item-series a,
.item-series_wrap a {
  color: var(--color-primary);
  /* font-weight: 700; */
  text-decoration: none;
  display: block;
  padding: 20px;
  cursor: pointer;
  height: 100%;
}

.item-series li:hover,
.item-series_wrap li:hover {
  border: solid 2px #73c6c4;
}

.item-series li.active,
.item-series_wrap li.active {
  /* background-color: #73c6c4;
  color: #FFFFFF; */
  border: solid 2px #73c6c4;
  background-color: #f8fcff;
}

.item-series li.active a {
  /* color: #FFFFFF; */
}

.item-series_content ul {
  margin-top: 10px;
}

/*=======================バリエーション*/
.fs-c-variationMatrix__col {
  display: flex;
  flex-grow: 0 !important;
  flex-direction: column;
}

.fs-c-variationMatrix__lane {
  flex-grow: 1;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
}

.fs-c-variationMatrix__col,
.fs-c-variationMatrix__item {
  flex-basis: initial !important;
  width: 100px !important;
}

.fs-c-variationMatrix__item {
  flex-shrink: 0;
  display: block;
}

.fs-c-productChooseVariation__variationLabel {
  margin: 10px 0;
}

.fs-c-variationMatrix {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.fs-c-variationMatrix__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  flex-direction: column;
  border: solid 2px #707070;
  border-radius: 10px;
  padding: 20px;
}

.fs-c-variationMatrix__row__variationName {
  width: 100%;
}

.fs-c-variationMatrix__row__variationPanels,
.fs-c-variationMatrix {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.fs-c-variationMatrix__row__variationName {
  margin: 10px 0;
}

.fs-c-variationMatrix__panel {
  text-align: center;
  height: 100%;
}

.fs-c-variationMatrix__panel__label {
  font-size: 11px;
  text-align: left;
  margin: 0 auto;
}

.fs-c-variationMatrix--column li {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-direction: column;
  border: solid 2px #707070;
  border-radius: 10px;
  padding: 20px;
  width: 150px !important;
  text-align: center;
}

.color {
  display: block;
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  background-color: #dddddd;
  border: 4px solid rgb(255, 255, 255);
  border-radius: 50%;
  margin: auto auto 0 auto;
  transition-duration: 0.2s;
}

.color:hover,
.fs-c-productChooseVariation .active {
  border: solid 4px #73c6c4;
  transition-duration: 0.2s;
}

/*=======================カートに入れるボタン*/
.fs-c-button--addToCart--variation {
  color: #fff;
  background-color: #73c6c4;
  border: none;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 100vh;
}

.fs-c-button--addToCart--detail {
  width: 100% !important;
  height: 50px;
  color: #fff;
  font-weight: 700;
  background-color: #73c6c4;
  border: none;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 100vh;
  margin: 20px 0 !important;
  transition-duration: 0.5s;
}

.fs-c-button--addToCart--detail:hover {
  opacity: 0.5;
  transition-duration: 0.5s;
}

/*=======================在庫なし表示*/
.fs-c-productNotice {
  background-color: #dddddd;
  margin-bottom: 20px;
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  font-weight: 700;
}

/*=======================配送について*/
.ship_area {
  margin: 50px 0;
}

.ship_area h2 {
  font-size: 20px;
}

.ship_wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 20px;
  gap: 10px;
  justify-content: space-around;
  background-color: #f0f7f8;
  padding: 20px;
  border-radius: 10px;
}

.ship_item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* align-items: flex-start; */
  width: calc((100% - 20px) / 2.5);
  gap: 10px;
  /* padding: 5px; */
  /* text-align: center; */
}

.ship_img {
  /* margin-bottom: 10px; */
  display: flex;
  align-items: center;
  width: calc(30% - 5px);
}

.ship_txt {
  width: calc(70% - 5px);
}

.ship_txt h3 {
  margin: 0;
  font-size: 15px;
}

.ship_wrap a {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 1200px) {
  .ship_wrap {
    flex-direction: column;
    align-content: center;
    gap: 20px;
  }
  .ship_item {
    max-width: 200px;
    width: 100%;
  }
}
/*=======================お問い合わせボタン*/
.fs-c-button--inquiryAboutProduct {
  width: 100%;
  height: 50px;
  color: #000000;
  font-weight: 700;
  background-color: #dddddd;
  border: none;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 5px;
  margin: 20px 0;
}

/*=======================お問い合わせモーダル*/
.fs-c-modal__inner {
  width: 1000px;
  padding: 30px 50px;
  border-radius: 30px;
}

.fs-c-inquiryProduct {
  display: flex;
  gap: 10px;
}

.fs-c-inquiryMessage {
  margin-top: 10px;
}

.fs-c-inputTable--inModal {
  margin: 30px 0 0 0 !important;
}

.fs-c-modal__contents {
  padding: 0 !important;
}

.fs-c-inputTable--inModal > tbody > tr {
  padding: 8px 0 !important;
}

.fs-c-button--sendInquiry {
  width: 100%;
  height: 50px;
  color: #fff;
  font-weight: 700;
  background-color: #73c6c4;
  border: none;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 100vh;
  margin: 50px 0 20px 0;
  transition-duration: 0.5s;
}

.fs-c-button--sendInquiry:hover {
  opacity: 0.5;
}

.fs-c-modal__close::before {
  font-size: 2em;
}

.fs-c-checkbox__checkMark::before {
  left: 0;
}

/*=======================返品特約ボタン*/
.fs-c-returnedSpecialContract__link a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 50px;
  color: #000000;
  font-weight: 700;
  background-color: #dddddd;
  border: none;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 5px;
  margin: 0 0 20px 0;
  gap: 10px;
}

/*=======================商品詳細*/
.item-description {
  margin: 50px 0;
  padding: 20px;
  border: solid #dddddd 1px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fs-p-productDescription {
  margin: 20px 0;
}

.fs-p-productDescription table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}

.fs-p-productDescription th,
.fs-p-productDescription td {
  padding: 10px;
  border: solid 1px #cccccc;
  box-sizing: border-box;
}

.fs-p-productDescription tr td:nth-of-type(1) {
  background: #dddddd;
  width: 30%;
  font-weight: 400;
}

.fs-p-productDescription ul {
  margin: 0;
}

#spec_table {
  margin: 20px 0;
}

.description-column {
  /* margin: 30px 0; */
}

.description-column h2 {
  margin: 0;
}

.description-column h2,
#spec_table h2 {
  font-size: 16px !important;
}

/*=======================商品画像連続表示*/
.img_repetition {
  margin: 20px 0;
}

.img_repetition img {
  width: 800px;
}

.fs-c-productPlainImage {
  text-align: center;
}

.img_repetition .fs-c-breadcrumb {
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
}

.fs-c-productPlainImage--0 {
  display: none;
}

/*=======================動画*/
.movie_area {
  width: 100%;
  margin: 50px 0;
}

.movie_area video {
  width: 100%;
  max-width: 100%;
}

.movie {
  width: 100%;
  margin: 20px 0;
  aspect-ratio: 16/9;
}

.movie iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 800px) {
  .movie_area {
    width: 100%;
  }
}
/*=======================商品番号*/
.fs-c-productNumber {
  display: flex !important;
  line-height: 2.5;
  width: auto !important;
  /*justify-content: flex-end;*/
  margin-bottom: 30px;
}

.fs-c-productNumber__label {
  background-color: #f0f7f8;
  padding: 0 0 0 10px;
}

.fs-c-productNumber__number {
  background-color: #f0f7f8;
  padding: 0 10px;
}

.fs-c-productNumber__label:after {
  content: "|";
  margin: 0 0 0 10px;
}

/*=======================レビュー*/
.fs-c-productReview {
  background-color: #ffffff;
  margin: 100px 0;
  padding: 50px;
  border-radius: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.fs-c-productReview__aggregateRating,
.fs-c-aggregateRating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.fs-c-aggregateRating__rating {
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 10px;
}

.fs-c-aggregateRating__rating::before {
  display: none;
}

.fs-c-rating {
  align-items: center;
}

.fs-c-rating__stars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.fs-c-reviewStars::before {
  color: #f5c542;
  font-size: 1.2em;
}

.rating__value {
  font-weight: 600;
}

.fs-c-rating__value {
  font-family: "Lato";
  font-size: 40px;
  font-weight: 700;
}

.fs-c-aggregateRating__count {
  text-align: right;
}

.fs-c-reviewList__item__info {
  display: flex;
  flex-wrap: wrap;
}

.fs-c-reviewInfo__reviewer {
  width: 50%;
}

.fs-c-reviewInfo__date {
  width: 50%;
  text-align: right;
}

.fs-c-reviewInfo__date dt {
  display: none;
}

.fs-c-reviewList--productDescription {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  list-style: none;
  padding: 0;
}

.fs-c-reviewList--productDescription > .fs-c-reviewList__item {
  width: calc((100% - 40px) / 2);
}

/*=======================項目選択肢*/
.fs-c-productSelection__name {
  margin-top: 20px;
}

.fs-c-radio,
.fs-c-productSelection__field {
  width: 100%;
  margin: 10px 0 20px 0;
}

.fs-c-productSelection__field option {
  font-weight: 400;
}

.fs-c-radio__label {
  width: 100%;
  display: flex;
  gap: 3px;
  justify-content: initial;
  flex-grow: initial;
  position: initial;
  word-break: initial;
  border: solid 1px #707070;
  border-radius: 10px;
  padding: 20px;
  transition: 0.2s;
}

.fs-c-radio__label:hover {
  border: solid 2px #73c6c4;
}

.fs-c-radio__radio[type=radio]:checked + .fs-c-radio__label {
  border: solid 2px #73c6c4;
  background-color: #f8fcff;
}

/*=======================まとめ買い割引*/
.bundle_wrap {
  margin: 50px 0;
}

.bundle_container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.bundle_content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  background-color: #3aa1fb;
  padding: 10px 20px;
  border-radius: 10px;
  color: #ffffff;
}

.bundle_title {
  font-size: 20px;
  font-weight: bold;
}

.bundle_wrap .fs-c-price__currencyMark,
.bundle_wrap .fs-c-price__value {
  color: #ffffff;
}

/*=======================SEO対策用*/
.item_features_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  /* margin: 100px 0; */
}

.item_features {
  width: calc((100% - 40px) / 3);
}

.item_features img {
  width: 100%;
}

@media (max-width: 800px) {
  .item_features {
    width: 100%;
  }
}
@media (max-width: 800px) {
  /*=======================2カラム*/
  .two_col {
    /* margin-top: 20px; */
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  /*=======================メイン画像カラム*/
  .item_img {
    position: static;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  .fs-c-productCarouselMainImage__carousel {
    width: 100vw !important;
  }
  .fs-c-productCarouselMainImage__image img {
    width: 100vw !important;
    height: auto !important;
    margin: auto;
    border-radius: 0;
  }
  /*=======================画像拡大ボタン*/
  .fs-c-productCarouselMainImage__expandButton {
    width: 100vw !important;
    margin: 0 calc(50% - 50vw);
  }
  /*=======================画像一覧*/
  .fs-c-productCarouselMainImage__thumbnailList {
    width: 100vw !important;
    margin: 0 calc(50% - 50vw);
  }
  /*=======================商品情報カラム*/
  .item_detail {
    width: 100%;
  }
  .fs-c-variationMatrix {
    width: 100%;
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
  }
  /*=======================商品詳細*/
  .fs-p-productDescription tr td:nth-of-type(1),
  .fs-p-productDescription td {
    display: block;
    width: 100% !important;
    border-bottom: none !important;
  }
  .fs-p-productDescription tr:last-child {
    border-bottom: solid 1px #ccc;
  }
  /*=======================お問い合わせモーダル*/
  .fs-c-modal__inner {
    width: 90%;
    padding: 20px;
  }
  /*=======================レビュー*/
  .fs-c-reviewList--productDescription > .fs-c-reviewList__item {
    width: 100%;
  }
}
/*------------------------------------------------ログイン*/
.login {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.login_section,
.fs-c-newUsers {
  width: calc(50% - 25px);
  /* margin: 50px 0 100px 0 */
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login_content {
  background: #f3f3f3;
  padding: 24px;
  border-radius: 20px;
}

.login h2 {
  text-align: center;
}

.fs-c-inputTable {
  width: 100%;
  margin: 0;
}

.fs-c-inputTable tr {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 0;
}

.fs-c-inputTable__headerCell {
  text-align: left;
}

.fs-c-inputTable__headerCell {
  padding: 20px 0 5px 0;
}

.fs-c-inputTable__dataCell {
  padding: 0;
}

.fs-c-inputTable__dataCell input {
  height: 40px;
}

.fs-c-newUsers__message {
  /* text-align: center; */
  padding: 20px 0;
}

.fs-c-button--login {
  width: 100%;
  height: 50px;
  color: #fff;
  font-weight: 700;
  background-color: #73c6c4;
  border: none;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 100vh;
  margin: 50px 0 20px 0;
  text-align: center;
  transition-duration: 0.5s;
}

.fs-c-button--memberRegister {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 50px;
  color: #000000;
  font-size: 14px;
  font-weight: 700;
  border-radius: 100vh;
  text-decoration: none;
  background-color: #dddddd;
  margin: 20px auto !important;
  transition: 0.3s;
}

.fs-c-anotherLogin__button--amazon {
  margin: 0 auto;
}

.fs-c-inputInformation__link {
  text-align: right;
}

.fs-c-button--displayPassword,
.fs-c-button--hidePassword {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

.fs-c-button--particular::before {
  font-family: "fs-icon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #ccc;
  font-size: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.fs-c-button--removeFromWishList--icon:before {
  content: "\e931";
  color: #73c6c4;
}

.fs-c-button--displayPassword::before {
  content: "\e917";
}

.fs-c-button--hidePassword::before {
  content: "\e918";
}

@media (max-width: 800px) {
  .fs-c-fsLogin {
    width: 100%;
    margin: 0 auto;
  }
  .login_section,
  .fs-c-newUsers {
    width: 100%;
  }
  .login h2 {
    /* text-align: left; */
  }
}
/*------------------------------------------------会員登録*/
.member_registration {
  max-width: 800px;
  margin: 0 auto;
}

.fs-c-button--confirmRegister {
  width: 100%;
  height: 50px;
  color: #fff;
  font-weight: 700;
  background-color: #73c6c4;
  border: none;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 100vh;
  margin: 50px 0 20px 0;
  text-align: center;
  transition-duration: 0.5s;
}

@media (max-width: 800px) {
  .member_registration {
    width: 100%;
  }
}
/*Amazon*/
.fs-c-linkedAccountInfoField {
  margin: 50px 0;
  background-color: #dddddd;
  padding: 30px;
  border-radius: 20px;
}

/*------------------------------------------------カート*/
.fs-l-cart__contentsArea {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.cart_area {
  width: calc(100% - 420px);
}

.fs-c-totalAndActions {
  margin-top: 30px;
  width: 380px;
  height: 100%;
  position: sticky;
  position: -webkit-sticky;
  top: 140px;
}

.fs-c-cartTable {
  border-collapse: separate;
  border-spacing: 0 30px;
}

.fs-c-cartTable__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 30px;
}

.fs-c-cartTable thead {
  display: none;
}

.fs-c-cartTable td {
  border: none;
}

.fs-c-cartTable__dataCell--product {
  width: 50%;
}

.fs-c-cartTable th,
.fs-c-cartTable td {
  /* padding: 40px 20px; */
  /* 余白指定 */
}

.fs-c-cartTable__productName {
  font-size: 16px;
}

.fs-c-cartTable__product {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 10px;
}

.fs-c-cartTable__product > .fs-c-cartTable__productImage {
  padding-right: 0;
  width: 200px;
}

.fs-c-cartTable__productImage__image {
  width: 100% !important;
}

.fs-c-listedProductName__name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.fs-c-listedProductName__variation__choice,
.fs-c-listedProductName__selection {
  font-size: 14px;
}

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

.fs-c-price__price {
  align-items: center;
}

.fs-c-cartTable__productImage img {
  border-radius: 10px;
}

.fs-c-cartTable__actionButton {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
}

.fs-c-button--cancel--cart {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  position: relative;
  top: 3px;
}

.fs-c-cartTable__actionButton__container--buyItLater {
  display: none;
}

.fs-c-button--cancel--cart span {
  display: none;
}

.fs-c-button--cancel--cart::before {
  font-family: "fs-icon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  white-space: pre;
  font-size: 2.5rem;
  color: #000000;
  content: "\e911";
}

.fs-c-orderTotalTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-image: linear-gradient(-60deg, #bae3f9 0%, #a2d7dd 100%);
  border-radius: 30px;
  color: #ffffff;
}

.fs-c-orderTotalTable th,
.fs-c-orderTotalTable td {
  border: none;
}

.fs-c-button--purchaseHere {
  width: 100% !important;
}

/* .fs-c-orderTotalTable__count th {
    text-align: left !important;
} */
.fs-c-orderTotalTable__count td {
  font-family: "Lato";
  letter-spacing: 0.05em;
  font-size: 30px;
}

.fs-c-orderTotalTable__itemPriceSummary .fs-c-price__currencyMark,
.fs-c-orderTotalTable__itemPriceSummary .fs-c-price__value {
  color: #ffffff !important;
}

#fs-checkout-payHere-container {
  margin-top: 30px;
}

#fs-checkout-amazon-container {
  margin-top: 30px;
}

.fs-c-payWithAmazon__button {
  width: 100%;
}

.fs-c-cartTable__productImage__image {
  width: 100px;
}

.fs-c-cartPayment__button .fs-c-button--loginAndPurchase {
  width: 100%;
}

@media (max-width: 1100px) {
  .cart_area {
    width: 100%;
  }
  .fs-c-cartTable__row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: space-between;
    position: relative;
  }
  .fs-c-cartTable__dataCell--product {
    width: 100%;
  }
  .fs-c-cartTable__dataCell--quantity,
  .fs-c-cartTable__dataCell--subtotal {
    /* padding: 10px 30px 30px 30px !important; */
  }
  .fs-c-cartTable__dataCell--point, .fs-c-cartTable__dataCell--quantity, .fs-c-cartTable__dataCell--subtotal {
    text-align: left !important;
  }
  .fs-c-cartTable__dataCell--quantity {
    width: 100px;
  }
  .fs-c-cartTable th,
  .fs-c-cartTable td {
    /* padding: 30px 30px 10px 30px; */
    text-align: left;
    display: flex;
    flex-direction: column;
  }
  .fs-c-cartTable__dataCell--quantity::before,
  .fs-c-cartTable__dataCell--subtotal::before {
    font-size: 14px;
  }
  .fs-system-quantity-list {
    /*margin-top: 10px;*/
  }
  .fs-c-cartTable__dataCell--subtotal span {
    justify-content: flex-start;
  }
  .fs-c-cartTable__dataCell--action {
    position: absolute;
    top: 0;
    right: 0;
  }
  .fs-c-totalAndActions {
    position: unset;
    width: 100%;
    top: unset;
    bottom: 0;
    height: unset;
  }
  #fs-checkout-payHere-container {
    margin-top: 20px;
  }
  #fs-checkout-payHere-container p {
    display: none;
  }
  .fs-c-orderTotalTable {
    border-spacing: 30px 14px;
  }
  .fs-c-orderTotalTable__itemPriceSummary th {
    text-align: left !important;
  }
  .fs-c-cartTable__productImage {
    width: 40%;
  }
  .fs-c-cartTable__productImage img {
    width: 100%;
  }
  .fs-c-cartTable__productInfo {
    width: 60%;
  }
}
/*------------------------------------------------ご注文手続き*/
.fs-c-checkout-shippingParcel__productList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.fs-c-checkout-shippingParcel__product {
  width: 200px;
}

.checkout_main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

.fs-l-checkout__mainColumn {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.fs-l-checkout__sideColumn {
  width: 400px;
  height: 100%;
  position: sticky;
  position: -webkit-sticky;
  top: 140px;
}

.fs-c-confirmOrder__button {
  margin-top: 20px;
}

.fs-c-checkout-preview {
  margin: 0;
}

.fs-c-orderTotalTable__grandTotal span {
  color: #ffffff;
}

.fs-c-confirmOrder__button .fs-c-button--confirmOrder {
  width: 100%;
}

#fs-buyerInfo-container,
.addressInfo-container {
  width: 400px;
}

#fs-paymentList-container,
#fs-couponInfo-container,
#fs-deliveryInfo-container,
#fs-orderContents-container,
#fs-communicationInfo-container,
.fs-c-returnedSpecialContract {
  width: 100%;
}

.fs-c-checkout-destination__destination {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
}

.fs-c-checkout-destination__list {
  width: 100%;
}

.fs-c-button--change--small,
.fs-c-button--chooseDestination,
.fs-c-button--checkDiscount {
  width: 100px;
  color: #000000;
  font-weight: 700;
  background-color: #dddddd;
  border: none;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 100vh;
  margin: 20px 0 !important;
  transition-duration: 0.5s;
  display: block;
  text-align: center;
}

.fs-c-checkout-paymentMethod__creditCardRegistration {
  align-items: center;
}

.fs-c-button--inputCreditCardData,
.fs-c-button--useCoupon {
  color: #000000;
  font-weight: 700;
  background-color: #dddddd;
  border: none;
  padding: 10px;
  border-radius: 100vh;
  transition-duration: 0.5s;
  display: block;
  text-align: center;
}

.fs-c-button--chooseDestination {
  width: 200px;
}

.fs-c-checkout-couponList {
  padding: 0;
}

.fs-c-checkout-couponList__item {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row-reverse;
  gap: 10px;
  margin: 10px 0;
}

.fs-c-checkout-destination__control {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 0;
  gap: 10px;
}

.fs-c-checkout-addresseeList {
  list-style: none;
  padding: 0;
}

.fs-c-checkout-addressee {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: solid 1px #dddddd;
  gap: 10px;
}

.fs-c-buttonContainer--pair {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 20px 0;
}

.fs-c-button--addAddressee {
  width: 200px;
  height: 50px;
  color: #fff;
  font-weight: 700;
  background-color: #73c6c4;
  border: none;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 100vh;
  margin: 10px 0;
  text-align: center;
  transition-duration: 0.5s;
}

.fs-c-checkout-addressee__control {
  display: flex;
  gap: 10px;
}

.fs-c-button--setDestination,
.fs-c-button--edit {
  font-weight: 700;
  color: #73c6c4;
  border: none;
  background: none;
  padding: 0;
}

.fs-c-checkout-couponList__item .fs-c-price__currencyMark,
.fs-c-checkout-couponList__item .fs-c-price__value {
  all: initial;
  font-family: "Noto Sans JP", sans-serif;
}

.fs-c-checkout-couponList__control {
  width: 20%;
}

.fs-c-checkout-couponStatus {
  width: 100%;
}

.fs-c-checkout-couponList__description {
  width: 80%;
}

.fs-c-checkout-couponStatus.is-active {
  background: #73c6c4 !important;
}

.fs-c-checkout-multiDestination__info__body {
  align-items: flex-start;
  flex-direction: column;
}

.fs-c-checkout-multiDestination__info__control {
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

.fs-c-checkout-multiAddress .fs-c-button--delete {
  background-color: transparent;
}

.fs-c-checkout-multiAddress .fs-c-button--delete::before {
  all: initial;
}

.fs-c-checkout-multiAddress__button {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
}

.fs-c-button--viewAddresseeList,
.fs-c-button--next,
.fs-c-button--addDestination {
  width: 200px;
  height: 50px;
  color: #fff;
  font-weight: 700;
  background-color: #73c6c4;
  border: none;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 100vh;
  margin: 10px 0;
  text-align: center;
  transition-duration: 0.5s;
}

.fs-c-button--viewAddresseeList,
.fs-c-button--addAddressee {
  background-color: #dddddd !important;
  color: #000000 !important;
}

.fs-c-buttonContainer--next {
  margin-top: 20px;
  text-align: center;
}

.fs-c-modal--checkout-multiDestination-addresseeList .fs-c-checkout-addressee {
  justify-content: flex-start;
}

.fs-c-modal--checkout-multiDestination-addresseeList .fs-c-checkout-addressee__check {
  width: calc(10% - 10px);
}

.fs-c-modal--checkout-multiDestination-addresseeList .fs-c-checkout-addressee__data {
  width: calc(80% - 10px);
}

.fs-c-modal--checkout-multiDestination-addresseeList .fs-c-checkout-addressee__control {
  width: calc(10% - 10px);
}

.fs-c-checkout-deliveryMethod__option__setting dt {
  margin-top: 20px;
}

.fs-c-checkout-deliveryMethod__option__setting dd {
  margin: 10px 0;
}

@media (max-width: 1000px) {
  .fs-l-checkout__mainColumn {
    flex: none;
    width: 100%;
  }
  .fs-c-button--viewAddresseeList,
  .fs-c-button--next,
  .fs-c-button--addDestination {
    width: 100%;
  }
  .fs-c-modal--checkout-multiDestination-addresseeList .fs-c-checkout-addressee__check {
    width: 100%;
  }
  .fs-c-modal--checkout-multiDestination-addresseeList .fs-c-checkout-addressee__data {
    width: 100%;
  }
  .fs-c-modal--checkout-multiDestination-addresseeList .fs-c-checkout-addressee__control {
    width: 100%;
  }
  .fs-c-checkout-addressee__control {
    justify-content: space-around;
    width: 100%;
  }
}
@media (max-width: 1000px) {
  #fs-buyerInfo-container,
  .addressInfo-container,
  #fs-paymentList-container,
  #fs-couponInfo-container {
    width: 100%;
  }
  .fs-c-checkout-addressee__data {
    width: 100%;
  }
  .fs-c-button--addAddressee {
    width: 100%;
  }
  .fs-l-checkout__sideColumn {
    width: 100%;
  }
  .fs-c-button--purchaseHere,
  .fs-c-button--confirmOrder {
    /* position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90% !important;
    margin: 0 !important;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    z-index: 998; */
  }
}
.fs-c-creditCardIcons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  list-style: none;
  padding: 0;
}

/*------------------------------------------------レビュー*/
.review_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 20px;
}

.review_item {
  flex-basis: calc(30% - 25px);
  height: 100%;
  position: sticky;
  position: -webkit-sticky;
  top: 140px;
}

.fs-c-productReviewed__image img {
  width: 100%;
  border-radius: 20px;
}

.fs-c-productReviewed__name {
  margin: 8px 0 10px 0;
}

.fs-c-productReviewed__name a {
  font-size: 18px;
}

.review_list {
  flex-basis: calc(70% - 25px);
  padding: 50px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 20px;
}

.fs-c-reviewList {
  list-style: none;
  padding: 0;
}

.fs-c-reviewList__item {
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .review_item,
  .review_list {
    flex-basis: 100%;
  }
  .review_item {
    height: initial;
    position: static;
  }
}
/*------------------------------------------------レビューページ*/
#reviewAll_wrap .fs-c-pagination {
  margin: 20px auto;
}
#reviewAll_wrap .fs-c-reviewList {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #f3f3f3;
  margin-bottom: 20px;
}
#reviewAll_wrap .fs-c-reviewList__item {
  width: 50%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f3f3f3;
  /*      &::after {
          content: "";
          clear: both;
          display: block;
        }*/
}
@media screen and (max-width: 800px) {
  #reviewAll_wrap .fs-c-reviewList__item {
    width: 100%;
  }
}
#reviewAll_wrap .fs-c-reviewList__item:nth-of-type(2n-1) {
  padding-right: 25px;
}
@media screen and (max-width: 800px) {
  #reviewAll_wrap .fs-c-reviewList__item:nth-of-type(2n-1) {
    padding-right: 0;
  }
}
#reviewAll_wrap .fs-c-reviewList__item:nth-of-type(2n) {
  padding-left: 25px;
}
@media screen and (max-width: 800px) {
  #reviewAll_wrap .fs-c-reviewList__item:nth-of-type(2n) {
    padding-left: 0;
  }
}
#reviewAll_wrap .fs-c-reviewList__item .fs-c-reviewProduct__image {
  width: calc(40% - 30px);
  margin-right: 30px;
  float: left;
  margin-bottom: 1em;
}
@media screen and (max-width: 800px) {
  #reviewAll_wrap .fs-c-reviewList__item .fs-c-reviewProduct__image {
    width: 100%;
  }
}
#reviewAll_wrap .fs-c-reviewList__item .fs-c-reviewProduct__image .fs-c-reviwewProduct__image__image {
  width: 100%;
  border-radius: 20px;
}
#reviewAll_wrap .fs-c-reviewList__item .fs-c-reviewProduct__info {
  float: left;
  width: 60%;
}
@media screen and (max-width: 800px) {
  #reviewAll_wrap .fs-c-reviewList__item .fs-c-reviewProduct__info {
    width: 100%;
  }
}
#reviewAll_wrap .fs-c-reviewList__item__info {
  float: left;
  height: -moz-fit-content;
  height: fit-content;
  width: 60%;
}
@media screen and (max-width: 800px) {
  #reviewAll_wrap .fs-c-reviewList__item__info {
    width: 100%;
  }
}
#reviewAll_wrap .fs-c-reviewList__item__info .fs-c-reviewRating {
  width: 100%;
  font-size: 1.2em;
}
#reviewAll_wrap .fs-c-reviewList__item__info .fs-c-reviewInfo__reviewer {
  width: calc(100% - 6em);
}
#reviewAll_wrap .fs-c-reviewList__item__info .fs-c-reviewInfo__date {
  width: 6em;
}
#reviewAll_wrap .fs-c-reviewList__item__info::after {
  content: "";
  clear: both;
  display: block;
}
#reviewAll_wrap .fs-c-reviewList__item__body {
  clear: both;
  width: 100%;
  background-color: #f8fcff;
  padding: 1em 2em;
  border-radius: 20px;
  margin-top: 1em;
}
#reviewAll_wrap .fs-c-productName {
  margin: 8px 0 10px 0;
  font-size: 18px;
}

/*------------------------------------------------レビューを書く*/
.fs-c-button--submitReview {
  width: 100%;
  height: 50px;
  color: #fff;
  font-weight: 700;
  background-color: #73c6c4;
  border: none;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 100vh;
  margin: 50px 0 20px 0;
  text-align: center;
  transition-duration: 0.5s;
}

.fs-c-inputInformation__button {
  text-align: center;
}

/*------------------------------------------------マイページ*/
.fs-c-accountService {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  grid-gap: 30px;
  list-style: none;
  padding: 0;
}

.fs-c-accountService__page {
  text-align: center;
  background-color: #ffffff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 20px;
}

.fs-c-accountService__pageLink {
  display: block;
  height: 100%;
  color: #73c6c4;
  font-weight: 700;
  text-decoration: none;
}

.fs-c-accountService__pageLink__label {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.fs-c-string::before {
  font-family: "fs-icon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  white-space: pre;
  font-size: 5rem;
  color: #73c6c4;
}

.fs-c-accountService__page--couponList .fs-c-string::before {
  content: "\e900\a";
}

.fs-c-accountService__page--wishList .fs-c-string::before {
  content: "\e901\a";
}

.fs-c-accountService__page--orderHistoryList .fs-c-string::before {
  content: "\e902\a";
}

.fs-c-accountService__page--accountReviews .fs-c-string::before {
  content: "\e904\a";
}

.fs-c-accountService__page--addressbook .fs-c-string::before {
  content: "\e906\a";
}

.fs-c-accountService__page--accountPassword .fs-c-string::before {
  content: "\e908\a";
}

.fs-c-accountService__page--accountSettingsModify .fs-c-string::before {
  content: "\e909\a";
}

.fs-c-accountService__page--accountDelete .fs-c-string::before {
  content: "\e924\a";
}

.fs-c-buttonContainer--myPageTop {
  margin: 50px 0 0 0;
}

.fs-c-noResultMessage__title {
  text-align: center;
  font-size: 20px;
  margin: 50px;
}

@media (max-width: 800px) {
  .fs-c-accountService {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px 200px;
    grid-gap: 20px;
  }
}
/*=======================フォームエリア*/
.form_area {
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 800px) {
  .form_area {
    width: 100%;
  }
}
/*=======================お気に入り*/
.fs-c-button--viewProductDetail {
  display: none;
}

.fs-c-wishlistProduct {
  padding: 50px 0;
}

/*=======================お届け先リスト*/
.fs-c-addressBookList__list {
  width: 100%;
}

.fs-c-addressBookList__list tr {
  width: 100%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin: 50px 0;
  padding: 50px;
  border-radius: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.fs-c-addressBookList__list tr {
  border-bottom: 1px solid #dddddd;
}

.fs-c-addressBookList__list td {
  padding: 14px 0;
  width: 33.3333333333%;
}

.fs-c-addressBookList__list ruby {
  font-weight: 700;
  font-size: 20px;
}

.fs-c-buttonContainer--deleteChange {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fs-c-addressBookList__addButton {
  margin-bottom: 30px;
}

.fs-c-button--changeInfomation,
.fs-c-button--delete,
.fs-c-button--addToAddressbook,
.fs-c-button--primary,
.fs-c-button--confirmDelete,
.fs-c-button--cancel,
.fs-c-button--unregisteredUserPurchase {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
  height: 50px;
  font-weight: 700;
  border: none;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 100vh;
  text-align: center;
  transition-duration: 0.5s;
}

.fs-c-button--changeInfomation {
  width: 45%;
  color: #ffffff;
  background-color: #73c6c4;
}

.fs-c-addressBookList__form .fs-c-button--delete {
  width: 45%;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  color: #000000;
  background-color: #dddddd;
}

.fs-c-button--addToAddressbook {
  width: 200px;
  color: #ffffff;
  background-color: #73c6c4;
}

.fs-c-inputInformation__button {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 20px 0;
}

.fs-c-button--primary {
  width: 200px;
  color: #ffffff;
  background-color: #73c6c4;
  margin: 10px 0;
}

.fs-c-button--unregisteredUserPurchase {
  width: 100%;
  color: #000000;
  background-color: #dddddd;
  margin: 10px 0;
}

.fs-c-button--cancel {
  width: 200px;
  color: #000000;
  background-color: #dddddd;
  margin: 10px 0;
}

.fs-c-button--changeInfomation::before,
.fs-c-button--delete::before,
.fs-c-button--addToAddressbook:before {
  font-family: "fs-icon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  white-space: pre;
  font-size: 3rem;
}

.fs-c-button--changeInfomation::before {
  content: "\e928";
  color: #ffffff;
}

.fs-c-button--delete::before {
  content: "\e911";
}

.fs-c-button--addToAddressbook:before {
  content: "\e92a";
  color: #ffffff;
}

@media (max-width: 800px) {
  .fs-c-button--primary,
  .fs-c-button--cancel {
    width: 100%;
  }
  .fs-c-addressBookList__list tr {
    align-items: nomal;
  }
  .fs-c-addressBookList__list td {
    width: 100%;
  }
}
/*=======================クーポン情報*/
.fs-c-couponList__item {
  width: 100%;
  margin: 80px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: #000000;
}

.fs-c-coupon__info {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 20px;
  gap: 20px 0;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background-image: linear-gradient(-60deg, #ff5858 0%, #f09819 100%);
  padding: 40px;
  border-radius: 30px;
  color: #ffffff;
  font-weight: 500;
}

.fs-c-coupon__name {
  width: 40%;
  text-align: center;
}

.fs-c-couponName__name {
  font-size: 18px;
}

.fs-c-couponName__discount span {
  font-family: "lato";
  font-size: 60px;
  color: #ffffff;
}

.fs-c-couponName__discount__offLabel {
  margin-left: 5px;
  font-family: "lato";
  font-size: 38px !important;
  color: #ffffff;
}

.fs-c-coupon__description {
  width: 60%;
}

.fs-c-couponExpiration__list__item,
.fs-c-couponAppliedCondition__list__item {
  margin: 10px 0;
}

.fs-c-couponAppliedCondition__list__item > .fs-c-price--inline,
.fs-c-couponAppliedCondition__list__item > .fs-c-price--inline span {
  all: initial;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.fs-c-productListCarousel__list .slick-track {
  margin: 20px !important;
}

.fs-c-productListCarousel__list__item {
  width: 300px !important;
  margin: 10px;
  padding: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 20px;
}

.fs-c-productListCarousel__list__item .fs-c-productPrice {
  margin: 20px 0;
}

.fs-c-productListCarousel {
  position: relative;
}

.fs-c-productListCarousel__ctrl--prev,
.fs-c-productListCarousel__ctrl--next {
  position: absolute;
  top: auto;
  z-index: 997;
}

.fs-c-productListCarousel__ctrl--prev {
  left: 0;
}

.fs-c-productListCarousel__ctrl--next {
  right: 0;
}

.fs-c-button--carousel--prev::before,
.fs-c-button--carousel--next::before {
  content: "\e90c";
  cursor: pointer;
  font-family: "fs-icon";
  color: #707070;
  font-size: 40px;
  line-height: 1;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fs-c-button--carousel--prev::before {
  content: "\e90b";
}

.fs-c-button--carousel--next::before {
  content: "\e90c";
}

.fs-c-button--carousel--prev .fs-c-button__label,
.fs-c-button--carousel--next .fs-c-button__label {
  display: none;
}

@media (max-width: 800px) {
  .fs-c-coupon__name {
    width: 100%;
    text-align: left;
  }
  .fs-c-coupon__description {
    width: 100%;
  }
}
/*=======================注文履歴*/
.fs-c-orderHistoryItem__orderInfo__info {
  display: flex;
  justify-content: space-between;
}

.fs-c-orderHistory {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 50px 0;
}

.fs-c-orderHistoryItem {
  width: 100%;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 50px;
}

.fs-c-orderHistoryItem img {
  border-radius: 10px;
}

.fs-c-orderHistoryItem__body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.fs-c-orderHistoryItem__product {
  width: calc((100% - 120px) / 5);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
}

.fs-c-orderHistoryItem__deliveryInfo dd {
  margin: 0;
}

.fs-c-listedOptionPrice {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.fs-c-buttonContainer--viewOrderHistoryDetail {
  margin: 20px 0;
}

@media (max-width: 1200px) {
  .fs-c-orderHistoryItem__product {
    width: calc((100% - 90px) / 4);
  }
}
@media (max-width: 800px) {
  .fs-c-orderHistoryItem__product {
    width: 100%;
  }
}
/*注文履歴詳細*/
.fs-c-orderDetail__addresseeInfo {
  padding: 50px 0;
}

.fs-c-orderPerAddressee,
.fs-c-orderDetail__orderInfo {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
}

.fs-c-orderPerAddressee .fs-c-orderPerAddressee__heading,
.fs-c-orderDetail__orderInfo .fs-c-orderDetailInfo__heading {
  width: 100%;
}

.fs-c-orderPerAddressee .fs-c-orderPerAddressee__addressee,
.fs-c-orderPerAddressee .fs-c-orderPerAddressee__cartTable,
.fs-c-orderDetail__orderInfo .fs-c-orderDetailInfo__cartTable {
  width: calc(100% - 430px);
}

.fs-c-orderPerAddressee .fs-c-orderPerAddressee__deliveryInfoList,
.fs-c-orderPerAddressee .fs-c-orderPerAddressee__orderDeliveryInfo,
.fs-c-orderDetail__orderInfo .fs-c-orderDetailInfo__orderTotal {
  width: 400px;
}

.fs-c-orderPerAddressee .fs-c-orderTotalTable,
.fs-c-orderDetail__orderInfo .fs-c-orderTotalTable {
  margin: 30px 0;
}

.fs-c-orderPerAddressee .fs-c-orderTotalTable .fs-c-price__currencyMark,
.fs-c-orderPerAddressee .fs-c-orderTotalTable .fs-c-price__value {
  color: #ffffff;
}

.fs-c-orderPerAddressee dt {
  background-color: #dddddd;
}

.fs-c-orderDetailList,
.fs-c-orderPerAddressee__addressee,
.fs-c-orderHistoryItem__deliveryInfo {
  display: flex;
  flex-wrap: wrap;
  border-left: 1px solid #ccc;
  /* 各セルの右の線。テーブルの右の線も補える。 */
  border-right: 1px solid #ccc;
  /* 各セルの右の線。テーブルの右の線も補える。 */
  border-top: 1px solid #ccc;
  /* 各セルの右の線。テーブルの右の線も補える。 */
}

.fs-c-orderDetailList dt,
.fs-c-orderPerAddressee__addressee dt,
.fs-c-orderHistoryItem__deliveryInfo dt {
  background-color: #dddddd;
  border-right: 1px solid #ccc;
  /* 各セルの右の線。テーブルの右の線も補える。 */
  border-bottom: 1px solid #ccc;
  /* 各セルの右の線。テーブルの右の線も補える。 */
  padding: 4px;
  width: 200px;
}

.fs-c-orderHistoryItem__deliveryInfo dt {
  width: 100px;
}

.fs-c-orderDetailList dd,
.fs-c-orderPerAddressee__addressee dd,
.fs-c-orderHistoryItem__deliveryInfo dd {
  border-bottom: 1px solid #ccc;
  /* 各セルの右の線。テーブルの右の線も補える。 */
  margin: 0;
  padding: 4px;
  width: calc(100% - 200px);
}

.fs-c-orderHistoryItem__deliveryInfo dd {
  width: calc(100% - 100px);
}

.fs-c-orderPaymentTable {
  width: 100%;
}

.fs-c-orderPaymentTable th {
  width: 200px;
  text-align: left;
  background-color: #dddddd;
}

.fs-c-orderPaymentTable td {
  width: calc(100% - 200px);
}

.fs-c-cartTable__dataCell--quantity {
  font-size: 20px;
}

.fs-c-buttonContainer--back {
  margin-top: 20px;
}

@media (max-width: 800px) {
  .fs-c-orderPerAddressee .fs-c-orderPerAddressee__addressee,
  .fs-c-orderPerAddressee .fs-c-orderPerAddressee__cartTable,
  .fs-c-orderDetail__orderInfo .fs-c-orderDetailInfo__cartTable {
    width: 100%;
  }
  .fs-c-orderPerAddressee .fs-c-orderPerAddressee__deliveryInfoList,
  .fs-c-orderPerAddressee .fs-c-orderPerAddressee__orderDeliveryInfo,
  .fs-c-orderDetail__orderInfo .fs-c-orderDetailInfo__orderTotal {
    width: 100%;
  }
  .fs-c-orderTotalTable {
    margin: 0 0 30px 0 !important;
  }
  .fs-c-orderDetailList dt,
  .fs-c-orderPerAddressee__addressee dt {
    border-right: none;
    width: 100%;
  }
  .fs-c-orderDetailList dd,
  .fs-c-orderPerAddressee__addressee dd {
    width: 100%;
  }
  .fs-c-orderPaymentTable tr {
    display: flex;
    flex-wrap: wrap;
  }
  .fs-c-orderPaymentTable th {
    width: 100%;
    border-bottom: none;
  }
  .fs-c-orderPaymentTable td {
    width: 100%;
  }
  .fs-c-orderPerAddressee tbody {
    border-collapse: collapse;
    border-spacing: 0 0;
  }
  .fs-c-orderPerAddressee {
    padding: 50px 0;
  }
}
@media (max-width: 1100px) {
  .fs-c-cartTable__dataCell--review {
    width: 100%;
    padding: 0 30px 30px 30px !important;
  }
}
/*------------------------------------------------カテゴリページ*/
.fs-c-subgroupList {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  gap: 20px;
}

.fs-c-subgroupList li {
  width: calc((100% - 60px) / 4);
  height: 100px;
  background: #f8fcff;
  border-radius: 20px;
}

.fs-c-subgroupList a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 2vw;
  font-weight: 700;
}

@media (max-width: 800px) {
  .fs-c-subgroupList li {
    width: calc((100% - 20px) / 2);
  }
}
/*------------------------------------------------ガイドページ*/
.guide {
  max-width: 900px;
  margin: 0 auto;
}

.guide li {
  margin: 10px 0;
}

.content {
  margin: 100px 0;
}

.guide_section {
  margin: 50px 0;
}

h2,
h3 {
  font-weight: 700;
}

.guide b {
  font-weight: 500;
}

hr {
  border-color: #dddddd;
  border-bottom: none;
}

@media (max-width: 800px) {
  .guide {
    width: 100%;
  }
}
.guide_table {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border: solid 1px #cccccc;
}

.guide_table dt {
  width: 20%;
  background-color: #dddddd;
  padding: 10px;
  font-weight: 700;
  border-bottom: 1px solid #cccccc;
}

.guide_table dt:last-of-type {
  border-bottom: none;
}

.guide_table dd {
  width: 80%;
  margin: 0;
  padding: 10px;
  border-bottom: 1px solid #cccccc;
}

.guide_table dd:last-child {
  border-bottom: none;
}

.guide_table ul {
  margin: 0;
}

@media (max-width: 800px) {
  .guide_table dt,
  .guide_table dd {
    width: 100%;
  }
}
.shop_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.shop_item {
  width: calc((100% - 40px) / 3);
  background-color: #ffffff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 20px;
  padding: 20px;
}

.shop_item img {
  border-radius: 10px;
}

@media (max-width: 800px) {
  .shop_item {
    width: 100%;
  }
}
.policy_item {
  margin: 60px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background-color: #ffffff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 20px;
  padding: 40px;
}

.policy_item ol {
  padding-left: 15px;
}

.policy_item li {
  padding-bottom: 10px;
}

.policy_item h3 {
  width: calc(30% - 10px);
}

.policy_txt {
  width: calc(70% - 10px);
}

@media (max-width: 800px) {
  .policy_item h3,
  .policy_txt {
    width: 100%;
  }
}
.wrap_list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

.wrap_list li {
  margin-left: 40px;
}

/*------------------------------------------------ふとん屋さんの豆知識*/
.tips_content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
}

.head_img {
  margin-bottom: 30px;
}

.tips_content img {
  border-radius: 20px;
}

.content-menu {
  background-color: #dddddd;
  border-radius: 20px;
  margin-top: 30px;
  padding: 50px;
}

.menu_title {
  font-size: 22px;
  font-weight: 700;
}

.content-menu ul {
  padding-left: 30px;
}

.content-menu li {
  margin: 10px 0;
}

.content-menu a {
  font-size: 18px;
  color: #000000;
}

.tips_content {
  margin-top: -100px;
  padding-top: 100px;
}

.tips_section {
  /* margin-top: -50px;
  padding-top: 100px; */
  margin: 50px 0;
}

.column {
  padding: 20px 0;
}

.tips_productList {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  list-style: none;
}

.tips_productList-item {
  width: calc((100% - 40px) / 3);
}

.tips_productList-item a {
  display: block;
  padding: 20px;
  border-radius: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.tips_productList-item img {
  border-radius: 10px;
}

.item-text {
  margin-top: 11px;
}

.tips_content dd {
  margin: 0;
}

@media (max-width: 800px) {
  .tips_content {
    width: 100%;
    margin-top: -150px;
    padding-top: 150px;
  }
  .tips_section {
    /* margin-top: -100px;
    padding-top: 150px; */
  }
  .tips_productList-item {
    width: 100%;
  }
}
.pickup-item_recommend ul {
  flex-wrap: nowrap;
  overflow-x: scroll;
  gap: 20px;
}

.pickup-item_recommend li {
  width: 300px;
  min-width: 300px;
  margin: 30px 0;
}

/* .pickup-item_recommend li:first-child {
        margin-left: 30px;
    }

    .pickup-item_recommend li:last-of-type {
        margin-right: 30px;
    } */
.pickup-item_recommend ul::-webkit-scrollbar {
  height: 14px;
  margin: 0 10px;
  /* スクロールバーの高さ */
}

.pickup-item_recommend ul::-webkit-scrollbar-thumb {
  background: #dddddd;
  /* ツマミの色 */
  border-radius: 7px;
  /* ツマミ両端の丸み */
}

.pickup-item_recommend ul::-webkit-scrollbar-track {
  background: #ffffff;
  /* トラックの色 */
  border-radius: 7px;
  /* トラック両端の丸み */
}

@media (max-width: 800px) {
  /* .pickup-item_recommend ul {
      width: 100vw;
      margin-left: calc(-50vw + 50%);
      margin-right: calc(-50vw + 50%);
  } */
}
/*------------------------------------------------闇市*/
.password_container {
  margin: 0 auto;
  max-width: 800px;
  padding: 100px 0;
}

.fs-c-inputInformation__message {
  margin-bottom: 20px;
}

/*------------------------------------------------WP商品リンク*/
.item_link_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.item_link a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
  border-radius: 20px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.item_link_img {
  width: 140px;
}

.item_link_img img {
  display: block;
  width: 100%;
  border-radius: 15px;
}

.item_link_txt {
  width: calc(100% - 140px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.item_link_txt_title {
  font-weight: 700;
}

@media (max-width: 500px) {
  .item_link_img {
    /* width: 600px; */
  }
  .item_link_txt_title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }
  .item_link_txt_desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
  }
}
/*---レビューバナーPC（2024/08/19）--------------------------------*/
#goReview {
  position: fixed;
  top: 100px;
  right: 0;
  z-index: 999;
}

#goReview p {
  margin: 0;
  padding: 0;
  position: absolute;
  right: -155px;
  width: 250px;
  height: 160px;
  transition: all 0.3s;
}

#goReview p:hover {
  right: 0;
}

#goReview a:hover {
  opacity: 1 !important;
}

#goReviewSP {
  margin: 50px 0;
  text-align: center;
}
#goReviewSP img {
  width: 100%;
}
#goReviewSP a {
  text-decoration-line: underline;
}

/*SP画面非表示*/
@media (max-width: 800px) {
  #goReview {
    display: none;
  }
}
/*PC画面非表示*/
@media (min-width: 800px) {
  #goReviewSP {
    display: none;
  }
}
/*---SNS固定メニュー-------------------------*/
#sns-pop {
  position: fixed;
  left: 0px;
  bottom: 0px;
  z-index: 997;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  padding: 8px;
  border-radius: 0 10px 0 0;
  gap: 6px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 800px) {
  #sns-pop {
    right: 0;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }
}

.toggleButton {
  display: none;
  z-index: 999;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 30px;
  height: 30px;
  background-color: #73c6c4;
  border-radius: 50vh;
  transition: 0.5s;
  flex-shrink: 0;
  position: relative;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .toggleButton {
    display: flex;
  }
}

.toggleButton span {
  width: 0px;
  height: 0px;
  visibility: hidden;
  content-visibility: hidden;
}

.toggleButton.is-hidden {
  right: 0px;
  left: 0px;
  top: -30px;
}
@media screen and (max-width: 800px) {
  .toggleButton.is-hidden {
    right: auto;
    left: auto;
    top: auto;
  }
}

/* ボタンの横線（-） */
.toggleButton::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 25%;
  width: 50%;
  height: 2px;
  background-color: #ffffff;
  transform: translateY(-50%);
  transition: opacity 0.3s;
}

/* ボタンの縦線（+の追加部分） */
.toggleButton::after {
  content: "";
  position: absolute;
  top: 25%;
  left: 50%;
  width: 2px;
  height: 50%;
  background-color: #ffffff;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.toggleButton.is-hidden::after {
  opacity: 1;
}

.sns-pop__item {
  border-radius: 10px;
  padding: 6px;
  border-width: 1px;
  border-style: solid;
  background-color: #ffffff;
}

.InstagramPR {
  border-color: #ff0069;
}

.LINEfaq {
  border-color: #06C755;
}

.sns-pop__item.is-hidden {
  /* アクティブ時のスタイル */
  padding: 0;
  border-width: 0;
  border-color: transparent;
}

.sns-pop__item__wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4f545a;
}

.sns-pop__item__wrap > img {
  width: 40px;
  transition: 0.5s;
}

.sns-pop__item.is-hidden > .sns-pop__item__wrap > img {
  width: 34px;
}

.sns-pop__text {
  /* 初期状態は表示 */
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  transition: 0.5s;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.sns-pop__item.is-hidden .sns-pop__text {
  /* 非表示状態 */
  display: none;
}

/*---//SNS固定メニュー-------------------------*/
/*---コラムミニリスト-------------------------*/
.column_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 800px) {
  .column_list {
    flex-direction: column;
  }
}

.column_list .fs-pt-column__item {
  display: block;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  width: calc(33.333% - 20px); /* 3列レイアウト */
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  padding: 12px;
}
.column_list .fs-pt-column__item:hover {
  transform: translateY(-3px);
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.15);
}
.column_list .fs-pt-column__item:hover .fs-pt-column__image img {
  transform: scale(1.05);
}
.column_list .fs-pt-column__item ::after {
  clear: both;
  content: "";
  display: block;
}
@media (max-width: 800px) {
  .column_list .fs-pt-column__item {
    width: 100%;
  }
}
.column_list .fs-pt-column__image {
  display: block;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 800px) {
  .column_list .fs-pt-column__image {
    width: 30%;
    height: auto;
    float: left;
  }
}
.column_list .fs-pt-column__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.column_list .fs-pt-column__heading {
  font-weight: bold;
  padding: 10px 15px;
  display: inline-block;
  line-height: 1.4;
}
@media (max-width: 800px) {
  .column_list .fs-pt-column__heading {
    display: block;
    float: left;
    width: 70%;
  }
}
.column_list .fs-pt-column__description {
  font-size: 0.8em;
  color: #666;
  margin: 0 15px 10px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* 3行で省略 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 800px) {
  .column_list .fs-pt-column__description {
    display: none;
  }
}/*# sourceMappingURL=fs_original_20250602.css.map */