@charset "UTF-8";

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.4rem;
  font-weight: 400;
  color: #000;
}

main {
  max-width: 75rem;
  width: 100%;
  margin: 0 auto;
}

/* p {
  font-size: 3.5rem;
} */

.hidden {
  overflow: hidden;
}

.sp {
  display: none;
}

.tb {
  display: none;
}

.pc {
  display: block;
}

.shadow {
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 16%);
}

@media (min-width: 1080px) {
  .hover {
    transition: all 0.3s;
  }

  .hover:hover {
    opacity: 0.7;
    transition: all 0.3s;
  }
}

img {
  width: 100%;
  height: auto;
}

/* ----- クーポンコードコピー ----- */

.couponArea {
  position: relative;
  z-index: 1;
}
.couponArea_btn {
  cursor: pointer;
  margin-top: 3rem;
}
.couponArea_btn.head_coupon {
  margin-top: 0.5rem;
}
.couponArea_id,
.couponArea_message {
  display: none;
}
.couponArea_message.is_active {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 100%;
  color: #834e18;
  font-size: 1.6rem;
  font-weight: bold;
  animation: fadeout-anim 2s ease-in-out forwards;
}

@media (max-width: 750px) {
  .couponArea_message.is_active {
    font-size: 2.8rem;
  }
}

@keyframes fadeout-anim {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.cv-btn {
  width: 70rem;
  margin: 0 auto;
}

.couponArea_btn.fv_coupon {
  width: 68rem;
  margin: 1.5rem auto 0;
}

/* ----- case ----- */

.caseAccordion {
  padding: 0 5.333333333% 7% 5.333333333%;
  background-color: #ffd8c5;
}
.caseAccordion dt:not(:first-child) {
  padding-top: 5%;
}
.caseAccordion dd {
  position: relative;
  height: 33.733333333vw;
  max-height: 500px;
  overflow: hidden;
  transition: all 1s ease;
}
.caseAccordion dd::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 33.733333333vw;
  max-height: 500px;
  margin: 0 auto;
  z-index: 2;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 79%, rgba(255, 255, 255, 1) 100%);
}
.caseAccordion_btn {
  position: absolute;
  left: 0;
  right: 0;
  width: 97%;
  bottom: 5%;
  margin: 0 auto;
  cursor: pointer;
  z-index: 3;
  transition: all 1s ease;
}
.caseAccordion_btn:hover {
  opacity: 0.8;
}

.caseAccordion dd.is_open .caseAccordion_btn {
  display: none;
}
.caseAccordion dd.is_open {
  height: 100%;
  max-height: 1700px;
}
.caseAccordion dd.is_open::after {
  content: none;
}

/* ----- fv ----- */

.fv_01 {
  margin-top: -22rem;
}

.fv-bg {
  background-color: #fde9e7;
}

.fv-cta {
  position: absolute;
  top: 127rem;
  left: 50%;
  transform: translateX(-50%);
}

/* ----- sec01 ----- */

.cv-wrap-00 {
  position: absolute;
  top: 383rem;
  left: 52%;
  transform: translateX(-50%);
}

.cv-wrap-01 {
  position: absolute;
  top: 120rem;
  left: 50%;
  transform: translateX(-50%);
}

/* ----- sec02 ----- */

.cv-wrap-02 {
  position: absolute;
  top: 170rem;
  left: 50%;
  transform: translateX(-50%);
}

/* ----- sec03 ----- */

.gluta-txt {
  position: absolute;
  top: 2.4rem;
  left: 62rem;
  font-size: 2rem;
  color: #e48888;
}

.sec03-gif1 {
  position: absolute;
  top: 120rem;
  left: 50%;
  transform: translateX(-50%);
  width: 67rem;
}

.yoyaku {
  padding-bottom: 39rem;
  background-color: #ffe9e6;
}

.sec03_video {
  position: absolute;
  top: 51rem;
  left: 50%;
  transform: translateX(-50%);
  width: 57rem;
}

.line-btn {
  display: block;
  width: 67rem;
  height: 15.6rem;
}

.cv-wrap-03 {
  position: absolute;
  top: 171rem;
  left: 50%;
  transform: translateX(-50%);
}

/* ----- last ----- */

.cv-wrap-04 {
  position: absolute;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
}

/* ----- faq ----- */

.qaList {
  background-color: #fef1ea;
}
.qaList dd {
  display: none;
}

.qaList dt {
  position: relative;
  cursor: pointer;
}

