/* common title */
.tfProductCommonTitle {
  position: relative;
  text-align: right;
}

.tfProductCommonTitle:before {
  content: "";
  position: absolute;
  top: 1em;
  left: 0;
  width: 100%;
  height: 0.5px;
  background-color: #1a1a1a;
}

.tfProductCommonTitleInner {
  display: inline-block;
  background-color: #fff;
  padding-left: 15px;
  position: relative;
  z-index: 2;
}

.tfProductCommonTitle p {
  text-align: right;
  font-size: 30px;
  letter-spacing: 3px;
  padding-bottom: 5px;
}

.tfProductCommonTitle h2 {
  text-align: right;
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 600;
}


/* product list */
.tfProductPageTitle {
  text-align: center;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.5em;
}

/* product list > category list */
.tfProductListCategory {
  margin: 60px auto;
  padding: 0 15px;
}

.tfProductListCategoryInner {
  border: 2px solid #1a1a1a;
  padding: 40px min(10dvw, 25px);
  box-sizing: border-box;
}

.tfProductListCategory h3 {
  text-align: left;
  font-size: 30px;
  letter-spacing: 3px;
  margin-bottom: 30px;
}

.tfProductListMainCategory {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.tfProductListMainCategory > li {
  width: calc((100% - 80px) / 5);
}

.tfProductListMainCategory > li > span {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  font-weight: 600;
}

.tfProductListMainCategory > li > span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 25px;
  height: 25px;
  background-image: url(../../Contents/ImagesPkg/threefirsts/product/tf_product_category_icon.svg);
}

.tfProductListMainCategory > li > span a {
  transition: 0.5s;
}

.tfProductListMainCategory > li > span a:hover {
  opacity: 0.5;
}

.tfProductListMainCategoryInner {
  margin: 10px 0 0 30px;
}

.tfProductListMainCategoryInner > li {
  line-height: 1.25em;
  margin: 5px 0;
}

.tfProductListMainCategoryInner > li:before {
  content: "-";
  padding-right: 5px;
  position: absolute;
}

.tfProductListMainCategoryInner > li > a {
  font-size: 12px;
  transition: 0.5s;
  padding-left: 10px;
  display: block;
}

.tfProductListMainCategoryInner > li > a:hover {
  opacity: 0.5;
}

/* product list > category list > subcategory(poru-marie) */
.tfProductListMainCategorySub2 {
  margin: 10px 0 0 0;
}

.tfProductListMainCategorySub2 li {
  line-height: 1.25em;
  margin: 5px 0;
}

.tfProductListMainCategorySub2 a {
  font-size: 14px;
  padding-left: 5px;
  display: block;
}


/* product list > sort */
#sortBox .box {
  /*float: right;*/
  padding: 0;
}


/* product list > pagination */
#pagination {
  text-align: center;
  font-size: 14px;
}


/* product list > each */
.tfProductListEach {
  margin: 60px auto;
}

.tfProductListEachInner {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 40px 0 0 0;
  gap: 4.5%;
}

.tfProductListEachInner > li {
  width: 21.5%;
  margin-bottom: 50px;
}

.tfProductListEachInner > li > a {
  transition: 0.5s;
}

.tfProductListEachInner > li > a:hover {
  opacity: 0.5;
}

.tfProductListEachImage {
  text-align: center;
}

.tfProductListEachImage img {
  max-width: 100%;
}

.tfProductListEachText {

}

.tfProductListEachText h3 {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5em;
}

.tfProductListEachCatchcopy {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.75em;
}

.tfProductListEachPrice {
  text-align: right;
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.75em;
}

.tfProductListEachPriceBig {
  font-size: 20px;
}


/* product list > polemarier */
.tfProductListPolemarierBanner {
  margin: 120px auto;
  padding: 0 15px;
}

.tfProductListPolemarierBanner a {
  transition: 0.5s;
}

.tfProductListPolemarierBanner a:hover {
  opacity: 0.5;
}

.tfProductListPolemarierBanner img {
  max-width: 100%;
}


/* product detail */
.tfProductDetailTopBox {
  display: flex;
  gap: 5%;
}

.tfProductDetailTop #ctl00_ContentPlaceHolder1_upUpdatePanel {
  display: flex;
  gap: 90px;
  flex-wrap: wrap;
}

#dvProductDetailArea #detailOne {
  width: 100% !important;
  float: none;
  padding-top: 0;
}

