@charset "UTF-8";
/* ==============================================
            変数
============================================== */
/* ==============================================
            共通
============================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  font-family: "Zen Maru Gothic", serif;
  color: #333;
  background-color: #FCFAF8;
  letter-spacing: 0.1em;
  line-height: 1.6;
  width: 100%;
  text-align: center;
  font-feature-settings: "palt";
}
body .fade-in {
  opacity: 0;
  transition-duration: 700ms;
  transition-property: opacity, transform;
}
body .fade-in-up {
  transform: translate(0, 50px);
}
body .fade-in-down {
  transform: translate(0, -50px);
}
body .fade-in-left {
  transform: translate(-50px, 0);
}
body .fade-in-right {
  transform: translate(50px, 0);
}
body .scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body .white_space {
  white-space: pre-line;
}
body img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: bottom;
}
body a {
  text-decoration: none;
}
body ul {
  list-style: none;
}
body button {
  outline: none;
  cursor: pointer;
}

/* ==============================================
            診断コンテンツ
============================================== */
.app_wrap {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: bgchange 60s ease infinite;
}
@keyframes bgchange {
  0% {
    background: rgba(209, 157, 157, 0.5);
  }
  16% {
    background: rgba(135, 71, 71, 0.5);
  }
  32% {
    background: rgba(217, 168, 67, 0.5);
  }
  50% {
    background: rgba(177, 189, 138, 0.5);
  }
  66% {
    background: rgba(101, 161, 191, 0.5);
  }
  82% {
    background: rgba(209, 163, 193, 0.5);
  }
  100% {
    background: rgba(209, 157, 157, 0.5);
  }
}
.app_wrap .select {
  position: absolute;
  right: 120px;
  top: 260px;
  z-index: 10;
}
.app_wrap .select .select_img {
  width: 400px;
}
.app_wrap .select .img_change {
  background-size: contain;
  width: 300px;
  height: 600px;
  margin-left: 200px;
  margin-top: -60px;
  animation: imgChange 8s infinite steps(1);
}
@keyframes imgChange {
  0% {
    background: url(../img/select1.png) no-repeat center center;
    background-size: contain;
  }
  50% {
    background: url(../img/select2.png) no-repeat center center;
    background-size: contain;
  }
}
.app_wrap #app {
  width: 1000px;
  height: 600px;
  background-color: #f3eee9;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
}

.contents {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.start .start_wrap h1 {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.3;
  color: #D19D9D;
  letter-spacing: 0.1em;
}
.start .start_wrap h1 span {
  font-size: 40px;
  color: #D9A843;
  letter-spacing: 0.08em;
}
.start .start_wrap p {
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.start .start_wrap p::before, .start .start_wrap p::after {
  content: "";
  display: block;
  height: 40px;
  width: 2px;
  background-color: #919191;
}
.start .start_wrap p::before {
  transform: rotate(-30deg);
  margin-right: 30px;
}
.start .start_wrap p::after {
  transform: rotate(30deg);
  margin-left: 30px;
}
.start button {
  width: 300px;
  height: 60px;
  background-color: #65A1BF;
  color: #FCFAF8;
  font-weight: bold;
  font-size: 20px;
  border: none;
  border-radius: 50px;
  margin: 20px auto;
  box-shadow: 0px 5px 0px #376E89;
  animation: yura infinite 3s steps(1);
  letter-spacing: 0.08em;
}
@keyframes yura {
  0% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(2deg);
  }
  20% {
    transform: rotate(-2deg);
  }
  30% {
    transform: rotate(0);
  }
}
.start button:hover {
  box-shadow: none;
  transform: translateY(5px);
}

.question .question_wrap h1 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #C18E25;
  color: #333;
  letter-spacing: 0.05em;
}
.question .question_wrap .btn_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.question .question_wrap .btn_wrap .btn button {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: none;
  margin: 0 20px;
  color: #FCFAF8;
  font-weight: bold;
  font-size: 20px;
  background-color: #D19D9D;
  box-shadow: 0px 5px 0px #874747;
}
.question .question_wrap .btn_wrap .btn button:hover {
  box-shadow: none;
  transform: translateY(5px);
}
.question .question_wrap .btn_wrap .btn:nth-of-type(2) button {
  background-color: #65A1BF;
  box-shadow: 0px 5px 0px #376E89;
}
.question .question_wrap .btn_wrap .btn:nth-of-type(2) button:hover {
  box-shadow: none;
  transform: translateY(5px);
}
.question .question_wrap .return {
  color: #333;
  background-color: initial;
  border: none;
  padding: 10px;
  position: absolute;
  left: 60px;
  bottom: 20px;
}
.question .question_wrap .return::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 0.6em;
  height: 0.6em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(25%) rotate(-135deg);
  margin-right: 5px;
}

