@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");

.wrapper {
  color: #325091;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.breadcrumb {
  position: absolute;
  top: 22px;
  left: 0;
  width: 100%;
  text-align: left;
}

.breadcrumb a {
  font-size: 14px;
  color: #4D4D4D;
}

.breadcrumb a::after {
  content: ">";
  display: inline-block;
  position: relative;
  top: -2px;
  margin: 0 5px;
}

.breadcrumb span span:last-child a::after {
  display: none;
}

/* @media screen and (min-width: 901px) {
  .wrapper {
    padding-top: 19px;
  }
} */
@media screen and (min-width: 768px) {
  .wrapper .sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .wrapper .pc {
    display: none !important;
  }

  .breadcrumb {
    max-width: 142px;
  }
}

.wrapper * {
  box-sizing: border-box;
}

.block-link {
  width: 100%;
  background: #fefbc6;
  padding: 7px 0 6px;
  z-index: 9999;
}

.block-link.on {
  position: fixed;
  top: 95px;
}

.block-link__wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 30px);
  max-width: 1200px;
  margin: 0 auto;
}

.block-link__ttl {
  font-weight: bold;
  font-size: 20px;
}

.block-link__list {
  display: flex;
  justify-content: flex-end;
  gap: 42px;
}

.block-link__list-item a {
  position: relative;
  display: block;
  color: #325091;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.05em;
  padding-left: 27px;
}

.block-link__list-item a span {
  margin-right: 7px;
}

.block-link__list-item a::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: #325091;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.block-link__list-item a::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border: solid white;
  border-width: 2px 2px 0 0;
  top: 50%;
  left: 5px;
  transform: translateY(-50%) rotate(45deg);
}

.block-link__list-item a:hover {
  opacity: 0.7;
  color: #325091;
  text-decoration: unset;
}

.sec-mv__btn {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 161px;
  height: 45px;
  background: #325091;
  color: white;
  border-radius: 0 0 6px 6px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  top: 0;
  right: 20.23%;
}

.sec-mv__btn:hover {
  opacity: 0.7;
  color: #fff;
  text-decoration: unset;
}

.js-mobile {
  display: none;
}

@media screen and (max-width: 900px) {
  .block-link {
    position: absolute;
    background: unset;
    padding: 30px 0;
    top: 105px;
  }

  .block-link.on {
    top: 66px;
  }

  .block-link__wrap {
    position: fixed;
    display: block;
    width: 100%;
    height: 100vh;
    background: #fefbc6;
    padding: 131px 15px 60px;
    top: 0;
    left: 0;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
    transition: 0.8s ease;
  }

  .block-link__wrap.on {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
  }

  .block-link__ttl {
    display: none;
  }

  .block-link__list {
    display: block;
    max-width: 241px;
    margin: 0 auto;
  }

  .block-link__list-item:not(:last-child) {
    margin-bottom: 55px;
  }

  .block-link__list-item a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 67px;
    font-size: 27.5px;
    padding: 8px 0 10px 47px;
  }

  .block-link__list-item a p::after {
    content: "";
    position: absolute;
    background: url(./img/line-menu.png) center no-repeat;
    background-size: cover;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
  }

  .block-link__list-item a span {
    display: block;
    font-size: 17px;
    margin: 0 0 3px 3px;
  }

  .block-link__list-item a::before {
    width: 30px;
    height: 30px;
    left: 2px;
  }

  .block-link__list-item a::after {
    width: 9px;
    height: 9px;
    left: 9px;
  }

  .sec-mv__btn {
    max-width: 100px;
    height: 23px;
    border-radius: 3px;
    font-size: 11px;
    top: 20px;
    right: 68px;
  }

  .js-mobile {
    position: absolute;
    display: block;
    width: 29px;
    height: 23px;
    top: 20px;
    right: 19px;
    z-index: 1;
    transition: 0.3s ease;
  }

  .js-mobile span {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #325091;
    top: 10px;
    left: 0;
  }

  .js-mobile span::before,
  .js-mobile span::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #325091;
    left: 0;
    transition: 0.3s ease;
  }

  .js-mobile span::before {
    top: -10px;
  }

  .js-mobile span::after {
    bottom: -10px;
  }

  .js-mobile.js-mobile--close {
    width: 34px;
    top: -46px;
    right: 17px;
  }

  .js-mobile.js-mobile--close span {
    background: transparent;
  }

  .js-mobile.js-mobile--close span::before {
    top: 0;
    transform: rotate(45deg);
  }

  .js-mobile.js-mobile--close span::after {
    bottom: 0;
    transform: rotate(-45deg);
  }
}