.tfProductDetailTopImageBox {
  width: min(50dvw, 500px);
}

.tfProductDetailTopImageMain {
  overflow: hidden;
}

.tfProductDetailTopImageMain img {
  width: 100%;
}

.tfProductDetailTopImageSub {
  margin-top: 20px;
}

.tfProductDetailTopImageSub ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.tfProductDetailTopImageSub li {
  width: calc((100% - 60px) / 4);
}

.tfProductDetailTopImageSub li img {
  width: 100%;
}

.tfProductDetailTopContentsBox {
  /* 画面幅に合わせて画像を拡大しているため計算して算出 */
  width: calc(100% - 5% - min(50dvw, 500px));
}

.tfProductDetailTopContentsFavorite {
  text-align: right;
}

.tfProductDetailTopContentsFavorite a {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  border: 1.5px solid #666666;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.5s;
}

.tfProductDetailTopContentsFavorite a:hover {
  background-color: #b79d59;
  color: #fff;
}

.tfProductDetailTopContentsFavorite a img {
  height: 12px;
  margin-right: 5px;
  margin-bottom: -1px;
}

.tfProductDetailTopContentsBox h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.75em;
  letter-spacing: 1px;
  margin-top: 15px;
}

.tfProductDetailTopContentsOverview {
  font-size: 16px;
  line-height: 1.75em;
  font-weight: 600;
}

.tfProductDetailTopContentsOverview p {
  font-size: 16px;
  line-height: 1.75em;
  margin: 10px 0;
  font-weight: 600;
}

.tfProductDetailTopContentsText {
  margin-bottom: 50px;
  font-size: 14px;
  line-height: 1.75em;
  margin: 1em 0 2em 0;
  color: #666;
}

.tfProductDetailTopContentsText p {
  font-size: 14px;
  line-height: 1.75em;
  margin: 1em 0;
  color: #666;
}


/* product > price */
.tfProductDetailTopContentsNormalPriceBox {
  margin: 20px 0;
}

.tfProductDetailTopContentsSubscriptionPriceBox {
  background-color: #fff;
  border: 5px solid #1a3a29;
}

.tfProductDetailTopContentsSubscription {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  background-color: #1a3a29;
  border-bottom: 5px solid #1a3a29;
  padding: 10px;
  margin-bottom: 20px;
}

.tfProductDetailTopContentsSubscription p {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  /*width: calc((100% - 45px) / 4);*/
  text-align: center;
  white-space: nowrap;
  line-height: 1.75em;
}

.tfProductDetailTopContentsSubscription ul {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.tfProductDetailTopContentsSubscription li {
  background-color: #b79d59;
  color: #fff;
  padding: 5px 3px;
  width: calc((100% - 30px) / 3);
  text-align: center;
  line-height: 1.3em;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.tfProductDetailTopContentsSubscription li span {
  font-size: 10px;
  line-height: 1.5em;
  display: block;
  width: 100%;
}

.teikiMeritDelete .tfProductDetailTopContentsSubscription ul {
  display: none !important;
}

.tfProductDetailTopContentsPriceTitleBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tfProductDetailTopContentsSubscriptionPriceBox .tfProductDetailTopContentsPriceTitleBox {
  padding-left: 20px;
  padding-right: 20px;
}

.tfProductDetailTopContentsPriceTitle {
  font-size: 18px;
  font-weight: 700;
}

.tfProductDetailTopContentsPriceTitle span {
  font-size: 14px;
}

.tfProductDetailTopContentsPriceTitlePoint {
  margin-left: 10px;
}

.productPoint {
  font-size: 14px;
}

.tfProductDetailTopContentsPriceCount {
  font-size: 12px;
}

.tfProductDetailTopContentsPriceCount input {
  width: 35px;
  text-align: center;
  margin-left: 10px;
  border: 1.5px solid #000;
}

.tfProductDetailTopContentsPriceBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 10px 0;
}

.tfProductDetailTopContentsSubscriptionPriceBox .tfProductDetailTopContentsPriceBox {
  padding-left: 20px;
  padding-right: 20px;
}

.tfProductDetailTopContentsPrice {
  font-size: 28px;
  font-weight: 600;
}

.tfProductDetailTopContentsPrice span {
  font-size: 16px;
  margin: 0 5px;
}

.tfProductDetailTopContentsPrice small {
  font-size: 11px;
  line-height: 1.5em;
  display: block;
  font-weight: 600;
  margin-top: 5px;
}

.tfProductDetailTopContentsPriceNo {
  position: relative;
  display: inline-block;
  font-size: 20px !important;
}

.tfProductDetailTopContentsPriceNo:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background: #b79d59;
  transform: rotate(-10deg);
}

