@charset "UTF-8";
.header {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  width: 100%;
  z-index: 99;
  background-color: #FFFFFF;
}
@media screen and (max-width: 835px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px 10px;
  }
}
.header a {
  color: #373737;
}
.header__simpleheader-logo {
  max-height: 48px;
  max-width: 207px;
  width: auto;
}
.header__title p {
  font-size: 14px;
  margin: 0;
}
@media screen and (max-width: 835px) {
  .header__title p {
    display: none;
  }
}
.header__title h1 {
  margin: 0;
  padding: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 835px) {
  .header__title h1 img {
    max-height: 30px;
    display: block;
    width: auto;
  }
}
.header__menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 16px;
}
@media screen and (max-width: 835px) {
  .header__menu {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}
.header__menu-contact {
  display: flex;
  align-items: flex-start;
  gap: 0 20px;
  margin-bottom: 15px;
}
@media screen and (max-width: 835px) {
  .header__menu-contact {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  .header__menu-contact {
    display: none;
  }
}
.header__menu-contact ul {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 835px) {
  .header__menu-contact ul {
    display: none;
  }
}
.header__menu-contact p {
  margin: 0;
}
.header__menu-contact p img {
  display: block;
}
.header__menu-account {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 20px;
  font-weight: 700;
}
@media screen and (max-width: 835px) {
  .header__menu-account {
    display: none;
  }
}
.header__link-mypage ::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  background: url(https://shirakibuntan.itembox.design/item/header/icon-mypage.png) no-repeat;
  background-size: 20px 20px;
  margin-right: 0.2em;
}
.header__link-contact ::after, .header__link-mailmagazine ::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  background: url(https://shirakibuntan.itembox.design/item/header/arrow.png) no-repeat;
  background-size: 10px 10px;
  margin-left: 0.5em;
}
.header__link-cart ::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  background: url(https://shirakibuntan.itembox.design/item/header/icon-cart.png) no-repeat;
  background-size: 20px 20px;
  margin-right: 0.2em;
}
.header__menu-button {
  display: none;
}
.header__menu-button:hover {
  opacity: 1;
}
@media screen and (max-width: 835px) {
  .header__menu-button {
    display: block;
    position: relative;
    color: #480026;
    font-weight: bold;
    cursor: pointer;
    width: 30px;
    height: 25px;
  }
  .header__menu-button span:nth-child(3), .header__menu-button span:nth-child(2), .header__menu-button span:nth-child(1) {
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background-color: #480026;
    transition: 0.3s all;
  }
  .header__menu-button span:nth-child(1) {
    top: 0;
    left: 0;
  }
  .header__menu-button span:nth-child(2) {
    top: calc(50% - 2px);
    left: 0;
  }
  .header__menu-button span:nth-child(3) {
    bottom: 0;
    left: 0;
  }
  .header__menu-button.show span:nth-child(1) {
    transform: rotate(45deg);
    transform-origin: 0 2px;
  }
  .header__menu-button.show span:nth-child(2) {
    opacity: 0;
  }
  .header__menu-button.show span:nth-child(3) {
    transform: rotate(-45deg);
    transform-origin: 0 2px;
  }
}
.header__mobilemenu {
  display: none;
}
@media screen and (max-width: 835px) {
  .header__mobilemenu {
    display: block;
    position: fixed;
    top: 50px;
    right: calc(min(80%, 400px) * -1 - 1px);
    width: 80%;
    max-width: 400px;
    height: calc(100vh - 50px);
    z-index: 999;
    transition: 0.5s all;
    background-color: #FFFFFF;
    color: #480026;
    overflow-y: scroll;
  }
  .header__mobilemenu.show {
    display: block;
    right: 0;
  }
}
.header__mobilemenu-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 25px;
  font-size: 14px;
  margin: 20px 0;
}
.header__mobilemenu-button li {
  border: 1px #480026 solid;
  background-color: #480026;
}
.header__mobilemenu-button a {
  color: #fff;
  display: inline-block;
  padding: 0 20px 0 0;
  margin: 10px 5px;
  position: relative;
}
.header__mobilemenu-button a:link {
  text-decoration: none;
}
.header__mobilemenu-button a:hover {
  color: #fff;
}
.header__mobilemenu-icon-mypage::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background: url(https://shirakibuntan.itembox.design/item/header/mobilemenu-icon-mypage.png) no-repeat;
  background-size: 16px 16px;
  margin-right: 0.3em;
}
.header__mobilemenu-icon-mypage::after {
  content: "";
  position: absolute;
  right: 10px;
  top: calc(50% - 7px);
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  right: 5px;
}
.header__mobilemenu-icon-cart::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background: url(https://shirakibuntan.itembox.design/item/header/mobilemenu-icon-cart.png) no-repeat;
  background-size: 16px 16px;
  margin-right: 0.3em;
}
.header__mobilemenu-icon-cart::after {
  content: "";
  position: absolute;
  right: 10px;
  top: calc(50% - 7px);
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  right: 5px;
}
.header__mobilemenu-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #480026;
}
.header__mobilemenu-list > li > a, .header__mobilemenu-list > li > div {
  color: #480026;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  border-bottom: solid 1px #480026;
  position: relative;
  display: flex;
  align-items: center;
  height: 45px;
  padding: 0 10px;
}
.header__mobilemenu-list a:visited {
  color: #480026;
}
.header__mobilemenu-link-accordion div {
  color: #480026;
  cursor: pointer;
}
.header__mobilemenu-link-accordion div span::after {
  content: "";
  position: absolute;
  right: 20px;
  top: calc(50% - 6px);
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #480026;
  border-right: solid 2px #480026;
  transform: rotate(135deg);
  transition: all 0.3s linear;
  transform-origin: 50% 50%;
}
.header__mobilemenu-link-accordion div span.show::after {
  transform: rotate(-45deg);
}
.header__mobilemenu-link-item a {
  color: #480026;
}
.header__mobilemenu-link-item a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: calc(50% - 6px);
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #480026;
  border-right: solid 2px #480026;
  transform: rotate(45deg);
}
.header__category-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #480026;
  transition: all 0.3s linear;
  overflow: hidden;
  height: 0;
  opacity: 0;
}
.header__category-list.show {
  height: var(--height);
  opacity: 1;
}
.header__category-list > li > a {
  color: #480026;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 0px 0;
  border-bottom: solid 1px #480026;
  position: relative;
  display: flex;
  height: 45px;
  align-items: center;
  padding: 0 20px;
}
.header__category-list > li > a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: calc(50% - 6px);
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #480026;
  border-right: solid 2px #480026;
  transform: rotate(45deg);
}
.header__category-list a:visited {
  color: #480026;
}

.navi {
  background-color: #FBF7EF;
}
@media screen and (max-width: 835px) {
  .navi {
    display: none;
  }
}
.navi__has-child {
  position: relative;
}
.navi__has-child > a::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 23px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #373737;
}
.navi__menu-list {
  display: flex;
  width: 100%;
  max-width: 1184px;
  padding: 0 8px;
  margin: 0 auto;
  height: 55px;
  justify-content: space-between;
  font-size: 16px;
  font-weight: bold;
  align-items: center;
}
.navi__menu-list > li {
  position: relative;
  height: 100%;
  width: 16.6666666667%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid #BFBFBF;
}
.navi__menu-list > li:first-child {
  border-left: none;
}
.navi__menu-list a {
  color: #222;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.navi__sub-menu-wrapper {
  display: flex;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 55px;
  left: 0;
  z-index: 9;
  width: 90vw;
  max-width: 1200px;
  flex-wrap: wrap;
  justify-content: space-around;
  background-color: #FBF7EF;
}
.navi__sub-menu-wrapper.active {
  opacity: 1;
  pointer-events: all;
}
.navi__sub-menu-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}
.navi__sub-menu-list li {
  height: auto;
}
.navi__sub-menu-list li a {
  font-weight: normal;
  justify-content: left;
}

.overlay {
  display: none;
}
@media screen and (max-width: 835px) {
  .overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    z-index: 88;
    transition: 0.5s all;
    opacity: 0;
    pointer-events: none;
  }
  .overlay.show {
    display: block;
    opacity: 0.3;
    pointer-events: all;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}
@media screen and (max-width: 835px) {
  body {
    margin-top: 50px;
  }
}

h2 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 26px;
    font-weight: 300;
  }
}
h2 span {
  display: block;
}
h2 small {
  font-size: 20px;
  display: block;
  color: #004C34;
  margin-top: 10px;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

a {
  color: #222;
  text-decoration: none;
  transition: all 0.5s;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.5;
    color: #222;
  }
}

div {
  box-sizing: border-box;
}

/* 任意商品一覧カルーセル解除 */
.top__recommend-items .item_pickup_top.fs-c-productListCarousel.fs-c-slick {
  display: block;
}
.top__recommend-items span.fs-c-productListCarousel__ctrl {
  display: none !important;
}
.top__recommend-items .fs-c-productListCarousel__list {
  display: block;
  width: 100%;
}
.top__recommend-items div.slick-track {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr 1fr !important;
  grid-gap: 16px;
  width: 100% !important;
  transform: none !important;
}
@media screen and (max-width: 600px) {
  .top__recommend-items div.slick-track {
    grid-template-columns: 1fr !important;
    grid-gap: 26px;
  }
}
.top__recommend-items div.slick-track::before {
  content: none !important;
}
.top__recommend-items article.fs-c-productListCarousel__list__item.fs-c-productListItem {
  min-width: 100%;
  margin: 0;
}

.top-carousel-pc {
  display: block;
}
@media screen and (max-width: 600px) {
  .top-carousel-pc {
    display: none;
  }
}

.top-carousel-sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .top-carousel-sp {
    display: block;
  }
}

.fs-l-pageMain {
  flex: 1;
}

.fs-l-main {
  gap: 20px;
}

.fs-l-header {
  padding-top: 0;
}

.validation-required {
  color: red;
  font-weight: bold;
  font-size: 12px;
  padding-bottom: 5px;
}

#fs_Top .fs-l-main {
  max-width: 100%;
  padding: 0;
}
#fs_Top .fs-l-pageMain {
  max-width: 100%;
}

.top__recommend-items {
  width: 100%;
  max-width: 1216px;
  padding: 8px;
  margin: 0 auto;
}

.fs-c-productListCarousel {
  width: 100%;
  max-width: 1216px;
  padding: 8px;
  margin: 0 auto;
}

.top__beginners {
  width: 100%;
  max-width: 1216px;
  padding: 8px;
  margin: 0 auto;
}
.top__beginners-banner {
  width: 100%;
  display: block;
  margin-bottom: 28px;
}
.top__beginners-banner img {
  display: block;
  width: 100%;
}
.top__begginers-recommend-list {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
  margin-bottom: 80px;
  gap: 28px 20px;
  list-style-type: none;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top__begginers-recommend-list {
    gap: 15px;
  }
}
.top__begginers-recommend-list a {
  color: #333;
}
.top__begginers-recommend-list a ::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background: url(https://shirakibuntan.itembox.design/item/top/arrow-02.png) no-repeat;
  background-size: 14px 14px;
  margin-left: 0.5em;
}
.top__begginers-recommend-item {
  width: calc((100% - 60px) / 4);
  text-align: left;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .top__begginers-recommend-item {
    width: calc((100% - 30px) / 2);
  }
}
.top__begginers-recommend-item img {
  display: block;
  width: 100%;
  margin-bottom: 5px;
}

.top__osusume {
  width: 100%;
  max-width: 1216px;
  padding: 8px;
  margin: 0 auto;
}
.top__osusume-banner {
  width: 100%;
  display: block;
  margin-bottom: 48px;
}
.top__osusume-banner img {
  display: block;
  width: 100%;
}
.top__osusume-list {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
  margin-bottom: 18px;
  gap: 28px 20px;
  list-style-type: none;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top__osusume-list {
    gap: 15px;
  }
}
.top__osusume-list a {
  color: #333;
}
.top__osusume-item {
  width: calc((100% - 60px) / 4);
  text-align: left;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .top__osusume-item {
    width: calc((100% - 30px) / 2);
  }
}
.top__osusume-item img {
  display: block;
  width: 100%;
  margin-bottom: 5px;
}


