@charset "UTF-8";
img, video {
  width: 100%;
  vertical-align: middle; /* display:blockで都合が悪い場合はこちらで対応 */
}

video {
  filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
  outline: none;
  border: none;
}

ul, ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

figure {
  margin: 0;
}
figure > figcaption {
  margin-bottom: 0.5em;
}
figure > img + figcaption {
  margin-top: 0.5em;
  margin-bottom: 0;
}

.bold {
  font-weight: bold;
}

.bigger {
  font-size: 1.2em;
}

.biggest {
  font-size: 1.4em;
}

.underline {
  text-decoration: underline;
}

.marker-YL {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, #ff0 50%, #ff0 100%);
}

.marker-BL {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, #6bb5ff 50%, #6bb5ff 100%);
}

small {
  font-size: 11px;
}
@media screen and (max-width: 414px) {
  small {
    font-size: 9px;
  }
}
small.sup {
  vertical-align: super;
  font-weight: normal;
}

.footnote {
  text-align: left;
  font-size: 11px;
}
@media screen and (max-width: 414px) {
  .footnote {
    font-size: 9px;
  }
}
.footnote.right {
  text-align: right;
}

ol.footnote {
  list-style-type: none;
  margin-top: 10px;
  padding-left: 0;
  display: table;
  text-align: left;
}
ol.footnote.right {
  margin-left: auto;
}
ol.footnote li {
  display: table-row;
  counter-increment: table-ol;
}
ol.footnote li:before {
  content: "※" counter(table-ol);
  display: table-cell;
  padding-right: 1em;
  width: 1em; /*Firefox用*/
}
ol.footnote li:after {
  content: "";
  display: block;
  margin-bottom: 0.5em;
}

html {
  font-size: 20px;
}
@media screen and (max-width: 414px) {
  html {
    font-size: 18px;
  }
}

body, html {
  height: 100%;
}

body {
  margin: 0;
  font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  color: #807C75;
}

* {
  box-sizing: border-box;
}

.container {
  max-width: 760px;
  margin: 0 auto;
}

section {
  margin-bottom: min(72px, 8vw);
}
@media screen and (max-width: 414px) {
  section {
    margin-bottom: 20px;
  }
}
section:not(.fv, .see_video) {
  display: none;
}
section.is-show {
  display: block;
}

.fv {
  text-align: center;
}
.fv__logo {
  margin: 2% 0;
}
.fv__logo > img {
  width: 15%;
}
.fv__noindex {
  margin: 0;
  padding: 2% 0;
  background-color: #F3EFE7;
  font-size: 0.9em;
}

.see_video {
  text-align: center;
}
.see_video__notice {
  padding: 2% 0;
}
.see_video__arrow {
  margin-bottom: min(72px, 8vw);
}
@media screen and (max-width: 414px) {
  .see_video__arrow {
    margin-bottom: 20px;
  }
}
.see_video__arrow .ani_doubleArrow_flowDown {
  width: 80px;
  margin: 60px auto 20px;
}
.see_video__arrow .ani_doubleArrow_flowDown .arrow_line {
  display: flex;
  justify-content: center;
}
.see_video__arrow .ani_doubleArrow_flowDown .arrow_line:first-of-type {
  animation: flowLine 2s infinite;
}
.see_video__arrow .ani_doubleArrow_flowDown .arrow_line:last-of-type {
  opacity: 0;
  animation: flowLine 2s 1s infinite;
}
.see_video__arrow .ani_doubleArrow_flowDown .arrow_line::before, .see_video__arrow .ani_doubleArrow_flowDown .arrow_line::after {
  display: block;
  content: "";
  width: 100%;
  border-bottom: 2px solid #D06268;
  transform: translateY(-10px);
}
.see_video__arrow .ani_doubleArrow_flowDown .arrow_line::before {
  transform-origin: 100% 100%;
  transform: rotate(35deg);
}
.see_video__arrow .ani_doubleArrow_flowDown .arrow_line::after {
  transform-origin: 0 100%;
  transform: rotate(-35deg);
}
@keyframes flowLine {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

.youtube_wrap {
  display: block;
  position: relative;
  height: calc(100svh - (16px + 0.9em));
  aspect-ratio: 9/16;
  margin: 0.5em auto calc(16px + 2em);
  padding: 0;
  font-size: 0.9em;
}
.youtube_wrap iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* iPhone safariの枠線を消す */
  filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
  /* PCのChromeの枠線を消す */
  outline: none;
  border: none;
}
.youtube_wrap .progress {
  position: absolute;
  bottom: -16px;
  width: 100%;
  height: 16px;
  background: #ccc;
}
.youtube_wrap .progress__bar {
  width: 0%;
  height: 100%;
  background: #D06268;
  transition: width 0.1s linear;
}