.tfProductDetailTopContentsPriceCart {
  background-color: #000;
  color: #fff;
}

.tfProductDetailTopContentsPriceCart a {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.tfProductDetailTopContentsPriceCart img {
  height: 18px;
}


.tfProductDetailTopContentsPriceInfo {
  text-align: right;
  font-size: 12px;
}

.tfProductDetailTopContentsSubscriptionPriceBox .tfProductDetailTopContentsPriceInfo {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}

.tfProductDetailTopContentsPriceInfo a {
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
  font-weight: 600;
}

.tfProductDetailTopContentsPriceInfo a:after {
  content: "　>";
}


/* product > pattern banner */
.tfProductDetailTopContentsPattern {
  margin: 25px 0;
  transition: 0.5s;
  font-size: 16px;
  background-color: #1a3a29;
  border: 2px solid #1a3a29;
  color: #fff;
}

.tfProductDetailTopContentsPattern:hover {
  color: #1a3a29;
  border: 2px solid #1a3a29;
  background-color: #fff;
}

.tfProductDetailTopContentsPatternText {
  text-align: center;
}

.tfProductDetailTopContentsPatternText a {
  text-align: center;
  padding: 10px 0;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  color: #fff;
}

.tfProductDetailTopContentsPatternText a:hover {
  color: #1a3a29;
}

.tfProductDetailTopContentsPatternImage {
  margin: 25px 0;
  transition: 0.5s;
}

.tfProductDetailTopContentsPatternImage:hover {
  opacity: 0.5;
}

.tfProductDetailTopContentsPatternImage a {
  width: 100%;
}

.tfProductDetailTopContentsPatternImage img {
  width: 100%;
}


/* product > variation */
.wrapDetailImage .title {
  font-weight: 600;
}

.wrapDetailImage .unit {
  margin-bottom: 10px;
}

.variationImage {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 0 0;
}

#dvProductDetailArea #detailOne ul.variationImage li {
  max-width: 137px;
  width: auto;
  float: none;
  margin: 0;
}

#dvProductDetailArea #detailOne ul.variationImage li a {
  display: block;
}

#dvProductDetailArea #detailOne ul.variationImage li img, #dvProductDetailArea #detailOne ul.subImage li img {
  width: 100%;
}

#detailOne .productSellInfo {
  padding: 0;
}

.VariationPanel {
  padding: 5px !important;
  width: 137px !important;
  float: none !important;
  margin: 0 !important;
  font-size: 14px;
  height: 100%;
}

.VariationPanelSelected {
  padding: 5px !important;
  width: 137px !important;
  float: none !important;
  margin: 0 !important;
  font-size: 14px;
  font-weight: 600;
  height: 100%;
}

.selectValiation > div {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}

/* product > sns */
.tfProductDetailTopContentsSns {
  display: flex;
  justify-content: space-between;
  background-color: #b79d59;
  border: 5px solid #b79d59;
  margin: 50px 0;
}

.tfProductDetailTopContentsSnsTitle {
  color: #fff;
  text-align: center;
  padding: 10px min(1dvw, 30px);
  white-space: nowrap;
  line-height: 1.75em;
}

.tfProductDetailTopContentsSnsList {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 0 auto;
  background-color: #fff;
  width: 100%;
  padding: 10px 0;
}

.tfProductDetailTopContentsSnsList li a {
  transition: 0.5s;
}

.tfProductDetailTopContentsSnsList li a:hover {
  opacity: 0.5;
}

.tfProductDetailTopContentsSnsList li img {
  width: 30px;
}


/* product > teiki */
.tfProductDetailTeikibanner {

}

.tfProductDetailTeikibanner img {
  max-width: 100%;
}


/* product > datail */
.tfProductDetailMain {
  background-color: #cedbd5;
  padding: 80px 0;
  width: 100%;
}

.tfProductDetailMainPadding {
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1.75em;
}

.tfProductDetailMainSection {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  gap: 50px;
}

.tfProductDetailMainSectionImage {
  width: 60%;
}

.tfProductDetailMainSectionImage img {
  width: 100%;
  box-shadow: 5px 5px 10px #777;
}