.qaList dt span {
  display: flex;
  position: absolute;
  top: 30%;
  right: 7%;
  width: 3%;
  height: 38%;
  align-items: center;
  justify-content: center;
}
.qaList dt span::before,
.qaList dt span::after {
  content: " ";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #7e4e15;
}
.qaList dt span::before {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
.qaList dt.is_active span::before {
  transform: rotate(0deg);
}

@media screen and (max-width: 767px) {
  .qaList dt span::before,
  .qaList dt span::after {
    height: 1px;
  }
}

/* ----- Floating ----- */

.flg {
  position: fixed;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 750px;
  width: 100%;
  padding: 20px 25px;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 99;
}

@media (max-width: 750px) {
  .flg {
    padding: 2.8vw 3.3vw;
  }
}

.flg a {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.flg a:hover {
  filter: brightness(120%);
  opacity: 1;
}

.flg img {
  max-width: 100%;
}

.flg-date {
  position: absolute;
  text-align: center;
  color: #94775e;
  font-family: "Noto Serif JP";
  font-size: 22px;
  font-weight: 700;
  top: 52px;
  left: 40px;
}

.flg-span-1,
.flg-span-2 {
  line-height: 1.2;
  display: block;
}


@media (max-width: 750px) {
  .flg-date {
    top: calc((52 / 750) * 100vw);
    left: calc((40 / 750) * 100vw);
    font-size: calc((22 / 750) * 100vw);
  }
}


/* ----- footer ----- */

footer {
  padding: 8rem 0 5rem;
  background-color: #fff;
  max-width: 75rem;
  margin: 0 auto;
  margin-bottom: 20rem;
  text-align: center;
  font-size: 2rem;
}

footer ul {
  display: flex;
  justify-content: center;
}
footer ul li {
  margin: 0 1.5rem;
}
footer ul li a {
  color: #a8a8a8;
  text-decoration: none;
}

footer .copy {
  font-weight: bold;
  margin-top: 3rem;
}

@media (max-width: 750px) {
  footer {
    padding: 6.66vw 0;
    font-size: 2.66vw;
  }
  footer .copy {
    margin-top: 4vw;
  }
}

/* ----- 光が横切るエフェクト ----- */

.light-box {
  display: block;
  overflow: hidden;
  margin: 0 auto;
  background-color: transparent;
  border-radius: 0.5vw;
}

.light-box-line {
  display: block;
  overflow: hidden;
  margin: 0 auto;
  background-color: transparent;
}

.shiny-btn {
  display: inline-block;
  text-align: center;
  position: relative;
  /* width: 100%; */
  color: #fff;
}
.shiny-btn:after {
  content: "";
  position: absolute;
  top: -10rem;
  left: -10rem;
  width: 5rem;
  height: 5rem;
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.8) 100%, rgba(255, 255, 255, 0) 0%);
  animation-name: shiny;
  animation-duration: 2.5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes shiny {
  0% {
    transform: scale(0) rotate(25deg);
    opacity: 0;
  }

  50% {
    transform: scale(1) rotate(25deg);
    opacity: 1;
  }

  100% {
    transform: scale(50) rotate(25deg);
    opacity: 0;
  }
}

/* ----- 跳ねるエフェクト ----- */

.bounce {
  animation: bounce 1.5s ease infinite;
}
@keyframes bounce {
  70% {
    transform: translateY(0%);
  }
  80% {
    transform: translateY(-3rem);
  }
  90% {
    transform: translateY(0%);
  }
  95% {
    transform: translateY(-1.5rem);
  }
  97% {
    transform: translateY(0%);
  }
  99% {
    transform: translateY(-0.75rem);
  }
  100% {
    transform: translateY(0);
  }
}

/* ------------------------------------------
  /* sp
  /* ------------------------------------------ */

@media (max-width: 750px) {
  html,
  body {
    font-size: calc(100vw / 75);
  }

  .tb {
    display: none;
  }

  .sp {
    display: block;
  }
}

/******************************
** gluta
*******************************/

.gluta {
  position: relative;
  background-color: #fff;
  padding-bottom: 10px;
}

.gluta-wrap {
  position: relative;
  display: inline-block;
}

.gluta__txt {
  position: absolute;
  top: 50%;
  left: 49px;
  transform: translateY(-50%);
  font-size: 28px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  color: rgb(31, 31, 31);
  line-height: 2;
  letter-spacing: 0.15em;
}

.gluta__txt ._lg {
  display: inline-block;
  font-size: 34px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  margin-right: 64px;
}

.gluta__txt ._line {
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 5px;
  transform: translateY(-4px);
}

@media (max-width: 750px) {
  .gluta {
    padding-bottom: calc((10 / 750) * 100vw);
  }

  .gluta__txt {
    left: calc((49 / 750) * 100vw);
    font-size: calc((28 / 750) * 100vw);
  }

  .gluta__txt ._lg {
    font-size: calc((34 / 750) * 100vw);
    margin-right: calc((64 / 750) * 100vw);
  }

  .gluta__txt ._line {
    text-underline-offset: calc((5 / 750) * 100vw);
    transform: translateY(calc((-4 / 750) * 100vw));
  }
}

/******************************
** fv
*******************************/

.fv {
  position: relative;
}

.fv__cat {
  position: absolute;
  top: 235px;
  font-size: 44px;
  font-family: "Noto Sans JP";
  font-weight: 500;
  color: #fff;
}

.fv__ttl {
  position: absolute;
  top: 237px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  font-size: 55px;
  font-family: "Noto Serif JP";
  font-weight: 600;
  color: rgb(126, 78, 21);
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

.fv__ttl span {
  font-size: 76px;
  color: rgb(220, 84, 93);
}

@media (max-width: 750px) {
  .fv__cat {
    top: calc((235 / 750) * 100vw);
    font-size: calc((44 / 750) * 100vw);
  }

  .fv__ttl {
    top: calc((237 / 750) * 100vw);
    font-size: calc((55 / 750) * 100vw);
  }

  .fv__ttl span {
    font-size: calc((76 / 750) * 100vw);
  }
}

/******************************
** medicine
*******************************/

.slider-wrap {
  position: absolute;
  top: 29rem;
  left: 50%;
  transform: translateX(-50%);
}

.slider {
  width: 75rem;
}

.slick-dots li {
  width: auto !important;
  height: auto !important;
  margin: 0 0.75rem !important;
}

.slick-dots li button {
  width: 2.5rem !important;
  height: 2.5rem !important;
  border: 0.3rem solid #ea9993 !important;
  border-radius: 50% !important;
  overflow: hidden !important;
}

.slick-dots li button:before {
  width: 100% !important;
  height: 100% !important;
  color: transparent !important;
  border-radius: 50% !important;
  overflow: hidden !important;
}

.slick-dots li.slick-active button:before {
  width: 100% !important;
  height: 100% !important;
  opacity: 1 !important;
  color: #ea9993 !important;
  background-color: #ea9993 !important;
}

.slick-arrow {
  width: 5.5rem !important;
  height: 5.5rem !important;
  top: 53.8rem !important;
  z-index: 1 !important;
}

.slick-prev {
  left: 0.5rem !important;
}

.slick-next {
  right: 0.5rem !important;
}

.slick-prev::before,
.slick-next::before {
  content: "" !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  width: 5.5rem !important;
  height: 5.5rem !important;
  opacity: 1 !important;
  display: inline-block !important;
}

.slick-prev::before {
  background-image: url(../img/arrow_left.png) !important;
}

.slick-next::before {
  background-image: url(../img/arrow_right.png) !important;
}

.medicine {
  position: absolute;
  top: 10px;
  left: 10px;
}

.medicine__ttl {
  font-size: 48px;
  font-family: "Zen Kurenaido", sans-serif;
  font-weight: 500;
  color: rgb(126, 78, 21);
  line-height: 1.4;
  text-align: center;
  letter-spacing: -0.03em;
}

.medicine__sub-ttl {
  font-size: 28px;
  font-family: "Noto Sans JP", sans-serif;
  color: rgb(228, 136, 136);
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

.medicine__sub-ttl--sml {
  font-size: 22px;
}

.medicine__txt {
  font-size: 26px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: rgb(26, 26, 26);
  text-align: justify;
  line-height: 1.7;
}

.f-emphasis {
  font-size: 26px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: rgb(228, 136, 136);
  text-align: justify;
}

.medicine--01 {
  top: 77px;
  left: 59px;
}

.medicine--01 .medicine__ttl-box {
  width: 330px;
}

.medicine--01 .medicine__sub-ttl {
  margin-top: 8px;
}

.medicine--01 .medicine__txt {
  width: 325px;
  margin-top: 38px;
}

.medicine--02 {
  top: 581px;
  left: 357px;
}

.medicine--02 .medicine__ttl-box {
  width: 330px;
}

.medicine--02 .medicine__sub-ttl {
  margin-top: 2px;
}

.medicine--02 .medicine__txt {
  width: 310px;
  font-size: 24px;
  margin: 47px auto 0;
}

.medicine--03 {
  top: 87px;
  left: 67px;
}

.medicine--03 .medicine__ttl-box {
  width: 310px;
}

.medicine--03 .medicine__ttl {
  font-size: 32px;
  letter-spacing: -0.05em;
}

.medicine--03 .medicine__sub-ttl {
  margin-top: 4px;
}

.medicine--03 .medicine__txt {
  width: 310px;
  font-size: 24px;
  margin-top: 30px;
}

.medicine--04 {
  top: 676px;
  left: 380px;
}

.medicine--04 .medicine__ttl-box {
  width: 310px;
}

.medicine--04 .medicine__ttl {
  font-size: 38px;
  letter-spacing: -0.05em;
}

.medicine--04 .medicine__sub-ttl {
  margin-top: 13px;
}

.medicine--04 .medicine__txt {
  width: 310px;
  margin-top: 38px;
}

.medicine--05 {
  top: 965px;
  left: 46px;
}

.medicine--05 .medicine__ttl-box {
  width: 330px;
}

.medicine--05 .medicine__ttl {
  font-size: 44px;
  letter-spacing: -0.05em;
}

.medicine--05 .medicine__sub-ttl {
  margin-top: 14px;
}

.medicine--05 .medicine__txt {
  width: 325px;
  font-size: 25px;
  margin-top: 40px;
}

@media (max-width: 750px) {
  .medicine {
    top: calc((10 / 750) * 100vw);
    left: calc((10 / 750) * 100vw);
  }

  .medicine__ttl {
    font-size: calc((48 / 750) * 100vw);
  }

  .medicine__sub-ttl {
    font-size: calc((28 / 750) * 100vw);
  }

  .medicine__sub-ttl--sml {
    font-size: calc((22 / 750) * 100vw);
  }

  .medicine__txt {
    font-size: calc((26 / 750) * 100vw);
  }

  .f-emphasis {
    font-size: calc((26 / 750) * 100vw);
  }

  .medicine--01 {
    top: calc((77 / 750) * 100vw);
    left: calc((59 / 750) * 100vw);
  }

  .medicine--01 .medicine__ttl-box {
    width: calc((330 / 750) * 100vw);
  }

  .medicine--01 .medicine__sub-ttl {
    margin-top: calc((8 / 750) * 100vw);
  }

  .medicine--01 .medicine__txt {
    width: calc((325 / 750) * 100vw);
    margin-top: calc((38 / 750) * 100vw);
  }

  .medicine--02 {
    top: calc((581 / 750) * 100vw);
    left: calc((357 / 750) * 100vw);
  }

  .medicine--02 .medicine__ttl-box {
    width: calc((330 / 750) * 100vw);
  }

  .medicine--02 .medicine__sub-ttl {
    margin-top: calc((2 / 750) * 100vw);
  }

  .medicine--02 .medicine__txt {
    width: calc((310 / 750) * 100vw);
    font-size: calc((24 / 750) * 100vw);
    margin-top: calc((40 / 750) * 100vw);
  }

  .medicine--03 {
    top: calc((87 / 750) * 100vw);
    left: calc((67 / 750) * 100vw);
  }

  .medicine--03 .medicine__ttl-box {
    width: calc((310 / 750) * 100vw);
  }

  .medicine--03 .medicine__ttl {
    font-size: calc((32 / 750) * 100vw);
  }

  .medicine--03 .medicine__sub-ttl {
    margin-top: calc((4 / 750) * 100vw);
  }

  .medicine--03 .medicine__txt {
    width: calc((310 / 750) * 100vw);
    font-size: calc((24 / 750) * 100vw);
    margin-top: calc((30 / 750) * 100vw);
  }

  .medicine--04 {
    top: calc((676 / 750) * 100vw);
    left: calc((380 / 750) * 100vw);
  }

  .medicine--04 .medicine__ttl-box {
    width: calc((310 / 750) * 100vw);
  }

  .medicine--04 .medicine__ttl {
    font-size: calc((38 / 750) * 100vw);
  }

  .medicine--04 .medicine__sub-ttl {
    margin-top: calc((13 / 750) * 100vw);
  }

  .medicine--04 .medicine__txt {
    width: calc((310 / 750) * 100vw);
    margin-top: calc((38 / 750) * 100vw);
  }

  .medicine--05 {
    top: calc((965 / 750) * 100vw);
    left: calc((46 / 750) * 100vw);
  }

  .medicine--05 .medicine__ttl-box {
    width: calc((330 / 750) * 100vw);
  }

  .medicine--05 .medicine__ttl {
    font-size: calc((44 / 750) * 100vw);
  }

  .medicine--05 .medicine__sub-ttl {
    margin-top: calc((14 / 750) * 100vw);
  }

  .medicine--05 .medicine__txt {
    width: calc((325 / 750) * 100vw);
    font-size: calc((25 / 750) * 100vw);
    margin-top: calc((40 / 750) * 100vw);
  }
}