.sec-mv {
  text-align: center;
  position: relative;
  background: #f2efe0;
  padding: 95px 0 108px;
  overflow: hidden;
  z-index: 1;
}

.sec-mv::before {
  content: "";
  position: absolute;
  width: 341px;
  height: 110.5%;
  background: url(./img/mv-shape1-pc.png) center no-repeat;
  background-size: cover;
  left: calc(50% - 452px);
  top: -8.5%;
  transform: translateX(-50%);
  z-index: -1;
}

.sec-mv::after {
  content: "";
  position: absolute;
  width: 252px;
  height: 115.6%;
  background: url(./img/mv-shape2-pc.png) center no-repeat;
  background-size: cover;
  left: calc(50% + 454px);
  top: -7.3%;
  transform: translateX(-50%);
  z-index: -1;
}

.sec-mv__ttl {
  position: relative;
  font-weight: bold;
  font-size: 42px;
  letter-spacing: 0.2em;
  margin-bottom: 65px;
}

.sec-mv__ttl::after {
  content: "";
  position: absolute;
  width: 100%;
  max-width: 360px;
  height: 19px;
  background: url(./img/mv-line.png) center no-repeat;
  background-size: contain;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.sec-mv__txt {
  font-weight: 500;
  font-size: 17px;
  line-height: 1.98;
  font-feature-settings: "palt";
}

.sec-mv__txt:not(:last-child) {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .sec-mv {
    padding: 116px 0 113px;
  }

  .sec-mv::before {
    width: 100%;
    height: 210px;
    background: url(./img/mv-shape1-sp.png) left top no-repeat;
    background-size: contain;
    left: 0;
    top: -52px;
    transform: unset;
  }

  .sec-mv::after {
    width: 100%;
    height: 164px;
    background: url(./img/mv-shape2-sp.png) right bottom no-repeat;
    background-size: contain;
    left: auto;
    right: 0;
    top: auto;
    bottom: -4px;
    transform: unset;
  }

  .sec-mv__ttl {
    font-size: 28px;
    margin-bottom: 37px;
  }

  .sec-mv__ttl::after {
    max-width: 226px;
    height: 12px;
    bottom: -19px;
  }

  .sec-mv__txt {
    font-size: 14px;
    line-height: 1.9;
  }

  .sec-mv__txt:not(:last-child) {
    margin-bottom: 14px;
  }
}

.sec-intro {
  position: relative;
  padding: 65px 0 85px;
  z-index: 2;
}

.sec-intro::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 40px;
  background: url(./img/mv-wave.png) center no-repeat;
  background-size: 100% 100%;
  bottom: 100%;
  left: 0;
}

.intro-ttl {
  text-align: center;
  position: relative;
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 0.08em;
  margin-bottom: 90px;
  z-index: 1;
}

.intro-ttl::after {
  content: "";
  position: absolute;
  width: 100%;
  max-width: 144px;
  height: 19px;
  background: #f2efe0;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.intro-txt {
  text-align: center;
  display: none;
  font-weight: bold;
  font-size: 17px;
  margin-bottom: 16px;
}

.intro-txt span {
  display: block;
  font-weight: 500;
  font-size: 13.5px;
  margin-bottom: 6px;
}

.intro-list {
  display: flex;
  justify-content: space-between;
  max-width: 810px;
  margin: 0 auto;
}

.intro-list__item {
  width: 48%;
  max-width: 312px;
}