.top__recommend-items .fs-c-productListItem__productName {
  text-align: left;
  font-weight: normal;
  font-size: 14px;
  color: #333333;
  margin: 8px 0 3px 0;
  padding-bottom: 0;
}
.top__recommend-items .fs-c-productPrice__main__label {
  display: none;
}
.top__recommend-items .fs-c-price__currencyMark {
  color: #ff0000;
  font-size: 18px;
}
.top__recommend-items .fs-c-price__value {
  color: #ff0000;
  font-size: 18px;
}
.top__recommend-items .fs-c-productPrice__addon {
  color: #ff0000;
  font-size: 18px;
}
.top__recommend-items .fs-c-productListItem__control,
.top__recommend-items .fs-c-buttonContainer {
  display: none;
}
.top__recommend-banner {
  display: block;
  width: 100%;
  max-width: 510px;
  margin: 0 auto 30px;
}
.top__recommend-banner img {
  display: block;
  width: 100%;
}
.top__gallery {
  margin-top: 0;
  width: 100%;
  height: 16.9791666667vw;
  position: relative;
}
.top__gallery img {
  display: block;
  position: absolute;
  left: 0;
  width: 100vw;
}
.top__fruits-calendar-sec {
  margin: 0;
  padding: 0;
  background-image: url(https://shirakibuntan.itembox.design/item/top/bk-mess.png);
  background-size: cover;
}
.top__fruits-calendar-wrapper {
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .top__fruits-calendar-wrapper {
    padding: 30px 0;
  }
}
.top__fruits-calendar-wrapper h2 {
  padding: 20px 0;
}
.top__fruits-calendar-box {
  margin: 0 auto;
  max-width: 1030px;
  background-color: #ffffff;
  padding: 30px;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .top__fruits-calendar-box {
    box-shadow: none;
    padding: 20px;
  }
}
.top__fruits-calendar-tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}
.top__fruits-calendar-tab-item {
  width: calc((100% - 100px) / 6);
  margin-bottom: 20px;
  padding: 10px 0;
  height: 43px;

  font-size: 20px;
  background-color: #BE9C6D;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .top__fruits-calendar-tab-item {
    width: calc((100% - 40px) / 3);
  }
}
.top__fruits-calendar-tab-item.active {
  background-color: #004C34;
}
.top__fruits-calendar-body ul {
  width: 100%;
  height: auto;
  display: none;
  flex-wrap: wrap;
  margin: 0;
  padding: 0 0 40px;
  gap: 20px 20px;
}
.top__fruits-calendar-body ul li {
  width: calc((100% - 60px) / 4);
}
@media screen and (max-width: 767px) {
  .top__fruits-calendar-body ul li {
    width: calc((100% - 20px) / 2);
  }
}
.top__fruits-calendar-body ul li img {
  width: 100%;
}
.top__fruits-calendar-body ul li p {
  font-size: 16px;
  color: #333;
}
.top__fruits-calendar-body p.arrow-02 {
  margin-top: 0;
}
.top__fruits-calendar-body p.arrow-02::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background: url(https://shirakibuntan.itembox.design/item/top/arrow-02.png) no-repeat;
  background-size: 14px 14px;
  margin-left: 0.5em;
}
.top__fruits-calendar-link {
  margin: 80px auto;
  max-width: 333px;
  font-size: 18px;
  background-color: #004C34;
  text-align: center;
}
.top__fruits-calendar-link a {
  color: #FFFFFF;
  display: block;
  padding: 20px 0;
  position: relative;
}
.top__fruits-calendar-link-name::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 24px;
  right: 20px;
  vertical-align: middle;
  background: url(https://shirakibuntan.itembox.design/item/top/arrow-03.png) no-repeat;
  background-size: 16px 16px;
  margin-left: 20px;
}
.top__gallery-buntan {
  margin-top: 0;
  width: 100%;
  height: 16.9791666667vw;
  position: relative;
}
.top__gallery-buntan img {
  display: block;
  position: absolute;
  left: 0;
  width: 100vw;
}
.top__gallery-buntan img {
  top: -15px;
}
@media screen and (max-width: 767px) {
  .top__gallery-buntan img {
    top: -25px;
  }
}
.top__buntan-calendar-wrapper {
  width: 100%;
  max-width: 1216px;
  padding: 8px;
  margin: 0 auto;
}
.top__buntan-calendar {
  margin: 0;
  padding: 0;
}
.top__buntan-calendar img {
  display: block;
  width: 100%;
}
.top__buntan-calendar-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
  margin: 20px auto 50px;
}
.top__buntan-calendar-list li {
  width: calc((100% - 60px) / 4);
}
@media screen and (max-width: 767px) {
  .top__buntan-calendar-list li {
    width: calc((100% - 20px) / 2);
  }
}
.top__buntan-calendar-list li a img {
  width: 100%;
}
.top__buntan-calendar-list li a span {
  display: block;
  text-align: center;
}
.top__buntan-about-box {
  margin-bottom: 80px;
}
.top__buntan-about-title {
  border-left: #BE9C6D 5px solid;
  padding-left: 10px;
  font-weight: 900;
  margin-bottom: 15px;
  font-size: 25px;
}
.top__buntan-about-text-wrapper {
  margin: 0 0 30px;
  padding: 0 0 15px;
}
.top__buntan-about-text {
  font-size: 16px;
  line-height: 160%;
}
.top_seasonal-products-sec {
  width: 100%;
  max-width: 1216px;
  padding: 8px;
  margin: 0 auto;
}
.top_seasonal-products-sec h2 {
  margin-bottom: 15px;
}
.top__about-us {
  width: 100%;
  max-width: 1216px;
  padding: 8px;
  margin: 0 auto;
}
.top__about-us-explain {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 20px;
}
.top__about-link-wrapper {
  margin: 80px auto;
  width: 333px;
  font-size: 18px;
  border: 1px #004C34 solid;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top__about-link-wrapper {
    font-size: 14px;
  }
}
.top__about-link-wrapper a {
  color: #004C34;
  display: block;
  padding: 20px 0;
  position: relative;
}
.top__about-link-wrapper a:link {
  text-decoration: none;
}
.top__about-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  height: 65px;
  text-align: center;
}
.top__about-link::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 26px;
  right: 20px;
  background: url(https://shirakibuntan.itembox.design/item/top/arrow03.png) no-repeat;
  background-size: 16px 16px;
  margin-left: 20px;
}
.top__bk-about {
  margin-top: 50px;
  width: 100%;
  height: 31.5625vw;
}
.top__bk-about img {
  display: block;
  position: absolute;
  left: 0;
  width: 100vw;
}
.top__message {
  position: relative;
  margin-bottom: 80px;
  min-width: 1030px;
  margin-top: 80px;
}
@media screen and (max-width: 1030px) {
  .top__message {
    text-align: left;
    min-width: 100%;
    width: 100%;
  }
}
.top__message-block {
  padding: 40px 0;
  background: url(https://shirakibuntan.itembox.design/item/top/bk-mess.png);
  background-repeat: no-repeat;
  background-size: 60% 100%;
  z-index: 5;
}
@media screen and (max-width: 1030px) {
  .top__message-block {
    background-size: 100% 100%;
    position: relative;
  }
}

.top__message-block_02 {
  padding: 40px 0;
  background-repeat: no-repeat;
  background-size: 60% 100%;
  z-index: 5;
}
@media screen and (max-width: 1030px) {
  .top__message-block_02 {
    background-size: 100% 100%;
    position: relative;
  }
}
.top__message-inner {
  width: 1216px;
  margin: 0 auto 0;
  padding: 8px;
}
@media screen and (max-width: 1216px) {
  .top__message-inner {
    text-align: center;
    width: 100%;
    margin: 0;
  }
}
.top__message-explain {
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
  margin: 0 0 20px;
  width: 50%;
}
@media screen and (max-width: 1030px) {
  .top__message-explain {
    width: 100%;
    margin: 0 auto 20px;
  }
}
.top__message-title {
  text-align: left;
}
@media screen and (max-width: 1030px) {
  .top__message-title {
    text-align: center;
  }
}
.top__message-link-wrapper {
  width: 333px;
  font-size: 18px;
  border: 1px #004C34 solid;
  text-align: center;
  margin: 30px 0 20px;
}
@media screen and (max-width: 767px) {
  .top__message-link-wrapper {
    font-size: 14px;
  }
}
.top__message-link-wrapper a {
  color: #004C34;
  display: block;
  padding: 20px 0;
  position: relative;
}
.top__message-link-wrapper a:link {
  text-decoration: none;
}
@media screen and (max-width: 1030px) {
  .top__message-link-wrapper {
    text-align: center;
    margin: 50px auto 50px;
  }
}
.top__message-link::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 26px;
  right: 20px;
  background: url(https://shirakibuntan.itembox.design/item/top/arrow03.png) no-repeat;
  background-size: 16px 16px;
  margin-left: 20px;
}
.top__message-img {
  position: absolute;
  top: -30px;
  right: 0;
  width: 45%;
  z-index: 1;
}
@media screen and (max-width: 1030px) {
  .top__message-img {
    position: relative;
    width: 100%;
    top: 5px;
    left: 0;
  }
}
.top__message-img img {
  width: 100%;
  height: auto;
}
.top__message__text {
  position: absolute;
  bottom: -24px;
  left: 20px;
  width: 35%;
}
@media screen and (max-width: 1030px) {
  .top__message__text {
    bottom: -40px;
    left: 0;
    width: 100%;
  }
}
.top__message__text img {
  width: 100%;
  height: auto;
}
.top__otherproducts {
  width: 100%;
  max-width: 1216px;
  padding: 8px;
  margin: 0 auto;
}
.top__otherproducts-list {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 50px;
  padding: 0;
  gap: 20px 20px;
  max-width: 1030px;
}
.top__otherproducts-item {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 767px) {
  .top__otherproducts-item {
    width: calc((100% - 20px) / 2);
  }
}
.top__otherproducts-item img {
  width: 100%;
}
.top__otherproducts-item span {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .top__otherproducts-item span {
    font-size: 14px;
  }
}
.top__otherproducts-item span::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background: url(https://shirakibuntan.itembox.design/item/top/arrow-02.png) no-repeat;
  background-size: 14px 14px;
  margin-left: 0.5em;
}
.top__otherproducts-baner {
  text-align: center;
  margin: 50px auto 60px;
}
@media screen and (max-width: 767px) {
  .top__otherproducts-baner {
    margin-left: 20px;
  }
}
.top__businessday {
  width: 100%;
  max-width: 1216px;
  padding: 8px;
  margin: 0 auto;
}
.top__businessday-time {
  text-align: center;
  font-size: 20px;
}
.top__businessday-calender {
  margin: 0 0 50px;
  text-align: center;
}

.top__businessday-calender-list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    margin: 0 auto;
}
.top__businessday-calender-list li {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 767px) {
  .top__businessday-calender-list li {
    width: calc((100% - 20px) / 2);
  }
}
.top__news {
  width: 100%;
  max-width: 1216px;
  padding: 8px;
  margin: 0 auto;
}
.top__news-title {
  text-align: left;
}
.top__news-wrapper {
  display: flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .top__news-wrapper {
    flex-wrap: wrap;
  }
}
.top__news-outer {
  border-top: 1px dotted #373737;
}
@media screen and (max-width: 767px) {
  .top__news-outer {
    border-top: none;
  }
}
.top__news-newsbox {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .top__news-newsbox {
    width: 100%;
    padding: 5px;
    margin-bottom: 30px;
    border-bottom: 1px dotted #373737;
  }
}
.top__news-newsbox .fs-pt-list {
  padding: 0 10px 0 0;
}
.top__news-newsbox .fs-pt-list > li {
  border-style: none;
  font-size: 16px;
}
.top__news-snsbox {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .top__news-snsbox {
    width: 100%;
    text-align: center;
    padding-top: 0px;
  }
}
.top__news-snsicon-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 0 0 10px;
}
.top__news-banner img {
  margin-bottom: 10px;
  width: 100%;
}

.footer a,
.footer li {
  color: #fff;
}
.footer__wrapper, .footer__wrapper-simple {
  position: relative;
  background: url(https://shirakibuntan.itembox.design/item/footer/bk-foot.png);
  padding-bottom: 15px;
}
.footer__wrapper li, .footer__wrapper-simple li {
  font-size: 14px;
}
.footer__wrapper-simple {
  padding-top: 30px;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .footer__wrapper-simple {
    padding-top: 0;
  }
}
.footer__photo {
  margin: 0 0 50px 0 !important;
  height: 300px;
  background: url(https://shirakibuntan.itembox.design/item/footer/foot-bk.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .footer__photo {
    height: 250px;
  }
}
@media screen and (max-width: 767px) {
  .footer__photo {
    margin: 0 !important;
    width: 100%;
    height: 200px;
    background: url(https://shirakibuntan.itembox.design/item/footer/foot-bk-sp.jpg) no-repeat;
    background-size: cover;
    background-position: center top;
  }
}
@media screen and (max-width: 500px) {
  .footer__photo {
    height: 150px;
  }
}
.footer__logo {
  position: absolute;
  display: block;
  top: 250px;
  left: 50%;
  transform: translate(-50%, 0);
}
.footer__logo a:hover {
  opacity: 1;
}
.footer__logo img {
  width: auto;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .footer__logo {
    top: 200px;
  }
}
@media screen and (max-width: 767px) {
  .footer__logo {
    top: 130px;
    width: 100%;
  }
  .footer__logo img {
    width: 100%;
    min-width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 500px) {
  .footer__logo {
    top: 125px;
  }
}
.footer__sns-area {
  width: 25%;
  margin: 150px auto 50px;
}
@media screen and (max-width: 767px) {
  .footer__sns-area {
    margin: 150px auto 30px;
    width: 100%;
  }
}
.footer__sns-icon {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.footer__menu-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 90%;
  max-width: 1216px;
  margin: 0 auto 50px;
}
.footer__menu-wrapper h3 {
  font-weight: 800;
  font-size: 16px;
  margin: 0;
}
@media screen and (max-width: 835px) {
  .footer__menu-wrapper h3 {
    font-weight: 500;
    font-size: 14px;
  }
}
@media screen and (max-width: 835px) {
  .footer__menu-wrapper {
    flex-direction: column;
    flex-wrap: wrap;
    margin: 0;
    padding: 0 8px;
    width: 100%;
  }
}
@media screen and (max-width: 835px) {
  .footer__menu-guide-title {
    border-bottom: 2px solid #646464;
    margin: 0;
    padding: 0 5px 0 0;
    height: 45px;
    font-size: 14px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  .footer__menu-guide-title::before {
    content: "";
    position: absolute;
    right: 10px;
    top: calc(50% - 7px);
    transition: all 0.2s ease-in-out;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    transform: rotate(135deg);
  }
  .footer__menu-guide-title.show::before {
    transform: rotate(-45deg);
  }
}
@media screen and (min-width: 836px) {
  .footer__menu-guide-list {
    height: auto !important;
  }
}
@media screen and (max-width: 835px) {
  .footer__menu-guide-list {
    overflow: hidden;
    transition: all 0.3s linear;
    padding-left: 10px;
    height: 0;
    opacity: 0;
  }
  .footer__menu-guide-list.show {
    height: var(--height);
    opacity: 1;
  }
}
@media screen and (max-width: 835px) {
  .footer__menu-category-title {
    border-bottom: 2px solid #646464;
    margin: 0;
    padding: 0 5px 0 0;
    height: 45px;
    font-size: 14px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  .footer__menu-category-title span::before {
    content: "";
    position: absolute;
    right: 10px;
    top: calc(50% - 7px);
    transition: all 0.2s ease-in-out;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    transform: rotate(135deg);
  }
  .footer__menu-category-title span.show::before {
    transform: rotate(-45deg);
  }
}
@media screen and (max-width: 835px) {
  .footer .accordion-title {
    position: absolute;
    right: 10px;
    top: 17px;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(135deg);
  }
}
.footer__menu-box-guide {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 17%;
  font-size: 12px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
.footer__menu-box-guide li {
  padding: 10px 0;
}
@media screen and (max-width: 835px) {
  .footer__menu-box-guide {
    width: 100%;
  }
  .footer__menu-box-guide li {
    padding: 0;
    line-height: 2.5;
  }
}
.footer__menu-box-category {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  width: 53%;
  font-size: 12px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
.footer__menu-box-category li {
  padding: 10px 0;
}
@media screen and (max-width: 835px) {
  .footer__menu-box-category {
    width: 100%;
  }
  .footer__menu-box-category li {
    padding: 0;
    line-height: 2.5;
  }
}
.footer__menu-box-category-list {
  -moz-column-count: 3;
       column-count: 3;
}
.footer__menu-box-category-list li {
  padding: 10px 5px 10px 0;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  font-size: 14px;
  font-weight: normal;
}
@media screen and (min-width: 836px) {
  .footer__menu-box-category-list {
    height: auto !important;
  }
}
@media screen and (max-width: 835px) {
  .footer__menu-box-category-list {
    display: block;
    -moz-column-count: 1;
         column-count: 1;
    overflow: hidden;
    transition: all 0.5s linear;
    padding-left: 10px;
    height: 0;
    opacity: 0;
  }
  .footer__menu-box-category-list.show {
    height: var(--height);
    opacity: 1;
  }
  .footer__menu-box-category-list li {
    padding: 0;
    line-height: 2.5;
  }
}
.footer__menu-box-nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 20%;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  font-size: 16px;
}
@media screen and (max-width: 835px) {
  .footer__menu-box-nav {
    width: 100%;
    font-size: 14px;
  }
}
.footer__menu-link-container a {
  padding: 0;
  margin: 0;
  display: block;
}
@media screen and (max-width: 835px) {
  .footer__menu-link-container a {
    font-weight: 500;
    padding: 5px 5px 5px 0;
    line-height: 2.5;
    border-bottom: 2px solid #646464;
    margin: 0;
    padding: 8px 5px 8px 0;
  }
}
@media screen and (max-width: 835px) {
  .footer__menu-link-container::before {
    content: "";
    position: absolute;
    right: 10px;
    top: calc(50% - 7px);
    transition: all 0.2s ease-in-out;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
  }
}
.footer__menu-box-nav-list {
  -moz-column-count: 1;
       column-count: 1;
}
.footer__menu-box-nav-list li {
  padding: 10px 0;
  position: relative;
}
.footer__menu-box-nav-list a {
  display: block;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 835px) {
  .footer__menu-box-nav-list li {
    padding: 0;
  }
  .footer__menu-box-nav-list a {
    padding: 5px 5px 5px 0;
    line-height: 2.5;
  }
}
@media screen and (max-width: 835px) {
  .footer__menu-pc-only {
    display: none;
  }
}
.footer__lower-menu-wrapper {
  color: #fff;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 8px;
  padding: 0 8px;
  max-width: 1216px;
  margin: 0 auto;
}
.footer__lower-menu-box {
  text-align: center;
}
.footer__lower-menu-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  max-width: 1216px;
  justify-content: space-evenly;
  font-size: 12px;
  margin: 0 auto 30px;
  padding-right: 50px;
}
@media screen and (max-width: 835px) {
  .footer__lower-menu-list {
    flex-direction: column;
    width: 100%;
    margin: 0 0 30px;
    padding: 0;
  }
}
.footer__lower-menu-item {
  list-style: none;
  font-size: 12px;
  padding: 0 30px 0 0;
  position: relative;
}
@media screen and (max-width: 835px) {
  .footer__lower-menu-item {
    padding: 0;
  }
}
.footer__lower-menu-item a {
  display: block;
  color: #ffffff;
  position: relative;
  padding-right: 5px;
}
@media screen and (max-width: 835px) {
  .footer__lower-menu-item a {
    font-weight: 500;
    padding: 5px 5px 5px 0;
    line-height: 2.5;
    border-bottom: 2px solid #646464;
    margin: 0;
    padding: 8px 5px 8px 0;
    text-align: left;
  }
}
.footer__lower-menu-item a::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #ffffff;
  position: absolute;
  top: 5px;
  right: -12px;
}
@media screen and (max-width: 835px) {
  .footer__lower-menu-item a::before {
    display: none;
  }
}
@media screen and (max-width: 835px) {
  .footer__lower-menu-item a::after {
    content: "";
    position: absolute;
    right: 10px;
    top: calc(50% - 7px);
    transition: all 0.2s ease-in-out;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
  }
}
.footer__link {
  font-size: 16px;
}
@media screen and (max-width: 835px) {
  .footer__link {
    border-bottom: 2px solid #646464;
    margin: 0;
    padding: 8px 5px 8px 0;
  }
}
.footer__link span {
  font-size: 12px;
}
@media screen and (max-width: 835px) {
  .footer__link span {
    font-size: 14px;
  }
}
@media screen and (max-width: 835px) {
  .footer__link::before {
    content: "";
    position: absolute;
    right: 10px;
    top: calc(50% - 7px);
    transition: all 0.2s ease-in-out;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
  }
}
.footer__link a {
  display: inline-block;
}
.footer__copyright {
  text-align: center;
  padding: 4px;
}
.footer__copyright-text {
  display: block;
  color: #fff;
  text-align: center;
  font-size: 12px;
}
.footer__sp-page-top {
  z-index: 10;
  position: relative;
}
.footer__sp-page-top a {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
  opacity: 0.7;
  cursor: pointer;
  background: #f4b64b;
  color: #f8deb1;
  font-size: 16px;
}

footer.fs-l-footer {
  border: none;
  background: none;
}

/***********************************
 sideMenu
***********************************/
.fs-p-sideMenu {
  margin: 0 24px 0 0;
}
.fs-p-sideMenu .fs-pt-menu__link {
  padding: 20px 10px;
  line-height: 1.5;
  display: block;
  background-color: #F9F9F2;
  border-bottom: 1px #707070 dotted;
  position: relative;
  color: #373737;
  font-size: 13px;
}
.fs-p-sideMenu .fs-pt-menu__heading--lv1 {
  border: none;
}
.fs-p-sideMenu .fs-pt-menu__link--lv1::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 0.4em;
  height: 0.4em;
  border-top: 1px solid #808080;
  border-right: 1px solid #808080;
  transform: rotate(45deg);
}
.fs-p-sideMenu .fs-pt-menu__heading {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .fs-p-sideMenu {
    display: none;
  }
}

.fs-c-breadcrumb {
  max-width: 1216px;
  margin: 8px auto 0;
}
.fs-c-breadcrumb .fs-c-breadcrumb__list {
  padding: 8px;
}

#fs_CustomPage .shoppingGuide__section {
  padding-bottom: 20px;
}
#fs_CustomPage .shoppingGuide__h2-title {
  font-size: 15px;
  font-weight: bold;
  line-height: 200%;
  border-bottom: 1px dotted;
  margin-bottom: 20px;
  background: none;
  text-align: left;
  padding: 0;
}
#fs_CustomPage .contact__section {
  margin: 0;
  padding: 0;
}
#fs_CustomPage .contact__form-wrapper {
  margin: 20px;
}
@media screen and (max-width: 767px) {
  #fs_CustomPage .contact__form-wrapper {
    margin: 0;
  }
}
#fs_CustomPage .contact__form-inner {
  margin: 30px 0 0;
  padding: 50px 100px;
  background-color: #f5f5f5;
}
@media screen and (max-width: 1000px) {
  #fs_CustomPage .contact__form-inner {
    padding: 50px 50px;
  }
}
@media screen and (max-width: 767px) {
  #fs_CustomPage .contact__form-inner {
    padding: 0;
    background-color: #fff;
  }
}
#fs_CustomPage .contact__pageheader-h2 {
  margin-top: 45px;
  padding: 0 0 1.2em;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #fs_CustomPage .contact__pageheader-h2 {
    margin: 60px 0 40px;
    padding: 0;
    font-size: 24px;
    font-weight: 600;
  }
}
#fs_CustomPage .contact__input-notes {
  font-size: 12px;
}
#fs_CustomPage .contact__input-notes li::before {
  content: "※";
  margin-right: 2px;
}
#fs_CustomPage .contact__input-notes li {
  text-indent: -1.1em;
  margin-left: 1.1em;
}
#fs_CustomPage .contact__input-comments {
  font-size: 12px;
}
#fs_CustomPage .contact__input-comments li::before {
  content: "☆";
  margin-right: 2px;
}
#fs_CustomPage .contact__input-comments li {
  text-indent: -1.1em;
  margin-left: 1.1em;
}
#fs_CustomPage .contact__must {
  position: relative;
}
#fs_CustomPage .contact__must::after {
  position: absolute;
  top: 0;
  content: "必須";
  font-size: 1rem;
  color: #ffffff;
  border-radius: 2px;
  padding: 2px 4px;
  margin-left: 7px;
  background: #ff0000;
}
#fs_CustomPage .contact__input-lists {
  display: flex;
  flex-direction: column;
}
#fs_CustomPage .contact__input-set {
  display: flex;
  flex-direction: column;
}
#fs_CustomPage .contact__input-label {
  font-weight: 700;
  margin-bottom: 0;
}
#fs_CustomPage .contact__input-value {
  margin: 5px 0 2rem;
}
#fs_CustomPage .contact__input-value input,
#fs_CustomPage .contact__input-value textarea {
  padding: 10px 5px;
}
@media screen and (max-width: 767px) {
  #fs_CustomPage .contact__input-value input,
  #fs_CustomPage .contact__input-value textarea {
    background-color: #f5f5f5;
    border-color: #cecece;
  }
}
#fs_CustomPage .contact__input-name p span {
  padding: 10px 5px 5px;
}
#fs_CustomPage .contact__input-name input {
  margin: 2px 0 5px;
  width: 100%;
}
#fs_CustomPage .contact__input-tel span {
  font-size: 12px;
}
#fs_CustomPage .contact__input-tel input {
  width: 100px;
}
#fs_CustomPage .contact__tel-hyphen {
  margin: 0 2px 0 6px;
}
#fs_CustomPage .contact__input-order span {
  padding: 0 5px;
}
#fs_CustomPage .contact__submit-button-wrapper {
  text-align: center;
}
#fs_CustomPage .contact__submit-button-input {
  width: 50%;
  border-radius: 3px;
  padding: 15px 20px;
  background-color: #004C34;
  border: none;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  #fs_CustomPage .contact__submit-button-input {
    width: 70%;
  }
}
#fs_CustomPage .contact__submit-button-input:hover {
  opacity: 0.7;
}

