@charset "UTF-8";

summary {
  -webkit-appearance: none; /* Safari向け */
  appearance: none;
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

details {
  display: block;
  interpolate-size: allow-keywords;
}

details::details-content {
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease-out, content-visibility 0.5s allow-discrete;
}

details[open]::details-content {
  height: auto;
  height: calc-size(auto, size);
}

/* よくある質問アコーディオン */
.InfoListItemContent__question:hover {
  background: #f5f5f5;
  transition-property: background;
  transition-duration: 0.5s;
}

.InfoListItemContent__question {
  cursor: pointer;
}

.InfoListItemContent__question::before {
  content: "Q";
  display: flex;
  margin-right: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #aabdcd;
  color: #fff;
  font-weight: bold;
  flex: 0 0 30px;
  justify-content: center;
  align-items: center;
}

.InfoListItemContent__question::after {
  border-bottom: 3px solid #777;
  border-right: 3px solid #777;
  box-sizing: border-box;
  content: "";
  display: block;
  height: 15px;
  position: absolute;
  right: 30px;
  top: 43%;
  transform: scale(0.7) rotate(45deg) translateY(-50%);
  width: 15px;
  transition-property: transform;
  transition-duration: 0.3s;
}

details[open] .InfoListItemContent__question::after {
  right: 22px;
  top: 43%;
  transform: scale(0.7) rotate(-135deg) translateY(-50%);
  transition-property: transform;
  transition-duration: 0.3s;
}

.InfoListItemContent__answer {
  padding-top: 10px !important;
  height: 1px;
  position: relative;
  overflow-y: hidden;
  transition: height 0.5s;
}

details[open] .InfoListItemContent__answer {
  height: auto;
}

.InfoListItemContent__answer::before {
  content: "A";
  display: flex;
  margin-right: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #aabdcd;
  color: #fff;
  font-weight: bold;
  flex: 0 0 30px;
  justify-content: center;
  align-items: center;
}

.InfoListItemContent__answer a {
  color: #5e82a1;
  text-decoration: underline;
}

@media screen and (max-width: 750px) {
  .CommonSubsection--faq {
    margin: 53px 0;
  }

  .InfoListItemContent__question:hover {
    background: none;
    transition: none;
  }

  .CommonSubsection--faq .InfoListItem__btn {
    min-height: auto;
    padding: 0;
  }

  .CommonSubsection--faq .InfoListItem {
    margin: 0 20px;
  }

  .CommonSubsection--faq .InfoListItem::after {
    width: 100%;
  }

  .InfoListItemContent__answer {
    padding-top: 0;
  }

  .InfoListItemContent__question::before {
    margin-right: 10px;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
  }

  .InfoListItemContent__answer::before {
    margin-right: 10px;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
  }

  .InfoListItemContent__question::after {
    right: 9px;
    transform: scale(0.5) rotate(45deg) translateY(-50%);
  }

  details[open] .InfoListItemContent__question::after {
    right: 0px;
    transform: scale(0.5) rotate(-135deg) translateY(-50%);
  }
}

/* よくある質問-トップ */
@media screen and (max-width: 750px) {
  .CommonSubsection--faq {
    margin: 53px 0;
  }
}
.CommonSubsection--faq .InfoListItemContent {
  display: block;
  width: 100%;
}

.CommonSubsection--faq .InfoListItemContent__txt {
  display: flex;
  padding: 30px 25px;
  line-height: 1.8;
}

.CommonSubsection--faq .InfoListItemContent__txt p {
  flex: 0 0 90%;
}

@media screen and (max-width: 750px) {
  .CommonSubsection--faq .InfoListItemContent__txt {
    padding: 20px 0;
  }

  .CommonSubsection--faq .InfoListItemContent__txt p {
    flex: 0 0 84%;
  }
}

@media screen and (max-width: 320px) {
  .CommonSubsection--faq .InfoListItemContent__txt p {
    flex: 0 0 80%;
  }
}

/* コンテンツアコーディオン */
.NativeAccordionBtn:not(.NativeAccordion--set4 .NativeAccordionBtn) {
  color: #000;
  border: 2px solid #a3b6c5;
  border-radius: 11px;
  padding: 0 0.9em 0;
  font-size: 32px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  letter-spacing: 1px;
  line-height: 1;
  height: 90px;
  line-height: 90px;
  position: relative;
}

.NativeAccordionBtn >h2 {
  font-weight: normal;
  font-size: 32px;
  line-height: 90px;
  margin-bottom: 0;
}

.NativeAccordion__content {
  margin: 23px 0 0 0;
  position: relative;
}

.NativeAccordionBtn__content::before {
  background-color: #fff;
}

.NativeAccordion__content p {
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}

.NativeAccordion__content .H2 {
  font-feature-settings: "palt";
  letter-spacing: 0.15em;
}

.NativeAccordionBtn__icon {
  height: 20px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translate(0, -50%);
  width: 20px;
}

.NativeAccordionBtn__icon::before,
.NativeAccordionBtn__icon::after {
  background-color: #777;
  content: "";
  display: block;
  position: absolute;
}

.NativeAccordionBtn__icon::before {
  height: 2px;
  margin-top: -1px;
  top: 50%;
  width: 100%;
}

.NativeAccordionBtn__icon::after {
  height: 100%;
  left: 50%;
  margin-left: -1px;
  top: 0;
  transition: 0.2s;
  width: 2px;
}

@media screen and (max-width: 750px) {
  .NativeAccordion {
    margin-left: -20px;
    margin-right: -20px;
  }

  .NativeAccordionBtn:not(.NativeAccordion--set4 .NativeAccordionBtn) {
    font-size: 22px;
    width: 90%;
    height: 63px;
    line-height: 63px;
    margin-right: auto;
    margin-left: auto;
  }

  .NativeAccordionBtn >h2 {
    font-size: 22px;
    line-height: 63px;
  }

  .NativeAccordionBtn__icon:not(.NativeAccordion--set4 .NativeAccordionBtn__icon) {
    right: 15px;
  }

  .NativeAccordionBtn__height_text_r {
    text-align: left;
  }

    .NativeAccordion__content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .NativeAccordion__content_dl p {
    letter-spacing: 0.045em;
  }

  .NativeAccordion__content_dl .H2 {
    letter-spacing: 0.15em;
  }

  .NativeAccordion__content p:first-child {
    text-align: center;
  }
}

details[open].NativeAccordion .NativeAccordionBtn__icon::after {
  height: 0;
  top: 50%;
}

details[open].NativeAccordion .NativeAccordion__content::before {
  opacity: 0;
  visibility: hidden;
}

.ProductDetailContent * + .NativeAccordion {
  margin-top: 70px;
}

.ProductDetailContent * + .NativeAccordion {
  margin-top: 40px;
}

/* コンテンツアコーディオン-set4 */
.NativeAccordion--set4:not(details[open].NativeAccordion--set4) {
  padding: 30px 0;
  position: relative;
}

details[open].NativeAccordion--set4 {
  padding-top: 30px;
}

.NativeAccordion--set4::after {
  content: "";
  position: absolute;
  background-color: #ddd;
  display: block;
  height: 1px;
  transition: opacity 0.2s;
  width: 100%;
  bottom: 0;
}

details[open].NativeAccordion--set4::after {
  opacity: 0;
}

.NativeAccordion--set4:nth-child(1) {
  margin-top: 24px;
}

.NativeAccordion--set4:nth-child(4) .ProductIngredient--set4 {
  padding-bottom: 0;
}

.NativeAccordion__content--set4 {
  margin: 30px 0 0 0;
}

.NativeAccordion--set4 .NativeAccordionBtn {
  font-size: 32px;
  outline: none;
  position: relative;
  text-align: left;
  transition: color 0.2s;
  width: 100%;
}

.NativeAccordion--set4 .NativeAccordionBtn--small {
  font-size: 32px;
  position: relative;
}

.NativeAccordion--set4 .NativeAccordionBtn small {
  font-size: 15px;
  display: block;
  position: absolute;
  left: 0;
  top: 41px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "Helvetica Neue", Helvetica, Arial, "メイリオ",
    Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.NativeAccordion--set4 .NativeAccordion__content::before {
  background-color: #ddd;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.2s;
  width: 100%;
}

.ua-desktop .NativeAccordionBtn:hover {
  color: #777;
}

@media screen and (max-width: 750px) {
  .NativeAccordion--set4:not(details[open].NativeAccordion--set4) {
    padding: 25px 0;
  }

  details[open].NativeAccordion--set4 {
    padding-top: 25px;
  }

  .NativeAccordion--set4:nth-child(1) {
    margin-top: 8px;
  }

  .NativeAccordion--set4:nth-child(4) .ProductIngredient--set4 {
    padding-bottom: 0;
  }

  .NativeAccordion--set4::after {
    right: 0;
    left: 0;
    margin: 0 auto;
    width: calc(100% - 20px);
  }

  .NativeAccordion__content--set4 {
    margin: 23px 0 0 0;
  }

  .NativeAccordion--set4 .NativeAccordionBtn {
    font-size: 24px;
    padding: 0 20px;
  }

  .NativeAccordion--set4 .NativeAccordionBtn--small {
    font-size: 20px;
    padding: 0px 12px;
    position: relative;
  }

  .NativeAccordion--set4 .NativeAccordionBtn small {
    font-size: 12px;
    display: block;
    position: absolute;
    left: 10px;
    top: 25px;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3",
      "Hiragino Kaku Gothic Pro", "Helvetica Neue", Helvetica, Arial, "メイリオ",
      Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  }

  .NativeAccordion--set4 .NativeAccordion__content::before {
    right: 0;
    width: calc(100% - 20px);
  }
}