.tfProductDetailMainSectionImageWide {
  width: 75%;
}

.tfProductDetailMainSectionImageWide img {
  width: 100%;
  box-shadow: 5px 5px 10px #777;
}

.tfProductDetailMainSectionContents {
  width: 40%;
}

.tfProductDetailMainSectionContents hr {
  margin: 10px 0;
}

.tfProductDetailMainSectionContentsWide {
  width: 100%;
}

.tfProductDetailMainSectionContentsWide hr {
  margin: 10px 0;
}

.tfProductDetailMainSectionContentsMini {
  width: 25%;
}

.tfProductDetailMainSectionContentsMini hr {
  margin: 10px 0;
}

.tfProductDetailMainSectionContentsTitle {
  font-size: 24px;
  font-weight: 600;
  border-bottom: 1px solid #1a1a1a;
  padding: 0 0 10px 0;
}

.tfProductDetailMainSectionContentsTitle2 {
  background-color: #3f735b;
  text-align: center;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  padding: 10px 10px;
  line-height: 1.5em;
  letter-spacing: 2px;
}

.tfProductDetailMainSectionContents > p {
  font-size: 14px;
  line-height: 1.75em;
  margin: 15px 0;
}

.tfProductDetailMainSectionContentsWide > p {
  font-size: 14px;
  line-height: 1.75em;
  margin: 15px 0;
}

.tfProductDetailMainSectionContentsMini > p {
  font-size: 14px;
  line-height: 1.75em;
  margin: 15px 0;
}

.tfProductDetailMainSectionContentsFeature {
  font-weight: 700;
}

.tfProductDetailMainSectionContentsFeatureInfo {
  font-size: 11px !important;
  display: block;
  font-weight: 400;
}

.tfProductDetailMainSectionContentsFav {
  background-color: #b79d59;
  margin-top: 20px;
}

.tfProductDetailMainSectionContentsFav h4 {
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 22px;
  padding: 15px 10px 10px 10px;
}

.tfProductDetailMainSectionContentsFav ul {
  padding: 0 20px 15px 20px;
}

.tfProductDetailMainSectionContentsFav li {
  background-color: #fff;
  margin: 10px 0;
  padding: 8px 20px 8px 50px;
  font-size: 16px;
  position: relative;
}

.tfProductDetailMainSectionContentsFav li:before {
  content: "";
  background-image: url(../../Contents/ImagesPkg/threefirsts/product/tf_product_suggest_check.svg);
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  position: absolute;
  left: 10px;
  top: 3px;
}

.tfProductDetailMainSectionEachBox {
  width: 48%;
}


.tfProductDetailMainSectionEach2CBox {
  width: 48%;
}


.tfProductDetailMainSectionEach3CBox {
  width: 33%;
}

.tfProductDetailMainSectionEachBox h3 {
  background-color: #3f735b;
  text-align: center;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  padding: 15px 10px;
  line-height: 1.5em;
}

.tfProductDetailMainSectionEach2CBox h3 {
  background-color: #3f735b;
  text-align: center;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  padding: 15px 10px;
  line-height: 1.5em;
}

.tfProductDetailMainSectionEach3CBox h3 {
  background-color: #3f735b;
  text-align: center;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  padding: 15px 10px;
  line-height: 1.5em;
}

.tfProductDetailMainSectionEachImage {
  background-color: #fff;
  padding: 20px;
  text-align: center;
}

.tfProductDetailMainSectionEachImage img {
  max-width: 100%;
  max-height: 400px;
}

.tfProductDetailMainSectionContentsInfo {
  font-size: 12px !important;
  line-height: 1.75em;
}

/* セット内容 */
.tfProductDetailMainSectionContentsSet {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.tfProductDetailMainSectionContentsSetEach {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  width: calc(50% - 15px);
}

.tfProductDetailMainSectionContentsSetEachImage {
  width: 40%;
  flex-basis: 40%;
  flex-shrink: 0;
  flex-grow: 2;
}

.tfProductDetailMainSectionContentsSetEachImage img {
  max-width: 100%;
}

.tfProductDetailMainSectionContentsSetEachContent {
  width: 60%;
  padding-bottom: 20px;
  position: relative;
  flex-shrink: 2;
}

.tfProductDetailMainSectionContentsSetEachTitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5em;
}

.tfProductDetailMainSectionContentsSetEachCp {
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 600;
  margin: 1em 0;
}