.intro-list__item a {
  text-align: center;
  position: relative;
  display: block;
  color: #325091;
  padding-bottom: 70px;
}

.intro-list__item a:hover {
  color: #325091;
  text-decoration: unset;
}

.intro-list__item:nth-child(even) a::before {
  background: #47c9c1;
}

.intro-list__item:nth-child(even) .intro-list__txt {
  color: #47c9c1;
  border-color: #47c9c1;
}

.intro-list__item a::before {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  background: #f78b7a;
  border-radius: 50%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.intro-list__item a::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border: solid white;
  border-width: 0 3px 3px 0;
  bottom: 19px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.intro-list__img {
  position: relative;
  margin: 0 -28px -2px -13px;
}

.intro-list__img-shape {
  position: absolute;
  width: 36%;
  top: -16%;
  right: 0;
}

.intro-list__ttl {
  font-weight: bold;
  font-size: 35px;
  margin-bottom: 13px;
}

.intro-list__ttl span {
  display: block;
  font-size: 15px;
  letter-spacing: 0.1em;
}

.intro-list__txt {
  color: #f78b7a;
  border: solid #f78b7a;
  border-width: 2px 0;
  font-weight: bold;
  font-size: 21px;
  letter-spacing: 0.06em;
  padding: 13px 0 12px;
  margin-bottom: 12px;
}

.intro-list__tag {
  display: inline-block;
  border: 1px solid #325091;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.1em;
  padding: 2px 5px 3px;
}

@media screen and (min-width: 1025px) {
  .intro-list__img-shape {
    right: -4.9%;
  }
}

@media screen and (max-width: 767px) {
  .sec-intro {
    padding: 31px 0 44px;
  }

  .sec-intro::before {
    height: 20px;
    background-size: cover;
  }

  .intro-ttl {
    font-size: 23.5px;
    margin-bottom: 17px;
  }

  .intro-ttl::after {
    max-width: 104px;
    height: 11px;
    bottom: 0;
  }

  .intro-txt {
    display: block;
  }

  .intro-list {
    max-width: 87.5%;
  }

  .intro-list__item {
    width: 43.8%;
  }

  .intro-list__item a {
    padding-bottom: 43px;
  }

  .intro-list__item a::before {
    width: 30px;
    height: 30px;
  }

  .intro-list__item a::after {
    width: 8px;
    height: 8px;
    border-width: 0 2px 2px 0;
    bottom: 12px;
  }

  .intro-list__img {
    margin: 0 -12px -2px -6px;
  }

  .intro-list__img-shape {
    display: none;
  }

  .intro-list__ttl {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .intro-list__ttl span {
    font-size: 9.5px;
  }

  .intro-list__txt {
    border-width: 1px 0;
    font-size: 13px;
    letter-spacing: -0.02em;
    padding: 7px 0 6px;
    margin-bottom: 1px;
  }

  .intro-list__tag {
    font-size: 8.5px;
    padding: 2px 3px 1px;
  }
}

.sec-product {
  background: #fff2e4;
  padding: 72px 0 92px;
  position: relative;
}

#product01,
#product02 {
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
}
.sec-product.sec-product--green {
  background: #ebf4e6;
}

.sec-product.sec-product--green .product-wrap__ct {
  padding-bottom: 28px;
}

.sec-product.sec-product--green .product-block__ct:not(.product-block__ct--bd) .product-block__ct-ttl {
  padding: 15px 0;
}

.product-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 870px;
  margin: 0 auto 15px;
}

.product-wrap__img {
  width: 53.2%;
}

.product-wrap__ct {
  width: 45%;
  padding: 0 2.3% 6px 0;
}

.product-wrap__ct-ttl {
  border-bottom: 2px solid #325091;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.1em;
  padding-bottom: 5px;
  margin-bottom: 28px;
}

.product-wrap__ct-ttl span {
  position: relative;
  display: inline-block;
  border: 1px solid #325091;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 1px 5px;
  margin-left: 13px;
  top: -4px;
}

