@charset "UTF-8";
/* =========================================================
reset
========================================================= */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  -webkit-text-decoration: normal;
  text-decoration: normal;
  cursor: pointer;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

input,
select {
  vertical-align: middle;
}

img {
  vertical-align: bottom;
}

/* =========================================================
base
========================================================= */
figure {
  line-height: 0;
}

a {
  transition: 0.2s;
}

a:hover {
  opacity: 0.6;
  transition: opacity 0.2s ease-in-out;
}
@media screen and (max-width: 768px) {
  a:hover {
    opacity: 1;
  }
}

/* =========================================================
layout
========================================================= */
/* scroll animation */
.upIn {
  opacity: 0;
}
.upIn.onAnim {
  -webkit-animation: upin 0.6s 1 cubic-bezier(0.17, 0.67, 0.59, 1) forwards;
          animation: upin 0.6s 1 cubic-bezier(0.17, 0.67, 0.59, 1) forwards;
}

.dwnIn {
  opacity: 0;
}
.dwnIn.onAnim {
  -webkit-animation: dwnin 0.6s 1 cubic-bezier(0.17, 0.67, 0.59, 1) forwards;
          animation: dwnin 0.6s 1 cubic-bezier(0.17, 0.67, 0.59, 1) forwards;
}

.rhIn {
  opacity: 0;
}
.rhIn.onAnim {
  -webkit-animation: rhin 0.6s 1 cubic-bezier(0.17, 0.67, 0.59, 1) forwards;
          animation: rhin 0.6s 1 cubic-bezier(0.17, 0.67, 0.59, 1) forwards;
}

.lhIn {
  opacity: 0;
}
.lhIn.onAnim {
  -webkit-animation: lhin 0.6s 1 cubic-bezier(0.17, 0.67, 0.59, 1) forwards;
          animation: lhin 0.6s 1 cubic-bezier(0.17, 0.67, 0.59, 1) forwards;
}

.smallIn {
  opacity: 0;
  transform: scale(1.1);
  transform-origin: top center;
}
.smallIn.onAnim {
  -webkit-animation: smallin 0.6s 1 cubic-bezier(0.17, 0.67, 0.59, 1) forwards;
          animation: smallin 0.6s 1 cubic-bezier(0.17, 0.67, 0.59, 1) forwards;
}

.popIn {
  transform: scale(0.9);
  transform-origin: center center;
  opacity: 0;
}
.popIn.onAnim {
  -webkit-animation: popin 0.4s 1 cubic-bezier(0.15, 0.75, 0.22, 1.39) both;
          animation: popin 0.4s 1 cubic-bezier(0.15, 0.75, 0.22, 1.39) both;
}