.result {
  width: 100%;
  height: 100%;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
}
.result h1 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.result h1::after {
  content: "";
  display: block;
  background: url(../img/after.svg) no-repeat center center;
  background-size: contain;
  width: 7px;
  height: 40px;
  margin: 10px auto;
}
.result .return_btn {
  font-size: 24px;
  border: none;
  color: #333;
  font-size: 14px;
  position: absolute;
  left: 60px;
  bottom: 30px;
  background-color: initial;
}
.result .return_btn::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 0.6em;
  height: 0.6em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(25%) rotate(-135deg);
  margin-right: 5px;
}

.result_contents p {
  font-size: 20px;
  margin-bottom: 10px;
  color: #874747;
}
.result_contents h2 {
  font-size: 40px;
  font-weight: bold;
  color: #874747;
  letter-spacing: 0.08em;
}
.result_contents a {
  display: block;
  width: 320px;
  height: 70px;
  background-color: #D19D9D;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  margin: 20px auto;
  color: #FCFAF8;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0px 5px 0px #874747;
}
.result_contents a:hover {
  box-shadow: none;
  transform: translateY(5px);
}

.result_wave::before {
  content: "";
  display: block;
  width: 300px;
  height: 300px;
  animation: fluidrotate 20s ease 0s infinite;
  background-color: rgba(209, 157, 157, 0.3);
  position: absolute;
  top: -50px;
  left: -50px;
}
@keyframes fluidrotate {
  0% {
    border-radius: 38% 62% 33% 67%/38% 73% 27% 62%;
  }
  12.5% {
    border-radius: 70% 30% 33% 67%/54% 53% 47% 46%;
  }
  25% {
    border-radius: 66% 34% 72% 28%/31% 11% 89% 69%;
  }
  37.5% {
    border-radius: 30% 70% 91% 9%/57% 58% 42% 43%;
  }
  50% {
    border-radius: 52% 48% 72% 28%/43% 58% 42% 57%;
  }
  62.5% {
    border-radius: 66% 34% 37% 63%/43% 85% 15% 57%;
  }
  75% {
    border-radius: 60% 75% 40% 80%/70% 70% 60% 65%;
  }
  87.5% {
    border-radius: 40% 60% 55% 45%/50% 60% 40% 50%;
  }
  100% {
    border-radius: 65% 35% 55% 45%/55% 50% 55% 45%;
  }
}
.result_wave::after {
  content: "";
  display: block;
  width: 300px;
  height: 300px;
  animation: fluidrotate 30s ease 0s infinite;
  background-color: rgba(209, 157, 157, 0.3);
  position: absolute;
  bottom: -50px;
  right: -50px;
}
@keyframes fluidrotate {
  0% {
    border-radius: 38% 62% 33% 67%/38% 73% 27% 62%;
  }
  12.5% {
    border-radius: 70% 30% 33% 67%/54% 53% 47% 46%;
  }
  25% {
    border-radius: 66% 34% 72% 28%/31% 11% 89% 69%;
  }
  37.5% {
    border-radius: 30% 70% 91% 9%/57% 58% 42% 43%;
  }
  50% {
    border-radius: 52% 48% 72% 28%/43% 58% 42% 57%;
  }
  62.5% {
    border-radius: 66% 34% 37% 63%/43% 85% 15% 57%;
  }
  75% {
    border-radius: 60% 75% 40% 80%/70% 70% 60% 65%;
  }
  87.5% {
    border-radius: 40% 60% 55% 45%/50% 60% 40% 50%;
  }
  100% {
    border-radius: 65% 35% 55% 45%/55% 50% 55% 45%;
  }
}

