html {
  font-size: 100%;
}
body {
  font-family: "Noto Sans JP", system-ui, -apple-system, "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  overflow-x: hidden;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  display: block;
}
a:hover {
  opacity: 0.8;
}
ul {
  list-style: none;
}
:root {
  --font-accent: "Inter", "Noto Sans JP", system-ui, -apple-system,
    "Helvetica Neue", Arial, sans-serif;
  --font-main-color: #404040;
  --color-style4: #2a2825;
}
.title-font {
  font-size: min(12.8vw, 50px);
  text-align: center;
  font-weight: 400;
  font-family: "Castoro Titling", serif;
}
.title-ja {
  font-size: min(8.97vw, 35px);
  font-weight: 500;
  text-align: center;
}
.bg_wrapper {
  display: flex;
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
.bg_wrapper::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg_pc.webp");
  z-index: -1;
}
.side-area {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  position: fixed;
  top: 0;
  width: calc(50vw - 215px);
  height: 100vh;
}
.side-area.left-area {
  left: 0;
}
.side-area.right-area {
  right: 0;
}
.bg_logo,
.bg_cta {
  z-index: 10;
  display: block;
}
.bg_cta {
  width: min(80%, 600px);
}
.bg_logo {
  width: 56.1%;
}
.main-content {
  width: 100%;
  max-width: 430px;
  overflow-y: visible;
  overflow-x: hidden;
  background: #fff;
  z-index: 1;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin-inline: auto;
}
.fixed-cta {
  position: fixed;
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
  width: 93%;
  max-width: 364px;
  z-index: 100;
  overflow: visible;
  transition: opacity 0.3s ease;
}
.fixed-cta-button {
  text-align: center;
  transition: opacity 0.3s ease;
}
.fixed-cta-button:hover {
  opacity: 0.9;
}
.fixed-cta img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  -webkit-animation: moderate-pulse 3s ease-in-out infinite;
  animation: moderate-pulse 3s ease-in-out infinite;
}
@-webkit-keyframes moderate-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}
@keyframes moderate-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}
.countdown {
  max-width: 430px;
  width: 100%;
  background: linear-gradient(-90deg, #B12A5B 0%, #CF556C 25%, #FF8C7F 63%, #FF8177 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
}
.accent {
  font-size: 14px;
}
.countdown__container {
  max-width: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.countdown__text {
  font-family: "Noto Sans JP", sans-serif;
  /* background: linear-gradient(90deg, #dde9ff 0%, #9cb9ee 100%); */
  background: #242424;
  font-weight: 600;
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
  position: relative;
  display: inline-block;
  line-height: 1.4;
  text-align: center;
  white-space: normal;
  padding-inline: 20px;
  height: 50px;
  padding-top: 6px;
}
.countdown__text::before {
  content: "";
  position: absolute;
  background-color: #fff;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  height: 1px;
  z-index: 1;
}
.timer {
  display: flex;
  margin: 0 2%;
  color: #fff;
}
.timer > div {
  display: flex;
  align-items: baseline;
}
.timer > div:not(:last-child) {
  margin-right: min(1vw, 4px);
}
.timer span {
  font-family: var(--font-accent);
  font-size: 26px;
  /* color: #a5bff0; */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04rem;
  padding-left: min(2vw, 9px);
  font-weight: 500;
}
.timer i {
  margin-left: 4px;
  font-size: 10px;
  font-weight: 600;
  font-style: normal;
  font-weight: 400;
}
@media screen and (max-width: 430px) {
  .timer span {
    font-size: 26px;
  }
  .countdown__text {
    font-size: 12px;
  }
  .accent {
    font-size: 14px;
    padding-top: 1vw;
  }
  .timer > div:not(:last-child) {
    margin-right: 1vw;
  }
  .timer i {
    font-size: 11px;
    margin-left: 0.5vw;
  }
}
.fv {
  margin-top: 50px;
  position: relative;
}
@-webkit-keyframes beat {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.05);
  }
  30% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(1);
  }
}
@keyframes beat {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.05);
  }
  30% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(1);
  }
}
.fv__cta img {
  width: 97.8%;
  max-width: 367px;
  margin-inline: auto;
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
}
.container img {
  width: 100%;
}
.story {
  background-color: #E7EBF2;
  padding-block: 46px 43px;
}
.story__title {
  max-width: 304px;
  margin: 0 auto 29px;
}
.story__case {
  width: 294px;
  height: 539px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  margin-inline: auto;
}

.results {
  padding-block: 32px 44px;
}
.results__container {
  width: calc(100% - 40px);
  margin-inline: auto;
}
.results__figure01 {
  width: calc(100% + 20px);
  margin-right: -20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-block: 20px 38px;
  padding-block: 10px 0 0;
}
.results__figure01 img {
  display: block;
  min-width: 480px;
  height: 170px;
  max-width: none;
  margin: 0 10px 20px;
}
.results__01 {
  margin-bottom: 46px;
}
.results__02 {
  margin-bottom: 32px;
}
.results__03 {
  margin-bottom: 36px;
}
.results__04 {
  margin-bottom: 37px;
}
.results__05 {
  max-width: 211px;
  margin: 0 auto 16px;
}
.results__figure02 {
  width: calc(100% + 20px);
  margin-right: -20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.results__figure02 img {
  display: block;
  min-width: 745px;
  height: 400px;
  max-width: none;
  margin: 0 10px 20px;
}
.comparison {
  padding-block: 40px;
}
.comparison__title {
  max-width: 269px;
  margin: 0 auto 38px;
}
.comparison__figure {
  max-width: none;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 20px;
}
.comparison__figure img {
  width: 757px;
  height: 423px;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: none;
  margin-bottom: 20px;
}
.flow {
  width: calc(100% - 40px);
  margin: 0 auto 55px;
}
.message {
  width: calc(100% - 40px);
  margin: 0 auto 53px;
}
.faq {
  margin-bottom: 58px;
}
.faq__title {
  max-width: 180px;
  margin: 0 auto 48px;
}
.item_container {
  margin: 0 auto 8%;
  width: calc(100% - 64px);
}
.item_container:last-of-type {
  margin-bottom: 0;
}
.item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  padding-right: 10px;
  padding-bottom: 12px;
  margin-bottom: 19px;
  border-bottom: 1px solid #ccc;
}
.q_area {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 7%;
}
.q_text {
  display: flex;
  gap: 10px;
}
.faq_icon {
  background-image: url("../img/faq_open.png");
  width: 14px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.item.open .faq_icon {
  background-image: url("../img/faq_close.png");
}
.item_open {
  display: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 26px;
}
.item_open.open {
  color: var(--color-style4);
  width: 100%;
  display: flex;
  gap: 7px;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
}
.faq_q {
  font-family: var(--font-accent);
  font-weight: 600;
}
.bottom-cta {
  margin-bottom: 30%;
}
.footer {
  background-color: #000;
  padding: 28px 32px 18px;
}
.footer__links {
  margin-bottom: 16px;
}
.footer__links a {
  color: #fff;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.06em;
  font-weight: 400;
}
.copy {
  font-family: var(--font-accent);
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 1039px) {
  .bg_logo,
  .bg_cta {
    display: none;
  }
}
@media (min-width: 1040px) {
  .bg_logo,
  .bg_cta {
    display: block;
    text-align: center;
  }
  .main-content::before,
  .main-content::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: calc(50vw - 215px);
    z-index: -1;
    pointer-events: none;
  }
  .main-content::before {
    left: calc(-50vw + 215px);
  }
  .main-content::after {
    right: calc(-50vw + 215px);
  }
}
/*# sourceMappingURL=style.min.css.map */
