ul,
ul li {
  list-style: none;
}

.fruWidthPC {
  display: flex;
}

#nav_text {
  color: #555;
}
#Breadcrumb {
  font-size: 12px;
}
.fruFixedWillsCoinWrap.mobile {
  display: none;
}
.fruFixedHeader {
  position: sticky !important;
  top: 0;
  z-index: 1910;
  padding: 0 100px;
  min-width: 1100px;
}
.fruFixedGnavi {
  position: sticky;
  top: 80px;
  z-index: 1908;
  background-color: #fff;
  padding: 0 100px;
  min-width: 1100px;
}
.fruFixedBreadcrumb {
  position: sticky;
  top: 132px;
  width: 100%;
  z-index: 1908;
  padding: 14px 100px !important;
  min-width: 1300px;
}
.fruHeaderMenu {
  box-sizing: border-box;
  min-height: 70px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center;
  justify-content: space-between;
  margin-bottom: 28px;
  background-color: #ffffff;
  padding: 0 100px;
  min-width: 1300px;
  /* border-bottom: 1px solid rgba(173, 173, 173, 1); */
  box-shadow: 0px -1px 12.3px rgba(0, 0, 0, 0.16);
}

.fruHeaderMenu > div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.fruHeaderItemTopWrap {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
}

.fruSearchWrapper {
  display: flex;
  position: relative;
}
.fruSearchHeaderMenuLogo {
  height: 96px;
  width: 199px;
}

.fruSearchWrapper input {
  width: 250px;
  height: 32px;
  border-radius: 2px;
  border: 1px solid #d5d5d5;
  border-right: none;
  border-top-right-radius: unset;
  border-bottom-right-radius: unset;
  padding: 10px;
  font-size: 10px;
}
.fruSearchWrapper .fruSearchButton {
  border: 1px solid #d5d5d5;
  width: 32px;
  height: 32px;
  border-radius: 2px;
  border-left: none;
  border-top-left-radius: unset;
  border-bottom-left-radius: unset;
}

.fruSearchWrapper .fruSearchButton i {
  color: #26241d;
  position: relative;
}
.fruSearchWrapper .fruSearchButton i::after {
  content: " ";
  position: absolute;
  width: 1px;
  height: 20px;
  background-color: #d5d5d5;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.fruWillsCoinWrap {
  display: flex;
  align-items: center;
  background: linear-gradient(
    90deg,
    rgba(251, 233, 190, 0.78) 0%,
    rgba(253, 238, 129, 0.761812) 46.63%,
    rgba(255, 206, 58, 0.741) 100%
  );
  border: 0.5px solid #fffdf1;
  backdrop-filter: blur(4.7px);
  /* Note: backdrop-filter has minimal browser support */
  border-radius: 2px;
  min-height: 36px;
  padding-left: 8px;
  padding-right: 16px;
  gap: 24px;
  font-size: 12px;
}

.fruWillsCoinWrap .fruWillsCoinInnerLeft {
  display: flex;
  align-items: center;
  gap: 30px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.84);
  height: 24px;
  padding-left: 16px;
  padding-right: 16px;
}

.fruWillsCoinWrap .fruWillsCoinInnerLeft .coin {
  font-weight: 900;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #000;
}

.fruWillsCoinWrap .fruWillsCoinInnerRight {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fruWillsCoinWrap .fruWillsCoinInnerRight .price {
  font-weight: 900;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #ff0000;
}

/* header breadcrumb */
.fruBreadcrumb {
  margin-bottom: 0 !important;
  height: 40px;
  box-sizing: border-box;
}
.fruBreadcrumbInner {
  background-color: #d2d2d2;
}
/* Back button */

.fruBackBtnWrap {
  height: 24px;
  margin-bottom: 20px;
  text-align: start;
}

.fruBackButton {
  height: 24px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

.fruBackIcon {
  width: 42px;
  height: 7px;
  margin-right: 16px;
  padding: 8.5px 0px;
  filter: brightness(1.5);
  vertical-align: middle;
  display: inline-block;
  color: #98730c;
}

.fruBackText {
  font-weight: 500;
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #000;
}

.fruBackButton:hover,
.fruBackButton:focus {
  text-decoration: none;
  color: #98730c;
}

.fruBackButton:hover .fruBackIcon {
  animation: slideOutLeft 0.35s ease-out forwards,
    slideInRight 0.35s ease-out forwards;
  animation-delay: 0s, 0.1s;
}

.fruBackButton:not(:hover) .fruBackIcon {
  animation: slideOutRight 0.35s ease-out forwards,
    slideInLeft 0.35s ease-in-out forwards;
  animation-delay: 0s, 0.1s;
}

@keyframes slideOutLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(50%);
  }
  60% {
    transform: translateX(-15%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-50%);
  }
  60% {
    transform: translateX(15%);
  }
  100% {
    transform: translateX(0);
  }
}

/* product list start */
.hideMobile {
  display: block !important;
}
.fruHideMobileFlex {
  display: flex !important;
}
.showMobile {
  display: none !important;
}