.product-wrap__ct-ttl strong {
  display: block;
  font-weight: bold;
  font-size: 40px;
  margin-top: 2px;
}

.product-wrap__ct-list {
  margin-bottom: 30px;
}

.product-wrap__ct-listItem {
  position: relative;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.47;
  padding-left: 41px;
}

.product-wrap__ct-listItem:not(:last-child) {
  margin-bottom: 20px;
}

.product-wrap__ct-listItem span {
  display: block;
  font-weight: 400;
  font-size: 14px;
  margin-top: 2px;
}

.product-wrap__ct-listItem small {
  font-size: 12px;
}

.product-wrap__ct-listImg {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.product-wrap__ct-box {
  position: relative;
  display: block;
  background: white;
  border-radius: 10px;
  font-size: 14px;
  letter-spacing: -0.05em;
  padding: 16px 79px 16px 26px;
}

.product-wrap__ct-box span {
  display: block;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.product-wrap__ct-box img {
  position: absolute;
  width: 70px;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.product-block {
  max-width: 910px;
  margin: 0 auto 30px;
}

.product-block__ttl {
  text-align: center;
  background: #f78b7a;
  color: white;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.04em;
  padding: 6px 15px;
}

.product-block__ct {
  background: white;
  color: #f78b7a;
  font-size: 14px;
  line-height: 1.67;
  padding: 0 32px 13px;
}

.product-block__ct .center {
  text-align: center;
}

.product-block__ct-ttl {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.05em;
  padding: 6px 0;
  margin: 0 -32px;
}

.product-block__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 37px;
  color: #325091;
  border: solid #f78b7a;
  border-width: 1px 0;
  padding: 21px 3px 18px;
  margin-bottom: 14px;
}

.product-block__list-item {
  font-size: 14px;
  line-height: 1.68;
  letter-spacing: -0.05em;
}

.product-block__list-ttl {
  text-align: center;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.04em;
  margin-bottom: 9px;
}

.product-block__list-ttl span {
  display: block;
  font-size: 17px;
  letter-spacing: 0;
  margin-top: 4px;
}

.product-block__ct-note {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: -0.06em;
  margin-bottom: 3px;
}

.product-block__ct-note span {
  position: relative;
  font-size: 12px;
  top: -7px;
}

.product-block__ct-txt {
  padding: 16px 0 5px;
}

.product-block__ct-check {
  border-top: 1px solid #f78b7a;
  padding: 14px 0 10px;
  margin-top: 13px;
}

.product-block__ct-checkItem {
  position: relative;
  letter-spacing: -0.07em;
  padding-left: 20px;
}

.product-block__ct-checkItem:not(:last-child) {
  margin-bottom: 5px;
}

.product-block__ct-checkItem span {
  font-weight: bold;
}

.product-block__ct-checkItem::before {
  content: "●";
  position: absolute;
  color: #f78b7a;
  top: 0;
  left: 1px;
}

.product-block__ct--bd {
  color: #325091;
  border: 1px solid #f78b7a;
}

.product-block__ct--bd .product-block__ct-ttl {
  background: #fddcd7;
}

.product-block.product-block--green .product-block__ttl {
  background: #47c9c1;
}

.product-block.product-block--green .product-block__ct {
  color: #325091;
}

.product-block.product-block--green .product-block__ct--bd {
  border-color: #47c9c1;
}

.product-block.product-block--green .product-block__ct--bd .product-block__ct-ttl {
  background: #c8efec;
}

.product-block.product-block--green .product-block__ct-check {
  border-top-color: #47c9c1;
}

.product-block.product-block--green .product-block__ct-checkItem::before {
  color: #65c9c3;
}

.product-txt {
  max-width: 910px;
  font-size: 13px;
  line-height: 1.65;
  margin: -23px auto -4px;
}

.product-btn {
  display: flex;
  justify-content: center;
  gap: 44px;
  max-width: 544px;
  margin: 40px auto 0;
}

.product-btn a {
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 250px;
  height: 54px;
  background: #325091;
  color: white;
  border-radius: 50px;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.05em;
  padding-bottom: 3px;
}

.product-btn a:hover {
  color: white;
  text-decoration: unset;
}

.product-btn a::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: solid white;
  border-width: 3px 3px 0 0;
  right: 23px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 767px) {
  .sec-product {
    padding: 31px 0 35px;
  }

  .product-wrap {
    display: block;
    max-width: 79%;
    margin-bottom: 27px;
  }

  .product-wrap__img {
    position: relative;
    width: 82.4%;
    margin: 0 auto 7px;
    left: 1.7%;
  }

  .product-wrap__ct {
    width: 100%;
  }

  .product-wrap__ct-ttl {
    border-bottom-width: 1px;
    font-size: 15px;
    margin-bottom: 16px;
  }

  .product-wrap__ct-ttl span {
    font-size: 11px;
    padding: 0 2px;
    margin-left: 8px;
    top: -2px;
  }

  .product-wrap__ct-ttl strong {
    display: block;
    font-weight: bold;
    font-size: 29px;
    margin-top: 1px;
  }

  .product-wrap__ct-list {
    margin-bottom: 17px;
  }

  .product-wrap__ct-listItem {
    font-size: 15px;
    margin-right: -22px;
  }

  .product-wrap__ct-listItem:not(:last-child) {
    margin-bottom: 11px;
  }

  .product-wrap__ct-listItem span {
    font-size: 11px;
    margin-top: 0;
  }

  .product-wrap__ct-listItem small {
    font-size: 10.5px;
  }

  .product-wrap__ct-box {
    font-size: 11px;
    padding: 11px 55px 11px 18px;
  }

  .product-wrap__ct-box span {
    font-size: 13.5px;
    margin-bottom: 3px;
  }

  .product-wrap__ct-box img {
    right: -12px;
  }

  .product-block {
    margin: 0 11px 20px;
  }

  .product-block__ttl {
    font-size: 16px;
    padding: 2px 15px;
  }

  .product-block__ct {
    padding: 0 22px 18px;
  }

  .product-block__ct:not(.product-block__ct--bd) {
    font-size: 11px;
  }

  .product-block__ct-ttl {
    font-size: 19.5px;
    padding: 10px 0 8px;
    margin: 0 -22px;
  }

  .product-block__list {
    display: block;
    padding-bottom: 20px;
    margin: 0 0 17px;
  }

  .product-block__list-item {
    width: 100%;
    font-size: 13.5px;
    padding: 0;
  }

  .product-block__list-item:not(:last-child) {
    margin-bottom: 18px;
  }

  .product-block__list-ttl {
    font-size: 19.5px;
    margin-bottom: 13px;
  }

  .product-block__list-ttl span {
    display: block;
    font-size: 15px;
    margin-top: 2px;
  }

  .product-block__ct-note {
    font-size: 15px;
    line-height: 1.57;
    margin-bottom: 2px;
  }

  .product-block__ct-bd {
    font-size: 13.5px;
    padding-bottom: 10px;
  }

  .product-block__ct-check {
    padding: 16px 0 4px;
    margin-top: 19px;
  }

  .product-block__ct-checkItem:not(:last-child) {
    margin-bottom: 1px;
  }

  .product-block__ct-checkItem {
    padding-left: 0;
  }

  .product-block__ct-checkItem::before {
    position: relative;
    display: inline-block;
    left: 2px;
    margin-right: 4px;
  }

  .product-block__ct-txt {
    margin-bottom: -8px;
  }

  .product-block.product-block--green .product-block__ct--bd .product-block__ct-ttl {
    letter-spacing: -0.05em;
    padding: 8px 0;
  }

  .sec-product.sec-product--green {
    padding-bottom: 70px;
  }

  .sec-product.sec-product--green .product-wrap__ct {
    padding-bottom: 3px;
  }

  .sec-product.sec-product--green .product-block__ct:not(.product-block__ct--bd) .product-block__ct-ttl {
    padding: 22px 0 17px;
  }

  .sec-product.sec-product--green .product-block.product-block--green .product-block__ct {
    font-size: 13.5px;
  }

  .product-txt {
    font-size: 12px;
    margin: -10px 11px -7px;
  }

  .product-btn {
    display: block;
    margin-top: 20px;
  }

  .product-btn a {
    max-width: 335px;
    height: 40px;
    font-size: 16px;
    margin: 0 auto;
  }

  .product-btn a::before {
    width: 8px;
    height: 8px;
    border-width: 2px 2px 0 0;
  }

  .product-btn a:not(:last-child) {
    margin-bottom: 15px;
  }
}

.sec-voice {
  background: url(img/bg-voice.png) no-repeat top left 54% / 3360px;
  padding: 92px 0 50px;
  position: relative;
  margin-top: -40px;
}

@media screen and (max-width: 767px) {
  .sec-voice {
    background: url(img/bg-voice.png) no-repeat top left 52%/1440px;
    padding: 40px 0 30px;
    margin-top: -4.8vw;
  }
}

.sec-voice:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #FFF8F1;
  top: 5%;
  left: 0;
}

