@charset "utf-8";

/* このページでわかること */
dl.mainPoints {
  background: #fcfbfa;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  gap: 12px;
  padding: 16px;
}
dl.mainPoints dt {
  font-weight: 700;
}
dl.mainPoints dd {
  display: flex;
  gap: 8px;
  line-height: 1.4;
}
dl.mainPoints dd::before {
  background: url(../img/parts/icon_kirakira.png) no-repeat center center / contain;
  content: "";
  height: 18px;
  width: 18px;
}
@media screen and (width > 768px) {
  dl.mainPoints {
    margin: 40px 0;
  }
}
@media screen and (width <= 768px) {
  dl.mainPoints {
    margin: 24px 16px;
  }
}

/* pageLink */
@media screen and (width > 768px) {
  .pageLink {
    margin: 0 auto 40px;
  }
}
@media screen and (width <= 768px) {
  .pageLink {
    margin: 0 16px 32px;
  }
}
.pageLink a {
  align-items: center;
  border: solid 1px #c5c1b8;
  border-radius: 8px;
  display: flex;
  font-size: 13px;
  font-weight: 700;
  justify-content: space-between;
  padding: 16px;
}
.pageLink a::after {
  background: url(../img/parts/icon_arrow-right.png) no-repeat center center / contain;
  content: "";
  flex-shrink: 0;
  height: 16px;
  width: 16px;
}

/* 商品紹介 */
.item-introduction {
  display: flex;
  flex-direction: column;
}
@media screen and (width > 768px) {
  .item-introduction {
    gap: 24px;
    margin-bottom: 40px;
  }
}
@media screen and (width <= 768px) {
  .item-introduction {
    gap: 16px;
    margin: 0 16px 32px;
  }
}
.item-introduction--name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}
.item-introduction--bnr {
  margin-bottom: 16px;
  text-align: center;
}
.item-introduction--text {
  line-height: 1.8;
}
.item-introduction--btn {
  margin-top: 16px;
  text-align: center;
}
.item-introduction--btn a {
  background: #65ae87 url(../img/parts/icon_arrow-right-wh.png) no-repeat right 16px center / 16px auto;
  border-radius: 8px;
  color: #fff;
  display: block;
  font-weight: 500;
}
@media screen and (width > 768px) {
  .item-introduction--btn a {
    font-size: 24px;
    padding: 16px 24px;
  }
}
@media screen and (width <= 768px) {
  .item-introduction--btn a {
    font-size: 18px;
    padding: 16px 24px;
  }
}

/* toc */
.toc {
  background: #fcfbfa;
  border: #f1e6db;
  border-radius: 8px;
  counter-reset: num;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
  padding: 24px;
}
@media screen and (width <= 768px) {
  .toc {
    gap: 4px;
    margin: 0 24px 24px;
    padding: 16px;
  }
}
.toc dt {
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
}
.toc dt::before {
  background: url(../img/parts/icon_toc.png) no-repeat center center / contain;
  content: "";
  height: 27px;
  width: 27px;
}
.toc dd {
  font-size: 13px;
}
.toc dd {
  counter-increment: num;
  line-height: 1.2;
  padding: 4px;
}
.toc dd::before {
  content: counter(num) '.';
}

/* return-top */
.return-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
}
.return-top a {
  background: #ffa887 url(../img/parts/icon_arrow-top-wh.png) no-repeat center 8px / 25px 14px;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 24px 12px 8px;
}
@media screen and (width <= 768px) {
  .return-top {
    bottom: 20px;
    right: 12px;
  }
  .return-top a {
    font-size: 12px;
  }
}