.tfProductDetailMainSectionContentsSetEachText {
  font-size: 14px;
  line-height: 1.5em;
  margin: 1em 0;
  color: #666;
}

.tfProductDetailMainSectionContentsSetEachLink {
  position: absolute;
  right: 0;
  bottom: 0;
}

.tfProductDetailMainSectionContentsSetEachLink a {
  color: #1a3a29;
  border: 1px solid #1a3a29;
  text-align: center;
  font-size: 12px;
  transition: 0.5s;
  box-sizing: border-box;
  padding: 5px 30px;
}

.tfProductDetailMainSectionContentsSetEachLink a:hover {
  background-color: #1a3a29;
  color: #fff;
}


/* 定期購入に関する説明 */
.tfProductDetailMainSectionSubscription {

}

.tfProductDetailMainSectionSubscription h4 {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 700;
  color: #ff5454;
}

.tfProductDetailMainSectionSubscription ul {
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 25px;
}

.tfProductDetailMainSectionSubscription li {
  font-size: 14px;
  margin: 5px 0;
  line-height: 1.5em;
  list-style-type: disc;
}

.tfProductDetailMainSectionInfo {
  text-align: center;
  margin: 50px 0 0 0;
}

.tfProductDetailMainSectionInfo a {
  font-size: 14px;
  border: 1px solid #1a1a1a;
  padding: 10px 20px;
  line-height: 1em;
  transition: 0.5s;
}

.tfProductDetailMainSectionInfo a:hover {
  background-color: #1a1a1a;
  color: #fff;
}


/* checked items */
.tfProductCheckeditems {
  margin-top: 80px;
  margin-bottom: 80px;
}


.tfProductCheckeditemsList {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin: 20px 0 0 0;
}

.tfProductCheckeditemsList li {
  width: calc((100% - 160px) / 5);
}

.tfProductCheckeditemsList a {
  transition: 0.5s;
}

.tfProductCheckeditemsList a:hover {
  opacity: 0.5;
}

.tfProductCheckeditemsList img {
  width: 100%;
}

.tfProductCheckeditemsList span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.75em;
}