.faq {
  text-align: center;
}
.faq__question, .faq__answer {
  padding: min(36px, 4vw);
}
@media screen and (max-width: 414px) {
  .faq__question, .faq__answer {
    padding: 10px;
  }
}
.faq__question {
  background-color: #F3EFE7;
}
.faq__question__nums {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}
.faq__question__nums__num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #E8DECA;
  color: #fff;
  font-size: 1em;
}
.faq__question__nums__num.is-active {
  width: 14%;
  background-color: #D06268;
  font-size: 1.8em;
}
.faq__question__nums__num:not(:last-of-type) {
  position: relative;
}
.faq__question__nums__num:not(:last-of-type)::after {
  position: absolute;
  top: 50%;
  right: -20%;
  display: block;
  content: "";
  width: 20%;
  height: 1px;
  background-color: #E8DECA;
}
.faq__question__txt {
  margin-top: min(36px, 4vw);
}
@media screen and (max-width: 414px) {
  .faq__question__txt {
    margin-top: 10px;
  }
}
.faq__question__txt {
  margin-bottom: min(36px, 4vw);
}
@media screen and (max-width: 414px) {
  .faq__question__txt {
    margin-bottom: 10px;
  }
}
.faq__question__txt {
  line-height: 1.5;
  font-weight: bold;
}
.faq__answer__options {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.faq__answer__options li {
  border-radius: 2em;
  padding: 0.8em 0.5em;
  background-color: #D06268;
  color: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.faq__answer__options li.is-active {
  background-color: #F3EFE7;
  color: #807C75;
  box-shadow: none;
}

.result {
  text-align: center;
}
.result [class*=JS_branch-] > * {
  display: none;
}
.result [class*=JS_branch-] > *.is-show {
  display: block;
}
.result__you {
  position: relative;
  margin-top: 1.5em;
  padding-bottom: 1em;
  background-color: #F3EFE7;
  line-height: 1.5;
}
.result__you__fragrance, .result__you__type {
  font-weight: bold;
}
.result__you::before {
  content: "診断結果";
  display: inline-block;
  padding: 0.3em 0.5em;
  transform: translateY(-50%);
  background-color: #D06268;
  color: #fff;
}
.result__you::after {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 48px;
  height: 20px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #F3EFE7;
}
.result__final {
  padding: 1em 0;
}
.result__final__fragrance, .result__final__plan {
  display: flex;
  justify-content: center;
  margin: 0.5em 0;
}
.result__final__fragrance::before, .result__final__plan::before {
  display: inline-block;
}
.result__final__fragrance > span, .result__final__plan > span {
  background-color: #FEFD8E;
  font-weight: bold;
}
.result__final__fragrance::before {
  content: "香り → ";
}
.result__final__plan::before {
  content: "プラン → ";
}
.result__show_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  width: 95%;
  margin: auto;
  padding: 0.5em;
  border-radius: 4em;
  background: linear-gradient(to bottom, #eb969d, #cc676e);
  border: min(0.8vw, 5px) solid #fff;
  line-height: 1.3;
  font-size: min(7vw, 48px);
  font-weight: bold;
  color: #fff;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}
.result__show_btn__txt {
  margin-left: 1em;
}
.result__show_btn__ico {
  display: flex;
  justify-content: center;
  width: 1.5em;
  aspect-ratio: 1/1;
  align-self: center;
  background-color: #fff;
  border-radius: 50%;
}
.result__show_btn__ico::before {
  display: block;
  content: "";
  width: 30%;
  aspect-ratio: 3/4;
  align-self: center;
  margin-left: 5%;
  background-color: #cc676e;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

button:hover {
  opacity: 0.8;
}

.cta__urgent {
  background-color: #FEFD8E;
  text-align: center;
  color: #D06268;
}
.cta__urgent__txt {
  padding: 5%;
}
.cta__urgent__txt__title {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 5%;
  margin: 5% 0;
}
.cta__urgent__txt__title > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(min(16vw, 100px) + 5%);
  aspect-ratio: 1/1;
  padding: 2% 1% 1%;
  overflow: hidden;
  transform: scale(0);
  background-color: #D06268;
  font-family: "Times New Roman", "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: min(16vw, 100px);
  font-weight: bold;
  color: #fff;
}
.cta__urgent__txt__title.is-frameIn > span:nth-of-type(1) {
  animation: zoom 0.8s forwards 0.4s;
}
.cta__urgent__txt__title.is-frameIn > span:nth-of-type(2) {
  animation: zoom 0.8s forwards 0.9s;
}
.cta__urgent__txt__title.is-frameIn > span:nth-of-type(3) {
  animation: zoom 0.8s forwards 1.4s;
}
.cta__urgent__txt__title.is-frameIn > span:nth-of-type(4) {
  animation: zoom 0.8s forwards 1.9s;
}
@keyframes zoom {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
.cta__urgent__txt__main {
  margin: 5% 0;
  font-size: min(6.5vw, 38px);
  font-weight: bold;
}
.cta__urgent__txt__sub {
  font-size: 0.9em;
}
.cta__currentTime {
  padding: 1em 0;
  background-color: #F3EFE7;
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
}
.cta .cv_btn {
  margin-top: 2em;
  text-align: center;
}
.cta .cv_btn button img {
  width: 95%;
  filter: drop-shadow(2px 5px 5px rgba(0, 0, 0, 0.3));
}

.footer {
  text-align: center;
  font-size: 12px;
  margin-top: 10%;
}
.footer > * {
  margin: 1.2em 0;
}
.footer > *:last-child {
  padding-bottom: 5%;
}
.footer__links {
  display: flex;
  justify-content: center;
}
.footer__links li:not(:last-of-type)::after {
  display: inline-block;
  content: "|";
  margin: 0 1em;
}
.footer__links li a {
  text-decoration: none;
  color: inherit;
}/*# sourceMappingURL=lp-250813.css.map */