.result_natural p {
  color: #C18E25;
}
.result_natural h2 {
  color: #C18E25;
}
.result_natural a {
  background-color: #D9A843;
  box-shadow: 0px 5px 0px #C18E25;
}
.result_natural span {
  display: block;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(217, 168, 67, 0.3);
  position: absolute;
  top: -30px;
  left: -30px;
  animation: result-natural 9s infinite;
}
.result_natural span::before {
  content: "";
  display: block;
  width: 300px;
  height: 300px;
  border: solid 1px #D9A843;
  border-radius: 50%;
  margin: 20px -40px;
}
.result_natural span:nth-of-type(2) {
  bottom: -30px;
  right: -30px;
  left: auto;
  top: auto;
  animation-delay: 1s;
}
.result_natural span:nth-of-type(2)::before {
  content: "";
  display: block;
  width: 300px;
  height: 300px;
  border: solid 1px #D9A843;
  border-radius: 50%;
  margin: -40px 20px;
}
@keyframes result-natural {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.result_straight span {
  display: block;
  width: 300px;
  height: 800px;
  transform: rotate(45deg);
  position: absolute;
  top: -400px;
  left: 0;
  background-color: rgba(101, 161, 191, 0.2);
  animation: result-straight 6s infinite ease-in-out;
  will-change: transform;
}
.result_straight span::before {
  content: "";
  display: block;
  width: 310px;
  height: 800px;
  transform: rotate(5deg);
  background-color: rgba(101, 161, 191, 0.1);
  animation: result-straight-before 6s infinite ease-in-out;
  will-change: transform;
}
.result_straight span:nth-of-type(2) {
  display: block;
  width: 300px;
  height: 800px;
  transform: rotate(45deg);
  position: absolute;
  bottom: -400px;
  right: 0;
  left: auto;
  top: auto;
  background-color: rgba(101, 161, 191, 0.2);
}
@keyframes result-straight {
  0% {
    transform: rotate(45deg);
  }
  20% {
    transform: rotate(47deg);
  }
  50% {
    transform: rotate(45deg);
  }
  80% {
    transform: rotate(43deg);
  }
  100% {
    transform: rotate(45deg);
  }
}
@keyframes result-straight-before {
  0% {
    transform: rotate(5deg);
  }
  20% {
    transform: rotate(6deg);
  }
  50% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(5deg);
  }
}
.result_straight p {
  color: #376E89;
}
.result_straight h2 {
  color: #376E89;
}
.result_straight a {
  background-color: #65A1BF;
  box-shadow: 0px 5px 0px #376E89;
}

/* ==============================================
            おすすめ商品
============================================== */
#contentsWrap {
  width: 100%;
  height: 100vh;
  position: relative;
  display: none;
}