.sec-voice .inner {
  max-width: 910px;
  position: relative;
  z-index: 2;
}

.sec-voice--secondary {
  margin-top: -40px;
  background: url(img/bg-voice-02.png) no-repeat top left 55%/3360px;
  padding-top: 87px;
}

@media screen and (max-width: 767px) {
  .sec-voice--secondary {
    padding-top: 40px;
    background: url(img/bg-voice-02-sp.png) no-repeat top -20px center/100%;
    margin-top: -50px;
  }
}

.sec-voice--secondary:after {
  background: #F5F9F2;
}

.sec-voice--secondary .voice-ttl {
  color: #47C9C1;
}

.sec-voice--secondary .voice-list__item {
  box-shadow: 3px 3px #47C9C1;
}

.sec-voice--secondary .voice-list__item span {
  color: #47C9C1;
}

.voice-ttl {
  text-align: center;
  color: #f78b7a;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .voice-ttl {
    font-size: 23px;
    margin-bottom: 6px;
  }
}

.voice-intro {
  text-align: center;
  font-size: 14px;
  margin-bottom: 35px;
}

@media screen and (max-width: 767px) {
  .voice-intro {
    font-size: 11.5px;
    letter-spacing: -0.07em;
    margin-bottom: 16px;
  }
}

.voice-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 30px;
  position: relative;
  z-index: 2;
  padding-right: 3px;
  margin-bottom: 21px;
}