.fruHeadTxA {
  font-weight: 700;
  height: 22px;
  padding: 14px 24px;
  border: 0.5px solid #846e31;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #000;
}
.fruBlackColor {
  color: #000;
}
.fruRedColor {
  color: #f40001;
}
.fruAnnotationHolder {
  margin-top: 16px;
  margin-bottom: 14px;
  padding: 4px 0px 4px 21px;
  font-size: 12px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.5px;
  border: 0.5px solid #af9a00;
  border-radius: 2px;
  background: #fffaeb;
  color: #846e31;
}
.fruAnnotationHolder i {
  margin-right: 5px;
}
.fruAnnotationText {
  margin-bottom: 17px !important;
  font-size: 11px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.5px;
}

.fru-redColor {
  color: #c40102;
}
.fru-annotation-yellow {
  background: linear-gradient(to right, #ffd760 40%, #ffedb7 80%, #ffcf40 100%);
  padding: 4px 16px;
  font-size: 12px;
  font-weight: 400;
  color: #000;
  margin-bottom: 10px;
  margin-top: 10px;
}
.fruProductList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 25px;
  padding: 0;
  margin-top: 17px;
}
.fruProductItem:hover {
  text-decoration: none;
  background-color: #FFFEF7;
}
.fruProductBody {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 7px;
  padding: 9px;
  justify-content: center;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25),
    inset 0px 0px 5.6px rgba(255, 255, 255, 1);
}
.fruProductImg {
  width: 252px;
  height: 252px;
  border-radius: 4px;
  background-color: #f0f0f0;
  margin-bottom: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fruProductImg img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
}

.fruProductBadgeHolder {
  position: absolute;
  top: 9px;
  right: 0;
  color: #ffff;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  display: flex;
}
.fruProductBadge {
  display: block;
  background-color: #c40001;
  width: 48px;
  height: 14px;
  padding: 3px 4px;
  line-height: 14px;
  font-size: 12px;
  color: #ffff;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}
.fruBadgeFrozen {
  background-color: #009cdc;
}
.fruBadgeCold {
  background-color: #005396;
}
.fruBadgeRoomTemp {
  background-color: #e55927;
}
.fruProductDesc {
  height: 56px;
  margin: 0;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0px;
  display: -webkit-box;
  color: #000;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fruProductArea {
  line-height: 12px;
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.6px;
  color: #846e31;
  margin-bottom: 6px;
  font-family: Noto Sans JP, sans-serif;
}
.fruProductPriceArea {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #d5d5d5;
  padding-top: 14px;
  margin: 14px 0px;
}
.fruProductPriceDesc {
  font-size: 12px;
  font-weight: 400;
  color: #000;
}
.fruProductPriceHolder {
  color: #000;
}
.fruProductPrice {
  font-size: 18px;
  font-weight: 700;
  color: #c40102;
}
.fruProductYen {
  font-size: 12px;
  font-weight: 400;
  color: #c40102;
}
/* product list end */
/* sidebar start */
.widthFix {
  display: flex;
}
.wrap {
  border: 1px solid #f2efe7;
}
#desktopWrap {
  border: 1px solid #f2efe7;
}
.fruSideBarSticky {
  position: sticky;
  top: 190px;
  z-index: 1503;
  height: calc(100dvh - 200px);
  ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: auto;
}
.fruAsideTitle {
  background-color: #f2efe7;
  margin: 0;
}
.fruAsideTitle a {
  display: block;
  font-size: 16px;
  height: 68px;
  line-height: 68px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #846e31;
  text-decoration: none;
  border-radius: 2px;
}
.fruAsideTitle a.active {
  display: block;
  color: #ffffff;
  background-color: #bfb9a8;
}
.fruAsideTitle img {
  vertical-align: middle;
}

/* multi level navigation */
.fruToggleSection {
  position: relative;
}
.sidebarToggle {
  width: 100%;
  background-color: #ffffff;
  color: #322416;
  font-size: 14px;
  font-weight: 700;
  padding: 16px;
  border: none;
  cursor: pointer;
  height: 50px;
  line-height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 2px;
  z-index: 2;
}
.sidebarToggle::after {
  font-family: "FontAwesome";
  content: "\f0da";
  position: absolute;
  right: 16px;
  top: 0;
  width: 8px;
  height: 18px;
  color: #322416;
  font-weight: 900;
}
.sidebarToggle.active {
  background-color: #846e31;
  color: #ffffff;
}
.sidebarToggle.active::after {
  color: #ffffff;
}
.sidebarToggle:hover {
  background-color: #846e31;
  color: #ffffff;
}
.sidebarToggle:hover::after {
  color: #ffffff;
}