.wave {
  background-color: rgba(209, 157, 157, 0.5);
  overflow: hidden;
  position: relative;
}
.wave::before {
  content: "";
  display: block;
  width: 600px;
  height: 600px;
  animation: fluidrotate 20s ease 0s infinite;
  border: solid 2px #D19D9D;
  position: absolute;
  top: -50px;
  left: -50px;
}
@keyframes fluidrotate {
  0% {
    border-radius: 38% 62% 33% 67%/38% 73% 27% 62%;
  }
  12.5% {
    border-radius: 70% 30% 33% 67%/54% 53% 47% 46%;
  }
  25% {
    border-radius: 66% 34% 72% 28%/31% 11% 89% 69%;
  }
  37.5% {
    border-radius: 30% 70% 91% 9%/57% 58% 42% 43%;
  }
  50% {
    border-radius: 52% 48% 72% 28%/43% 58% 42% 57%;
  }
  62.5% {
    border-radius: 66% 34% 37% 63%/43% 85% 15% 57%;
  }
  75% {
    border-radius: 60% 75% 40% 80%/70% 70% 60% 65%;
  }
  87.5% {
    border-radius: 40% 60% 55% 45%/50% 60% 40% 50%;
  }
  100% {
    border-radius: 65% 35% 55% 45%/55% 50% 55% 45%;
  }
}
.wave::after {
  content: "";
  display: block;
  width: 600px;
  height: 600px;
  animation: fluidrotate 30s ease 0s infinite;
  background-color: #874747;
  position: absolute;
  bottom: -50px;
  right: -50px;
  z-index: -1;
}
@keyframes fluidrotate {
  0% {
    border-radius: 38% 62% 33% 67%/38% 73% 27% 62%;
  }
  12.5% {
    border-radius: 70% 30% 33% 67%/54% 53% 47% 46%;
  }
  25% {
    border-radius: 66% 34% 72% 28%/31% 11% 89% 69%;
  }
  37.5% {
    border-radius: 30% 70% 91% 9%/57% 58% 42% 43%;
  }
  50% {
    border-radius: 52% 48% 72% 28%/43% 58% 42% 57%;
  }
  62.5% {
    border-radius: 66% 34% 37% 63%/43% 85% 15% 57%;
  }
  75% {
    border-radius: 60% 75% 40% 80%/70% 70% 60% 65%;
  }
  87.5% {
    border-radius: 40% 60% 55% 45%/50% 60% 40% 50%;
  }
  100% {
    border-radius: 65% 35% 55% 45%/55% 50% 55% 45%;
  }
}
.wave h1 {
  color: #874747;
}
.wave .reccomend_contents {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 600px;
  background-color: #f3eee9;
  border-radius: 50px;
  overflow: hidden;
  padding: 20px 0;
}
.wave .reccomend_contents h1 {
  font-weight: bold;
}
.wave .reccomend_contents h1 span {
  font-size: 40px;
}
.wave .reccomend_contents .slider {
  width: 100%;
  margin: 20px auto;
}
.wave .reccomend_contents .slider li a {
  display: block;
  width: 400px;
  height: 500px;
}
.wave .reccomend_contents .slider li a figure {
  width: 380px;
  height: 380px;
  margin: 0 auto 20px;
  position: relative;
}
.wave .reccomend_contents .slider li a figure::after {
  content: "";
  display: block;
  background: url(../img/zoom.svg) no-repeat center center;
  background-size: contain;
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.wave .reccomend_contents .slider li a p {
  color: #f3eee9;
  background: url(../img/fukidashi.svg) no-repeat center center;
  background-size: contain;
  display: block;
  width: 380px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  line-height: 1.4;
  margin: 0 auto;
  padding-top: 10px;
}
.wave .reccomend_contents .slider .slick-slide {
  transform: scale(0.8);
  transition: all 0.5s;
  opacity: 0.5;
}
.wave .reccomend_contents .slider .slick-slide.slick-center {
  transform: scale(1);
  opacity: 1;
}
.wave .return_start {
  display: block;
  background-color: #FCFAF8;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  bottom: 8%;
  left: 48%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #874747;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.3;
  box-shadow: 0px 5px 0px #874747;
}
.wave .return_start:hover {
  box-shadow: none;
  transform: translateY(5px);
}

.natural {
  overflow: hidden;
  background-color: rgba(217, 168, 67, 0.5);
}
.natural .natural_shape {
  display: block;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background-color: rgba(217, 168, 67, 0.3);
  position: absolute;
  top: -30px;
  left: -30px;
  animation: shape3 ease-in-out 30s infinite;
}
@keyframes shape3 {
  0% {
    transform: scale(0.1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(0.1);
  }
}
.natural .natural_shape::before {
  content: "";
  display: block;
  width: 600px;
  height: 600px;
  border: solid 1px #D9A843;
  border-radius: 50%;
  margin: 20px -40px;
}
.natural .natural_shape:nth-of-type(2) {
  bottom: -30px;
  right: -30px;
  left: auto;
  top: auto;
  animation: shape4 ease-in-out 20s infinite;
}
@keyframes shape4 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
.natural .natural_shape:nth-of-type(2)::before {
  content: "";
  display: block;
  width: 600px;
  height: 600px;
  border: solid 1px #D9A843;
  border-radius: 50%;
  margin: -40px 20px;
}
.natural h1 {
  color: #C18E25;
}
.natural .reccomend_contents {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 600px;
  background-color: #f3eee9;
  border-radius: 50px;
  overflow: hidden;
  padding: 20px 0;
}
.natural .reccomend_contents h1 {
  font-weight: bold;
}
.natural .reccomend_contents h1 span {
  font-size: 40px;
}
.natural .reccomend_contents .slider {
  width: 100%;
  margin: 20px auto;
}
.natural .reccomend_contents .slider li a {
  display: block;
  width: 400px;
  height: 500px;
}
.natural .reccomend_contents .slider li a figure {
  width: 380px;
  height: 380px;
  margin: 0 auto 20px;
  position: relative;
}
.natural .reccomend_contents .slider li a figure::after {
  content: "";
  display: block;
  background: url(../img/zoom.svg) no-repeat center center;
  background-size: contain;
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.natural .reccomend_contents .slider li a p {
  color: #f3eee9;
  background: url(../img/fukidashi_n.svg) no-repeat center center;
  background-size: contain;
  display: block;
  width: 380px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  line-height: 1.4;
  margin: 0 auto;
  padding-top: 10px;
}
.natural .reccomend_contents .slider .slick-slide {
  transform: scale(0.8);
  transition: all 0.5s;
  opacity: 0.5;
}
.natural .reccomend_contents .slider .slick-slide.slick-center {
  transform: scale(1);
  opacity: 1;
}
.natural .return_start {
  display: block;
  background-color: #FCFAF8;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  bottom: 8%;
  left: 48%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #C18E25;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.3;
  box-shadow: 0px 5px 0px #C18E25;
}
.natural .return_start:hover {
  box-shadow: none;
  transform: translateY(5px);
}

.straight {
  overflow: hidden;
  background-color: rgba(101, 161, 191, 0.5);
}
.straight .straight_shape {
  display: block;
  width: 200px;
  height: 1900px;
  transform: rotate(45deg);
  position: absolute;
  top: -800px;
  left: 0;
  background-color: rgba(101, 161, 191, 0.2);
  animation: shape1 infinite ease-in-out 10s;
}
@keyframes shape1 {
  0% {
    transform: rotate(45deg);
  }
  50% {
    transform: rotate(60deg);
  }
  100% {
    transform: rotate(45deg);
  }
}
.straight .straight_shape::before {
  content: "";
  display: block;
  width: 300px;
  height: 1900px;
  transform: rotate(-10deg);
  background-color: rgba(101, 161, 191, 0.1);
  animation: shape2 infinite ease-in-out 10s;
}
@keyframes shape2 {
  0% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(-20deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}
.straight .straight_shape:nth-of-type(2) {
  display: block;
  width: 200px;
  height: 1200px;
  transform: rotate(45deg);
  position: absolute;
  bottom: -400px;
  right: 0;
  left: auto;
  top: auto;
  background-color: rgba(101, 161, 191, 0.2);
}
.straight h1 {
  color: #376E89;
}
.straight .reccomend_contents {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 600px;
  background-color: #f3eee9;
  border-radius: 50px;
  overflow: hidden;
  padding: 20px 0;
}
.straight .reccomend_contents h1 {
  font-weight: bold;
}
.straight .reccomend_contents h1 span {
  font-size: 40px;
}
.straight .reccomend_contents .slider {
  width: 100%;
  margin: 20px auto;
}
.straight .reccomend_contents .slider li a {
  display: block;
  width: 400px;
  height: 500px;
}
.straight .reccomend_contents .slider li a figure {
  width: 380px;
  height: 380px;
  margin: 0 auto 20px;
  position: relative;
}
.straight .reccomend_contents .slider li a figure::after {
  content: "";
  display: block;
  background: url(../img/zoom.svg) no-repeat center center;
  background-size: contain;
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.straight .reccomend_contents .slider li a p {
  color: #f3eee9;
  background: url(../img/fukidashi_s.svg) no-repeat center center;
  background-size: contain;
  display: block;
  width: 380px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  line-height: 1.4;
  margin: 0 auto;
  padding-top: 10px;
}
.straight .reccomend_contents .slider .slick-slide {
  transform: scale(0.8);
  transition: all 0.5s;
  opacity: 0.5;
}
.straight .reccomend_contents .slider .slick-slide.slick-center {
  transform: scale(1);
  opacity: 1;
}
.straight .return_start {
  display: block;
  background-color: #FCFAF8;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  bottom: 8%;
  left: 48%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #376E89;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.3;
  box-shadow: 0px 5px 0px #376E89;
}
.straight .return_start:hover {
  box-shadow: none;
  transform: translateY(5px);
}

.remodal {
  max-width: 1100px;
  height: 640px;
  overflow: hidden;
  padding: 40px 80px;
}
.remodal .remodal-close {
  left: auto;
  right: 20px;
  top: 20px;
  border: solid 1px #7b7b7b;
  border-radius: 50%;
}
.remodal .modal_df {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.remodal .modal_df .modal_img {
  height: 600px;
  width: 400px;
}
.remodal .modal_df .modal_img .main_img {
  width: 100%;
  border: solid 1px #D19D9D;
  transition: 0.4s;
}
.remodal .modal_df .modal_img .thumnail_change {
  display: flex;
  justify-content: center;
  width: 400px;
  margin-top: 20px;
}
.remodal .modal_df .modal_img .thumnail_change img {
  width: 120px;
  margin-left: 5px;
  margin-right: 5px;
  border: solid 1px #D19D9D;
  cursor: pointer;
  transition: 0.4s;
}
.remodal .modal_df .modal_img .thumnail_change img:hover {
  opacity: 0.7;
}
.remodal .modal_df .modal_text {
  text-align: left;
  position: sticky;
  display: block;
  height: 540px;
  width: 500px;
  overflow-y: scroll;
}
.remodal .modal_df .modal_text::-webkit-scrollbar {
  display: none;
}
.remodal .modal_df .modal_text h2 {
  font-weight: bold;
  font-size: 26px;
  line-height: 1.3;
  color: #874747;
}
.remodal .modal_df .modal_text .num {
  margin: 20px 0;
}
.remodal .modal_df .modal_text .point {
  background-color: #D19D9D;
  padding: 40px 20px 40px 25px;
}
.remodal .modal_df .modal_text .point h3 {
  color: #FCFAF8;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}
.remodal .modal_df .modal_text .point p {
  color: #874747;
  font-weight: bold;
  background-color: #FCFAF8;
  margin-top: 20px;
  height: 60px;
  padding: 10px 20px;
  border-radius: 15px;
  line-height: 1.3;
  position: relative;
}
.remodal .modal_df .modal_text .point p::before {
  content: "";
  display: block;
  border-width: 10px 0 10px 20px;
  transform: rotate(180deg);
  border-style: solid;
  border-color: transparent transparent transparent #FCFAF8;
  position: absolute;
  left: -10px;
  top: 20px;
}
.remodal .modal_df .modal_text .product_btn {
  display: block;
  background-color: #D19D9D;
  width: 260px;
  height: 80px;
  border-radius: 60px;
  margin: 40px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FCFAF8;
  font-weight: bold;
  font-size: 20px;
  box-shadow: 0px 5px 0px #874747;
}
.remodal .modal_df .modal_text .product_btn:hover {
  box-shadow: none;
  transform: translateY(5px);
}

.remodal_natural .modal_df .modal_img .main_img {
  width: 100%;
  border: solid 1px #D9A843;
  transition: 0.4s;
}
.remodal_natural .modal_df .modal_img .thumnail_change img {
  border: solid 1px #D9A843;
}
.remodal_natural .modal_df .modal_text h2 {
  color: #C18E25;
}
.remodal_natural .modal_df .modal_text .point {
  background-color: #D9A843;
}
.remodal_natural .modal_df .modal_text .point p {
  color: #C18E25;
}
.remodal_natural .modal_df .modal_text .product_btn {
  background-color: #D9A843;
  box-shadow: 0px 5px 0px #C18E25;
}

.remodal_straight .modal_df .modal_img .main_img {
  width: 100%;
  border: solid 1px #65A1BF;
  transition: 0.4s;
}
.remodal_straight .modal_df .modal_img .thumnail_change img {
  border: solid 1px #65A1BF;
}
.remodal_straight .modal_df .modal_text h2 {
  color: #376E89;
}
.remodal_straight .modal_df .modal_text .point {
  background-color: #65A1BF;
}
.remodal_straight .modal_df .modal_text .point p {
  color: #376E89;
}
.remodal_straight .modal_df .modal_text .product_btn {
  background-color: #65A1BF;
  box-shadow: 0px 5px 0px #376E89;
}

.remodal-close::before {
  width: 33px;
}

.reccomend_contents h1 {
  letter-spacing: 0.15em;
}
.reccomend_contents h1 span {
  letter-spacing: 0.05em;
}/*# sourceMappingURL=style.css.map */