@charset "UTF-8";
.module {
  /* タブのボタンのデザイン */
  /* featues */
  /* Highlighted row style (for "原材料表示" in the image) */
  /* Specific styling for the allergen label and badge */
  /* step */
  /* caution */
  /* tab-content__custom */
}
.module .tab-content {
  display: none;
}
.module .tab-content.active {
  display: block;
}
.module .tab-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.module .tab-button {
  display: inline-block;
  max-width: 200px;
  width: 100%;
  font-weight: 500;
  font-size: 14px;
  line-height: 34px;
  letter-spacing: normal;
  text-align: center;
  border: 2px solid #DFDFDF;
  background: #fff;
  color: #1b1b1b;
  cursor: pointer;
  border-radius: 50px;
}
.module .tab-button.active {
  background: #E36965;
  color: #fff;
  font-weight: 400;
}
.module .tab-contents {
  margin-top: 70px;
}
@media (max-width: 768px) {
  .module .tab-contents {
    margin-top: 55px;
  }
  .module .tab-buttons {
    gap: 5px;
  }
  .module .tab-button {
    font-size: 12px;
    line-height: 24px;
    max-width: 111px;
  }
}
.module .featues img {
  display: block;
  width: 100%;
}
.module .featues__item {
  display: flex;
  align-items: center;
}
.module .featues__left {
  width: 50%;
}
.module .featues__right {
  width: 50%;
}
.module .featues__box {
  padding: 0 60px;
}
.module .featues__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 160%;
  letter-spacing: 1px;
}
.module .featues__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0px;
  margin-top: 25px;
}
.module .featues__item:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .module .featues__item {
    flex-direction: column;
  }
  .module .featues__left {
    width: 100%;
  }
  .module .featues__right {
    width: 100%;
    margin-top: 37px;
  }
  .module .featues__box {
    padding: 0;
  }
  .module .featues__title {
    font-size: 20px;
    line-height: 36px;
  }
  .module .featues__text {
    font-size: 12px;
    margin-top: 10px;
  }
  .module .featues__item:nth-of-type(even) {
    flex-direction: column;
  }
  .module .featues__item:nth-of-type(n + 2) {
    margin-top: 20px;
  }
}
.module .product-info {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.module .product-info-grid {
  /* width: 1000px; */
  border: 1px solid #999999;
  box-sizing: border-box;
  color: #3B3B3C;
  margin: 0 auto !important;
}
.module .product-info-row {
  display: flex;
  border-bottom: 1px solid #999999!important;
  border-radius: 0!important;
}
.module .product-info-row:last-child {
  border-bottom: none;
}
.module .product-info-label {
  width: 215px;
  padding: 12px 10px;
  background-color: #F9F8F1;
  border-right: 1px solid #999999;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 1px;
  text-align: left;
}
.module .product-info-content {
  flex: 1;
  padding: 12px 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 1px;
}

.module .product-info-row-highlight .product-info-label,
.module .product-info-row-highlight .product-info-content {
  background-color: #F9F8F1;
  /* Light blue background */
}
.module .product-info-row-highlight .product-info-label {
  border-right: 1px solid #999999;
  /* Slightly dark   er border for highlight */
}
.module .product-info-allergen-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  /* Align text to the left */
  gap: 5px;
  /* Space between "アレルゲン" and the badge */
  padding-top: 5px;
  /* Adjust padding if needed to center vertically */
  padding-bottom: 5px;
}
.module .product-info__text {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  font-weight: 400;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0px;
  margin-top: 46px;
}
@media (max-width: 768px) {
  .module .product-info__text {
    font-weight: 400;
    font-size: 12px;
    line-height: 180%;
    letter-spacing: 0px;
    margin-top: 27px;
  }
  .module .product-info-grid{
    border-radius: 0!important;
  }
}
.module .c-step__items {
  max-width: 885px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.module .c-step__item {
  width: calc(33.33333% - 20px);
}
.module .c-step img {
  width: 100%;
  height: 100%;
  display: block;
}
.module .c-step__number {
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: normal;
  margin-top: 12px;
}
.module .c-step__text {
  font-weight: 500;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: normal;
  text-align: center;
}
@media (max-width: 768px) {
  .module .c-step__items {
    flex-direction: column;
    gap: 43px;
  }
  .module .c-step__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 35px;
  }
  .module .c-step__img {
    order: 2;
    margin-top: 12px;
  }
  .module .c-step__number {
    margin-top: 0;
    order: 1;
  }
  .module .c-step__text {
    margin-top: 12px;
    order: 3;
  }
}

.module .caution__item:nth-of-type(n + 2) {
  margin-top: 15px;
}
.module .caution__title {
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: 1px;
}
.module .caution__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0px;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .module .caution__item:nth-of-type(n + 2) {
    margin-top: 7px;
  }
  .module .caution__title {
    font-size: 16px;
  }
  .module .caution__text {
    font-size: 12px;
    margin-top: 8px;
  }
}
.module .tab-content__custom {
  border: 1px solid #DFDFDF;
  border-radius: 10px;
  padding: 20px;
}
.module .tab-content__custom__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: normal;
  border-bottom: 1px solid #DFDFDF;
  padding-bottom: 14px;
  cursor: pointer;
  position: relative;
margin-bottom: 0!important;
}
.module .tab-content__custom__title::before {
  content: "";
  display: block;
  right: 0;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 5px;
  border-top: 3px solid #aaa;
  border-left: 3px solid #aaa;
  transform: rotate(-135deg);
  transition: 0.3s;
}
.module .tab-content__custom__title.active::before {
  transform: rotate(45deg);
  top: 10px;
}
.module .tab-content__custom__inner {
  margin-top: 42px;
}
@media (max-width: 768px) {
  .module .tab-content__custom {
    padding: 15px;
  }
  .module .tab-content__custom__inner {
    margin-top: 11px;
  }
  .module .tab-content__custom__title {
    font-size: 12px;
    line-height: 180%;
    padding-bottom: 14px;
  }
  .module .product-info{
    padding-bottom: 10px;
  }
}
.module .product-faq__item {
  border: 1px solid #DFDFDF;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: normal;
  padding: 18px 20px 18px 52px;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 20px;
}
.module .product-faq__question {
  position: relative;
}
.module .product-faq__question::before {
  content: "";
  display: block;
  right: 0;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 5px;
  border-top: 3px solid #aaa;
  border-left: 3px solid #aaa;
  transform: rotate(-135deg);
  transition: 0.3s;
}
.module .product-faq__question.active::before {
  transform: rotate(45deg);
  top: 10px;
}
.module .product-faq__answer {
  border-top: 1px solid #DFDFDF;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: normal;
  padding-top: 15px;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .module .product-faq__item {
    font-size: 12px;
    line-height: 180%;
    padding: 15px 15px 15px 44px;
    margin-top: 15px;
  }
  .module .product-faq__question::before {
    content: "";
    display: block;
    right: 0;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 0;
    border-top: 3px solid #aaa;
    border-left: 3px solid #aaa;
    transform: rotate(-135deg);
    transition: 0.3s;
  }
  .module .product-faq__answer {
    border-top: 1px solid #DFDFDF;
    font-weight: 500;
    font-size: 12px;
    line-height: 180%;
    padding-top: 10px;
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
    .module .product-info-label{
        width: 120px;
        font-size: 12px;
    }
    .module .product-info-content{
        font-size: 12px;
    }
}
.product-info__text.typeA {
    margin: 30px 0;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 15px 0;
}
.module .tab-contents{
    margin-bottom: 30px;
}
.module .tab-content__custom__inner{
display: none;
}