@-webkit-keyframes upin {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100%, to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes upin {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100%, to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes dwnin {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100%, to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes dwnin {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100%, to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes rhin {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100%, to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rhin {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100%, to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes lhin {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100%, to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes lhin {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100%, to {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes smallin {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100%, to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes smallin {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100%, to {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes popin {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100%, to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes popin {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100%, to {
    opacity: 1;
    transform: scale(1);
  }
}
.D01 {
  -webkit-animation-delay: 0.1s !important;
          animation-delay: 0.1s !important;
  transition-delay: 0.1s !important;
}

.D02 {
  -webkit-animation-delay: 0.2s !important;
          animation-delay: 0.2s !important;
  transition-delay: 0.2s !important;
}

.D03 {
  -webkit-animation-delay: 0.3s !important;
          animation-delay: 0.3s !important;
  transition-delay: 0.3s !important;
}

.D04 {
  -webkit-animation-delay: 0.4s !important;
          animation-delay: 0.4s !important;
  transition-delay: 0.4s !important;
}

.D05 {
  -webkit-animation-delay: 0.5s !important;
          animation-delay: 0.5s !important;
  transition-delay: 0.5s !important;
}

.D06 {
  -webkit-animation-delay: 0.6s !important;
          animation-delay: 0.6s !important;
  transition-delay: 0.6s !important;
}

.D07 {
  -webkit-animation-delay: 0.7s !important;
          animation-delay: 0.7s !important;
  transition-delay: 0.7s !important;
}

.D08 {
  -webkit-animation-delay: 0.8s !important;
          animation-delay: 0.8s !important;
  transition-delay: 0.8s !important;
}

.D09 {
  -webkit-animation-delay: 0.9s !important;
          animation-delay: 0.9s !important;
  transition-delay: 0.9s !important;
}

.D10 {
  -webkit-animation-delay: 1s !important;
          animation-delay: 1s !important;
  transition-delay: 1s !important;
}

.D11 {
  -webkit-animation-delay: 1.1s !important;
          animation-delay: 1.1s !important;
  transition-delay: 1.1s !important;
}

.D12 {
  -webkit-animation-delay: 1.2s !important;
          animation-delay: 1.2s !important;
  transition-delay: 1.2s !important;
}

.D13 {
  -webkit-animation-delay: 1.3s !important;
          animation-delay: 1.3s !important;
  transition-delay: 1.3s !important;
}

.D14 {
  -webkit-animation-delay: 1.4s !important;
          animation-delay: 1.4s !important;
  transition-delay: 1.4s !important;
}

.D15 {
  -webkit-animation-delay: 1.5s !important;
          animation-delay: 1.5s !important;
  transition-delay: 1.5s !important;
}

.D16 {
  -webkit-animation-delay: 1.6s !important;
          animation-delay: 1.6s !important;
  transition-delay: 1.6s !important;
}

.D17 {
  -webkit-animation-delay: 1.7s !important;
          animation-delay: 1.7s !important;
  transition-delay: 1.7s !important;
}

.D18 {
  -webkit-animation-delay: 1.8s !important;
          animation-delay: 1.8s !important;
  transition-delay: 1.8s !important;
}

.D19 {
  -webkit-animation-delay: 1.9s !important;
          animation-delay: 1.9s !important;
  transition-delay: 1.9s !important;
}

.D20 {
  -webkit-animation-delay: 2s !important;
          animation-delay: 2s !important;
  transition-delay: 2s !important;
}

.D21 {
  -webkit-animation-delay: 2.1s !important;
          animation-delay: 2.1s !important;
  transition-delay: 2.1s !important;
}

.D22 {
  -webkit-animation-delay: 2.2s !important;
          animation-delay: 2.2s !important;
  transition-delay: 2.2s !important;
}

.D23 {
  -webkit-animation-delay: 2.3s !important;
          animation-delay: 2.3s !important;
  transition-delay: 2.3s !important;
}

.D24 {
  -webkit-animation-delay: 2.4s !important;
          animation-delay: 2.4s !important;
  transition-delay: 2.4s !important;
}

.D25 {
  -webkit-animation-delay: 2.5s !important;
          animation-delay: 2.5s !important;
  transition-delay: 2.5s !important;
}

.D26 {
  -webkit-animation-delay: 2.6s !important;
          animation-delay: 2.6s !important;
  transition-delay: 2.6s !important;
}

.D27 {
  -webkit-animation-delay: 2.7s !important;
          animation-delay: 2.7s !important;
  transition-delay: 2.7s !important;
}

.D28 {
  -webkit-animation-delay: 2.8s !important;
          animation-delay: 2.8s !important;
  transition-delay: 2.8s !important;
}

.D29 {
  -webkit-animation-delay: 2.9s !important;
          animation-delay: 2.9s !important;
  transition-delay: 2.9s !important;
}

.D30 {
  -webkit-animation-delay: 3s !important;
          animation-delay: 3s !important;
  transition-delay: 3s !important;
}

#main {
  position: relative;
  background: #fafdfd;
}

#rednaContents {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "palt";
  box-shadow: 4px 6px 20px 0 rgba(0, 0, 0, 0.15);
  width: 750px;
  margin: 0 auto;
  background: #fff;
  /*--------------------- common parts ---------------------*/
  /*--------------------- factSec ---------------------*/
  /*--------------------- part1 ---------------------*/
  /*--------------------- part2 ---------------------*/
  /*--------------------- part3 ---------------------*/
  /*--------------------- suggestSec ---------------------*/
  /*--------------------- faqSec ---------------------*/
}
@media screen and (max-width: 768px) {
  #rednaContents {
    width: 100%;
    box-shadow: none;
    overflow: hidden;
  }
}
#rednaContents h2.partHl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
#rednaContents h2.partHl::before {
  content: "";
  width: 148px;
  height: 149px;
  background: url(../img/part1.png) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  #rednaContents h2.partHl {
    gap: 2.667vw;
  }
  #rednaContents h2.partHl::before {
    width: 19.733vw;
    height: 19.867vw;
  }
}
#rednaContents #part2 h2::before {
  background-image: url(../img/part2.png);
}
#rednaContents #part3 h2::before {
  background-image: url(../img/part3.png);
}
#rednaContents .productBox {
  display: flex;
  line-height: 1.45;
  width: 634px;
  margin: 0 auto;
  background: #fff;
  border-radius: 30px;
  padding: 25px 0;
  border: 1px solid #23b6bc;
  overflow: hidden;
}
#rednaContents .productBox figure {
  width: 200px;
}
#rednaContents .productBox > div {
  width: 390px;
  font-size: 22px;
}
#rednaContents .productBox h4 {
  font-size: 32px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
}
#rednaContents .productBox h4 em {
  font-weight: 800;
  font-size: 34px;
  color: #23b6bc;
  font-style: normal;
}
#rednaContents .productBox div.priceBox {
  display: flex;
  align-items: flex-end;
  gap: 0.8em;
  line-height: 1;
  font-weight: 500;
}
#rednaContents .productBox div.priceBox .price {
  font-size: 48px;
  font-weight: 700;
}
#rednaContents .productBox div.priceBox .price .unit {
  font-size: 28px;
  font-weight: 500;
}
#rednaContents .productBox div.priceBox .wTax {
  transform: translateY(-0.4em);
}
#rednaContents .productBox div.priceBox .wTax strong {
  font-weight: 700;
}
#rednaContents .productBox .linkDetail {
  margin-top: 20px;
}
#rednaContents .productBox .linkDetail a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 390px;
  height: 60px;
  background: rgba(35, 182, 188, 0.5);
  font-size: 26px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  border-radius: 15px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #rednaContents .productBox {
    width: 84.533vw;
    border-radius: 4vw;
    padding: 3.333vw 0;
  }
  #rednaContents .productBox figure {
    width: 26.667vw;
  }
  #rednaContents .productBox > div {
    width: 52vw;
    font-size: 2.933vw;
  }
  #rednaContents .productBox h4 {
    font-size: 4.267vw;
  }
  #rednaContents .productBox h4 em {
    font-size: 4.533vw;
  }
  #rednaContents .productBox div.priceBox .price {
    font-size: 6.4vw;
  }
  #rednaContents .productBox div.priceBox .price .unit {
    font-size: 3.733vw;
  }
  #rednaContents .productBox .linkDetail {
    margin-top: 2.667vw;
  }
  #rednaContents .productBox .linkDetail a {
    height: 52vw;
    height: 8vw;
    font-size: 3.467vw;
    border-radius: 2vw;
  }
}
#rednaContents div.cartBox {
  line-height: 1.45;
  width: 634px;
  margin: 80px auto 0;
  background: #fff;
  border-radius: 30px;
  padding: 50px 0 35px;
  border: 1px solid #23b6bc;
  overflow: hidden;
}
#rednaContents div.cartBox div.figWrap {
  display: flex;
  justify-content: space-between;
}
#rednaContents div.cartBox div.figWrap figure {
  width: 275px;
}
#rednaContents div.cartBox div.figWrap > div {
  width: calc(100% - 275px);
}
#rednaContents div.cartBox h4 {
  font-size: 32px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  margin-top: -0.4em;
}
#rednaContents div.cartBox h4 em {
  font-weight: 800;
  font-size: 34px;
  color: #23b6bc;
  font-style: normal;
}
#rednaContents div.cartBox h4 + p {
  font-size: 24px;
  font-weight: 700;
  margin-top: 0.3em;
}
#rednaContents div.cartBox div.priceBox {
  font-size: 24px;
  font-weight: 700;
  color: #d70000;
  display: inline-block;
  position: relative;
}
#rednaContents div.cartBox div.priceBox .price {
  font-size: 82px;
  font-weight: 500;
  line-height: 1;
  margin-top: -0.1em;
}
#rednaContents div.cartBox div.priceBox .price .unit {
  font-size: 50px;
  font-weight: 500;
  margin-right: 0.1em;
}
#rednaContents div.cartBox div.priceBox .wTax {
  text-align: right;
}
#rednaContents div.cartBox div.priceBox .sale {
  position: absolute;
  top: -1.5em;
  right: -90px;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #d70000;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  width: 124px;
  height: 50px;
  border-radius: 6px;
}
#rednaContents div.cartBox div.priceBox .sale em {
  font-weight: 800;
  font-size: 24px;
  font-style: normal;
  margin-top: 0.1em;
}
#rednaContents div.cartBox div.priceBox .sale::after {
  content: "";
  width: 32px;
  height: 25px;
  display: block;
  background: url(../img/price_foot.png) 0 0 no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -25px;
  left: 30px;
  z-index: 10;
}
#rednaContents div.cartBox .number {
  font-size: 24px;
}
#rednaContents div.cartBox div.include {
  display: flex;
  align-items: flex-end;
  margin-top: -25px;
}
#rednaContents div.cartBox div.include figure {
  width: 200px;
  margin-left: 40px;
  text-align: center;
}
#rednaContents div.cartBox div.include figure img {
  width: 86px;
}
#rednaContents div.cartBox div.include ul {
  font-size: 24px;
}
#rednaContents div.cartBox div.include ul li::before {
  content: "〇";
}
#rednaContents div.cartBox .btnCart a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 25px auto 0;
  gap: 15px;
  width: 560px;
  height: 80px;
  background: linear-gradient(to top, #23b6bc 0%, #4cc4c9 50%, #afe5e7 100%);
  border-radius: 10px;
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.15);
  filter: drop-shadow(6px 6px 5px rgba(0, 0, 0, 0.15));
}
#rednaContents div.cartBox .btnCart a::after {
  content: "";
  width: 50px;
  height: 41px;
  background: url(../img/icon_cart.png) 0 0 no-repeat;
  background-size: contain;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.15));
}
@media screen and (max-width: 768px) {
  #rednaContents div.cartBox {
    width: 84.533vw;
    margin: 10.667vw auto 0;
    border-radius: 4vw;
    padding: 6.667vw 0 4.667vw;
  }
  #rednaContents div.cartBox div.figWrap figure {
    width: 36.667vw;
  }
  #rednaContents div.cartBox div.figWrap > div {
    width: calc(100% - 36.667vw);
  }
  #rednaContents div.cartBox h4 {
    font-size: 4.267vw;
  }
  #rednaContents div.cartBox h4 em {
    font-size: 4.533vw;
  }
  #rednaContents div.cartBox h4 + p {
    font-size: 3.2vw;
  }
  #rednaContents div.cartBox div.priceBox {
    font-size: 3.2vw;
  }
  #rednaContents div.cartBox div.priceBox .price {
    font-size: 10.933vw;
  }
  #rednaContents div.cartBox div.priceBox .price .unit {
    font-size: 6.667vw;
  }
  #rednaContents div.cartBox div.priceBox .sale {
    right: -12vw;
    font-size: 2.933vw;
    width: 16.533vw;
    height: 6.667vw;
    border-radius: 0.8vw;
  }
  #rednaContents div.cartBox div.priceBox .sale em {
    font-size: 3.2vw;
  }
  #rednaContents div.cartBox div.priceBox .sale::after {
    width: 4.267vw;
    height: 3.333vw;
    bottom: -3.333vw;
    left: 4vw;
  }
  #rednaContents div.cartBox .number {
    font-size: 3.2vw;
  }
  #rednaContents div.cartBox div.include {
    margin-top: -3.333vw;
  }
  #rednaContents div.cartBox div.include figure {
    width: 26.667vw;
    margin-left: 5.333vw;
  }
  #rednaContents div.cartBox div.include figure img {
    width: 11.467vw;
  }
  #rednaContents div.cartBox div.include ul {
    font-size: 3.2vw;
  }
  #rednaContents div.cartBox .btnCart a {
    margin: 3.333vw auto 0;
    gap: 2vw;
    width: 74.667vw;
    height: 10.667vw;
    border-radius: 1.333vw;
    font-size: 4vw;
    text-shadow: 0.4vw 0.4vw 0.4vw rgba(0, 0, 0, 0.15);
    filter: drop-shadow(0.8vw 0.8vw 0.667vw rgba(0, 0, 0, 0.15));
  }
  #rednaContents div.cartBox .btnCart a::after {
    width: 6.667vw;
    height: 5.467vw;
    filter: drop-shadow(0.4vw 0.4vw 0.4vw rgba(0, 0, 0, 0.15));
  }
}
#rednaContents section#factSec {
  padding: 90px 58px 150px;
  background: url(../img/bg_fact.png) right bottom no-repeat;
  background-size: 304px 606px;
}
#rednaContents section#factSec div.hlWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.3;
}
#rednaContents section#factSec div.hlWrap p {
  width: 105px;
  height: 105px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #775400;
  border: 1px solid #775400;
  border-radius: 50%;
  font-size: 32px;
}
#rednaContents section#factSec div.hlWrap h2 {
  font-size: 34px;
  font-weight: 700;
  color: #23b6bc;
  width: 510px;
}
#rednaContents section#factSec div.hlWrap h2 em {
  display: inline-block;
  font-style: normal;
  position: relative;
}
#rednaContents section#factSec div.hlWrap h2 em::after {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  padding: auto;
  bottom: 0;
  left: 0;
  z-index: 5;
  background: url(../img/wave_1.png) 0 0 no-repeat;
  background-size: contain;
}
#rednaContents section#factSec div.factList {
  color: #775400;
  color: #23b6bc;
  margin-top: 90px;
  margin-bottom: 110px;
  border: 3px solid #775400;
  border-radius: 25px;
  line-height: 1.4;
  padding: 50px 40px;
  position: relative;
  font-weight: 500;
}
#rednaContents section#factSec div.factList h3 {
  font-size: 38px;
  font-weight: 500;
  text-align: center;
  display: inline-block;
  line-height: 1;
  width: 520px;
  background: #fff;
  position: absolute;
  top: -20px;
  left: 57px;
  z-index: 10;
}
#rednaContents section#factSec div.factList ul {
  font-size: 36px;
}
#rednaContents section#factSec div.factList ul li {
  display: flex;
  justify-content: space-between;
}
#rednaContents section#factSec div.factList ul li::before {
  content: "";
  width: 48px;
  height: 48px;
  background: url(../img/check_fact.png) 0 0 no-repeat;
  background-size: contain;
}
#rednaContents section#factSec div.factList ul li span {
  width: calc(100% - 60px);
}
#rednaContents section#factSec div.factList ul li ~ li {
  margin-top: 0.6em;
}
@media screen and (max-width: 768px) {
  #rednaContents section#factSec {
    padding: 12vw 7.733vw 20vw;
    background-size: 40.533vw 80.8vw;
  }
  #rednaContents section#factSec div.hlWrap p {
    width: 14vw;
    height: 14vw;
    font-size: 4.267vw;
  }
  #rednaContents section#factSec div.hlWrap h2 {
    font-size: 4.533vw;
    width: 68vw;
  }
  #rednaContents section#factSec div.hlWrap h2 em::after {
    height: 1.6vw;
  }
  #rednaContents section#factSec div.factList {
    margin-top: 12vw;
    margin-bottom: 14.667vw;
    border: 0.4vw solid #775400;
    border-radius: 3.333vw;
    padding: 6.667vw 5.333vw;
  }
  #rednaContents section#factSec div.factList h3 {
    font-size: 5.067vw;
    width: 69.333vw;
    top: -2.667vw;
    left: 7.6vw;
  }
  #rednaContents section#factSec div.factList ul {
    font-size: 4.8vw;
  }
  #rednaContents section#factSec div.factList ul li::before {
    width: 6.4vw;
    height: 6.4vw;
  }
  #rednaContents section#factSec div.factList ul li span {
    width: calc(100% - 8vw);
  }
}
#rednaContents section#part1 {
  position: relative;
  background: #e9f8f8;
  padding-bottom: 70px;
}
#rednaContents section#part1::before {
  content: "";
  width: 100%;
  height: 60px;
  display: block;
  background: url(../img/wave_main_up.png) center 0 no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: -60px;
  left: 0;
  z-index: 5;
}
#rednaContents section#part1::after {
  content: "";
  width: 100%;
  height: 60px;
  display: block;
  background: url(../img/wave_main_up.png) center 0 no-repeat;
  background-size: 100% auto;
  transform: rotate(180deg);
  position: absolute;
  bottom: -60px;
  left: 0;
  z-index: 5;
}
#rednaContents section#part1 div.figOnBox {
  margin-top: 110px;
  position: relative;
  z-index: 10;
}
#rednaContents section#part1 div.figOnBox div.hlWrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  align-items: center;
  top: 90px;
  left: 60px;
  z-index: 10;
}
#rednaContents section#part1 div.figOnBox div.hlWrap p {
  width: 140px;
}
#rednaContents section#part1 div.figOnBox div.hlWrap h3 {
  width: calc(100% - 160px);
  line-height: 1.4;
  font-size: 40px;
  color: #23b6bc;
  font-weight: 500;
}
#rednaContents section#part1 ul.productsList {
  margin-top: 60px;
}
#rednaContents section#part1 ul.productsList li ~ li {
  margin-top: 75px;
}
#rednaContents section#part1 div.chekcList {
  width: 634px;
  margin: -35px auto 0;
  background: #fff;
  border-radius: 30px;
  position: relative;
  z-index: 15;
  padding: 50px;
  font-size: 30px;
}
#rednaContents section#part1 div.chekcList h4 {
  font-size: 36px;
  font-weight: 700;
  color: #23b6bc;
  text-align: center;
  line-height: 1;
}
#rednaContents section#part1 div.chekcList h5 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 48px;
  background: #5ec5ff;
  color: #fff;
  border-radius: 10px;
  line-height: 1;
  font-weight: 500;
}
#rednaContents section#part1 div.chekcList ul {
  margin-top: 15px;
}
#rednaContents section#part1 div.chekcList ul li {
  display: flex;
  align-items: center;
  margin-right: -15px;
}
#rednaContents section#part1 div.chekcList ul li::before {
  content: "";
  width: 36px;
  height: 36px;
  display: inline-block;
  background: url(../img/check_2_b.png) center center no-repeat;
  background-size: contain;
  margin-right: 0.3em;
}
#rednaContents section#part1 div.chekcList ul li ~ li {
  margin-top: 10px;
}
#rednaContents section#part1 div.chekcList > div {
  margin-top: 35px;
}
#rednaContents section#part1 div.chekcList > div:first-of-type {
  margin-top: 25px;
}
#rednaContents section#part1 div.chekcList > div:nth-of-type(2) h5 {
  background: #feb2d7;
}
#rednaContents section#part1 div.chekcList > div:nth-of-type(2) ul li::before {
  background-image: url(../img/check_2_p.png);
}
#rednaContents section#part1 div.chekcList > div:last-of-type h5 {
  background: #fabd46;
}
#rednaContents section#part1 div.chekcList > div:last-of-type ul li::before {
  background-image: url(../img/check_2_y.png);
}
#rednaContents section#part1 div.suggestBox {
  width: 634px;
  margin: 80px auto 0;
}
#rednaContents section#part1 div.suggestBox h4.hl {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  background: #5ec5ff;
  line-height: 1;
  color: #fff;
  position: relative;
  border-radius: 10px;
  font-size: 30px;
  gap: 0.3em;
  margin-bottom: 10px;
}
#rednaContents section#part1 div.suggestBox h4.hl::before {
  content: "";
  width: 54px;
  height: 55px;
  background: url(../img/check_2_bw.png) center center no-repeat;
  background-size: contain;
}
#rednaContents section#part1 div.suggestBox h4.hl::after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  border: 26px solid transparent;
  border-top-color: #5ec5ff;
  position: absolute;
  bottom: -48px;
  left: calc(50% - 26px);
}
#rednaContents section#part1 div.suggestBox.lamella h4.hl {
  background: #feb2d7;
}
#rednaContents section#part1 div.suggestBox.lamella h4.hl::before {
  background-image: url(../img/check_2_pw.png);
}
#rednaContents section#part1 div.suggestBox.lamella h4.hl::after {
  border-top-color: #feb2d7;
}
#rednaContents section#part1 div.suggestBox.mousse h4.hl {
  background: #fabd46;
}
#rednaContents section#part1 div.suggestBox.mousse h4.hl::before {
  background-image: url(../img/check_2_yw.png);
}
#rednaContents section#part1 div.suggestBox.mousse h4.hl::after {
  border-top-color: #fabd46;
}
@media screen and (max-width: 768px) {
  #rednaContents section#part1 {
    padding-bottom: 9.333vw;
  }
  #rednaContents section#part1::before {
    height: 8vw;
    top: -8vw;
  }
  #rednaContents section#part1::after {
    height: 8vw;
    bottom: -8vw;
  }
  #rednaContents section#part1 div.figOnBox {
    margin-top: 14.667vw;
  }
  #rednaContents section#part1 div.figOnBox div.hlWrap {
    top: 12vw;
    left: 8vw;
  }
  #rednaContents section#part1 div.figOnBox div.hlWrap p {
    width: 18.667vw;
  }
  #rednaContents section#part1 div.figOnBox div.hlWrap h3 {
    width: calc(100% - 21.333vw);
    font-size: 5.333vw;
  }
  #rednaContents section#part1 ul.productsList {
    margin-top: 8vw;
  }
  #rednaContents section#part1 ul.productsList li ~ li {
    margin-top: 10vw;
  }
  #rednaContents section#part1 div.chekcList {
    width: 84.533vw;
    margin: -4.667vw auto 0;
    border-radius: 4vw;
    padding: 6.667vw;
    font-size: 4vw;
  }
  #rednaContents section#part1 div.chekcList h4 {
    font-size: 4.8vw;
  }
  #rednaContents section#part1 div.chekcList h5 {
    width: 72.667vw;
    height: 6.4vw;
    border-radius: 1.333vw;
  }
  #rednaContents section#part1 div.chekcList ul {
    margin-top: 2vw;
  }
  #rednaContents section#part1 div.chekcList ul li {
    margin-right: -2vw;
  }
  #rednaContents section#part1 div.chekcList ul li::before {
    width: 4.8vw;
    height: 4.8vw;
  }
  #rednaContents section#part1 div.chekcList ul li ~ li {
    margin-top: 1.333vw;
  }
  #rednaContents section#part1 div.chekcList > div {
    margin-top: 4.667vw;
  }
  #rednaContents section#part1 div.chekcList > div:first-of-type {
    margin-top: 3.333vw;
  }
  #rednaContents section#part1 div.suggestBox {
    width: 84.533vw;
    margin: 10.667vw auto 0;
  }
  #rednaContents section#part1 div.suggestBox h4.hl {
    height: 9.333vw;
    border-radius: 1.333vw;
    font-size: 4vw;
    margin-bottom: 1.333vw;
  }
  #rednaContents section#part1 div.suggestBox h4.hl::before {
    width: 7.2vw;
    height: 7.333vw;
  }
  #rednaContents section#part1 div.suggestBox h4.hl::after {
    border: 3.467vw solid transparent;
    border-top-color: #5ec5ff;
    bottom: -6.4vw;
    left: calc(50% - 3.467vw);
  }
  #rednaContents section#part1 div.suggestBox.lamella h4.hl::after {
    border-top-color: #feb2d7;
  }
  #rednaContents section#part1 div.suggestBox.mousse h4.hl::after {
    border-top-color: #fabd46;
  }
}
#rednaContents section#part2 {
  padding: 150px 0 0;
}
#rednaContents section#part2 h3 {
  margin-top: 90px;
  padding-bottom: 30px;
  background: #fff;
}
#rednaContents section#part2 div.productDetail {
  background: #eff9ff;
  padding-bottom: 70px;
  position: relative;
}
#rednaContents section#part2 div.productDetail::after {
  content: "";
  width: 100%;
  height: 60px;
  display: block;
  background: url(../img/wave_aqua_up.png) center 0 no-repeat;
  background-size: 100% auto;
  transform: rotate(180deg);
  position: absolute;
  bottom: -60px;
  left: 0;
  z-index: 5;
}
#rednaContents section#part2 div.productDetail.lamella {
  background: #fff7fb;
}
#rednaContents section#part2 div.productDetail.lamella::after {
  background-image: url(../img/wave_lamella_up.png);
}
#rednaContents section#part2 div.productDetail.lamella h3 {
  margin-top: 160px;
}
#rednaContents section#part2 div.productDetail.lamella div.featureBox h5 {
  background: #feb2d7;
}
#rednaContents section#part2 div.productDetail.lamella div.featureBox h5.wh {
  background: #fff;
}
#rednaContents section#part2 div.productDetail.lamella div.featureBox h5.wh span {
  color: #feb2d7;
}
#rednaContents section#part2 div.productDetail.lamella div.voiceBox {
  background-image: url(../img/voice_lamella.png), url(../img/voice_lamella_btm.png);
}
#rednaContents section#part2 div.productDetail.mousse {
  background: #fef8ec;
}
#rednaContents section#part2 div.productDetail.mousse::after {
  background-image: url(../img/wave_mousse_up.png);
}
#rednaContents section#part2 div.productDetail.mousse h3 {
  margin-top: 160px;
}
#rednaContents section#part2 div.productDetail.mousse div.featureBox h5 {
  background: #fabd46;
}
#rednaContents section#part2 div.productDetail.mousse div.featureBox h5.wh {
  background: #fff;
}
#rednaContents section#part2 div.productDetail.mousse div.featureBox h5.wh span {
  color: #fabd46;
}
#rednaContents section#part2 div.productDetail.mousse div.voiceBox {
  background-image: url(../img/voice_mousse.png), url(../img/voice_mousse_btm.png);
}
#rednaContents section#part2 div.featureBox {
  padding-top: 90px;
}
#rednaContents section#part2 div.featureBox h5 {
  transform: skewX(-10deg);
  background: #5ec5ff;
  width: 624px;
  margin: 35px auto 0;
  font-size: 32px;
  line-height: 1;
}
#rednaContents section#part2 div.featureBox h5 span {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 94px;
  color: #fff;
  transform: skewX(10deg);
}
#rednaContents section#part2 div.featureBox h5 span em {
  font-size: 40px;
  font-style: normal;
  margin-left: 0.3em;
}
#rednaContents section#part2 div.featureBox h5.wh {
  background: #fff;
}
#rednaContents section#part2 div.featureBox h5.wh span {
  color: #5ec5ff;
}
#rednaContents section#part2 div.featureBox .note {
  font-size: 28px;
  text-align: center;
  margin-top: 20px;
}
#rednaContents section#part2 div.voiceBox {
  width: 634px;
  margin: 0 auto 50px;
  padding: 70px 35px 30px;
  background-image: url(../img/voice_aqua.png), url(../img/voice_aqua_btm.png);
  background-position: 0 0, right bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: 600px auto, 281px auto;
  font-size: 28px;
  line-height: 1.5;
}
#rednaContents section#part2 div.voiceBox .name {
  text-align: right;
}
@media screen and (max-width: 768px) {
  #rednaContents section#part2 {
    padding: 20vw 0 0;
  }
  #rednaContents section#part2 h3 {
    margin-top: 12vw;
    padding-bottom: 4vw;
  }
  #rednaContents section#part2 div.productDetail {
    padding-bottom: 9.333vw;
  }
  #rednaContents section#part2 div.productDetail::after {
    height: 8vw;
    bottom: -8vw;
  }
  #rednaContents section#part2 div.productDetail.lamella h3 {
    margin-top: 21.333vw;
  }
  #rednaContents section#part2 div.productDetail.mousse h3 {
    margin-top: 21.333vw;
  }
  #rednaContents section#part2 div.featureBox {
    padding-top: 12vw;
  }
  #rednaContents section#part2 div.featureBox h5 {
    width: 83.2vw;
    margin: 4.667vw auto 0;
    font-size: 4.267vw;
  }
  #rednaContents section#part2 div.featureBox h5 span {
    height: 12.533vw;
  }
  #rednaContents section#part2 div.featureBox h5 span em {
    font-size: 5.333vw;
  }
  #rednaContents section#part2 div.featureBox .note {
    font-size: 3.733vw;
    margin-top: 2.667vw;
  }
  #rednaContents section#part2 div.voiceBox {
    width: 84.533vw;
    margin: 0 auto 6.667vw;
    padding: 9.333vw 4.667vw 4vw;
    background-size: 80vw auto, 37.467vw auto;
    font-size: 3.733vw;
  }
}
#rednaContents section#part3 div.howToBox {
  background: #def4f5;
  position: relative;
  display: none;
}
#rednaContents section#part3 div.howToBox::after {
  content: "";
  width: 100%;
  height: 60px;
  display: block;
  background: url(../img/wave_p3_up.png) center 0 no-repeat;
  background-size: 100% auto;
  transform: rotate(180deg);
  position: absolute;
  bottom: -60px;
  left: 0;
  z-index: 5;
}
#rednaContents section#part3 h2 {
  padding-top: 165px;
}
#rednaContents section#part3 ul {
  width: 580px;
  margin: 15px auto 0;
  padding-bottom: 25px;
  counter-reset: num;
}
#rednaContents section#part3 li div.figWrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 80px;
}
#rednaContents section#part3 li div.figWrap figure {
  width: 324px;
  border-radius: 50px;
  overflow: hidden;
}
#rednaContents section#part3 li div.figWrap > div {
  width: 215px;
}
#rednaContents section#part3 li:nth-child(2n) div.figWrap {
  flex-direction: row-reverse;
}
#rednaContents section#part3 li h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  counter-increment: num;
  font-size: 30px;
  font-weight: 500;
  color: #23b6bc;
  line-height: 1;
  gap: 15px;
}
#rednaContents section#part3 li h3::before {
  content: counter(num);
  font-size: 60px;
  font-weight: 500;
}
#rednaContents section#part3 li h3::after {
  content: "";
  width: 190px;
  height: 20px;
  background: url(../img/wave_2.png) center center no-repeat;
  background-size: contain;
}
#rednaContents section#part3 li h3 + p {
  font-size: 36px;
  line-height: 1.6;
}
#rednaContents section#part3 li div.noteBox {
  font-size: 28px;
  line-height: 1.43;
  margin-top: 15px;
}
#rednaContents section#part3 div.cartPrdBox {
  padding-top: 160px;
}
#rednaContents section#part3 div.cartPrdBox h3 {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 40px;
  color: #23b6bc;
  line-height: 1.5;
  font-weight: 500;
}
#rednaContents section#part3 div.cartPrdBox h3 span {
  display: flex;
  align-items: center;
}
#rednaContents section#part3 div.cartPrdBox h3 span::before, #rednaContents section#part3 div.cartPrdBox h3 span::after {
  content: "";
  width: 21px;
  height: 25px;
  background: url(../img/brackets.png) center center no-repeat;
  background-size: contain;
  margin: 0 25px;
}
#rednaContents section#part3 div.cartPrdBox h3 span::after {
  transform: scaleX(-1);
}
#rednaContents section#part3 div.cartPrdBox > div {
  width: 634px;
  margin: 25px auto 0;
  background: #fff;
  border-radius: 30px;
  padding: 25px 0;
  border: 1px solid #23b6bc;
  overflow: hidden;
}
#rednaContents section#part3 div.cartPrdBox .figWrap {
  display: flex;
  line-height: 1.45;
}
#rednaContents section#part3 div.cartPrdBox .figWrap figure {
  width: 300px;
  margin-top: 40px;
}
#rednaContents section#part3 div.cartPrdBox .figWrap > div {
  font-size: 22px;
}
#rednaContents section#part3 div.cartPrdBox .figWrap h4 {
  font-size: 32px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
}
#rednaContents section#part3 div.cartPrdBox .figWrap h4 em {
  font-weight: 800;
  font-size: 34px;
  color: #23b6bc;
  font-style: normal;
}
#rednaContents section#part3 div.cartPrdBox .figWrap div.priceBox {
  display: flex;
  align-items: flex-end;
  gap: 0.8em;
  line-height: 1;
  font-weight: 500;
}
#rednaContents section#part3 div.cartPrdBox .figWrap div.priceBox .price {
  font-size: 48px;
  font-weight: 700;
}
#rednaContents section#part3 div.cartPrdBox .figWrap div.priceBox .price .unit {
  font-size: 28px;
  font-weight: 500;
}
#rednaContents section#part3 div.cartPrdBox .figWrap div.priceBox .wTax {
  transform: translateY(-0.4em);
}
#rednaContents section#part3 div.cartPrdBox .figWrap div.priceBox .wTax strong {
  font-weight: 700;
}
#rednaContents section#part3 div.cartPrdBox .btnCart a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 25px auto 0;
  gap: 15px;
  width: 560px;
  height: 80px;
  background: linear-gradient(to top, #23b6bc 0%, #4cc4c9 50%, #afe5e7 100%);
  border-radius: 10px;
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.15);
  filter: drop-shadow(6px 6px 5px rgba(0, 0, 0, 0.15));
}
#rednaContents section#part3 div.cartPrdBox .btnCart a::after {
  content: "";
  width: 50px;
  height: 41px;
  background: url(../img/icon_cart.png) 0 0 no-repeat;
  background-size: contain;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.15));
}
#rednaContents section#part3 div.cartPrdBox .linkDetail a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 50px);
  margin: 25px auto 0;
  height: 60px;
  background: rgba(35, 182, 188, 0.5);
  font-size: 26px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  border-radius: 15px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #rednaContents section#part3 div.howToBox::after {
    height: 8vw;
    bottom: -8vw;
  }
  #rednaContents section#part3 h2 {
    padding-top: 22vw;
  }
  #rednaContents section#part3 ul {
    width: 77.333vw;
    margin: 2vw auto 0;
    padding-bottom: 3.333vw;
  }
  #rednaContents section#part3 li div.figWrap {
    margin-top: 10.667vw;
  }
  #rednaContents section#part3 li div.figWrap figure {
    width: 43.2vw;
    border-radius: 6.667vw;
  }
  #rednaContents section#part3 li div.figWrap > div {
    width: 28.667vw;
  }
  #rednaContents section#part3 li h3 {
    font-size: 4vw;
    gap: 2vw;
  }
  #rednaContents section#part3 li h3::before {
    font-size: 8vw;
  }
  #rednaContents section#part3 li h3::after {
    width: 25.333vw;
    height: 2.667vw;
  }
  #rednaContents section#part3 li h3 + p {
    font-size: 4.8vw;
  }
  #rednaContents section#part3 li div.noteBox {
    font-size: 3.733vw;
    margin-top: 2vw;
  }
  #rednaContents section#part3 div.cartPrdBox {
    padding-top: 21.333vw;
  }
  #rednaContents section#part3 div.cartPrdBox h3 {
    font-size: 5.333vw;
  }
  #rednaContents section#part3 div.cartPrdBox h3 span::before, #rednaContents section#part3 div.cartPrdBox h3 span::after {
    width: 2.8vw;
    height: 3.333vw;
    margin: 0 3.333vw;
  }
  #rednaContents section#part3 div.cartPrdBox > div {
    width: 84.533vw;
    margin: 3.333vw auto 0;
    border-radius: 4vw;
    padding: 3.333vw 0;
  }
  #rednaContents section#part3 div.cartPrdBox .figWrap figure {
    width: 40vw;
    margin-top: 5.333vw;
  }
  #rednaContents section#part3 div.cartPrdBox .figWrap > div {
    font-size: 2.933vw;
  }
  #rednaContents section#part3 div.cartPrdBox .figWrap h4 {
    font-size: 4.267vw;
  }
  #rednaContents section#part3 div.cartPrdBox .figWrap h4 em {
    font-size: 4.533vw;
  }
  #rednaContents section#part3 div.cartPrdBox .figWrap div.priceBox .price {
    font-size: 6.4vw;
  }
  #rednaContents section#part3 div.cartPrdBox .figWrap div.priceBox .price .unit {
    font-size: 3.733vw;
  }
  #rednaContents section#part3 div.cartPrdBox .btnCart a {
    font-size: 4vw;
    margin: 3.333vw auto 0;
    gap: 2vw;
    width: 74.667vw;
    height: 10.667vw;
    border-radius: 1.333vw;
    text-shadow: 0.4vw 0.4vw 0.4vw rgba(0, 0, 0, 0.15);
    filter: drop-shadow(0.8vw 0.8vw 0.667vw rgba(0, 0, 0, 0.15));
  }
  #rednaContents section#part3 div.cartPrdBox .btnCart a::after {
    width: 6.667vw;
    height: 5.467vw;
    filter: drop-shadow(0.4vw 0.4vw 0.4vw rgba(0, 0, 0, 0.15));
  }
  #rednaContents section#part3 div.cartPrdBox .linkDetail a {
    width: calc(100% - 6.667vw);
    margin: 3.333vw auto 0;
    height: 8vw;
    font-size: 3.467vw;
    border-radius: 2vw;
  }
}
#rednaContents section#suggestSec {
  padding-top: 110px;
}
#rednaContents section#suggestSec h3 {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 40px;
  color: #23b6bc;
  line-height: 1.5;
  font-weight: 500;
}
#rednaContents section#suggestSec h3 span {
  display: flex;
  align-items: center;
}
#rednaContents section#suggestSec h3 span::before, #rednaContents section#suggestSec h3 span::after {
  content: "";
  width: 21px;
  height: 25px;
  background: url(../img/brackets.png) center center no-repeat;
  background-size: contain;
  margin: 0 25px;
}
#rednaContents section#suggestSec h3 span::after {
  transform: scaleX(-1);
}
#rednaContents section#suggestSec div.suggestBox {
  margin: 30px auto 0;
  width: 100%;
  overflow: auto;
  height: 620px;
}
#rednaContents section#suggestSec div.suggestBox ul {
  display: flex;
  padding: 0 58px;
  gap: 10px;
}
#rednaContents section#suggestSec div.suggestBox ul::after {
  content: "";
  width: 58px;
  flex-shrink: 0;
}
#rednaContents section#suggestSec div.suggestBox ul li {
  width: 315px;
  height: 590px;
  flex-shrink: 0;
  border: 1px solid #23b6bc;
  border-radius: 20px;
}
#rednaContents section#suggestSec .btnCart a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px auto 0;
  gap: 5px;
  width: 274px;
  height: 56px;
  background: linear-gradient(to top, #23b6bc 0%, #4cc4c9 50%, #afe5e7 100%);
  border-radius: 10px;
  font-size: 21px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.15);
  filter: drop-shadow(6px 6px 5px rgba(0, 0, 0, 0.15));
}
#rednaContents section#suggestSec .btnCart a::after {
  content: "";
  width: 41px;
  height: 34px;
  background: url(../img/icon_cart.png) 0 0 no-repeat;
  background-size: contain;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.15));
}
#rednaContents section#suggestSec .linkDetail a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px auto 0;
  width: 274px;
  height: 56px;
  background: rgba(35, 182, 188, 0.5);
  font-size: 24px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  border-radius: 15px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #rednaContents section#suggestSec {
    padding-top: 14.667vw;
  }
  #rednaContents section#suggestSec h3 {
    font-size: 5.333vw;
  }
  #rednaContents section#suggestSec h3 span::before, #rednaContents section#suggestSec h3 span::after {
    width: 2.8vw;
    height: 3.333vw;
    margin: 0 3.333vw;
  }
  #rednaContents section#suggestSec div.suggestBox {
    margin: 4vw auto 0;
    height: 82.667vw;
  }
  #rednaContents section#suggestSec div.suggestBox ul {
    padding: 0 7.733vw;
    gap: 1.333vw;
  }
  #rednaContents section#suggestSec div.suggestBox ul::after {
    width: 7.733vw;
  }
  #rednaContents section#suggestSec div.suggestBox ul li {
    width: 42vw;
    height: 78.667vw;
    border-radius: 2.667vw;
  }
  #rednaContents section#suggestSec .btnCart a {
    margin: 1.333vw auto 0;
    gap: 0.667vw;
    width: 36.533vw;
    height: 7.467vw;
    border-radius: 1.333vw;
    font-size: 2.8vw;
    text-shadow: 0.4vw 0.4vw 0.4vw rgba(0, 0, 0, 0.15);
    filter: drop-shadow(0.8vw 0.8vw 0.667vw rgba(0, 0, 0, 0.15));
  }
  #rednaContents section#suggestSec .btnCart a::after {
    width: 5.467vw;
    height: 4.533vw;
    filter: drop-shadow(0.4vw 0.4vw 0.4vw rgba(0, 0, 0, 0.15));
  }
  #rednaContents section#suggestSec .linkDetail a {
    margin: 1.333vw auto 0;
    width: 36.533vw;
    height: 7.467vw;
    font-size: 3.2vw;
    border-radius: 2vw;
  }
}
#rednaContents section#faqSec {
  padding: 85px 58px 90px;
}
#rednaContents section#faqSec h2 {
  width: 358px;
  height: 172px;
  margin: 0 auto 50px;
}
#rednaContents section#faqSec dl {
  line-height: 1.4;
  font-weight: 500;
  padding: 60px 0;
  border-top: 2px solid #23b6bc;
}
#rednaContents section#faqSec dl:last-of-type {
  border-bottom: 2px solid #23b6bc;
}
#rednaContents section#faqSec dt {
  font-size: 32px;
  color: #23b6bc;
  position: relative;
  cursor: pointer;
  transition: 0.3s all;
}
#rednaContents section#faqSec dt:hover {
  opacity: 0.6;
}
#rednaContents section#faqSec dt::before, #rednaContents section#faqSec dt::after {
  content: "";
  width: 36px;
  height: 4px;
  background: #23b6bc;
  position: absolute;
  top: calc(50% - 2px);
  right: 15px;
  z-index: 10;
}
#rednaContents section#faqSec dt::after {
  transform: rotate(90deg);
  transition: 0.3s all;
}
#rednaContents section#faqSec dt.open::after {
  transform: rotate(0);
}
#rednaContents section#faqSec dt span {
  display: flex;
  align-items: center;
  gap: 0.6em;
}
#rednaContents section#faqSec dt span::before {
  content: "";
  width: 60px;
  height: 60px;
  background: url(../img/icon_q.png) 0 0 no-repeat;
  background-size: contain;
  flex-shrink: 0;
}
#rednaContents section#faqSec dd {
  display: flex;
  font-size: 28px;
  gap: 0.6em;
  margin-top: 25px;
  display: none;
}
#rednaContents section#faqSec dd::before {
  content: "";
  width: 60px;
  height: 60px;
  background: url(../img/icon_a.png) 0 0 no-repeat;
  background-size: contain;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  #rednaContents section#faqSec {
    padding: 11.333vw 7.733vw 12vw;
  }
  #rednaContents section#faqSec h2 {
    width: 47.733vw;
    height: 22.933vw;
    margin: 0 auto 6.667vw;
  }
  #rednaContents section#faqSec dl {
    padding: 8vw 0;
    border-top: 0.267vw solid #23b6bc;
  }
  #rednaContents section#faqSec dl:last-of-type {
    border-bottom: 0.267vw solid #23b6bc;
  }
  #rednaContents section#faqSec dt {
    font-size: 4.267vw;
  }
  #rednaContents section#faqSec dt::before, #rednaContents section#faqSec dt::after {
    width: 4.8vw;
    height: 0.533vw;
    top: calc(50% - 0.267vw);
    right: 2vw;
  }
  #rednaContents section#faqSec dt span::before {
    width: 8vw;
    height: 8vw;
  }
  #rednaContents section#faqSec dd {
    font-size: 3.733vw;
    margin-top: 3.333vw;
  }
  #rednaContents section#faqSec dd::before {
    width: 8vw;
    height: 8vw;
  }
}