@media all and (max-width: 959px) {
  /* common title */
  .tfProductCommonTitle:before {
    top: 0.9em;
  }

  .tfProductCommonTitle p {
    font-size: 22px;
  }


  /* product list */
  .tfProductPageTitle {
    font-size: 24px;
  }

  /* product list > category list */
  .tfProductListCategory {

  }

  .tfProductListCategoryInner {
    padding: 10px;
    border: 1px solid #1a1a1a;
    position: relative;
  }

  .tfProductListCategoryInner:after {
    position: absolute;
    right: 15px;
    top: 10px;
    content: "＜";
    transform: rotate(-90deg);
  }

  .tfProductListCategoryInner.active:after {
    transform: rotate(90deg);
  }

  .tfProductListCategory h3 {
    font-size: 18px;
    margin-bottom: 2px;
  }

  .tfProductListMainCategory {
    flex-wrap: wrap;
    display: none;
    border-top: 1px solid #1a1a1a;
    margin: 15px 0 10px 0;
  }

  .tfProductListMainCategory > li {
    width: 100%;
  }

  .tfProductListMainCategory > li > span {
    padding-top: 10px;
    padding-bottom: 10px;
    display: block;
  }

  .tfProductListMainCategory > li > span:before {
    top: 13px;
    left: 5px;
    width: 20px;
    height: 20px;
  }

  .tfProductListMainCategoryInner {
    border-top: 1px solid #1a1a1a;
    margin-left: 0;
    margin-top: 5px;
  }

  .tfProductListMainCategoryInner > li {
    border-bottom: 1px solid #1a1a1a;
    padding: 5px 0 10px 30px;
    display: block;
  }

  /* product list > each */
  .tfProductListEachInner {
    gap: 6%;
    margin-top: 30px;
  }

  .tfProductListEachInner > li {
    width: 47%;
    margin-bottom: 30px;
  }

  .tfProductListEachText h3 {
    font-size: 14px;
  }

  .tfProductListEachCatchcopy {
    font-size: 12px;
  }

  .tfProductListEachPrice {
    font-size: 12px;
  }

  .tfProductListEachPriceBig {
    font-size: 16px;
  }


  /* product list > polemarier */
  .tfProductListPolemarierBanner {
    margin-top: 80px;
  }

  /* product detail */
  .tfProductDetailTopBox {
    flex-wrap: wrap;
    gap: 20px;
  }

  .tfProductDetailTop {
    flex-wrap: wrap;
    gap: 40px;
  }

  .tfProductDetailTopImageBox {
    width: 100%;
  }

  .tfProductDetailTopContentsBox {
    width: 100%;
  }

  .tfProductDetailTopContentsSubscription {
    flex-wrap: wrap;
  }

  .tfProductDetailTopContentsSubscription p {
    width: 100%;
  }

  .tfProductDetailTopContentsSubscription ul {
    width: 100%;
    gap: 10px;
    flex-wrap: wrap;
  }

  .tfProductDetailTopContentsSubscription li {
    width: 100%;
    font-size: 12px;
    text-align: center;
    justify-content: center;
    gap: 3px;
  }

  .tfProductDetailTopContentsPriceBox {
    flex-wrap: wrap;
    gap: 10px;
  }

  .tfProductDetailTopContentsPrice {
    width: 100%;
  }

  .tfProductDetailTopContentsPriceCartBox {
    width: 100%;
  }

  .tfProductDetailTopContentsPriceCart {
    width: 100%;
  }

  .tfProductDetailTopContentsPriceCart a {
    width: 100%;
    justify-content: center;
    color: #fff;
  }

  .tfProductDetailTopContentsSns {
    flex-wrap: wrap;
  }

  .tfProductDetailTopContentsSnsTitle {
    text-align: center;
    width: 100%;
    padding-bottom: 15px;
  }

  .tfProductDetailMainSection {
    flex-wrap: wrap;
  }

  .tfProductDetailMainSectionImage {
    width: 100%;
  }

  .tfProductDetailMainSectionImageWide {
    width: 100%;
  }

  .tfProductDetailMainSectionImageLeft {
    width: calc(100% + 15px);
    margin-left: -15px;
  }

  .tfProductDetailMainSectionImageRight {
    width: calc(100% + 15px);
    margin-right: -15px;
  }

  .tfProductDetailMainSectionContents {
    width: 100%;
  }

  .tfProductDetailMainSectionContentsWide {
    width: 100%;
  }

  .tfProductDetailMainSectionContentsMini {
    width: 100%;
  }

  .tfProductDetailMainSectionEachBox {
    width: 100%;
  }

  .tfProductDetailMainSectionEach2CBox {
    width: 100%;
  }

  .tfProductDetailMainSectionEach3CBox {
    width: 100%;
  }

  .tfProductDetailMainSectionContentsTitle {
    font-size: 20px;
  }

  .tfProductDetailMainSectionContentsFav h4 {
    font-size: 18px;
  }

  .tfProductDetailMainSectionContentsFav li {
    font-size: 14px;
  }

  .tfProductDetailMainSectionEachBox h3 {
    font-size: 18px;
  }

  .tfProductDetailMainSectionEach2CBox h3 {
    font-size: 18px;
  }

  .tfProductDetailMainSectionEach3CBox h3 {
    font-size: 18px;
  }

  .tfProductDetailMainSectionContentsTitle2 {
    font-size: 18px;
  }


  /* セット内容 */
  .tfProductDetailMainSectionContentsSet {
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
    margin-top: 20px;
  }

  .tfProductDetailMainSectionContentsSetEach {
    padding: 20px;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
  }

  .tfProductDetailMainSectionContentsSetEachImage {
    width: 100%;
    text-align: center;
  }

  .tfProductDetailMainSectionContentsSetEachImage img {
    max-width: 80%;
  }

  .tfProductDetailMainSectionContentsSetEachContent {
    width: 100%;
  }


  /* product > variation */
  .variationImage {
    gap: 2%;
  }

  .wrapDetailImage .unit {
    margin-bottom: 2vw;
  }

  #dvProductDetailArea #detailOne ul.variationImage li {
    max-width: 32%;
    margin-bottom: 2vw;
  }

  .VariationPanel {
    width: 100% !important;
  }

  .VariationPanelSelected {
    width: 100% !important;
  }

  .selectValiation > div {
    gap: 2%;
  }

  .selectValiation > div a {
    width: 32%;
    margin-bottom: 2vw;
  }


  .tfProductCheckeditemsTitle p {
    font-size: 22px;
  }

  .tfProductCheckeditemsList {
    flex-wrap: wrap;
    gap: 20px;
  }

  .tfProductCheckeditemsList li {
    width: calc((100% - 20px) / 2);
  }
}