#fs_PrivacyPolicy .privacyPolicy__h2-title {
  font-weight: normal;
  line-height: 175%;
  font-size: 16px;
  text-align: left;
  margin: 18px 0 0;
  padding: 8px 0 0;
}
#fs_PrivacyPolicy .privacyPolicy__h3-title {
  color: #7c8790;
  border: none;
  font-weight: 500;
  font-size: 1.8rem;
  padding: 8px 8px 0 0;
  margin-bottom: 0;
}
#fs_PrivacyPolicy .privacyPolicy__detail {
  margin-top: 30px;
}

#fs_AboutTerms .aboutterms__h2-title {
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  margin: 0;
  padding: 0;
  line-height: 200%;
}
#fs_AboutTerms table {
  border-bottom: 1px dotted #000000;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #fs_AboutTerms table {
    border-bottom: none;
  }
}
#fs_AboutTerms table tr {
  font-size: 15px;
  width: 100%;
}
#fs_AboutTerms table th {
  background-color: #EEEEEE;
  border-top: 1px dotted #000000;
  color: #2B2B2B;
  font-weight: bold;
  padding: 15px 20px;
  text-align: left;
  width: 25%;
}
@media screen and (max-width: 767px) {
  #fs_AboutTerms table th {
    border-top: none;
    display: block;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}
#fs_AboutTerms table td {
  border-top: 1px dotted #000000;
  padding: 15px 20px;
  font-weight: normal;
  text-align: left;
  width: 75%;
}
@media screen and (max-width: 767px) {
  #fs_AboutTerms table td {
    border-top: none;
    display: block;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
  }
}

.staff__wrapper {
  text-align: center;
}
.staff__contents {
  text-align: center;
}
.staff__contents img {
  margin: 10px auto;
}
.staff__contents p {
  text-align: center;
}

.access__wrapper {
  text-align: center;
}
.access__contents {
  text-align: center;
}
.access__contents img {
  margin: 10px auto;
}
.access__contents p,
.access__contents span {
  text-align: left;
}
.access__contents-iframe {
  margin: 10px auto;
}

.enshu__wrapper {
  text-align: center;
}
.enshu__contents {
  text-align: center;
}
.enshu__contents div {
  max-width: 800px;
  margin: 0 auto;
}
.enshu__contents img {
  margin: 10px auto;
}
.enshu__contents p,
.enshu__contents span {
  text-align: left;
}

.guide__inpage-link {
  margin: 30px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 15px;
}

/*******************

#fs_ProductCategory 

*******************/
.category__section {
  margin: 0;
  padding: 5px;
}
.category__section .mt10 {
  margin-top: 10px;
}
.category__section .mb10 {
  margin-bottom: 10px;
}
.category__section .mt30 {
  margin-top: 30px;
}
.category__section .mb30 {
  margin-bottom: 30px;
}
.category__section .category__txt-center {
  text-align: center;
}
.category__section .category__txt-left {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .category__section .category__sp-none {
    display: none;
  }
}
.category__section .category__pagetop-header {
  font-size: 38px;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .category__section .category__pagetop-header {
    font-size: 24px;
  }
}
.category__section h2 {
  font-size: 34px;
  text-align: left;
  margin: 25px 0;
  padding: 10px 0 10px 10px;
  line-height: 1.4;
  font-weight: bold;
  border-bottom: 1px dotted;
}
@media screen and (max-width: 767px) {
  .category__section h2 {
    font-size: 20px;
    margin: 15px 0;
    border-bottom: none;
  }
}
.category__section h3 {
  font-size: 34px;
  text-align: left;
  margin-top: 25px;
  margin-bottom: 0;
  line-height: 1.7;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .category__section h3 {
    font-size: 20px;
  }
}
.category__section .category__h3-center-f34 {
  text-align: center;
  font-size: 34px;
  margin-top: 25px;
  line-height: 1.7;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .category__section .category__h3-center-f34 {
    font-size: 20px;
  }
}
.category__section img {
  margin: 10px auto;
  border: none;
}
.category__section .category__txt-shipping {
  font-size: 36px;
  font-weight: bold;
  padding: 8px;
}
@media screen and (max-width: 767px) {
  .category__section .category__txt-shipping {
    font-size: 22px;
  }
}
.category__section .category__txt-explanation {
  font-size: 22px;
  line-height: 1.7;
  margin: 10px 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .category__section .category__txt-explanation {
    font-size: 16px;
  }
}
.category__section .category__txt-explanation-center {
  font-size: 22px;
  line-height: 1.7;
  margin: 10px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .category__section .category__txt-explanation-center {
    font-size: 16px;
  }
}
.category__section .category__txt-explanation-right {
  font-size: 22px;
  line-height: 1.7;
  margin: 10px 0;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .category__section .category__txt-explanation-right {
    font-size: 16px;
  }
}
.category__section .category__txt-strong {
  font-size: 22px;
  line-height: 1.7;
  margin: 10px 0;
  text-align: left;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .category__section .category__txt-strong {
    font-size: 16px;
  }
}
.category__section .category__txt-voice {
  margin-left: 20px;
  list-style-type: disc;
}
.category__section .category__txt-voice li {
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
  padding: 10px 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .category__section .category__txt-voice li {
    font-size: 16px;
  }
}
.category__section .category__iframe-youtube {
  height: 100%;
  margin: 10px auto;
}
.category__section .category__howto-wrapper {
  margin: 10px auto;
  max-width: 90%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 100px;
}
@media screen and (max-width: 1200px) {
  .category__section .category__howto-wrapper {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .category__section .category__howto-wrapper {
    max-width: 100%;
    flex-direction: column;
    gap: 5px;
  }
}
.category__section .category__howto-image img {
  margin-bottom: 0;
  width: 100%;
}
.category__section .category__howto-set {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 5px;
  width: calc(50% - 100px);
}
@media screen and (max-width: 1200px) {
  .category__section .category__howto-set {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 767px) {
  .category__section .category__howto-set {
    gap: 0;
    width: 100%;
  }
}
.category__section .category__howto-text {
  text-align: left;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .category__section .category__howto-text {
    font-size: 16px;
  }
}
.category__section .category__txt-recipe {
  font-size: 20px;
  line-height: 1.7;
  margin: 10px 0;
  text-align: left;
  padding: 0;
  margin: 0;
}
.category__section .category__txt-recipe li {
  list-style-type: none;
  list-style-position: outside;
  counter-increment: cnt;
  text-indent: -1.7em;
  padding-left: 2.5em;
}
.category__section .category__txt-recipe li:before {
  display: marker;
  content: "(" counter(cnt) ") ";
}
@media screen and (max-width: 767px) {
  .category__section .category__txt-recipe {
    font-size: 16px;
  }
}

/***********************
      お買い物ガイド ページ
************************/
.fs-body-custom .fs-l-page {
  font-size: 20px;
  line-height: 1.7;
  margin: 10px 0;
  text-align: left;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .fs-body-custom .fs-l-page {
    font-size: 16px;
  }
}
/***********************
      商品を探す ページ
************************/
.fs-body-category-list .header_area {
  text-align: left;
  padding: 0px;
}
@media screen and (max-width: 767px) {
  .fs-body-category-list .header_area {
    width: 100%;
  }
}
.fs-body-category-list .cate-box {
  box-sizing: border-box !important;
  margin-bottom: 30px;
}
.fs-body-category-list .cate-box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.fs-body-category-list .cate-box ul li {
  width: calc((100% - 50px) / 6);
  margin-bottom: 15px;
  border: 1px #004C34 solid;
  height: 60px;
}
@media screen and (max-width: 1200px) {
  .fs-body-category-list .cate-box ul li {
    width: calc((100% - 30px) / 4);
  }
}
@media screen and (max-width: 600px) {
  .fs-body-category-list .cate-box ul li {
    width: calc((100% - 20px) / 3);
  }
}
.fs-body-category-list .cate-box ul a {
  margin: 0 0 0 0;
  display: flex;
  height: 60px;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #004C34;
}
.fs-body-category-list .cate-box ul a:visited {
  color: #004C34;
}
.fs-body-category-list .cate-box ul a:hover {
  background-color: #004C34;
  color: #ffffff;
  opacity: 1 !important;
}
.fs-body-category-list .cate-box ul a.r2 {
  padding: 10px 5px;
  line-height: 1.4;
}
.fs-body-category-list .cate-box .cate-more-button {
  background-color: #004C34;
  color: white;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  display: none;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 600px) {
  .fs-body-category-list .cate-box .cate-more-button {
    display: flex;
    margin-bottom: 15px;
    transition: all 0.3s linear;
  }
  .fs-body-category-list .cate-box .cate-more-button.show {
    height: 0;
    margin-bottom: 0px;
  }
}
.fs-body-category-list .cate-box .cate-more-button .arrow {
  position: relative;
}
.fs-body-category-list .cate-box .cate-more-button .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 7px);
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  transform: rotate(135deg);
}
@media screen and (max-width: 600px) {
  .fs-body-category-list .cate-box .cate-list-more {
    overflow: hidden;
    height: 0;
    transition: all 0.3s linear;
  }
}
.fs-body-category-list .cate-box .cate-list-more.show {
  height: var(--height);
  padding-bottom: 1px;
}