.fruSidebarNavHolder {
  z-index: 1001;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: -900px;
  width: 840px;
  height: 830px;
  padding: 16px 30px;
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow-y: auto;
}
.fruSidebarNavHolder.is-visible {
  display: grid;
  height: 600px;
}
.fruSidebarNavHolder.fruRegionHolder {
  height: 516px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
.fruSidebarNavHolder.fruDonationHolder {
  width: 200px;
  height: 380px;
  right: -260px;
  gap: 0;
}
.fruSidebarNavHolder.fruRegionHolder ul li {
  margin: 2px 0;
}
.fruSidebarNavHolder.fruDonationHolder > div > h3 {
  border-bottom: 1px solid #846e31;
}

/*active nav aside*/
.fruAsideActiveListHeader > a {
  display: block;
  padding-left: 46px;
  position: relative;
  line-height: 44px;
  background-color: #f8f8ee;
  color: #98730c;
  font-weight: 700;
  font-size: 14px;
}
.fruAsideActiveListHeader > a::after {
  display: block;
  content: "";
  position: absolute;
  left: 26px;
  top: 7px;
  width: 12px;
  height: 16px;
  background: url("../images/fru-ums-img/aside-active.png") no-repeat 0 0;
}
ul.fruAsideActiveListItems {
  background-color: red;
  margin: 0;
  padding: 0;
  padding-inline-start: 0;
}
ul.fruAsideActiveListItems li a {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  color: #666;
  padding: 0 16px 0 65px;
  line-height: 1.5em;
  font-size: 13px;
  height: auto;
  min-height: 36px;
  position: relative;
}
ul.fruAsideActiveListItems li a::before {
  display: block;
  content: "";
  width: 12px;
  height: 1px;
  background-color: #846e31;
  position: absolute;
  left: 37px;
  top: 18px;
}
ul.fruAsideActiveListItems li a:hover {
  text-decoration: none;
  font-weight: 400;
  background-color: #f8f8ee;
}
ul.fruAsideActiveListItems li a:hover::before {
  height: 4px;
}
ul.fruAsideActiveListItems li.active a {
  color: #666;
  font-weight: 700;
  background-color: #f8f8ee;
}
ul.fruAsideActiveListItems li.active a::before {
  height: 4px;
}
ul.fruAsideActiveListItems.fruAsideActiveListDonationItems li a {
  padding-left: 25px;
  color: #666666;
}
ul.fruAsideActiveListItems.fruAsideActiveListDonationItems li a::before {
  display: none;
  content: "";
}

.fruAsideSecondNavHolder {
  padding: 19px 0;
  background: linear-gradient(to right, #f2efe7 9px, #ffffff 9px);
  border: 1px solid #f2efe7;
}
ul.fruAsideSecondNavList li a {
  padding: 5px 16px;
  font-size: 12px;
  color: #55422e;
  font-weight: 500;
  display: block;
  border-left: 9px solid #f2efe7;
  text-decoration: none;
}
ul.fruAsideSecondNavList li a:hover {
  background-color: #f2efe7;
  border-color: #846e31;
  color: #846e31;
}
ul.fruAsideSecondNavList li a.active {
  background-color: #846e31;
  border-color: #846e31;
  color: #fff;
}

a.fruAsideLink {
  border: 1px solid #f2efe7;
  display: block;
  padding: 16px 16px 16px 24px;
  font-size: 12px;
  color: #674c00;
  font-weight: 500;
  position: relative;
}
a.fruAsideLink:hover {
  background-color: #f7f6f1;
  color: #674c00;
}
a.fruAsideLink::after {
  font-family: "FontAwesome";
  content: "\f105";
  position: absolute;
  font-size: 1.4em;
  right: 19px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 22px;
  color: #674c00;
  font-weight: 900;
}
a.fruAsideLink:hover::after {
  color: #674c00;
}
.fruAsideDownloadLink {
  display: flex;
  justify-content: space-between;
  line-height: 18px;
  background-color: #f7f6f1;
}
.fruAsideDownloadLink:hover {
  text-decoration: none;
}
.fruAsideDownloadLinkText {
  padding: 16px 0 16px 16px;
  font-size: 12px;
  font-weight: 500;
  color: #674c00;
}
.fruAsideDownloadLinkIcon {
  background-color: #f2efe7;
  width: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #674c00;
}
.fruAsideDownloadLinkIcon i {
  color: #674c00;
}
.fruAsideOneStop {
  color: #3e2d0c;
  border-bottom: 1px solid #adadad;
  line-height: 18px;
  text-align: center;
  padding-bottom: 16px;
  width: 178px;
  margin: 0 auto 16px;
  font-size: 12px;
  font-weight: 500;
}
.fruAsideLinkHolder {
  background-color: #f2efe7;
  padding: 12px 0;
  width: 180px;
  margin: 0 auto;
  text-align: center;
}
.fruAsideLinkHolder > a {
  display: inline-block;
  padding: 0 16px;
  font-size: 12px;
  color: #846e31;
  font-weight: 500;
  border-bottom: 1px solid #af9b43;
}
.fruAsideLinkHolder > a i {
  color: #846e31;
  margin-left: 6px;
}
.fruAsideLinkHolder > a:last-child {
  border-bottom: none;
}
.fruAsideNotice {
  width: 175px;
  margin: 12px auto 0;
}
.fruAsideNotice p {
  position: relative;
  padding-left: 12px;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6em;
  text-align: left;
  color: #3e2d0c;
}
.fruAsideNotice p::after {
  content: "※";
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0;
  left: 0;
}

div.fruMenuGroup > h3 {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 32px;
}
div.fruMenuGroup > h3::after {
  position: absolute;
  width: 37px;
  height: 12px;
  display: block;
  content: "";
  background: url("../images/fru-ums-img/multi_nav_arrow.png") no-repeat right
    center;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
div.fruMenuGroup > h3 > a {
  width: 100%;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #000;
  padding-left: 10px;
}

.fruSidebarNavHolder > div > h3 > a:hover {
  background-color: #f8f8ee;
  text-decoration: none;
  color: #846e31;
}
.fruSidebarNavHolder > div ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #846e31;
}
.fruSidebarNavHolder > div ul li > a {
  position: relative;
  display: block;
  padding: 4px 20px 4px 10px;
  font-size: 11px;
  line-height: 110%;
}
.fruSidebarNavHolder > div ul li > a:hover {
  background-color: #f8f8ee;
  text-decoration: none;
  color: #846e31;
}
.fruSidebarNavHolder > div ul li > a::after {
  font-family: "FontAwesome";
  content: "\f105";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 13px;
}

.fruBtnCRToggle {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: 74px;
  padding: 12px;
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.2);
}
.fruBtnCRToggle span {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 50px;
  text-align: center;
  background-color: #b59a22;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}
.mobileWrapHolder {
  width: 100%;
  overflow-y: auto;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 1);
  z-index: 10001;

  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(100vh);
  transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
}
.mobileWrapHolder.show {
  max-height: calc(100vh - 74px);
  opacity: 1;
  transform: translateY(0);
}

.mobileWrapHolderHeader {
  background-color: #b59a22;
  color: #fff;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  position: relative;
}
.mobileWrapHolderCloseBtn {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  width: 22px;
  height: 22px;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobileSearchWrap {
  margin: 20px 0 9px;
}

/* Product detail Start */
.fruProductTitle {
  line-height: 1.3;
  font-size: 22px;
  font-weight: 700;
  color: black;
  margin-top: 20px;
  letter-spacing: 0.5px;
}

.fruSvgIcon {
  margin-top: 23px;
  margin-bottom: 28px;
  position: relative;
  width: 100%;
  text-align: left;
}

.fruProductDetailContainer {
  border: 0.5px solid #adadad;
  background-color: #f9f9f9;
  border-radius: 4px;
  padding: 26px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fruProDetArea {
  font-family: "Noto Sans JP", sans-serif;
  color: #846e31;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 6%;
  text-align: left;
  float: left;
}

.fruInlineBlock {
  display: inline-block !important;
}

.fruProductDetailDescription {
  border: 0.5px solid #adadad;
  border-radius: 2px;
  padding: 53px 43px 53px 43px;
  margin-top: 46px;
  display: flex;
  flex-direction: row;
  margin-bottom: 18px;
}

.fruProductDetailDescriptionInner1 {
  width: 45%;
  margin-right: 43px;
}

.fruMarginRight0 {
  width: 55%;
  margin-right: 0;
}

.fruProductDetailDescriptionInner1 h1 {
  font-size: 24px;
  font-weight: 700;
  color: black;
  margin-bottom: 14px;
}

.fruProductDetailDescriptionInner1 p {
  font-size: 12px;
  font-weight: 400;
  color: black;
  line-height: 1.5;
}

.fruProductDetailTable th {
  background-color: #f5f5f5;
  border-top: 0.5px solid gray;
  border-bottom: 0.5px solid gray;
  padding: 12px 50px 12px 19px;
  font-weight: 700;
  color: black;
  font-size: 12px;
  white-space: nowrap;
}

.fruProductDetailTable td {
  background-color: white;
  border-top: 0.5px solid gray;
  border-bottom: 0.5px solid gray;
  padding: 12px 17px 12px 19px;
  color: black;
  font-size: 10px;
  letter-spacing: 0.5px;
  font-weight: 400;
  line-height: 16px;
}

.fruProductHolder {
  font-size: 12px;
  padding: 14px 8px 14px 8px;
}

.fruRedText {
  color: #f40001;
}

.fruTextLeft {
  color: #000;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.5px;
  margin-top: 13px;
}

.fruTextLeftRed {
  color: #f40001;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
}

.fruMarginBottom30 {
  margin-bottom: 30px;
}

.fruProductValue {
  line-height: 100%;
  font-size: 20px;
  font-weight: 700;
  color: black;
  align-self: flex-start;
}

.fruProductValue span {
  font-weight: 700;
  font-size: 36px;
  color: #c40102;
}

.fruProductValue span span {
  font-weight: 700;
  font-size: 23px;
  color: #c40102;
}

.fruCoinValue {
  font-weight: 400;
  font-size: 14px;
  display: flex;
  align-items: center;
  color: #000;
  margin-top: 12px;
  align-self: flex-start;
}

.fruCoinValue span {
  font-weight: 700;
  font-size: 16px;
  margin-left: 5px;
  margin-right: 5px;
}

.fruProductCount {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-top: 40px;
  color: #000;
  font-size: 16px;
  font-weight: 700;
  align-self: flex-start;
}

.fruProductCount .fru14px {
  font-size: 14px;
}

.fruSelectWrap {
  position: relative;
  display: inline-block;
  width: 91px;
  height: 30px;
  margin-right: 30px;
  margin-left: 18px;
}

.fruSelect {
  width: 100%;
  height: 100%;
  font-size: 14px;
  padding: 0 28px 0 0;
  text-align: end;
  border-width: 0.5px 0 0.5px 0.5px;
  border-style: solid;
  border-color: #2c2c2c;
  box-shadow: inset -26px 0 0 0 #2c2c2c;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  background: transparent;
  position: relative;
  z-index: 1;
}

.fruSelectWrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.97322 0.169642C9.08631 0.282738 9.14286 0.416666 9.14286 0.571428C9.14286 0.72619 9.08631 0.860119 8.97322 0.973214L4.97321 4.97321C4.86012 5.08631 4.72619 5.14286 4.57143 5.14286C4.41667 5.14286 4.28274 5.08631 4.16964 4.97321L0.169643 0.973214C0.0565476 0.860119 0 0.72619 0 0.571428C0 0.416666 0.0565476 0.282738 0.169643 0.169642C0.282738 0.0565475 0.416667 0 0.571429 0H8.57143C8.72619 0 8.86012 0.0565475 8.97322 0.169642Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none; /* allow clicks to go through to the select */
  z-index: 2;
}

.fruProductRegister {
  border: 1px solid #e29804;
  border-radius: 20px;
  width: 279px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 13px;
  margin-bottom: -10px;
  z-index: 1;
  background-color: white;
}

.fruProductRegister p {
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  text-align: center;
  color: #e29804;
  margin: 0;
}

.fruProductAttention {
  font-weight: 400;
  font-size: 14px;
  margin-top: 20px;
  line-height: 1.5;
  color: black;
}

.fruProductDetail {
  color: #666666;
  font-size: 12px;
  letter-spacing: 0.5px;
  font-weight: 400;
  line-height: 1;
  margin-top: 30px;
}

.fruSubmitButton {
  width: 354px;
  height: 74px;
  flex-shrink: 0;
  border-radius: 4px;
  border: 1px solid #9a3634;
  background: #6d1800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 31px;
}

.fruSubmitButton span {
  color: var(--gold3, #f7f6f1);
  text-shadow: 0px 3px 5.9px rgba(0, 0, 0, 0.25);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.5px;
  flex: 1; /* Allow span to take available space */
  text-align: left; /* Center the text */
}

.fruSubmitButton svg:first-child {
  align-self: flex-end;
}

.fruSubmitButton svg:last-child {
  align-self: center;
  text-align: left;
  margin-right: 30px;
}

.fruBtnBack {
  margin-top: 50px;
}

.fruBtnBack a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid gray;
  text-align: center;
  border-radius: 2px;
  background-color: white;
  font-size: 15px;
  font-weight: 700;
  color: gray;
  width: 205px;
  height: 41px;
}

.fruBtnBack a:hover {
  color: white;
  text-decoration: none;
  background-color: #444444;
}

.fruSlickArea {
  float: left;
  width: 400px;
  margin-right: 50px;
}

.slick-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex !important;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 4px 10px;
  border-radius: 9999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 5;
  width: auto;
  max-width: 60%;
}

.slick-dots li {
  margin: 0px;
}

.slick-initialized .slick-dots {
  display: flex !important;
}

.slick-slider .slick-dots {
  margin: 0;
  padding: 0;
  list-style: none;
}

.slider-nav {
  width: 100% !important;
  margin: 20px 0;
}

.slider-nav .slick-slide {
  box-sizing: border-box;
}

.slider-nav img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.fruHide {
  display: none;
}

/* Product Detail End */

/* Paginantion  */

.fruPaginationWrap {
  margin: 108px 0 24px;
}
.fruPaginationInfo {
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  color: #000;
  text-align: start;
}

.fruPaginationNav {
  border: 0.5px solid #666666;
  border-radius: 4px;
  background: #fff;
}

.fruPageList {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 12px;
  height: 54px;
}

.fruPageItem {
  margin: 0 4px;
}

.fruPageLink {
  padding: 8px 12px;
  align-items: center;
  font-size: 14px;
  color: #1e1e1e;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.fruPageLink:hover {
  background: #f5f5f5;
  text-decoration: none;
}

.fruActive .fruPageLink {
  padding: 8px 12px;
  background: #eee;
  color: #666;
  pointer-events: none;
}

.fruPageItem.fruDisabled .fruPageLink {
  color: #757575;
  cursor: default;
  pointer-events: none;
}
.fruPageIcon {
  width: 16px;
  height: 16px;
  margin: 0 4px;
  fill: currentColor;
}

.fruPageEllipsis {
  font-size: 14px;
  color: #999;
  padding: 0 8px;
}
/* one-stop app2 */
.fruFlexRow {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.fruFlexColumn {
  display: flex;
  flex-direction: column;
}
.fruAppContainer {
  display: flex;
  flex-direction: column;
  width: 860px;
}
.fruAppTitleContainer {
  height: 52px;
  border: 0.5px solid #846e31;
  border-radius: 2px;
}
.fruAppTitleTextDesktop {
  font-family: Noto Sans JP, sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #000000;
  line-height: 24px;
  letter-spacing: 0.5px;
  padding-top: 15px;
  padding-left: 24px;
  padding-bottom: 13px;
}
.fruAppTitleTextMobile {
  display: none;
}
.fruAppContentContainer {
  width: fit-content;
  background-color: #fffef2;
  margin-top: 74px;
  padding-bottom: 28px;
}
.fruAppContent {
  display: flex;
  flex-direction: column;
}
.fruAppContentText {
  font-family: FontAwesome;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #000000;
  letter-spacing: 0.5px;
  text-align: start;
}
.fruAppContentLine {
  width: 100%;
  height: 0.5px;
  background-color: #8c6a26;
  margin-top: 56px;
}
.fruAppContentSpan {
  text-align: start;
  font-family: FontAwesome;
  font-weight: 400;
  font-size: 11px;
  line-height: 21px;
  letter-spacing: 0.5px;
  color: #b59a22;
  margin-bottom: 24px;
}
.fruAppContentSpan a {
  text-decoration: underline;
  color: #b59a22;
}
.fruAppContentWrap {
  display: flex;
  flex-direction: column;
  padding-left: 58px;
  padding-right: 58px;
}
.fruMt50 {
  margin-top: 50px;
}
.fruMt56 {
  margin-top: 56px;
}
.fruMt60 {
  margin-top: 60px;
}
.fruMt12 {
  margin-top: 12px;
}
.fruMb56 {
  margin-bottom: 56px;
}
.fruMb98 {
  margin-bottom: 98px;
}
.fruMb14 {
  margin-bottom: 14px;
}
.fruMb18 {
  margin-bottom: 18px;
}
.fruMb34 {
  margin-bottom: 34px;
}
.fruAppContentTitleWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.fruAppContentTitle {
  top: 0px;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  /* or 120% */
  letter-spacing: 0.5px;
  color: #8c6a26;
}
.fruAppContentTextWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.fruReversedTriangle {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #8c6a26;
  display: block;
  margin: 8px auto 0;
  border-radius: 2px;
}
.fruAppTabItemText {
  font-weight: 900;
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #000000;
}
.fruTextHighlight {
  font-weight: 900;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #944b37;
}
.fruOneStopTabOutWrap {
  background-color: #fffef2;
  width: 860px;
  border-radius: 20px;
}
.fruOneStopTabWrapper {
  width: 818px;
  background-color: #fff;
  margin-top: 30px;
  margin-left: 21px;
  margin-right: 21px;
  margin-bottom: 48px;
  position: relative;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}
.c-tabs__link.fruOneStopTabHeaderItem.is-active {
  background-color: #fffef2;
  border: none;
  padding: 0;
}
.c-tabs__link.fruOneStopTabHeaderItem.first {
  position: absolute;
  top: -50px;
  left: 40px;
}
.c-tabs__link.fruOneStopTabHeaderItem.last {
  position: absolute;
  top: -50px;
  right: 40px;
}
.fruTabInnerHeader {
  display: flex;
  flex-direction: row;
  gap: 6px;
}
.c-tabs__link.fruOneStopTabHeaderItem.is-active .fruTabInnerHeader {
  background-color: #fff;
  box-shadow: -5px -5px 6px -6px rgba(0, 0, 0, 0.2);
  cursor: initial;
}
.c-tabs__link.fruOneStopTabHeaderItem .fruTabInnerHeader {
  background: #ffd86d;
  box-shadow: none;
}
.c-tabs.fruOneStopTabWrap a,
.c-tabs.fruOneStopTabWrap a:hover img {
  opacity: inherit;
  text-decoration: none;
}
.fruTabInnerHeader {
  width: 360px;
  background: #ffffff;
  border-radius: 20px 20px 0px 0px;
  padding: 9px 4px 12px 32px;
  box-sizing: border-box;
}
.fruTabInnerHeader.first {
  margin-right: 10px;
}
.fruTabInnerHeader.last {
  margin-left: 10px;
}
.fruTabInnerHeaderIcon {
  margin-top: -20px;
}
.c-tabs {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  margin: 0;
  position: relative;
}
.c-tabs__link {
  display: block;
  text-decoration: none;
  color: #333;
  border-radius: 4px 4px 0 0;
}
.c-tabs__link.is-active {
  background: #fff;
  border-bottom: 2px solid #007bff;
}
.c-tab__content {
  display: none;
  border-radius: 0 4px 4px 4px;
  background-color: #fff;
}
.c-tab__content.is-open {
  display: block;
}
.fruOneStopTabContent {
  display: flex;
  flex-direction: column;
}
.fruOneStopTabContentHeader {
  display: flex;
  justify-content: start;
  padding-bottom: 12px;
  border-bottom: #ddb565 1px dashed;
}
.fruOneStopTabContentHeaderTitle {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #000000;
}
.fruHeaderTextHighlight {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #8c6a26;
}
.fruOneStopTabContentItem {
  width: 680px;
  margin-top: 40px;
}
.fruOneStopTabContentItemTxt {
  width: 680px;
  margin-top: 22px;
}
.fruOneStopTabContentLogo {
  position: absolute;
}
.fruOneStopTabContentText {
  padding-left: 36px;
  padding-right: 8px;
}
.fruOneStopTabContentTitle {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1px;
  color: #000000;
}
.fruOneStopTabContentTitle span {
  color: #ee0000;
}
.fruOneStopTabContentDescription {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.5px;
  color: #000000;
}
.fruOneStopTabContentSpan {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 21px;
  letter-spacing: 0.5px;
  color: #a98b4d;
}
.fruOneStopTabContentSpan1 {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 21px;
  letter-spacing: 1px;
  color: #a98b4d;
}
.fruOneStopTabContentImageDesktop {
  width: 100%;
  height: auto;
  max-width: 680px;
  margin-top: 24px;
  margin-bottom: 12px;
}
.fruOneStopTabContentImageMobile {
  display: none;
}
.fruOneStopTabSpan {
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 1px;
  color: #a98b4d;
}
.fruOneStopTabContentImageWrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 36px;
}
.fruOneStopTabContentBorder {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 368px;
  border: 0.5px solid #ffd175;
  border-radius: 2px;
  margin-top: 22px;
  padding-top: 22px;
  gap: 10px;
  position: relative;
}
.fruOneStopTextArea {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 36px;
  margin-right: 36px;
}
.fruOneStopTextWithLogoDescription {
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 24px;
  color: #000000;
}
.fruOneStopTextWithLogoSpan {
  font-style: normal;
  font-weight: 700;
  font-size: 10px;
  line-height: 15px;
  color: #000000;
}
.fruOneStopTabContentButton {
  width: 228px;
  height: 42px;
  margin-top: 12px;
  margin-bottom: 4px;
  background: #730000;
  border: none;
  cursor: pointer;
  padding: 14px 24px;
  position: absolute;
  bottom: 100px;
}
.fruOneStopTabContentButton:hover {
  background: #944b37;
}
.fruOneStopTabContentButton a {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.5px;
  color: #f7f6f1;
}
.fruOneStopTabButton {
  margin-left: 60px;
  margin-right: 60px;
  position: absolute;
  bottom: 50px;
}
.fruOneStopTabButton a {
  display: flex;
  flex-direction: row;
  justify-items: center;
}
.fruOneStopSpanText {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.5px;
  color: #000000;
}
.fruOneStopTabButton img {
  width: 16px;
  height: 16px;
}
.fruOneStopTabContentButton a i {
  color: #fbfaf5;
}
.fruOneStopSpan {
  font-style: normal;
  font-weight: 700;
  font-size: 10px;
  line-height: 19px;
  color: #a98b4d;
}
.fruOneAppParagraph {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 29px;
  letter-spacing: 0.5px;
  color: #8c6a26;
  margin-top: 14px;
}
.fruOneStopGuide {
  display: grid;
  grid-template-columns: 62px 1fr;
  margin-top: 12px;
  gap: 12px;
  height: fit-content;
}
.fruOneStopStep {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.fruOneSteps {
  width: 62px;
  height: 24px;
  background-color: #8c6a26;
  border-radius: 2px;
  /* STEP1 */
  font-style: normal;
  font-weight: 900;
  font-size: 12px;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
}
.fruOneSteps span {
  font-style: normal;
  font-weight: 900;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
}
.fruOneStopStepDash {
  margin-top: 12px;
  border: none;
  border-left: 1px dashed #8c6a26;
  position: absolute;
  top: 24px;
  bottom: 0;
}
.fruOneStopGuideText {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-bottom: 32px;
}
.fruOneStopGuideTitle {
  font-style: normal;
  font-weight: 900;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 1px;
  color: #8c6a26;
}
.fruOneStopStepGuideContent {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.005em;
  color: #000000;
  margin-top: 12px;
}
.fruOneStopCustomListItem {
  list-style: disc;
  margin-left: 30px;
}
.fruOneStepGuideSpan {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.005em;
  color: #8c6a26;
}
.fruOneStopGuideTitleBold {
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #000000;
  margin-top: 12px;
}
.fruOneStopStepGuideContext {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0.005em;
  color: #000000;
}
.fruOneStopListItem {
  list-style: disc;
  margin-left: 16px;
}
.fruOneStopSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}
.fruOneStopSection span {
  align-items: start;
  line-height: 24px;
}
.fruOneStopDownloadButton {
  width: 290px;
  height: 47px;
  margin-top: 12px;
  margin-bottom: 4px;
  background: #730000;
  border: none;
  cursor: pointer;
  padding: 14px 24px;
}
.fruOneStopDownloadButton:hover {
  background: #944b37;
}
.fruOneStopDownloadButton a {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.5px;
  color: #f7f6f1;
}
.fruOneStopStepGuideContext ul {
  margin-top: 6px;
}
.fruOneStopResizer {
  margin-top: 16px;
}
.fruDesktop {
  display: none;
}
.fruOneStopSection div {
  display: flex;
  flex-direction: column;
}
.fruOneAppDesktopTitle {
  display: block;
}
.fruOneAppMobileTitle {
  display: none;
}
.fruOneAppJustCenter {
  display: flex;
  align-items: center;
}
.fruDownloadBtnColor {
  color: #f7f6f1;
}
.fruFlexColSpan {
  display: flex;
  flex-direction: column;
}
.fruPrevItem .fruPageLink,
.fruNextItem .fruPageLink {
  display: inline-flex;
  align-items: center;
}

/* about tax return page */
.fruTitleWrap {
  display: flex;
  align-items: center;
  padding: 24px;
  margin-top: 42px;
  margin-bottom: 0;
  gap: 10px;
  justify-content: center;
  font-size: 20px;
  line-height: 24px;
  color: #000;
  font-weight: bold;
}
.fruTitleWrap img {
  height: 46px;
  width: 41px;
}
.fruSeperator {
  background-color: #8c6a26;
  height: 1px;
  width: 100%;
  margin-top: 18px;
  margin-bottom: 12px;
}
.fruTaxItemContainer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.fruTaxItemContainer .fruTaxItem {
  background: #846e31;
  border-radius: 5px;
  padding: 4px;
  display: flex;
  height: 69px;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}

.fruTaxImageLinkWrap:hover img {
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
    brightness: 1 !important;
}

.fruTaxImageLinkWrap img {
    transition: none !important;
}

.fruTaxItemContainer .fruTaxItem:hover {
  background: #b59a21;
}

.icon-wrapper i {
  display: inline-block;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.fruTaxItem:hover .icon-wrapper i {
  animation: dropIn 0.5s ease forwards;
}
@keyframes dropIn {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fruTaxItemContainer .fruTaxItem > span:first-child {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  line-height: 20px;
}
.fruTaxItemContainer .fruTaxItem > span:last-child {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  line-height: 20px;
}
.fruTaxContentWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 46px 2px;
  gap: 45px;
  background: #fffef2;
  color: #000000;
}
.fruTaxContentInnerWrap {
  width: 753px;
  margin: 0 auto;
}
.fruTaxContentWrap .fruTaxContentTitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 22px;
}

.fruTaxContentWrap .fruTaxContentTitle > span:first-child {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  line-height: 24px;
}
.fruTaxContentWrap .fruTaxContentTitle > span:last-child {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  line-height: 20px;
}

.fruTaxContentWrap .fruTaxContentDescription {
  text-align: left;
}
.fruTaxContentWrap .fruTaxContentDescription strong {
  color: #000;
}
.fruTaxContentWrap .fruTaxImageWrap {
  display: flex;
  margin-top: 22px;
}
.fruTaxContentWrap .fruTaxImageWrap img {
  width: 753px;
}
.fruTaxLink {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #846e31;
}

.fruTaxLink i {
  margin-left: 4px;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  color: #846e31;
}

.fruWillCoinGuide {
  margin-bottom: 70px;
}

.fruGuideTitleWrap {
  display: flex;
  justify-content: center;
  padding: 32px 0px;
  margin-top: 42px;
}

.fruGuideTitle {
  min-height: 27px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #000;
  padding: 0px 10px;
}

.fruGuideDivider {
  border-top: 1px solid #8c6a26;
  margin-top: 17px;
  margin-bottom: 23px;
}
.fruGuideDesc {
  max-width: 713px;
  margin: auto;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #000;
}
.fruMethodsList {
  max-width: 386px;
  margin: auto;
  margin-top: 24px;
}
.fruMethodsList li + li {
  margin-top: 17px; /* or however much space you need */
}
.fruMethodItem {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: #000;
}
.fruMethodLabel {
  display: inline-block;
  padding-left: 3px;
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  color: #000;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 60%,
    #fbe9be 60%,
    #fbe9be 80%,
    transparent 80%
  );
}
.fruMethodLabelNumber {
  font-size: 20px;
  padding-left: 2px;
  color: #8c6a26;
}
.fruMethodIcon {
  height: 22px;
  width: 22px;
}
.fruSimpleSimulation {
  background-color: #fffef2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 67px;
  gap: 66px;
  margin-top: 42px;
}