@media screen and (max-width: 767px) {
  .voice-list {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 10px;
  }
}

.voice-list__item {
  background: #fff;
  border-radius: 10px;
  font-size: 15px;
  padding: 18px 0 16px 25px;
  position: relative;
  box-shadow: 3px 3px #f78b7a;
  line-height: 1.6;
  min-height: 106px;
  letter-spacing: -0.08em;
}

@media screen and (max-width: 767px) {
  .voice-list__item {
    font-size: 13.5px;
    padding: 15px 0 13px 18px;
    min-height: 95px;
  }

  .voice-list__item:nth-child(even) p {
    padding-right: 18px;
    padding-left: 65px;
  }

  .voice-list__item:nth-child(even) img {
    left: 18px;
    right: auto;
  }
}

.voice-list__item p {
  padding-right: 77px;
}

.voice-list__item span {
  font-weight: 500;
  letter-spacing: 0;
  color: #f78b7a;
}

.voice-list__item img {
  width: 58px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

@media screen and (max-width: 767px) {
  .voice-list__item img {
    width: 50px;
    right: 18px;
  }
}

.voice-note {
  font-size: 12px;
  position: relative;
  z-index: 2;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .voice-note {
    padding: 0 10px;
    font-size: 11px;
  }
}


.content_foot{
  position: relative;
  z-index: 2;
}
.productlist li a {
  padding: 5px 0;
}
/*# sourceMappingURL=style.css.map */