/***********************
    商品ページ
************************/
.fs-body-category-tosabuntan .category__pagetop-header {
  color: #3c3c3c;
}
.fs-body-category-tosabuntan h2.category__h2-headmark {
  border-left: 10px #FFBF00 solid;
}
.fs-body-category-tosabuntan .category__txt-shipping {
  background-color: #FFBF00;
}
.fs-body-category-tosabuntan .category__txt-underline {
  color: #000;
  background: linear-gradient(transparent 80%, #FF6600 20%);
}

.fs-body-category-natsubuntan .category__pagetop-header,
.fs-body-category-konatsu .category__pagetop-header {
  color: #FFCC00;
}
.fs-body-category-natsubuntan h2.category__h2-headmark,
.fs-body-category-konatsu h2.category__h2-headmark {
  border-left: 10px #FFCC00 solid;
}

.fs-body-category-suishyobuntan .category__pagetop-header {
  color: #336600;
}
.fs-body-category-suishyobuntan h2.category__h2-headmark {
  border-left: 10px #336600 solid;
}

.fs-body-category-onshitsubuntan .category__pagetop-header {
  color: #970000;
}
.fs-body-category-onshitsubuntan h2.category__h2-headmark {
  border-left: 10px #970000 solid;
}
.fs-body-category-onshitsubuntan .category__txt-shipping {
  background-color: #f57a7a;
}

.fs-body-category-ponkan .category__pagetop-header {
  color: #FFBF00;
}
.fs-body-category-ponkan h2.category__h2-headmark {
  border-left: 10px #FFBF00 solid;
}
.fs-body-category-ponkan .category__txt-underline {
  color: #000;
  background: linear-gradient(transparent 80%, #FF6600 20%);
}
.fs-body-category-ponkan .category__image-more {
  width: 50%;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .fs-body-category-ponkan .category__image-more {
    width: 90%;
    margin-bottom: 10px;
  }
}
.fs-body-category-ponkan .category__more-set {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.fs-body-category-ponkan .category__more-set h3 {
  margin-top: 0;
}
.fs-body-category-ponkan .category__more-text {
  margin-bottom: 20px;
}

.fs-body-category-dekopon .category__pagetop-header,
.fs-body-category-hassaku .category__pagetop-header {
  color: #3c3c3c;
}
.fs-body-category-dekopon h2.category__h2-headmark,
.fs-body-category-hassaku h2.category__h2-headmark {
  border-left: 10px #FF6600 solid;
}
.fs-body-category-dekopon .category__txt-underline,
.fs-body-category-hassaku .category__txt-underline {
  color: #000;
  background: linear-gradient(transparent 80%, #FF6600 20%);
}

.fs-body-category-setoka .category__pagetop-header {
  color: #FF6600;
}
.fs-body-category-setoka h2.category__h2-headmark {
  border-left: 10px #FF6600 solid;
}

.fs-body-category-madonna .category__pagetop-header {
  color: #D93F10;
}
.fs-body-category-madonna h2.category__h2-headmark {
  border-left: 10px #D93F10 solid;
}

.fs-body-category-mango h2.category__h2-headmark {
  border-left: 10px #cf0a1a solid;
}
.fs-body-category-mango .category__howto-eat {
  max-width: 800px;
  margin: 0 auto;
}
.fs-body-category-mango .category__howto-eat img {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .fs-body-category-mango .category__howto-eat img {
    margin-top: 15px;
  }
}
.fs-body-category-mango .category__howto-eat p.category__txt-explanation {
  max-width: 800px;
  text-align: left;
  margin-top: 0;
}

.fs-body-category-orderfruits .category__pagetop-header {
  color: #990000;
}
@media screen and (max-width: 767px) {
  .fs-body-category-orderfruits .category__pagetop-header {
    font-size: 18px;
  }
}
.fs-body-category-orderfruits .category_section h2 {
  border-bottom: 0px;
}
.fs-body-category-orderfruits h3 {
  text-align: center;
}
.fs-body-category-orderfruits .category__txt-list {
  margin: 10px auto;
  list-style-type: disc;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .fs-body-category-orderfruits .category__txt-list {
    width: 100%;
    margin-left: 0;
    padding-left: 20px;
  }
}
.fs-body-category-orderfruits .category__txt-list li {
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
  padding: 10px 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .fs-body-category-orderfruits .category__txt-list li {
    font-size: 16px;
  }
}
.fs-body-category-orderfruits .category__txt-underline-f48 {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
}
.fs-body-category-orderfruits .category__txt-underline-f48 span {
  background: linear-gradient(transparent 70%, #FF99FF 30%);
}
@media screen and (max-width: 767px) {
  .fs-body-category-orderfruits .category__txt-underline-f48 {
    font-size: 22px;
  }
}
.fs-body-category-orderfruits .category__txt-explanation-center-f38 {
  font-size: 38px;
  line-height: 1.4;
  font-weight: 700;
  margin: 10px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .fs-body-category-orderfruits .category__txt-explanation-center-f38 {
    font-size: 20px;
  }
}
.fs-body-category-orderfruits .category__txt-explanation-center-f28 {
  font-size: 28px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .fs-body-category-orderfruits .category__txt-explanation-center-f28 {
    font-size: 20px;
  }
}
.fs-body-category-orderfruits .category__txt-w800 {
  max-width: 800px;
  margin: 20px auto;
}

.fs-body-category-ginger .category__pagetop-header {
  color: #660000;
}
.fs-body-category-ginger h2.category__h2-headmark {
  border-left: 10px #660000 solid;
}
.fs-body-category-ginger .category__txt-underline {
  color: #000;
  background: linear-gradient(transparent 80%, rgba(102, 0, 0, 0.7019607843) 20%);
}
.fs-body-category-ginger .category__trivia-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-evenly;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .fs-body-category-ginger .category__trivia-wrapper {
    display: block;
  }
}
.fs-body-category-ginger .category__trivia-set {
  width: calc(70% - 20px);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 5px;
}
@media screen and (max-width: 767px) {
  .fs-body-category-ginger .category__trivia-set {
    width: 100%;
  }
}
.fs-body-category-ginger .category__trivia-text {
  text-align: left;
  font-size: 18px;
}
.fs-body-category-ginger .category__trivia-text ul {
  list-style: circle;
  margin-left: 20px;
}
.fs-body-category-ginger .category__trivia-text li {
  padding: 5px 0;
}
@media screen and (max-width: 767px) {
  .fs-body-category-ginger .category__trivia-text {
    font-size: 16px;
    width: 100%;
  }
}

.fs-body-category-shikihanpukai .category__txt-color-f30 {
  color: #380a10;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .fs-body-category-shikihanpukai .category__txt-color-f30 {
    font-size: 16px;
  }
}
.fs-body-category-shikihanpukai .category__txt-color-f70 {
  color: #380a10;
  text-align: center;
  font-size: 70px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .fs-body-category-shikihanpukai .category__txt-color-f70 {
    font-size: 22px;
  }
}
.fs-body-category-shikihanpukai .category__season-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}
.fs-body-category-shikihanpukai .category__season-set {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .fs-body-category-shikihanpukai .category__season-set {
    gap: 0;
  }
}
.fs-body-category-shikihanpukai .category__season-set:nth-child(odd) {
  flex-direction: row;
}
@media screen and (max-width: 767px) {
  .fs-body-category-shikihanpukai .category__season-set:nth-child(odd) {
    flex-direction: column;
  }
}
.fs-body-category-shikihanpukai .category__season-set:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .fs-body-category-shikihanpukai .category__season-set:nth-child(even) {
    flex-direction: column;
  }
}
.fs-body-category-shikihanpukai .category__season-image {
  width: calc(40% - 10px);
  min-width: 350px;
}
.fs-body-category-shikihanpukai .category__season-text {
  width: 60%;
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .fs-body-category-shikihanpukai .category__season-text {
    font-size: 16px;
    width: 100%;
  }
}
.fs-body-category-shikihanpukai .category__hanpu-wrapper {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}
.fs-body-category-shikihanpukai .category__hanpu-upper {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .fs-body-category-shikihanpukai .category__hanpu-upper {
    flex-direction: column;
  }
}
.fs-body-category-shikihanpukai .category__hanpu-image {
  width: 40%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .fs-body-category-shikihanpukai .category__hanpu-image {
    width: 100%;
  }
}
.fs-body-category-shikihanpukai .category__hanpu-shipping dl {
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  margin: 0 0 0 5px;
}
.fs-body-category-shikihanpukai .category__hanpu-shipping dt {
  width: 50%;
}
.fs-body-category-shikihanpukai .category__hanpu-shipping dd {
  width: 50%;
  margin: 0;
}
.fs-body-category-shikihanpukai .category__hanpu-shipping dd::before {
  content: ":";
  margin-right: 5px;
}
.fs-body-category-shikihanpukai .category__hanpu-text {
  width: calc(60% - 10px);
}
.fs-body-category-shikihanpukai .category__hanpu-text dl {
  display: flex;
  flex-wrap: nowrap;
  font-size: 16px;
}
.fs-body-category-shikihanpukai .category__hanpu-text dt {
  width: 6em;
  text-align: left;
}
.fs-body-category-shikihanpukai .category__hanpu-text dd {
  width: 100%;
  margin: 0;
  text-align: left;
}
.fs-body-category-shikihanpukai .category__hanpu-text dd::before {
  content: ":";
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .fs-body-category-shikihanpukai .category__hanpu-text {
    width: 100%;
  }
}
.fs-body-category-shikihanpukai .category__passion-wrapper {
  display: flex;
  flex-wrap: nowwrap;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}
.fs-body-category-shikihanpukai .category__passion-image {
  width: 38%;
}
@media screen and (max-width: 767px) {
  .fs-body-category-shikihanpukai .category__passion-image {
    width: 100%;
  }
}
.fs-body-category-shikihanpukai .category__passion-text {
  width: calc(62% - 10px);
}
@media screen and (max-width: 767px) {
  .fs-body-category-shikihanpukai .category__passion-text {
    width: 100%;
  }
}

.fs-body-category-omakase .category__pagetop-header {
  color: #FF6600;
}
.fs-body-category-omakase .category__txt-color-f48-red {
  color: #b20000;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .fs-body-category-omakase .category__txt-color-f48-red {
    font-size: 22px;
  }
}
.fs-body-category-omakase .category__txt-color-f48-orange {
  color: #FF6600;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .fs-body-category-omakase .category__txt-color-f48-orange {
    font-size: 22px;
  }
}
.fs-body-category-omakase .category__txt-center-f36 {
  font-size: 36px;
  line-height: 1.4;
  font-weight: 700;
  margin: 10px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .fs-body-category-omakase .category__txt-center-f36 {
    font-size: 18px;
  }
}
.fs-body-category-omakase .category__txt-underline-f48 {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
}
.fs-body-category-omakase .category__txt-underline-f48 span {
  background: linear-gradient(transparent 70%, #FFCC00 30%);
}
@media screen and (max-width: 767px) {
  .fs-body-category-omakase .category__txt-underline-f48 {
    font-size: 22px;
  }
}

.fs-body-category-fruitcavia .category__pagetop-header {
  color: #FF5C26;
}
.fs-body-category-fruitcavia h2.category__h2-headmark {
  border-left: 10px #FF5C26 solid;
}
.fs-body-category-fruitcavia ul.category__list-ingredients {
  text-align: left;
  padding-left: 3em;
  margin-bottom: 20px;
}
.fs-body-category-fruitcavia ul.category__list-ingredients li {
  list-style-type: disc;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .fs-body-category-fruitcavia ul.category__list-ingredients li {
    font-size: 16px;
  }
}

.fs-body-category-bergamot .category__pagetop-header {
  color: #009900;
}
.fs-body-category-bergamot h2.category__h2-headmark {
  border-left: 10px #009900 solid;
}
.fs-body-category-bergamot .category__txt-qa {
  margin-top: 20px;
  font-size: 20px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .fs-body-category-bergamot .category__txt-qa {
    font-size: 16px;
  }
}
.fs-body-category-bergamot .category__txt-qa p {
  margin-left: 30px;
}
.fs-body-category-bergamot .category__txt-qa span {
  margin-left: -25px;
  margin-right: 5px;
}

.fs-body-category-greenlemon .category__pagetop-header {
  color: #00B200;
}

.fs-body-category-greenlemon h2.category__h2-headmark {
  border-left: 10px #00B200 solid;
}

.fs-body-category-greenlemon ol.category__txt-list {
  text-align: left;
  padding-left: 3em;
  margin-bottom: 20px;
}

.fs-body-category-greenlemon ol.category__txt-list li {
  text-align: left;
  list-style-type: disc;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .fs-body-category-greenlemon ol.category__txt-list li {
    font-size: 16px;
  }
}
.fs-body-category-lemon .category__pagetop-header {
  color: #FFBF00;
}

.fs-body-category-lemon h2.category__h2-headmark {
  border-left: 10px #FFBF00 solid;
}

.fs-body-category-lime .category__pagetop-header {
  color: #2DB200;
}

.fs-body-category-lime h2.category__h2-headmark {
  border-left: 10px #2DB200 solid;
}

.fs-body-category-house .category__pagetop-header {
  color: #d44709;
}

.fs-body-category-house h2.category__h2-headmark {
  border-left: 10px #d44709 solid;
}

.fs-body-category-ama .category__pagetop-header {
  color: #FF9900;
}

.fs-body-category-ama h2.category__h2-headmark {
  border-left: 10px #FF9900 solid;
}

.fs-body-category-unshu .category__pagetop-header {
  color: #FF9326;
}

.fs-body-category-unshu h2.category__h2-headmark {
  border-left: 10px #FF9326 solid;
}

.fs-body-category-kinkan .category__pagetop-header {
  color: #FF9900;
}

.fs-body-category-kinkan h2.category__h2-headmark {
  border-left: 10px #FF9900 solid;
}

.fs-body-category-grape .category__pagetop-header {
  color: #FF6666;
}

.fs-body-category-grape h2.category__h2-headmark {
  border-left: 10px #FF6666 solid;
}

.fs-body-category-natsumi .category__pagetop-header {
  color: #FF9900;
}

.fs-body-category-natsumi h2.category__h2-headmark {
  border-left: 10px #FF9900 solid;
}

.fs-body-category-yuzu .category__pagetop-header {
  color: #FFBF00;
}

.fs-body-category-yuzu h2.category__h2-headmark {
  border-left: 10px #FFBF00 solid;
}

.fs-body-category-kosui .category__pagetop-header {
  color: #999900;
}

.fs-body-category-kosui h2.category__h2-headmark {
  border-left: 10px #999900 solid;
}

.fs-body-category-hosui .category__pagetop-header {
  color: #D9A300;
}

.fs-body-category-hosui h2.category__h2-headmark {
  border-left: 10px #D9A300 solid;
}

.fs-body-category-akiduki .category__pagetop-header {
  color: #660000;
}

.fs-body-category-akiduki h2.category__h2-headmark {
  border-left: 10px #660000 solid;
}

.fs-body-category-nitaka .category__pagetop-header {
  color: #660000;
}

.fs-body-category-nitaka h2.category__h2-headmark {
  border-left: 10px #660000 solid;
}

.fs-body-category-emerald .category__pagetop-header {
  color: #00B200;
}

.fs-body-category-emerald h2.category__h2-headmark {
  border-left: 10px #00B200 solid;
}

.fs-body-category-antenasuika .category__pagetop-header {
  color: #008C00;
}

.fs-body-category-antenasuika h2.category__h2-headmark {
  border-left: 10px #008C00 solid;
}

.fs-body-category-kodamasuika .category__pagetop-header {
  color: #FF0000;
}

.fs-body-category-kodamasuika h2.category__h2-headmark {
  border-left: 10px #FF0000 solid;
}

.fs-body-category-cherry .category__pagetop-header {
  color: #B20000;
}

.fs-body-category-cherry h2.category__h2-headmark {
  border-left: 10px #B20000 solid;
}

.fs-body-category-kochitomato .category__pagetop-header {
  color: #006600;
}

.fs-body-category-kochitomato h2.category__h2-headmark {
  border-left: 10px #006600 solid;
}

.fs-body-category-mahorobatomato .category__pagetop-header {
  color: #FF0000;
}

.fs-body-category-mahorobatomato h2.category__h2-headmark {
  border-left: 10px #FF0000 solid;
}

.fs-body-category-asaokatomato .category__pagetop-header {
  color: #FF0000;
}

.fs-body-category-asaokatomato h2.category__h2-headmark {
  border-left: 10px #FF0000 solid;
}

.fs-body-category-tbjuice .category__pagetop-header {
  color: #FFCC00;
}

.fs-body-category-tbjuice h2.category__h2-headmark {
  border-left: 10px #FFCC00 solid;
}

.fs-body-category-kojuice .category__pagetop-header {
  color: #FFCC00;
}

.fs-body-category-kojuice h2.category__h2-headmark {
  border-left: 10px #FFCC00 solid;
}

.fs-body-category-honey .category__pagetop-header {
  color: #FFCC00;
}

.fs-body-category-honey h2.category__h2-headmark {
  border-left: 10px #FFCC00 solid;
}

.fs-body-category-ame .category__pagetop-header {
  color: #FFBF00;
}

.fs-body-category-ame h2.category__h2-headmark {
  border-left: 10px #FFBF00 solid;
}

.fs-body-category-unagi .category__pagetop-header {
  color: #470801;
}

.fs-body-category-unagi h2.category__h2-headmark {
  border-left: 10px #470801 solid;
}

.fs-body-category-unagi .category__pagetop-header {
  color: #470801;
}

.fs-body-category-unagi h2.category__h2-headmark {
  border-left: 10px #470801 solid;
}

/***********************
    カート内ページ
************************/
/*土佐文旦*/
.fs-body-product-T10-L2L .category__pagetop-header {
  color: #3c3c3c;
}

.fs-body-product-T10-L2L h2.category__h2-headmark {
  border-left: 10px #FFBF00 solid;
}

.fs-body-product-T10-L2L .category__txt-shipping {
  background-color: #FFBF00;
}

.fs-body-product-T10-L2L .category__txt-underline {
  color: #000;
  background: linear-gradient(transparent 80%, #FF6600 20%);
}

.fs-body-product-T6-L2L .category__pagetop-header {
  color: #3c3c3c;
}

.fs-body-product-T6-L2L h2.category__h2-headmark {
  border-left: 10px #FFBF00 solid;
}

.fs-body-product-T6-L2L .category__txt-shipping {
  background-color: #FFBF00;
}

.fs-body-product-T6-L2L .category__txt-underline {
  color: #000;
  background: linear-gradient(transparent 80%, #FF6600 20%);
}

.fs-body-product-TL2L-3CS .category__pagetop-header {
  color: #3c3c3c;
}

.fs-body-product-TL2L-3CS h2.category__h2-headmark {
  border-left: 10px #FFBF00 solid;
}

.fs-body-product-TL2L-3CS .category__txt-shipping {
  background-color: #FFBF00;
}

.fs-body-product-TL2L-3CS .category__txt-underline {
  color: #000;
  background: linear-gradient(transparent 80%, #FF6600 20%);
}

.fs-body-product-T3L4L-3CS .category__pagetop-header {
  color: #3c3c3c;
}

.fs-body-product-T3L4L-3CS h2.category__h2-headmark {
  border-left: 10px #FFBF00 solid;
}

.fs-body-product-T3L4L-3CS .category__txt-shipping {
  background-color: #FFBF00;
}

.fs-body-product-T3L4L-3CS .category__txt-underline {
  color: #000;
  background: linear-gradient(transparent 80%, #FF6600 20%);
}

.fs-body-product-T10-3L4L .category__pagetop-header {
  color: #3c3c3c;
}

.fs-body-product-T10-3L4L h2.category__h2-headmark {
  border-left: 10px #FFBF00 solid;
}

.fs-body-product-T10-3L4L .category__txt-shipping {
  background-color: #FFBF00;
}

.fs-body-product-T10-3L4L .category__txt-underline {
  color: #000;
  background: linear-gradient(transparent 80%, #FF6600 20%);
}

.fs-body-product-T3-2L3L .category__pagetop-header {
  color: #3c3c3c;
}

.fs-body-product-T3-2L3L h2.category__h2-headmark {
  border-left: 10px #FFBF00 solid;
}

.fs-body-product-T3-2L3L .category__txt-shipping {
  background-color: #FFBF00;
}

.fs-body-product-T3-2L3L .category__txt-underline {
  color: #000;
  background: linear-gradient(transparent 80%, #FF6600 20%);
}

.fs-body-product-T6-3L4L .category__pagetop-header {
  color: #3c3c3c;
}

.fs-body-product-T6-3L4L h2.category__h2-headmark {
  border-left: 10px #FFBF00 solid;
}

.fs-body-product-T6-3L4L .category__txt-shipping {
  background-color: #FFBF00;
}

.fs-body-product-T6-3L4L .category__txt-underline {
  color: #000;
  background: linear-gradient(transparent 80%, #FF6600 20%);
}

.fs-body-product-TW-KA6 .category__pagetop-header {
  color: #3c3c3c;
}

.fs-body-product-TW-KA6 h2.category__h2-headmark {
  border-left: 10px #FFBF00 solid;
}

.fs-body-product-TW-KA6 .category__txt-shipping {
  background-color: #FFBF00;
}

.fs-body-product-TW-KA6 .category__txt-underline {
  color: #000;
  background: linear-gradient(transparent 80%, #FF6600 20%);
}

.fs-body-product-T2-4L .category__pagetop-header {
  color: #3c3c3c;
}

.fs-body-product-T2-4L h2.category__h2-headmark {
  border-left: 10px #FFBF00 solid;
}

.fs-body-product-T2-4L .category__txt-shipping {
  background-color: #FFBF00;
}

.fs-body-product-T2-4L .category__txt-underline {
  color: #000;
  background: linear-gradient(transparent 80%, #FF6600 20%);
}

.fs-body-product-TW-KA10 .category__pagetop-header {
  color: #3c3c3c;
}

.fs-body-product-TW-KA10 h2.category__h2-headmark {
  border-left: 10px #FFBF00 solid;
}

.fs-body-product-TW-KA10 .category__txt-shipping {
  background-color: #FFBF00;
}

.fs-body-product-TW-KA10 .category__txt-underline {
  color: #000;
  background: linear-gradient(transparent 80%, #FF6600 20%);
}

.fs-body-product-TX-X2 .category__pagetop-header {
  color: #3c3c3c;
}

.fs-body-product-TX-X2 h2.category__h2-headmark {
  border-left: 10px #FFBF00 solid;
}

.fs-body-product-TX-X2 .category__txt-shipping {
  background-color: #FFBF00;
}

.fs-body-product-TX-X2 .category__txt-underline {
  color: #000;
  background: linear-gradient(transparent 80%, #FF6600 20%);
}

.fs-body-product-TX-X3 .category__pagetop-header {
  color: #3c3c3c;
}

.fs-body-product-TX-X3 h2.category__h2-headmark {
  border-left: 10px #FFBF00 solid;
}

.fs-body-product-TX-X3 .category__txt-shipping {
  background-color: #FFBF00;
}

.fs-body-product-TX-X3 .category__txt-underline {
  color: #000;
  background: linear-gradient(transparent 80%, #FF6600 20%);
}

/*夏ぶんたん*/
.fs-body-product-HNB-K5 .category__pagetop-header,
.fs-body-product-HNB-K5 .category__pagetop-header {
  color: #FFCC00;
}

.fs-body-product-HNB-K5 h2.category__h2-headmark,
.fs-body-product-HNB-K5 h2.category__h2-headmark {
  border-left: 10px #FFCC00 solid;
}

.fs-body-product-HNB-K10 .category__pagetop-header,
.fs-body-product-HNB-K10 .category__pagetop-header {
  color: #FFCC00;
}

.fs-body-product-HNB-K10 h2.category__h2-headmark,
.fs-body-product-HNB-K10 h2.category__h2-headmark {
  border-left: 10px #FFCC00 solid;
}

.fs-body-product-NB-K10 .category__pagetop-header,
.fs-body-product-NB-K10 .category__pagetop-header {
  color: #FFCC00;
}

.fs-body-product-NB-K10 h2.category__h2-headmark,
.fs-body-product-NB-K10 h2.category__h2-headmark {
  border-left: 10px #FFCC00 solid;
}

.fs-body-product-NB-K5 .category__pagetop-header,
.fs-body-product-NB-K5 .category__pagetop-header {
  color: #FFCC00;
}

.fs-body-product-NB-K5 h2.category__h2-headmark,
.fs-body-product-NB-K5 h2.category__h2-headmark {
  border-left: 10px #FFCC00 solid;
}

/*水晶文旦*/
.fs-body-product-SB-36 .category__pagetop-header {
  color: #336600;
}

.fs-body-product-SB-36 h2.category__h2-headmark {
  border-left: 10px #336600 solid;
}

.fs-body-product-SB-12 .category__pagetop-header {
  color: #336600;
}

.fs-body-product-SB-12 h2.category__h2-headmark {
  border-left: 10px #336600 solid;
}

.fs-body-product-SB-13 .category__pagetop-header {
  color: #336600;
}

.fs-body-product-SB-13 h2.category__h2-headmark {
  border-left: 10px #336600 solid;
}

.fs-body-product-SB-35 .category__pagetop-header {
  color: #336600;
}

.fs-body-product-SB-35 h2.category__h2-headmark {
  border-left: 10px #336600 solid;
}

.fs-body-product-SB-58 .category__pagetop-header {
  color: #336600;
}

.fs-body-product-SB-58 h2.category__h2-headmark {
  border-left: 10px #336600 solid;
}

.fs-body-product-SB-G5 .category__pagetop-header {
  color: #336600;
}

.fs-body-product-SB-G5 h2.category__h2-headmark {
  border-left: 10px #336600 solid;
}

.fs-body-product-SB-G8 .category__pagetop-header {
  color: #336600;
}

.fs-body-product-SB-G8 h2.category__h2-headmark {
  border-left: 10px #336600 solid;
}

.fs-body-product-SB-OTA .category__pagetop-header {
  color: #336600;
}

.fs-body-product-SB-OTA h2.category__h2-headmark {
  border-left: 10px #336600 solid;
}

.fs-body-product-SB-TOKU06 .category__pagetop-header {
  color: #336600;
}

.fs-body-product-SB-TOKU06 h2.category__h2-headmark {
  border-left: 10px #336600 solid;
}

.fs-body-product-SB-TOKU03 .category__pagetop-header {
  color: #336600;
}

.fs-body-product-SB-TOKU03 h2.category__h2-headmark {
  border-left: 10px #336600 solid;
}

/*温室土佐文旦*/
.fs-body-product-OB-3 .category__pagetop-header {
  color: #970000;
}

.fs-body-product-OB-3 h2.category__h2-headmark {
  border-left: 10px #970000 solid;
}

.fs-body-product-OB-3 .category__txt-shipping {
  background-color: #f57a7a;
}

.fs-body-product-OB-5 .category__pagetop-header {
  color: #970000;
}

.fs-body-product-OB-5 h2.category__h2-headmark {
  border-left: 10px #970000 solid;
}

.fs-body-product-OB-5 .category__txt-shipping {
  background-color: #f57a7a;
}

.fs-body-product-OB-13 .category__pagetop-header {
  color: #970000;
}

.fs-body-product-OB-13 h2.category__h2-headmark {
  border-left: 10px #970000 solid;
}

.fs-body-product-OB-13 .category__txt-shipping {
  background-color: #f57a7a;
}

.fs-body-product-OB-OTA .category__pagetop-header {
  color: #970000;
}

.fs-body-product-OB-OTA h2.category__h2-headmark {
  border-left: 10px #970000 solid;
}

.fs-body-product-OB-OTA .category__txt-shipping {
  background-color: #f57a7a;
}

.fs-body-product-OB-UMSET .category__pagetop-header {
  color: #970000;
}

.fs-body-product-OB-UMSET h2.category__h2-headmark {
  border-left: 10px #970000 solid;
}

.fs-body-product-OB-UMSET .category__txt-shipping {
  background-color: #f57a7a;
}

.fs-body-product-OB-12 .category__pagetop-header {
  color: #970000;
}

.fs-body-product-OB-12 h2.category__h2-headmark {
  border-left: 10px #970000 solid;
}

.fs-body-product-OB-12 .category__txt-shipping {
  background-color: #f57a7a;
}

.fs-body-product-OB-G8 .category__pagetop-header {
  color: #970000;
}

.fs-body-product-OB-G8 h2.category__h2-headmark {
  border-left: 10px #970000 solid;
}

.fs-body-product-OB-G8 .category__txt-shipping {
  background-color: #f57a7a;
}

.fs-body-product-OB-G5 .category__pagetop-header {
  color: #970000;
}

.fs-body-product-OB-G5 h2.category__h2-headmark {
  border-left: 10px #970000 solid;
}

.fs-body-product-OB-G5 .category__txt-shipping {
  background-color: #f57a7a;
}

.fs-body-product-OB-TOKU06 .category__pagetop-header {
  color: #970000;
}

.fs-body-product-OB-TOKU06 h2.category__h2-headmark {
  border-left: 10px #970000 solid;
}

.fs-body-product-OB-TOKU06 .category__txt-shipping {
  background-color: #f57a7a;
}

.fs-body-product-OB-TOKU10 .category__pagetop-header {
  color: #970000;
}

.fs-body-product-OB-TOKU10 h2.category__h2-headmark {
  border-left: 10px #970000 solid;
}

.fs-body-product-OB-TOKU10 .category__txt-shipping {
  background-color: #f57a7a;
}


/*小夏*/
.fs-body-product-KO-T5 .category__pagetop-header {
  color: #FFCC00;
}
.fs-body-product-KO-T5 h2.category__h2-headmark {
  border-left: 10px #FFCC00 solid;
}

.fs-body-product-KO-T3 .category__pagetop-header {
  color: #FFCC00;
}
.fs-body-product-KO-T3 h2.category__h2-headmark {
  border-left: 10px #FFCC00 solid;
}


.fs-body-product-KO-KAN-3 .category__pagetop-header {
  color: #FFCC00;
}
.fs-body-product-KO-KAN-3 h2.category__h2-headmark {
  border-left: 10px #FFCC00 solid;
}


.fs-body-product-KO-KAN-5 .category__pagetop-header {
  color: #FFCC00;
}
.fs-body-product-KO-KAN-5 h2.category__h2-headmark {
  border-left: 10px #FFCC00 solid;
}

/*ポンカン*/
.fs-body-product-PO-L .category__pagetop-header {
  color: #FFBF00;
}

.fs-body-product-PO-L h2.category__h2-headmark {
  border-left: 10px #FFBF00 solid;
}

.fs-body-product-PO-L .category__txt-underline {
  color: #000;
  background: linear-gradient(transparent 80%, #FF6600 20%);
}

.fs-body-product-PO-L .category__image-more {
  width: 50%;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .fs-body-product-PO-L .category__image-more {
    width: 90%;
    margin-bottom: 10px;
  }
}
.fs-body-product-PO-L .category__more-set {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.fs-body-product-PO-L .category__more-set h3 {
  margin-top: 0;
}

.fs-body-product-PO-L .category__more-text {
  margin-bottom: 20px;
}

.fs-body-product-PO-2L .category__pagetop-header {
  color: #FFBF00;
}

.fs-body-product-PO-2L h2.category__h2-headmark {
  border-left: 10px #FFBF00 solid;
}

.fs-body-product-PO-2L .category__txt-underline {
  color: #000;
  background: linear-gradient(transparent 80%, #FF6600 20%);
}

.fs-body-product-PO-2L .category__image-more {
  width: 50%;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .fs-body-product-PO-2L .category__image-more {
    width: 90%;
    margin-bottom: 10px;
  }
}
.fs-body-product-PO-2L .category__more-set {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.fs-body-product-PO-2L .category__more-set h3 {
  margin-top: 0;
}

.fs-body-product-PO-2L .category__more-text {
  margin-bottom: 20px;
}

/*デコポン*/
.fs-body-product-DP-3K .category__pagetop-header {
  color: #3c3c3c;
}

.fs-body-product-DP-3K h2.category__h2-headmark {
  border-left: 10px #FF6600 solid;
}

.fs-body-product-DP-3K .category__txt-underline {
  color: #000;
  background: linear-gradient(transparent 80%, #FF6600 20%);
}

/*八朔*/
.fs-body-product-HS-6 .category__pagetop-header {
  color: #3c3c3c;
}

.fs-body-product-HS-6 h2.category__h2-headmark {
  border-left: 10px #FF6600 solid;
}

.fs-body-product-HS-6 .category__txt-underline {
  color: #000;
  background: linear-gradient(transparent 80%, #FF6600 20%);
}

.fs-body-product-HS-10 .category__pagetop-header {
  color: #3c3c3c;
}

.fs-body-product-HS-10 h2.category__h2-headmark {
  border-left: 10px #FF6600 solid;
}

.fs-body-product-HS-10 .category__txt-underline {
  color: #000;
  background: linear-gradient(transparent 80%, #FF6600 20%);
}

.fs-body-product-BHS-3 .category__pagetop-header {
  color: #3c3c3c;
}

.fs-body-product-BHS-3 h2.category__h2-headmark {
  border-left: 10px #FF6600 solid;
}

.fs-body-product-BHS-3 .category__txt-underline {
  color: #000;
  background: linear-gradient(transparent 80%, #FF6600 20%);
}

.fs-body-product-HS-06SS .category__pagetop-header {
  color: #3c3c3c;
}

.fs-body-product-HS-06SS h2.category__h2-headmark {
  border-left: 10px #FF6600 solid;
}

.fs-body-product-HS-06SS .category__txt-underline {
  color: #000;
  background: linear-gradient(transparent 80%, #FF6600 20%);
}


/*せとか*/
.fs-body-product-af-L2L .category__pagetop-header {
  color: #FF6600;
}

.fs-body-product-SETO-L2L h2.category__h2-headmark {
  border-left: 10px #FF6600 solid;
}

.fs-body-product-SETO-3L4L .category__pagetop-header {
  color: #FF6600;
}

.fs-body-product-SETO-3L4L h2.category__h2-headmark {
  border-left: 10px #FF6600 solid;
}

/*紅まどんな*/
.fs-body-product-BMD-L3L .category__pagetop-header {
  color: #D93F10;
}

.fs-body-product-BMD-L3L h2.category__h2-headmark {
  border-left: 10px #D93F10 solid;
}

/*マンゴー*/
.fs-body-product-MAN-3 h2.category__h2-headmark {
  border-left: 10px #cf0a1a solid;
}

.fs-body-product-MAN-3 .category__howto-eat {
  max-width: 800px;
  margin: 0 auto;
}

.fs-body-product-MAN-3 .category__howto-eat img {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .fs-body-product-MAN-3 .category__howto-eat img {
    margin-top: 15px;
  }
}
.fs-body-product-MAN-3 .category__howto-eat p.category__txt-explanation {
  max-width: 800px;
  text-align: left;
  margin-top: 0;
}

.fs-body-product-MAN-5 h2.category__h2-headmark {
  border-left: 10px #cf0a1a solid;
}

.fs-body-product-MAN-5 .category__howto-eat {
  max-width: 800px;
  margin: 0 auto;
}

.fs-body-product-MAN-5 .category__howto-eat img {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .fs-body-product-MAN-5 .category__howto-eat img {
    margin-top: 15px;
  }
}
.fs-body-product-MAN-5 .category__howto-eat p.category__txt-explanation {
  max-width: 800px;
  text-align: left;
  margin-top: 0;
}


.fs-body-product-MAN-6 h2.category__h2-headmark {
  border-left: 10px #cf0a1a solid;
}

.fs-body-product-MAN-6 .category__howto-eat {
  max-width: 800px;
  margin: 0 auto;
}

.fs-body-product-MAN-6 .category__howto-eat img {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .fs-body-product-MAN-6 .category__howto-eat img {
    margin-top: 15px;
  }
}
.fs-body-product-MAN-6 .category__howto-eat p.category__txt-explanation {
  max-width: 800px;
  text-align: left;
  margin-top: 0;
}

.fs-body-product-MAN-7 h2.category__h2-headmark {
  border-left: 10px #cf0a1a solid;
}

.fs-body-product-MAN-7 .category__howto-eat {
  max-width: 800px;
  margin: 0 auto;
}

.fs-body-product-MAN-7 .category__howto-eat img {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .fs-body-product-MAN-7 .category__howto-eat img {
    margin-top: 15px;
  }
}
.fs-body-product-MAN-7 .category__howto-eat p.category__txt-explanation {
  max-width: 800px;
  text-align: left;
  margin-top: 0;
}

.fs-body-product-MAN-2 h2.category__h2-headmark {
  border-left: 10px #cf0a1a solid;
}

.fs-body-product-MAN-2 .category__howto-eat {
  max-width: 800px;
  margin: 0 auto;
}

.fs-body-product-MAN-2 .category__howto-eat img {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .fs-body-product-MAN-2 .category__howto-eat img {
    margin-top: 15px;
  }
}
.fs-body-product-MAN-2 .category__howto-eat p.category__txt-explanation {
  max-width: 800px;
  text-align: left;
  margin-top: 0;
}

.fs-body-product-MAN-0203 h2.category__h2-headmark {
  border-left: 10px #cf0a1a solid;
}

.fs-body-product-MAN-0203 .category__howto-eat {
  max-width: 800px;
  margin: 0 auto;
}

.fs-body-product-MAN-0203 .category__howto-eat img {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .fs-body-product-MAN-0203 .category__howto-eat img {
    margin-top: 15px;
  }
}
.fs-body-product-MAN-0203 .category__howto-eat p.category__txt-explanation {
  max-width: 800px;
  text-align: left;
  margin-top: 0;
}


.fs-body-product-MAN-GK2 h2.category__h2-headmark {
  border-left: 10px #cf0a1a solid;
}

.fs-body-product-MAN-GK2 .category__howto-eat {
  max-width: 800px;
  margin: 0 auto;
}

.fs-body-product-MAN-GK2 .category__howto-eat img {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .fs-body-product-MAN-GK2 .category__howto-eat img {
    margin-top: 15px;
  }
}
.fs-body-product-MAN-GK2 .category__howto-eat p.category__txt-explanation {
  max-width: 800px;
  text-align: left;
  margin-top: 0;
}


.fs-body-product-MAN-K10 h2.category__h2-headmark {
  border-left: 10px #cf0a1a solid;
}

.fs-body-product-MAN-K10 .category__howto-eat {
  max-width: 800px;
  margin: 0 auto;
}

.fs-body-product-MAN-K10 .category__howto-eat img {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .fs-body-product-MAN-K10 .category__howto-eat img {
    margin-top: 15px;
  }
}
.fs-body-product-MAN-K10 .category__howto-eat p.category__txt-explanation {
  max-width: 800px;
  text-align: left;
  margin-top: 0;
}


.fs-body-product-MAN-K3 h2.category__h2-headmark {
  border-left: 10px #cf0a1a solid;
}

.fs-body-product-MAN-K3 .category__howto-eat {
  max-width: 800px;
  margin: 0 auto;
}

.fs-body-product-MAN-K3 .category__howto-eat img {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .fs-body-product-MAN-K3 .category__howto-eat img {
    margin-top: 15px;
  }
}
.fs-body-product-MAN-K3 .category__howto-eat p.category__txt-explanation {
  max-width: 800px;
  text-align: left;
  margin-top: 0;
}


.fs-body-product-MAN-OCG h2.category__h2-headmark {
  border-left: 10px #cf0a1a solid;
}

.fs-body-product-MAN-OCG .category__howto-eat {
  max-width: 800px;
  margin: 0 auto;
}

.fs-body-product-MAN-OCG .category__howto-eat img {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .fs-body-product-MAN-OCG .category__howto-eat img {
    margin-top: 15px;
  }
}
.fs-body-product-MAN-OCG .category__howto-eat p.category__txt-explanation {
  max-width: 800px;
  text-align: left;
  margin-top: 0;
}


/*オーダーメイド*/
.fs-body-product-ODM-C .category__pagetop-header {
  color: #990000;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-C .category__pagetop-header {
    font-size: 18px;
  }
}
.fs-body-product-ODM-C .category_section h2 {
  border-bottom: 0px;
}

.fs-body-product-ODM-C h3 {
  text-align: center;
}

.fs-body-product-ODM-C .category__txt-list {
  margin: 10px auto;
  list-style-type: disc;
  width: 80%;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-C .category__txt-list {
    width: 100%;
    margin-left: 0;
    padding-left: 20px;
  }
}
.fs-body-product-ODM-C .category__txt-list li {
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
  padding: 10px 0;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-C .category__txt-list li {
    font-size: 16px;
  }
}
.fs-body-product-ODM-C .category__txt-underline-f48 {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
}

.fs-body-product-ODM-C .category__txt-underline-f48 span {
  background: linear-gradient(transparent 70%, #FF99FF 30%);
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-C .category__txt-underline-f48 {
    font-size: 22px;
  }
}
.fs-body-product-ODM-C .category__txt-explanation-center-f38 {
  font-size: 38px;
  line-height: 1.4;
  font-weight: 700;
  margin: 10px 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-C .category__txt-explanation-center-f38 {
    font-size: 20px;
  }
}
.fs-body-product-ODM-C .category__txt-explanation-center-f28 {
  font-size: 28px;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-C .category__txt-explanation-center-f28 {
    font-size: 20px;
  }
}
.fs-body-product-ODM-C .category__txt-w800 {
  max-width: 800px;
  margin: 20px auto;
}

.fs-body-product-ODM-C .category__pagetop-header {
  color: #990000;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-C .category__pagetop-header {
    font-size: 18px;
  }
}
.fs-body-product-ODM-C .category_section h2 {
  border-bottom: 0px;
}

.fs-body-product-ODM-C h3 {
  text-align: center;
}

.fs-body-product-ODM-C .category__txt-list {
  margin: 10px auto;
  list-style-type: disc;
  width: 80%;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-C .category__txt-list {

    width: 100%;
    margin-left: 0;
    padding-left: 20px;
  }
}
.fs-body-product-ODM-C .category__txt-list li {
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
  padding: 10px 0;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-C .category__txt-list li {
    font-size: 16px;
  }
}
.fs-body-product-ODM-C .category__txt-underline-f48 {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
}

.fs-body-product-ODM-C .category__txt-underline-f48 span {
  background: linear-gradient(transparent 70%, #FF99FF 30%);
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-C .category__txt-underline-f48 {
    font-size: 22px;
  }
}
.fs-body-product-ODM-C .category__txt-explanation-center-f38 {
  font-size: 38px;
  line-height: 1.4;
  font-weight: 700;
  margin: 10px 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-C .category__txt-explanation-center-f38 {
    font-size: 20px;
  }
}
.fs-body-product-ODM-C .category__txt-explanation-center-f28 {
  font-size: 28px;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-C .category__txt-explanation-center-f28 {
    font-size: 20px;
  }
}
.fs-body-product-ODM-C .category__txt-w800 {
  max-width: 800px;
  margin: 20px auto;
}


.fs-body-product-ODM-B .category__pagetop-header {
  color: #990000;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-B .category__pagetop-header {
    font-size: 18px;
  }
}
.fs-body-product-ODM-B .category_section h2 {
  border-bottom: 0px;
}

.fs-body-product-ODM-B h3 {
  text-align: center;
}

.fs-body-product-ODM-B .category__txt-list {
  margin: 10px auto;
  list-style-type: disc;
  width: 80%;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-B .category__txt-list {
    width: 100%;
    margin-left: 0;
    padding-left: 20px;
  }
}
.fs-body-product-ODM-B .category__txt-list li {
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
  padding: 10px 0;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-B .category__txt-list li {
    font-size: 16px;
  }
}
.fs-body-product-ODM-B .category__txt-underline-f48 {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
}

.fs-body-product-ODM-B .category__txt-underline-f48 span {
  background: linear-gradient(transparent 70%, #FF99FF 30%);
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-B .category__txt-underline-f48 {
    font-size: 22px;
  }
}
.fs-body-product-ODM-B .category__txt-explanation-center-f38 {
  font-size: 38px;
  line-height: 1.4;
  font-weight: 700;
  margin: 10px 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-B .category__txt-explanation-center-f38 {
    font-size: 20px;
  }
}
.fs-body-product-ODM-B .category__txt-explanation-center-f28 {
  font-size: 28px;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-B .category__txt-explanation-center-f28 {
    font-size: 20px;
  }
}
.fs-body-product-ODM-B .category__txt-w800 {
  max-width: 800px;
  margin: 20px auto;
}


.fs-body-product-ODM-D .category__pagetop-header {
  color: #990000;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-D .category__pagetop-header {
    font-size: 18px;
  }
}
.fs-body-product-ODM-D .category_section h2 {
  border-bottom: 0px;
}

.fs-body-product-ODM-D h3 {
  text-align: center;
}

.fs-body-product-ODM-D .category__txt-list {
  margin: 10px auto;
  list-style-type: disc;
  width: 80%;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-D .category__txt-list {
    width: 100%;
    margin-left: 0;
    padding-left: 20px;
  }
}
.fs-body-product-ODM-D .category__txt-list li {
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
  padding: 10px 0;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-D .category__txt-list li {
    font-size: 16px;
  }
}
.fs-body-product-ODM-D .category__txt-underline-f48 {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
}

.fs-body-product-ODM-D .category__txt-underline-f48 span {
  background: linear-gradient(transparent 70%, #FF99FF 30%);
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-D .category__txt-underline-f48 {
    font-size: 22px;
  }
}
.fs-body-product-ODM-D .category__txt-explanation-center-f38 {
  font-size: 38px;
  line-height: 1.4;
  font-weight: 700;
  margin: 10px 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-D .category__txt-explanation-center-f38 {
    font-size: 20px;
  }
}
.fs-body-product-ODM-D .category__txt-explanation-center-f28 {
  font-size: 28px;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-D .category__txt-explanation-center-f28 {
    font-size: 20px;
  }
}
.fs-body-product-ODM-D .category__txt-w800 {
  max-width: 800px;
  margin: 20px auto;
}


.fs-body-product-ODM-E .category__pagetop-header {
  color: #990000;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-E .category__pagetop-header {
    font-size: 18px;
  }
}
.fs-body-product-ODM-E .category_section h2 {
  border-bottom: 0px;
}

.fs-body-product-ODM-E h3 {
  text-align: center;
}

.fs-body-product-ODM-E .category__txt-list {
  margin: 10px auto;
  list-style-type: disc;
  width: 80%;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-E .category__txt-list {
    width: 100%;
    margin-left: 0;
    padding-left: 20px;
  }
}
.fs-body-product-ODM-E .category__txt-list li {
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
  padding: 10px 0;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-E .category__txt-list li {
    font-size: 16px;
  }
}
.fs-body-product-ODM-E .category__txt-underline-f48 {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
}

.fs-body-product-ODM-E .category__txt-underline-f48 span {
  background: linear-gradient(transparent 70%, #FF99FF 30%);
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-E .category__txt-underline-f48 {
    font-size: 22px;
  }
}
.fs-body-product-ODM-E .category__txt-explanation-center-f38 {
  font-size: 38px;
  line-height: 1.4;
  font-weight: 700;
  margin: 10px 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-E .category__txt-explanation-center-f38 {
    font-size: 20px;
  }
}
.fs-body-product-ODM-E .category__txt-explanation-center-f28 {
  font-size: 28px;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-E .category__txt-explanation-center-f28 {
    font-size: 20px;
  }
}
.fs-body-product-ODM-E .category__txt-w800 {
  max-width: 800px;
  margin: 20px auto;
}


.fs-body-product-ODM-F .category__pagetop-header {
  color: #990000;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-F .category__pagetop-header {
    font-size: 18px;
  }
}
.fs-body-product-ODM-F .category_section h2 {
  border-bottom: 0px;
}

.fs-body-product-ODM-F h3 {
  text-align: center;
}

.fs-body-product-ODM-F .category__txt-list {
  margin: 10px auto;
  list-style-type: disc;
  width: 80%;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-F .category__txt-list {
    width: 100%;
    margin-left: 0;
    padding-left: 20px;
  }
}
.fs-body-product-ODM-F .category__txt-list li {
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
  padding: 10px 0;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-F .category__txt-list li {
    font-size: 16px;
  }
}
.fs-body-product-ODM-F .category__txt-underline-f48 {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
}

.fs-body-product-ODM-F .category__txt-underline-f48 span {
  background: linear-gradient(transparent 70%, #FF99FF 30%);
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-F .category__txt-underline-f48 {
    font-size: 22px;
  }
}
.fs-body-product-ODM-F .category__txt-explanation-center-f38 {
  font-size: 38px;
  line-height: 1.4;
  font-weight: 700;
  margin: 10px 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-F .category__txt-explanation-center-f38 {
    font-size: 20px;
  }
}
.fs-body-product-ODM-F .category__txt-explanation-center-f28 {
  font-size: 28px;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-F .category__txt-explanation-center-f28 {
    font-size: 20px;
  }
}
.fs-body-product-ODM-F .category__txt-w800 {
  max-width: 800px;
  margin: 20px auto;
}


.fs-body-product-ODM-G .category__pagetop-header {
  color: #990000;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-G .category__pagetop-header {
    font-size: 18px;
  }
}
.fs-body-product-ODM-G .category_section h2 {
  border-bottom: 0px;
}

.fs-body-product-ODM-G h3 {
  text-align: center;
}

.fs-body-product-ODM-G .category__txt-list {
  margin: 10px auto;
  list-style-type: disc;
  width: 80%;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-G .category__txt-list {
    width: 100%;
    margin-left: 0;
    padding-left: 20px;
  }
}
.fs-body-product-ODM-G .category__txt-list li {
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
  padding: 10px 0;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-G .category__txt-list li {
    font-size: 16px;
  }
}
.fs-body-product-ODM-G .category__txt-underline-f48 {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
}

.fs-body-product-ODM-G .category__txt-underline-f48 span {
  background: linear-gradient(transparent 70%, #FF99FF 30%);
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-G .category__txt-underline-f48 {
    font-size: 22px;
  }
}
.fs-body-product-ODM-G .category__txt-explanation-center-f38 {
  font-size: 38px;
  line-height: 1.4;
  font-weight: 700;
  margin: 10px 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-G .category__txt-explanation-center-f38 {
    font-size: 20px;
  }
}
.fs-body-product-ODM-G .category__txt-explanation-center-f28 {
  font-size: 28px;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .fs-body-product-ODM-G .category__txt-explanation-center-f28 {
    font-size: 20px;
  }
}
.fs-body-product-ODM-G .category__txt-w800 {
  max-width: 800px;
  margin: 20px auto;
}


/*生姜*/
.fs-body-product-OSS-02 .category__pagetop-header {
  color: #660000;
}

.fs-body-product-OSS-02 h2.category__h2-headmark {
  border-left: 10px #660000 solid;
}

.fs-body-product-OSS-02 .category__txt-underline {
  color: #000;
  background: linear-gradient(transparent 80%, rgba(102, 0, 0, 0.7019607843) 20%);
}

.fs-body-product-OSS-02 .category__trivia-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-evenly;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .fs-body-product-OSS-02 .category__trivia-wrapper {
    display: block;
  }
}
.fs-body-product-OSS-02 .category__trivia-set {
  width: calc(70% - 20px);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 5px;
}

@media screen and (max-width: 767px) {
  .fs-body-product-OSS-02 .category__trivia-set {
    width: 100%;
  }
}
.fs-body-product-OSS-02 .category__trivia-text {
  text-align: left;
  font-size: 18px;
}

.fs-body-product-OSS-02 .category__trivia-text ul {
  list-style: circle;
  margin-left: 20px;
}

.fs-body-product-OSS-02 .category__trivia-text li {
  padding: 5px 0;
}

@media screen and (max-width: 767px) {
  .fs-body-product-OSS-02 .category__trivia-text {
    font-size: 16px;
    width: 100%;
  }
}


.fs-body-product-OSS-04 .category__pagetop-header {
  color: #660000;
}

.fs-body-product-OSS-04 h2.category__h2-headmark {
  border-left: 10px #660000 solid;
}

.fs-body-product-OSS-04 .category__txt-underline {
  color: #000;
  background: linear-gradient(transparent 80%, rgba(102, 0, 0, 0.7019607843) 20%);
}

.fs-body-product-OSS-04 .category__trivia-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-evenly;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .fs-body-product-OSS-04 .category__trivia-wrapper {
    display: block;
  }
}
.fs-body-product-OSS-02 .category__trivia-set {
  width: calc(70% - 20px);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 5px;
}

@media screen and (max-width: 767px) {
  .fs-body-product-OSS-04 .category__trivia-set {
    width: 100%;
  }
}
.fs-body-product-OSS-04 .category__trivia-text {
  text-align: left;
  font-size: 18px;
}

.fs-body-product-OSS-04 .category__trivia-text ul {
  list-style: circle;
  margin-left: 20px;
}

.fs-body-product-OSS-04 .category__trivia-text li {
  padding: 5px 0;
}

@media screen and (max-width: 767px) {
  .fs-body-product-OSS-04 .category__trivia-text {
    font-size: 16px;
    width: 100%;
  }
}


.fs-body-product-HSS-02 .category__pagetop-header {
  color: #660000;
}

.fs-body-product-HSS-02 h2.category__h2-headmark {
  border-left: 10px #660000 solid;
}

.fs-body-product-HSS-02 .category__txt-underline {
  color: #000;
  background: linear-gradient(transparent 80%, rgba(102, 0, 0, 0.7019607843) 20%);
}

.fs-body-product-HSS-02 .category__trivia-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-evenly;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .fs-body-product-HSS-02 .category__trivia-wrapper {
    display: block;
  }
}
.fs-body-product-HSS-02 .category__trivia-set {
  width: calc(70% - 20px);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 5px;
}

@media screen and (max-width: 767px) {
  .fs-body-product-HSS-02 .category__trivia-set {
    width: 100%;
  }
}
.fs-body-product-HSS-02 .category__trivia-text {
  text-align: left;
  font-size: 18px;
}

.fs-body-product-HSS-02 .category__trivia-text ul {
  list-style: circle;
  margin-left: 20px;
}

.fs-body-product-HSS-02 .category__trivia-text li {
  padding: 5px 0;
}

@media screen and (max-width: 767px) {
  .fs-body-product-HSS-02 .category__trivia-text {
    font-size: 16px;
    width: 100%;
  }
}


.fs-body-product-HSS-04 .category__pagetop-header {
  color: #660000;
}

.fs-body-product-HSS-04 h2.category__h2-headmark {
  border-left: 10px #660000 solid;
}

.fs-body-product-HSS-04 .category__txt-underline {
  color: #000;
  background: linear-gradient(transparent 80%, rgba(102, 0, 0, 0.7019607843) 20%);
}

.fs-body-product-HSS-04 .category__trivia-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-evenly;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .fs-body-product-HSS-04 .category__trivia-wrapper {
    display: block;
  }
}
.fs-body-product-HSS-04 .category__trivia-set {
  width: calc(70% - 20px);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 5px;
}

@media screen and (max-width: 767px) {
  .fs-body-product-HSS-04 .category__trivia-set {
    width: 100%;
  }
}
.fs-body-product-HSS-04 .category__trivia-text {
  text-align: left;
  font-size: 18px;
}

.fs-body-product-HSS-04 .category__trivia-text ul {
  list-style: circle;
  margin-left: 20px;
}

.fs-body-product-HSS-04 .category__trivia-text li {
  padding: 5px 0;
}

@media screen and (max-width: 767px) {
  .fs-body-product-HSS-04 .category__trivia-text {
    font-size: 16px;
    width: 100%;
  }
}


.fs-body-product-OS-02 .category__pagetop-header {
  color: #660000;
}

.fs-body-product-OS-02 h2.category__h2-headmark {
  border-left: 10px #660000 solid;
}

.fs-body-product-OS-02 .category__txt-underline {
  color: #000;
  background: linear-gradient(transparent 80%, rgba(102, 0, 0, 0.7019607843) 20%);
}

.fs-body-product-OS-02 .category__trivia-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-evenly;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .fs-body-product-OS-02 .category__trivia-wrapper {
    display: block;
  }
}
.fs-body-product-OS-02 .category__trivia-set {
  width: calc(70% - 20px);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 5px;
}

@media screen and (max-width: 767px) {
  .fs-body-product-OS-02 .category__trivia-set {
    width: 100%;
  }
}
.fs-body-product-OS-02 .category__trivia-text {
  text-align: left;
  font-size: 18px;
}

.fs-body-product-OS-02 .category__trivia-text ul {
  list-style: circle;
  margin-left: 20px;
}

.fs-body-product-OS-02 .category__trivia-text li {
  padding: 5px 0;
}

@media screen and (max-width: 767px) {
  .fs-body-product-OS-02 .category__trivia-text {
    font-size: 16px;
    width: 100%;
  }
}


.fs-body-product-OS-04 .category__pagetop-header {
  color: #660000;
}

.fs-body-product-OS-04 h2.category__h2-headmark {
  border-left: 10px #660000 solid;
}

.fs-body-product-OS-04 .category__txt-underline {
  color: #000;
  background: linear-gradient(transparent 80%, rgba(102, 0, 0, 0.7019607843) 20%);
}

.fs-body-product-OS-04 .category__trivia-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-evenly;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .fs-body-product-OS-04 .category__trivia-wrapper {
    display: block;
  }
}
.fs-body-product-OS-04 .category__trivia-set {
  width: calc(70% - 20px);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 5px;
}

@media screen and (max-width: 767px) {
  .fs-body-product-OS-04 .category__trivia-set {
    width: 100%;
  }
}
.fs-body-product-OS-04 .category__trivia-text {
  text-align: left;
  font-size: 18px;
}

.fs-body-product-OS-04 .category__trivia-text ul {
  list-style: circle;
  margin-left: 20px;
}

.fs-body-product-OS-04 .category__trivia-text li {
  padding: 5px 0;
}

@media screen and (max-width: 767px) {
  .fs-body-product-OS-04 .category__trivia-text {
    font-size: 16px;
    width: 100%;
  }
}

/*文旦四季の頒布会*/
.fs-body-product-BS4-HANPU .category__txt-color-f30 {
  color: #380a10;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .fs-body-product-BS4-HANPU .category__txt-color-f30 {
    font-size: 16px;
  }
}
.fs-body-product-BS4-HANPU .category__txt-color-f70 {
  color: #380a10;
  text-align: center;
  font-size: 70px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .fs-body-product-BS4-HANPU .category__txt-color-f70 {
    font-size: 22px;
  }
}
.fs-body-product-BS4-HANPU .category__season-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.fs-body-product-BS4-HANPU .category__season-set {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 10px;
}

@media screen and (max-width: 767px) {
  .fs-body-product-BS4-HANPU .category__season-set {
    gap: 0;
  }
}
.fs-body-product-BS4-HANPU .category__season-set:nth-child(odd) {
  flex-direction: row;
}

@media screen and (max-width: 767px) {
  .fs-body-product-BS4-HANPU .category__season-set:nth-child(odd) {
    flex-direction: column;
  }
}
.fs-body-product-BS4-HANPU.category__season-set:nth-child(even) {
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .fs-body-product-BS4-HANPU .category__season-set:nth-child(even) {
    flex-direction: column;
  }
}
.fs-body-product-BS4-HANPU .category__season-image {
  width: calc(40% - 10px);
  min-width: 350px;
}

.fs-body-product-BS4-HANPU .category__season-text {
  width: 60%;
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .fs-body-product-BS4-HANPU .category__season-text {
    font-size: 16px;
    width: 100%;
  }
}
.fs-body-product-BS4-HANPU .category__hanpu-wrapper {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.fs-body-product-BS4-HANPU .category__hanpu-upper {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .fs-body-product-BS4-HANPU .category__hanpu-upper {
    flex-direction: column;
  }
}
.fs-body-product-BS4-HANPU .category__hanpu-image {
  width: 40%;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 767px) {
  .fs-body-product-BS4-HANPU .category__hanpu-image {
    width: 100%;
  }
}
.fs-body-product-BS4-HANPU .category__hanpu-shipping dl {
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  margin: 0 0 0 5px;
}

.fs-body-product-BS4-HANPU .category__hanpu-shipping dt {
  width: 50%;
}

.fs-body-product-BS4-HANPU .category__hanpu-shipping dd {
  width: 50%;
  margin: 0;
}

.fs-body-product-BS4-HANPU .category__hanpu-shipping dd::before {
  content: ":";
  margin-right: 5px;
}

.fs-body-product-BS4-HANPU .category__hanpu-text {
  width: calc(60% - 10px);
}

.fs-body-product-BS4-HANPU .category__hanpu-text dl {
  display: flex;
  flex-wrap: nowrap;
  font-size: 16px;
}

.fs-body-product-BS4-HANPU .category__hanpu-text dt {
  width: 6em;
  text-align: left;
}

.fs-body-product-BS4-HANPU .category__hanpu-text dd {
  width: 100%;
  margin: 0;
  text-align: left;
}

.fs-body-product-BS4-HANPU .category__hanpu-text dd::before {
  content: ":";
  margin-right: 5px;
}

@media screen and (max-width: 767px) {
  .fs-body-product-BS4-HANPU .category__hanpu-text {
    width: 100%;
  }
}
.fs-body-product-BS4-HANPU .category__passion-wrapper {
  display: flex;
  flex-wrap: nowwrap;
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.fs-body-product-BS4-HANPU .category__passion-image {
  width: 38%;
}

@media screen and (max-width: 767px) {
  .fs-body-product-BS4-HANPU .category__passion-image {
    width: 100%;
  }
}
.fs-body-product-BS4-HANPU .category__passion-text {
  width: calc(62% - 10px);
}

@media screen and (max-width: 767px) {
  .fs-body-product-BS4-HANPU .category__passion-text {
    width: 100%;
  }
}


/*おまかせ*/
.fs-body-product-OMS-C .category__pagetop-header {
  color: #FF6600;
}

.fs-body-product-OMS-C .category__txt-color-f48-red {
  color: #b20000;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .fs-body-product-OMS-C .category__txt-color-f48-red {
    font-size: 22px;
  }
}
.fs-body-product-OMS-C .category__txt-color-f48-orange {
  color: #FF6600;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .fs-body-product-OMS-C .category__txt-color-f48-orange {
    font-size: 22px;
  }
}
.fs-body-product-OMS-C .category__txt-center-f36 {
  font-size: 36px;
  line-height: 1.4;
  font-weight: 700;
  margin: 10px 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .fs-body-product-OMS-C .category__txt-center-f36 {
    font-size: 18px;
  }
}
.fs-body-product-OMS-C .category__txt-underline-f48 {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
}

.fs-body-product-OMS-C .category__txt-underline-f48 span {
  background: linear-gradient(transparent 70%, #FFCC00 30%);
}

@media screen and (max-width: 767px) {
  .fs-body-product-OMS-C .category__txt-underline-f48 {
    font-size: 22px;
  }
}


.fs-body-product-OMS-A .category__pagetop-header {
  color: #FF6600;
}

.fs-body-product-OMS-A .category__txt-color-f48-red {
  color: #b20000;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .fs-body-product-OMS-A .category__txt-color-f48-red {
    font-size: 22px;
  }
}
.fs-body-product-OMS-A .category__txt-color-f48-orange {
  color: #FF6600;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .fs-body-product-OMS-A .category__txt-color-f48-orange {
    font-size: 22px;
  }
}
.fs-body-product-OMS-A .category__txt-center-f36 {
  font-size: 36px;
  line-height: 1.4;
  font-weight: 700;
  margin: 10px 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .fs-body-product-OMS-A .category__txt-center-f36 {
    font-size: 18px;
  }
}
.fs-body-product-OMS-A .category__txt-underline-f48 {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
}

.fs-body-product-OMS-A .category__txt-underline-f48 span {
  background: linear-gradient(transparent 70%, #FFCC00 30%);
}

@media screen and (max-width: 767px) {
  .fs-body-product-OMS-A .category__txt-underline-f48 {
    font-size: 22px;
  }
}


.fs-body-product-OMS-B .category__pagetop-header {
  color: #FF6600;
}

.fs-body-product-OMS-B .category__txt-color-f48-red {
  color: #b20000;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .fs-body-product-OMS-B .category__txt-color-f48-red {
    font-size: 22px;
  }
}
.fs-body-product-OMS-B .category__txt-color-f48-orange {
  color: #FF6600;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .fs-body-product-OMS-B .category__txt-color-f48-orange {
    font-size: 22px;
  }
}
.fs-body-product-OMS-B .category__txt-center-f36 {
  font-size: 36px;
  line-height: 1.4;
  font-weight: 700;
  margin: 10px 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .fs-body-product-OMS-B .category__txt-center-f36 {
    font-size: 18px;
  }
}
.fs-body-product-OMS-B .category__txt-underline-f48 {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
}

.fs-body-product-OMS-B .category__txt-underline-f48 span {
  background: linear-gradient(transparent 70%, #FFCC00 30%);
}

@media screen and (max-width: 767px) {
  .fs-body-product-OMS-B .category__txt-underline-f48 {
    font-size: 22px;
  }
}


/*フルーツキャビア*/
.fs-body-product-FC-OM .category__pagetop-header {
  color: #FF5C26;
}

.fs-body-product-FC-OM h2.category__h2-headmark {
  border-left: 10px #FF5C26 solid;
}

.fs-body-product-FC-OM ul.category__list-ingredients {
  text-align: left;
  padding-left: 3em;
  margin-bottom: 20px;
}

.fs-body-product-FC-OM ul.category__list-ingredients li {
  list-style-type: disc;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .fs-body-product-FC-OM ul.category__list-ingredients li {
    font-size: 16px;
  }
}


.fs-body-product-FC-WK .category__pagetop-header {
  color: #FF5C26;
}

.fs-body-product-FC-WK h2.category__h2-headmark {
  border-left: 10px #FF5C26 solid;
}

.fs-body-product-FC-WK ul.category__list-ingredients {
  text-align: left;
  padding-left: 3em;
  margin-bottom: 20px;
}

.fs-body-product-FC-WK ul.category__list-ingredients li {
  list-style-type: disc;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .fs-body-product-FC-WK ul.category__list-ingredients li {
    font-size: 16px;
  }
}


/*ベルガモット*/
.fs-body-product-BRGM-1 .category__pagetop-header {
  color: #009900;
}

.fs-body-product-BRGM-1 h2.category__h2-headmark {
  border-left: 10px #009900 solid;
}

.fs-body-product-BRGM-1 .category__txt-qa {
  margin-top: 20px;
  font-size: 20px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .fs-body-product-bBRGM-1 .category__txt-qa {
    font-size: 16px;
  }
}
.fs-body-product-BRGM-1 .category__txt-qa p {
  margin-left: 30px;
}

.fs-body-product-BRGM-1 .category__txt-qa span {
  margin-left: -25px;
  margin-right: 5px;
}


/*グリーンレモン*/
.fs-body-product-GL-1 .category__pagetop-header {
  color: #00B200;
}

.fs-body-product-GL-1 h2.category__h2-headmark {
  border-left: 10px #00B200 solid;
}

.fs-body-product-GL-1 ol.category__txt-list {
  text-align: left;
  padding-left: 3em;
  margin-bottom: 20px;
}

.fs-body-product-GL-1 ol.category__txt-list li {
  text-align: left;
  list-style-type: disc;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .fs-body-product-GL-1 ol.category__txt-list li {
    font-size: 16px;
  }
}


.fs-body-product-GL-3 .category__pagetop-header {
  color: #00B200;
}

.fs-body-product-GL-3 h2.category__h2-headmark {
  border-left: 10px #00B200 solid;
}

.fs-body-product-GL-3 ol.category__txt-list {
  text-align: left;
  padding-left: 3em;
  margin-bottom: 20px;
}

.fs-body-product-GL-3 ol.category__txt-list li {
  text-align: left;
  list-style-type: disc;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .fs-body-product-GL-3 ol.category__txt-list li {
    font-size: 16px;
  }
}


/*レモン*/
.fs-body-product-LINOKA01 .category__pagetop-header {
  color: #FFBF00;
}

.fs-body-product-LINOKA01 h2.category__h2-headmark {
  border-left: 10px #FFBF00 solid;
}


.fs-body-product-LEMO-01 .category__pagetop-header {
  color: #FFBF00;
}

.fs-body-product-LEMO-01 h2.category__h2-headmark {
  border-left: 10px #FFBF00 solid;
}


.fs-body-product-MLEMO-01 .category__pagetop-header {
  color: #FFBF00;
}

.fs-body-product-MLEMO-01 h2.category__h2-headmark {
  border-left: 10px #FFBF00 solid;
}

/*ライム*/
.fs-body-product-LIME-1 .category__pagetop-header {
  color: #2DB200;
}

.fs-body-product-LIME-1 h2.category__h2-headmark {
  border-left: 10px #2DB200 solid;
}

/*ハウスみかん*/
.fs-body-product-HM-3 .category__pagetop-header {
  color: #d44709;
}

.fs-body-product-HM-3 h2.category__h2-headmark {
  border-left: 10px #d44709 solid;
}


.fs-body-product-HM-1 .category__pagetop-header {
  color: #d44709;
}

.fs-body-product-HM-1 h2.category__h2-headmark {
  border-left: 10px #d44709 solid;
}


.fs-body-product-HM-5K .category__pagetop-header {
  color: #d44709;
}

.fs-body-product-HM-5K h2.category__h2-headmark {
  border-left: 10px #d44709 solid;
}


.fs-body-product-HM-G3 .category__pagetop-header {
  color: #d44709;
}

.fs-body-product-HM-G3 h2.category__h2-headmark {
  border-left: 10px #d44709 solid;
}


/*雨よけみかん*/
.fs-body-product-AM-3 .category__pagetop-header {
  color: #FF9900;
}

.fs-body-product-AM-3 h2.category__h2-headmark {
  border-left: 10px #FF9900 solid;
}


.fs-body-product-AM-5 .category__pagetop-header {
  color: #FF9900;
}

.fs-body-product-AM-5 h2.category__h2-headmark {
  border-left: 10px #FF9900 solid;
}


/*温州みかん*/
.fs-body-product-UM-5 .category__pagetop-header {
  color: #FF9326;
}

.fs-body-product-UM-5 h2.category__h2-headmark {
  border-left: 10px #FF9326 solid;
}


.fs-body-product-UM-3 .category__pagetop-header {
  color: #FF9326;
}

.fs-body-product-UM-3 h2.category__h2-headmark {
  border-left: 10px #FF9326 solid;
}


.fs-body-product-M-5 .category__pagetop-header {
  color: #FF9326;
}

.fs-body-product-M-5 h2.category__h2-headmark {
  border-left: 10px #FF9326 solid;
}


.fs-body-product-M-3 .category__pagetop-header {
  color: #FF9326;
}

.fs-body-product-M-3 h2.category__h2-headmark {
  border-left: 10px #FF9326 solid;
}


.fs-body-product-M-SG3 .category__pagetop-header {
  color: #FF9326;
}

.fs-body-product-M-SG3 h2.category__h2-headmark {
  border-left: 10px #FF9326 solid;
}

/*フルーツきんかん*/
.fs-body-product-HKN-15P .category__pagetop-header {
  color: #FF9900;
}

.fs-body-product-HKN-15P h2.category__h2-headmark {
  border-left: 10px #FF9900 solid;
}


.fs-body-product-HKN-06P .category__pagetop-header {
  color: #FF9900;
}

.fs-body-product-HKN-06P h2.category__h2-headmark {
  border-left: 10px #FF9900 solid;
}


/*グレープフルーツ*/
.fs-body-product-GF-P3 .category__pagetop-header {
  color: #FF6666;
}

.fs-body-product-GF-P3 h2.category__h2-headmark {
  border-left: 10px #FF6666 solid;
}


.fs-body-product-GF-R3 .category__pagetop-header {
  color: #FF6666;
}

.fs-body-product-GF-R3 h2.category__h2-headmark {
  border-left: 10px #FF6666 solid;
}


.fs-body-product-GF-WD3 .category__pagetop-header {
  color: #FF6666;
}

.fs-body-product-GF-WD3 h2.category__h2-headmark {
  border-left: 10px #FF6666 solid;
}


.fs-body-product-GF-R3K .category__pagetop-header {
  color: #FF6666;
}

.fs-body-product-GF-R3K h2.category__h2-headmark {
  border-left: 10px #FF6666 solid;
}


.fs-body-product-GF-P3K .category__pagetop-header {
  color: #FF6666;
}

.fs-body-product-GF-P3K h2.category__h2-headmark {
  border-left: 10px #FF6666 solid;
}


/*なつみ*/
.fs-body-product-NATSUMI .category__pagetop-header {
  color: #FF9900;
}

.fs-body-product-NATSUMI h2.category__h2-headmark {
  border-left: 10px #FF9900 solid;
}


.fs-body-product-NATSUMI-K5 .category__pagetop-header {
  color: #FF9900;
}

.fs-body-product-NATSUMI-K5 h2.category__h2-headmark {
  border-left: 10px #FF9900 solid;
}


.fs-body-product-NATSUMI-K3 .category__pagetop-header {
  color: #FF9900;
}

.fs-body-product-NATSUMI-K3 h2.category__h2-headmark {
  border-left: 10px #FF9900 solid;
}


/*柚子*/
.fs-body-product-YUZU-1 .category__pagetop-header {
  color: #FFBF00;
}

.fs-body-product-YUZU-1 h2.category__h2-headmark {
  border-left: 10px #FFBF00 solid;
}

/*幸水梨*/
.fs-body-product-KN-5 .category__pagetop-header {
  color: #999900;
}

.fs-body-product-KN-5 h2.category__h2-headmark {
  border-left: 10px #999900 solid;
}


.fs-body-product-KN-10 .category__pagetop-header {
  color: #999900;
}

.fs-body-product-KN-10 h2.category__h2-headmark {
  border-left: 10px #999900 solid;
}

/*豊水梨*/
.fs-body-product-HN-5 .category__pagetop-header {
  color: #D9A300;
}

.fs-body-product-HN-5 h2.category__h2-headmark {
  border-left: 10px #D9A300 solid;
}


.fs-body-product-HN-10 .category__pagetop-header {
  color: #D9A300;
}

.fs-body-product-HN-10 h2.category__h2-headmark {
  border-left: 10px #D9A300 solid;
}


/*秋月梨*/
.fs-body-product-AD-10 .category__pagetop-header {
  color: #660000;
}

.fs-body-product-AD-10 h2.category__h2-headmark {
  border-left: 10px #660000 solid;
}


.fs-body-product-AD-5 .category__pagetop-header {
  color: #660000;
}

.fs-body-product-AD-5 h2.category__h2-headmark {
  border-left: 10px #660000 solid;
}


/*新高梨*/
.fs-body-product-NN-02 .category__pagetop-header {
  color: #660000;
}

.fs-body-product-NN-02 h2.category__h2-headmark {
  border-left: 10px #660000 solid;
}


.fs-body-product-NN-03 .category__pagetop-header {
  color: #660000;
}

.fs-body-product-NN-03 h2.category__h2-headmark {
  border-left: 10px #660000 solid;
}


.fs-body-product-NN-04 .category__pagetop-header {
  color: #660000;
}

.fs-body-product-NN-04 h2.category__h2-headmark {
  border-left: 10px #660000 solid;
}


.fs-body-product-NN-05 .category__pagetop-header {
  color: #660000;
}

.fs-body-product-NN-05 h2.category__h2-headmark {
  border-left: 10px #660000 solid;
}


.fs-body-product-NN-06 .category__pagetop-header {
  color: #660000;
}

.fs-body-product-NN-06 h2.category__h2-headmark {
  border-left: 10px #660000 solid;
}


/*エメラルドメロン*/
.fs-body-product-ME-1E .category__pagetop-header {
  color: #00B200;
}

.fs-body-product-ME-1E h2.category__h2-headmark {
  border-left: 10px #00B200 solid;
}


.fs-body-product-ME-2E .category__pagetop-header {
  color: #00B200;
}

.fs-body-product-ME-2E h2.category__h2-headmark {
  border-left: 10px #00B200 solid;
}


/*アンテナスイカ*/
.fs-body-product-ANTENA-1 .category__pagetop-header {
  color: #008C00;
}

.fs-body-product-ANTENA-1 h2.category__h2-headmark {
  border-left: 10px #008C00 solid;
}


.fs-body-product-ANTENA-2 .category__pagetop-header {
  color: #008C00;
}

.fs-body-product-ANTENA-2 h2.category__h2-headmark {
  border-left: 10px #008C00 solid;
}


/*小玉アンテナスイカ*/
.fs-body-product-ESUIKA-1 .category__pagetop-header {
  color: #FF0000;
}

.fs-body-product-ESUIKA-1 h2.category__h2-headmark {
  border-left: 10px #FF0000 solid;
}


.fs-body-product-ESUIKA-5 .category__pagetop-header {
  color: #FF0000;
}

.fs-body-product-ESUIKA-5 h2.category__h2-headmark {
  border-left: 10px #FF0000 solid;
}


.fs-body-product-ESUIKA-2 .category__pagetop-header {
  color: #FF0000;
}

.fs-body-product-ESUIKA-2 h2.category__h2-headmark {
  border-left: 10px #FF0000 solid;
}


.fs-body-product-ESUIKA-3 .category__pagetop-header {
  color: #FF0000;
}

.fs-body-product-ESUIKA-3 h2.category__h2-headmark {
  border-left: 10px #FF0000 solid;
}

.fs-body-product-ESUIKA-4 .category__pagetop-header {
  color: #FF0000;
}

.fs-body-product-ESUIKA-4 h2.category__h2-headmark {
  border-left: 10px #FF0000 solid;
}


/*さくらんぼ*/
.fs-body-product-SAKURANBO-01 .category__pagetop-header {
  color: #B20000;
}

.fs-body-product-SAKURANBO-01 h2.category__h2-headmark {
  border-left: 10px #B20000 solid;
}


.fs-body-product-SAKURANBO-02 .category__pagetop-header {
  color: #B20000;
}

.fs-body-product-SAKURANBO-02 h2.category__h2-headmark {
  border-left: 10px #B20000 solid;
}

.fs-body-product-SAKURANBO-G1 .category__pagetop-header {
  color: #B20000;
}

.fs-body-product-SAKURANBO-G1 h2.category__h2-headmark {
  border-left: 10px #B20000 solid;
}


/*フルーツトマト*/
.fs-body-product-FT-E02 .category__pagetop-header {
  color: #006600;
}

.fs-body-product-FT-E02 h2.category__h2-headmark {
  border-left: 10px #006600 solid;
}


.fs-body-product-FT-YASU02 .category__pagetop-header {
  color: #006600;
}

.fs-body-product-FT-YASU02 h2.category__h2-headmark {
  border-left: 10px #006600 solid;
}


.fs-body-product-FT-E800 .category__pagetop-header {
  color: #006600;
}

.fs-body-product-FT-E800 h2.category__h2-headmark {
  border-left: 10px #006600 solid;
}

/*まほろばトマト*/
.fs-body-product-FT-MAHO .category__pagetop-header {
  color: #FF0000;
}

.fs-body-product-FT-MAHO h2.category__h2-headmark {
  border-left: 10px #FF0000 solid;
}

/*麻岡さんのトマト*/
.fs-body-product-FT-SUN800 .category__pagetop-header {
  color: #FF0000;
}

.fs-body-product-FT-SUN800 h2.category__h2-headmark {
  border-left: 10px #FF0000 solid;
}


.fs-body-product-FT-MIX2 .category__pagetop-header {
  color: #FF0000;
}

.fs-body-product-FT-MIX2 h2.category__h2-headmark {
  border-left: 10px #FF0000 solid;
}


.fs-body-product-FT-ASET .category__pagetop-header {
  color: #FF0000;
}

.fs-body-product-FT-ASET h2.category__h2-headmark {
  border-left: 10px #FF0000 solid;
}


/*文旦しぼり*/
.fs-body-product-BJ100-01 .category__pagetop-header {
  color: #FFCC00;
}

.fs-body-product-BJ100-01 h2.category__h2-headmark {
  border-left: 10px #FFCC00 solid;
}


.fs-body-product-BJ100-02 .category__pagetop-header {
  color: #FFCC00;
}

.fs-body-product-BJ100-02 h2.category__h2-headmark {
  border-left: 10px #FFCC00 solid;
}


/*小夏しぼり*/
.fs-body-product-KJ100-01 .category__pagetop-header {
  color: #FFCC00;
}

.fs-body-product-KJ100-01 h2.category__h2-headmark {
  border-left: 10px #FFCC00 solid;
}


.fs-body-product-KJ100-02 .category__pagetop-header {
  color: #FFCC00;
}

.fs-body-product-KJ100-02 h2.category__h2-headmark {
  border-left: 10px #FFCC00 solid;
}

/*ぶんたん山の蜂蜜*/
.fs-body-product-BHM-YA .category__pagetop-header {
  color: #FFCC00;
}

.fs-body-product-BHM-YA h2.category__h2-headmark {
  border-left: 10px #FFCC00 solid;
}


.fs-body-product-BHM-YA120 .category__pagetop-header {
  color: #FFCC00;
}

.fs-body-product-BHM-YA120 h2.category__h2-headmark {
  border-left: 10px #FFCC00 solid;
}


.fs-body-product-BHM-YA2 .category__pagetop-header {
  color: #FFCC00;
}

.fs-body-product-BHM-YA2 h2.category__h2-headmark {
  border-left: 10px #FFCC00 solid;
}


/*文旦と小夏の結晶玉*/
.fs-body-product-AME .category__pagetop-header {
  color: #FFBF00;
}

.fs-body-product-AME h2.category__h2-headmark {
  border-left: 10px #FFBF00 solid;
}

/*鰹のたたき*/
.fs-body-product-KT3-01 .category__pagetop-header {
  color: #470801;
}

.fs-body-product-KT3-01 h2.category__h2-headmark {
  border-left: 10px #470801 solid;
}

.fs-body-product-KT5-01 .category__pagetop-header {
  color: #470801;
}

.fs-body-product-KT5-01 h2.category__h2-headmark {
  border-left: 10px #470801 solid;
}

/*四万十うなぎ*/
.fs-body-product-UNAGI2 .category__pagetop-header {
  color: #470801;
}

.fs-body-product-UNAGI2 h2.category__h2-headmark {
  border-left: 10px #470801 solid;
}

.fs-body-product-UNAGI3 .category__pagetop-header {
  color: #470801;
}

.fs-body-product-UNAGI3 h2.category__h2-headmark {
  border-left: 10px #470801 solid;
}

.fs-body-product-UNAGIG .category__pagetop-header {
  color: #470801;
}

.fs-body-product-UNAGIG h2.category__h2-headmark {
  border-left: 10px #470801 solid;
}

.fs-body-product-UNAGIK .category__pagetop-header {
  color: #470801;
}

.fs-body-product-UNAGIK h2.category__h2-headmark {
  border-left: 10px #470801 solid;
}

/***********************
    価格表示の調整について
************************/

.fs-c-productPrices--productDetail .fs-c-productPrice:not(.fs-c-productPrice--listed) .fs-c-productPrice__main__price{
    font-size: 3rem;
    font-weight: bold; 
}

/***********************
    商品記号の枠
************************/
.fs-c-productNumber {
	width: 200px;
  height: 21px;
	padding: 2px;
	text-align: center;
}

/***********************
    送料込の色と文字の大きさ
************************/

.fs-c-productPostage__label {
  color: #990100;
	font-size: 1.5rem;
	font-weight: bold; 
}

.mikan-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .mikan-image-area {
    flex-shrink: 0;
    width: 200px;
  }
  
  .mikan-image-area img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .mikan-content-area {
    flex: 1;
  }
  
  .mikan-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
	  text-align: left;
  }
  
  .mikan-description {
    line-height: 1.6;
	  text-align: left;
  }
  
  /* スマートフォン向けの調整 */
  @media (max-width: 768px) {
    .mikan-container {
      gap: 1rem; /* 狭い画面では左右の間隔を少し縮める */
    }
  
    .mikan-image-area {
      width: 120px; /* 画面幅が狭い時は画像を少しコンパクトに */
    }
  
    .mikan-title {
      font-size: 1.2rem; /* フォントサイズを少し小さく */
    }
  }
  /* 会社概要テーブル */
dl, dt, dd {
  margin: 0;
  padding: 0;
/*   リセットCSS（適用するサイトで定義済なら不要） */
}

.company-overview {
  border-top: 1px solid #ddd;
}

.company-overview .item {
  padding: 24px 0;
  border-bottom: 1px solid #ddd;
}

@media screen and (min-width: 560px) {
  .company-overview .item {
    display: grid;
    /*項目名：名称の横幅比率*/
    grid-template-columns: 1fr 5fr;
    /*項目名：名称の間の余白*/
    column-gap: 32px;
    -webkit-column-gap: 32px;
    -moz-column-gap: 32px;
  }
}
		border: 1px solid #DDD;
		padding: 20px;
		@media screen and (max-width: 768px){
			
			display: block;
			border-bottom: none;
			width: 100%;
		}
	}
}