.fruSimpleSimulationText p {
  margin-bottom: 20px;
  font-style: normal;
  color: #000000;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 1px;
}

.fruSimpleSimulationFooter {
  margin-top: 70px;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.5px;
  color: #000000;
}

/* Donation flow */

.fruStepProgress {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 40px 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.fruStepWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.fruLabel {
  font-weight: 900;
  font-size: 14px;
  line-height: 24px;
  align-items: center;
  letter-spacing: 0.5px;
  color: #000000;
  margin-bottom: 18px;
}

.fruDot {
  width: 7px;
  height: 7px;
  background-color: #ffd86d;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.fruLine {
  position: absolute;
  top: 95px;
  left: 68px;
  right: 68px;
  height: 1px;
  background-color: #ffd86d;
  z-index: 1;
}

.fruCardContainer {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin: 0 auto;
  gap: 34px;
}

.fruCard {
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #ffffff;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.11);
  border-radius: 3px;
  overflow: hidden;
  font-family: sans-serif;
}

.fruCardImage {
  background-color: #fff9db;
  padding: 6px;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fruCardImage img {
  max-width: 100%;
  height: auto;
}

.fruCardText {
  background-color: #ffffff;
  text-align: center;
  padding: 14px;
}

.fruCardText p {
  text-align: center;
  margin: 0;
  font-size: 14px;
  color: #000000;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.5px;
}

.fruDonationContent {
  background-color: #fffef2;
  margin-top: 46px;
  padding: 20px 0 72px;
}

.fruStep {
  margin-top: 40px;
}

.frStep a {
  text-decoration: none;
}

.fruStepTitle,
.fruDonationContent p {
  text-align: center;
  letter-spacing: 0.5px;
  color: #000;
}

.fruStepTitle {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fruDonationContent p {
  margin-top: 22px;
  font-family: "FontAwesome", serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}

.fruSimulateBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 418px;
  height: 33px;
  border-radius: 2px;
  background-color: #e29804;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 21px;
  text-align: center;
  margin: 0 auto;
  margin-top: 28px;
}

.fruSimulateBtn:hover {
  background-color: #ad5238;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

.fruSimulateBtn i {
  color: #fff;
}

.fruDonationContent .fa {
  font-size: 24px;
  color: #000000;
  margin-bottom: 10px;
  align-content: center;
}

.fruArrowIcon {
  font-size: 10px;
}

.fruOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
