@charset 'UTF-8';

/* Reset
-------------------------------------------------- */
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* @media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-delay: 0s !important;
    transition-duration: 1ms !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
  }
} */
html {
  block-size: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  tab-size: 4;
}
body {
  min-block-size: 100%;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}
:where(img, iframe) {
  border: none;
}
:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}
:where(img) {
  image-rendering: -webkit-optimize-contrast;
}
:where(svg) {
  stroke: none;
  fill: currentColor;
}
:where(svg):where(:not([fill])) {
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}
:where(h1, h2, h3) {
  line-height: calc(1em + .5rem);
}
ul:where([class]),
ol:where([class]),
nav ul,
nav ol {
  list-style: none;
}
ul:where(:not([class])) {
  margin-left: .875em;
}
ol:where(:not([class])) {
  margin-left: 1.25em;
}
:where(table) {
  border-collapse: collapse;
  border-spacing: 0;
}
:where(sub, sup) {
  font-size: 68.75%;
  line-height: 1.02;
}
:where(sub) {
  vertical-align: baseline;
}
:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}
:where(template) {
  display: none;
}
:where(a) {
  background: transparent;
  text-decoration-skip: objects;
  -webkit-tap-highlight-color: rgba(0, 0, 0, .25);
}
:where(a:active, a:hover) {
  outline-width: 0;
}
:where(a img) {
  pointer-events: none;
}
:where(a, area, button, input, label[for], select, textarea, summary, [role='button'], [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
}
:where(summary) {
  list-style: none;
}
:where(summary)::-webkit-details-marker {
  display: none;
}
:where(code, kbd, pre, samp) {
  font-family: Consolas, Monaco, Andale Mono, Ubuntu Mono, monospace;
}
:where(pre) {
  display: block;
  overflow: auto;
}
:where(code) {
  overflow-wrap: break-word;
}
:where(pre code) {
  word-break: normal;
}
:where(dialog) {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1000;
  width: fit-content;
  height: fit-content;
  padding: 1em;
  background: inherit;
  border: solid;
  color: inherit;
  transform: translate(-50%, -50%);
}
:where(dialog:not([open])) {
  display: none;
}
:where(fieldset) {
  border: none;
}
:where(input, textarea, select, button),
:where(input[type="file"])::-webkit-file-upload-button {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  vertical-align: bottom;
  appearance: none;
}
:where(textarea) {
  resize: vertical;
  resize: block;
  overflow: auto;
  overflow-anchor: none;
}
:where(input[type="file"])::-webkit-file-upload-button,
:where(input[type="file"])::file-selector-button {
  cursor: pointer;
}
:where(:disabled, :disabled + label),
:where(input[type="file"]):disabled::-webkit-file-upload-button,
:where(input[type="file"]):disabled::file-selector-button,
:where([disabled], [aria-disabled="true"]) {
  cursor: not-allowed;
}
:where([type="color"])::-webkit-color-swatch-wrapper {
  padding: 0;
}
:where([type="color"])::-webkit-color-swatch {
  border: none;
  border-radius: 0;
}
:where([type="color"])::-moz-color-swatch {
  border: none;
  border-radius: 0;
}
:where([hidden]) {
  display: none;
}
:where([aria-busy="true"]) {
  cursor: progress;
}
:where([aria-controls]) {
  cursor: pointer;
}



/* Foundation
-------------------------------------------------- */
:root {
  --base-size: 750 * 100vw;

  --color-default : #3e3e3e;
  --color-primary : #ba00e2;
  --color-gray    : #b5b5b5;

  --font-default : 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'BIZ UDPGothic', Meiryo, 'Segoe UI', 'Helvetica Neue', Helvetica, sans-serif;

  --transition          : .25s ease;
  --transition-duration : .25s;
  --hover-opacity       : .6;
}

body {
  width: 100%;
  background: #fafafa;
  color: var(--color-default);
  font-family: var(--font-default);
  font-size: min(calc(34 / var(--base-size)), 34px);
  line-height: 1.3;
  font-weight: 400;
  overflow-x: hidden;
}
a {
  color: var(--color-default);
  text-decoration: none;
  text-underline-offset: .275em;
}
a:where(:not([class])) {
  color: var(--color-primary);
  text-decoration: underline;
}
img {
  width: 100%;
}
input, textarea, button, select, option, optgroup {
  font-size: 16px;
}
::selection {
  background-color: var(--color-primary);
  color: #fff;
  text-shadow: none;
}
::placeholder {
  color: var(--color-gray);
  opacity: 1;
}




/* Utility
-------------------------------------------------- */
.u-tl { text-align: left; }
.u-tc { text-align: center; }
.u-tr { text-align: right; }

.u-vt { vertical-align: top; }
.u-vm { vertical-align: middle; }
.u-vb { vertical-align: bottom; }

.u-fwn { font-weight: 400; }
.u-fwb { font-weight: 700; }

.u-visuallyHidden {
  position: absolute !important;
  z-index: -1 !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
}



/* Module, Component
-------------------------------------------------- */
.c-button-cta {
  position: relative;
  display: block;
  padding: min(calc(54 / var(--base-size)), 54px) 0;
  background: var(--color-primary);
  background: linear-gradient(-45deg, #ba00e2 50%, #dd80f1 60%, #ba00e2 70%);
  background-size: 600% 100%;
  border-radius: 100vmax;
  box-shadow: 0 min(calc(6 / var(--base-size)), 6px) 0 #a37bac;
  font-size: 0;
  text-align: center;
  overflow: hidden;
  animation: cta-shine 20s linear infinite;
}
@keyframes cta-shine {
  0% { background-position-x: 400%; }
  50% { background-position-x: 0%; }
  100% { background-position-x: -400%; }
}
.c-button-cta span {
  position: relative;
  z-index: 2;
  display: inline-block;
  pointer-events: none;
}
.c-button-cta span::after {
  content: '';
  position: absolute;
  top: 50%;
  right: min(calc(-24 / var(--base-size)), -24px);
  width: min(calc(24 / var(--base-size)), 24px);
  height: min(calc(24 / var(--base-size)), 24px);
  border-right: min(calc(4 / var(--base-size)), 4px) solid #fff;
  border-bottom: min(calc(4 / var(--base-size)), 4px) solid #fff;
  transform: translateY(-50%) rotate(-45deg);
  animation: cta-arrow 5s linear infinite;
}
@keyframes cta-arrow {
  0%, 15%, 100% { transform: translateX(0) translateY(-50%) rotate(-45deg); }
  5% { transform: translateX(50%) translateY(-50%) rotate(-45deg); }
}
.c-button-cta img {
  width: min(calc(444 / var(--base-size)), 444px);
}
@media (hover: hover) and (pointer: fine) {
  .c-button-cta,
  .c-hover {
    transition: opacity var(--transition);
  }
  .c-button-cta:hover,
  .c-hover:hover {
    opacity: var(--hover-opacity);
  }
}



/* Index
-------------------------------------------------- */
.wrapper {
  max-width: 750px;
  margin-inline: auto;
}
.hero {
  position: relative;
  height: min(calc(1300 / var(--base-size)), 1300px);
  background: url(../images/bg_hero_01.jpg) 50% 0 / 100% auto no-repeat;
  overflow: hidden;
}
.hero-heading {
  position: absolute;
  top: min(calc(80 / var(--base-size)), 80px);
  left: 0;
  z-index: 2;
  width: 100%;
  transform: translateX(-10%);
  opacity: 0;
  visibility: hidden;
  transition: transform .8s ease, opacity .8s ease, visibility .8s ease;
}
[class^="hero-comment"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: scale(.8);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
}
.hero-comment01 {
  z-index: 4;
}
.hero-comment02 {
  z-index: 3;
}
.hero-comment03 {
  z-index: 2;
}
.hero.--init .hero-heading {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  transition-delay: 1.55s;
}
.hero.--init [class^="hero-comment"] {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  animation: pop .6s ease 0s both;
}
.hero.--init .hero-comment01 {
  transition-delay: 1s;
  animation-delay: 1s;
}
.hero.--init .hero-comment02 {
  transition-delay: .5s;
  animation-delay: .5s;
}
@keyframes pop {
  0% { transform: scale(.8); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.hero-cta {
  position: relative;
  z-index: 10;
  margin: min(calc(-38 / var(--base-size)), -38px) min(calc(36 / var(--base-size)), 36px) 0;
}
.section {
  margin: min(calc(36 / var(--base-size)), 36px) min(calc(36 / var(--base-size)), 36px) 0;
}
.section-heading {
  position: relative;
  margin-inline: min(calc(-20 / var(--base-size)), -20px);
  padding-bottom: min(calc(54 / var(--base-size)), 54px);
  font-size: min(calc(56 / var(--base-size)), 56px);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.section-heading.--bg-position {
  padding-bottom: min(calc(44 / var(--base-size)), 44px);
}
.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: min(calc(326 / var(--base-size)), 326px);
  height: min(calc(6 / var(--base-size)), 6px);
  background: url(../images/bg_heading_01.svg) 0 0 / 100% auto no-repeat;
  transform: translateX(-50%);
}
.recommend-inner {
  padding: min(calc(70 / var(--base-size)), 70px) min(calc(40 / var(--base-size)), 40px) min(calc(60 / var(--base-size)), 60px);
  background: #eadfeb;
}
[class^="recommend-comment"] {
  position: relative;
  margin: min(calc(40 / var(--base-size)), 40px) min(calc(176 / var(--base-size)), 176px) 0 0;
  background: #fff;
  border-radius: 100vmax;
}
[class^="recommend-comment"] span {
  position: relative;
  z-index: 2;
}
[class^="recommend-comment"]::before,
[class^="recommend-comment"]::after {
  content: '';
  position: absolute;
}
[class^="recommend-comment"]::before {
  top: min(calc(34 / var(--base-size)), 34px);
  right: min(calc(-22 / var(--base-size)), -22px);
  width: min(calc(124 / var(--base-size)), 124px);
  height: min(calc(56 / var(--base-size)), 56px);
  background: url(../images/bg_recommend_01.svg) 0 0 / contain no-repeat;
}
[class^="recommend-comment"]::after {
  width: min(calc(168 / var(--base-size)), 168px);
  height: min(calc(168 / var(--base-size)), 168px);
  background-position: 0 0;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
[class^="recommend-comment"]:nth-of-type(even) {
  margin: min(calc(40 / var(--base-size)), 40px) 0 0 min(calc(172 / var(--base-size)), 172px);
}
[class^="recommend-comment"]:nth-of-type(even)::before {
  top: min(calc(24 / var(--base-size)), 24px);
  right: auto;
  left: min(calc(-23 / var(--base-size)), -23px);
  width: min(calc(122 / var(--base-size)), 122px);
  height: min(calc(73 / var(--base-size)), 73px);
  background-image: url(../images/bg_recommend_02.svg);
}
.recommend-comment01 {
  margin-top: min(calc(56 / var(--base-size)), 56px);
  padding: min(calc(42 / var(--base-size)), 42px) 0 min(calc(40 / var(--base-size)), 40px) min(calc(72 / var(--base-size)), 72px);
}
.recommend-comment01::after {
  top: 0;
  right: min(calc(-92 / var(--base-size)), -92px);
  background-image: url(../images/img_recommend_01.svg);
}
.recommend-comment02 {
  padding: min(calc(42 / var(--base-size)), 42px) 0 min(calc(40 / var(--base-size)), 40px) min(calc(76 / var(--base-size)), 76px);
}
.recommend-comment02::after {
  top: min(calc(7 / var(--base-size)), 7px);
  left: min(calc(-88 / var(--base-size)), -88px);
  height: min(calc(162 / var(--base-size)), 162px);
  background-image: url(../images/img_recommend_02.svg);
}
.recommend-comment03 {
  padding: min(calc(42 / var(--base-size)), 42px) 0 min(calc(40 / var(--base-size)), 40px) min(calc(60 / var(--base-size)), 60px);
}
.recommend-comment03::after {
  top: 0;
  right: min(calc(-92 / var(--base-size)), -92px);
  height: min(calc(164 / var(--base-size)), 164px);
  background-image: url(../images/img_recommend_03.svg);
}
.about-inner {
  padding: min(calc(70 / var(--base-size)), 70px) min(calc(40 / var(--base-size)), 40px) min(calc(40 / var(--base-size)), 40px);
  background: #fff2f2;
}
.about-video {
  margin-top: min(calc(60 / var(--base-size)), 60px);
}
.about-video video {
  width: 100%;
}
.reason {
  margin: min(calc(40 / var(--base-size)), 40px) 0 0;
  overflow: hidden;
}
.reason-inner {
  margin-inline: min(calc(36 / var(--base-size)), 36px);
  padding: min(calc(90 / var(--base-size)), 90px) min(calc(40 / var(--base-size)), 40px) min(calc(55 / var(--base-size)), 55px);
  background: #e3e3e3;
}
.reason-carousel {
  margin: min(calc(45 / var(--base-size)), 45px) min(calc(-40 / var(--base-size)), -40px) 0;
}
.reason-carousel .swiper-slide {
  position: relative;
  left: min(calc(-8 / var(--base-size)), -8px);
  max-width: min(calc(510 / var(--base-size)), 510px);
  height: auto;
  padding-right: min(calc(40 / var(--base-size)), 40px);
}
.reason-carousel .reason-item-inner {
  width: min(calc(470 / var(--base-size)), 470px);
  height: 100%;
  padding: min(calc(35 / var(--base-size)), 35px) min(calc(48 / var(--base-size)), 48px);
}
.reason-item01 .reason-item-inner {
  background: #fff7ed;
}
.reason-item02 .reason-item-inner {
  background: #f4ffe8;
}
.reason-item03 .reason-item-inner {
  background: #e5f6ff;
}
.reason-item04 .reason-item-inner {
  background: #f8edff;
}
.reason-item-heading {
  position: relative;
  margin-bottom: min(calc(-10 / var(--base-size)), -10px);
  padding-left: min(calc(90 / var(--base-size)), 90px);
  font-size: min(calc(40 / var(--base-size)), 40px);
  font-weight: 700;
}
.reason-item-heading::before {
  content: '';
  position: absolute;
  top: min(calc(8 / var(--base-size)), 8px);
  left: min(calc(-5 / var(--base-size)), -5px);
  width: min(calc(80 / var(--base-size)), 80px);
  height: min(calc(80 / var(--base-size)), 80px);
  background-position: 0 0;
  background-size: contain;
  background-repeat: no-repeat;
}
.reason-item01 .reason-item-heading::before {
  background-image: url(../images/img_reason_01.svg);
}
.reason-item02 .reason-item-heading::before {
  background-image: url(../images/img_reason_02.svg);
}
.reason-item03 .reason-item-heading::before {
  background-image: url(../images/img_reason_03.svg);
}
.reason-item04 .reason-item-heading::before {
  background-image: url(../images/img_reason_04.svg);
}
.reason-item-inner p {
  margin-top: 1.5em;
  line-height: 1.4;
  text-align: justify;
}
.reason-item02 p img {
  position: relative;
  top: min(calc(-2 / var(--base-size)), -2px);
  left: min(calc(4 / var(--base-size)), 4px);
  display: inline-block;
  width: min(calc(32 / var(--base-size)), 32px);
  vertical-align: middle;
}
.reason-carousel .swiper-pagination {
  position: relative;
  top: auto;
  bottom: auto;
  margin-top: min(calc(60 / var(--base-size)), 60px);
}
.reason-carousel .swiper-pagination-bullet {
  width: min(calc(40 / var(--base-size)), 40px);
  height: min(calc(40 / var(--base-size)), 40px);
  background: #c4c4c4;
  opacity: 1;
}
.reason-carousel .swiper-pagination-horizontal .swiper-pagination-bullet {
  margin: 0 min(calc(25 / var(--base-size)), 25px);
}
.reason-carousel .swiper-pagination-bullet-active {
  background: var(--color-default);
}
.point-inner {
  padding: min(calc(70 / var(--base-size)), 70px) min(calc(40 / var(--base-size)), 40px) min(calc(50 / var(--base-size)), 50px);
  background: #eadfeb;
}
.point-list {
  margin-top: min(calc(50 / var(--base-size)), 50px);
}
.point-list li {
  position: relative;
  margin-top: min(calc(32 / var(--base-size)), 32px);
  padding: min(calc(32 / var(--base-size)), 32px) min(calc(32 / var(--base-size)), 32px) min(calc(32 / var(--base-size)), 32px) min(calc(120 / var(--base-size)), 120px);
  background: #fff;
  line-height: 1.4;
}
.point-list li::before {
  content: '';
  position: absolute;
  top: 50%;
  background-position: 0 0;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
.point-list li:nth-of-type(1):before {
  left: min(calc(48 / var(--base-size)), 48px);
  width: min(calc(30 / var(--base-size)), 30px);
  height: min(calc(90 / var(--base-size)), 90px);
  background-image: url(../images/img_point_01.svg);
}
.point-list li:nth-of-type(2):before {
  left: min(calc(32 / var(--base-size)), 32px);
  width: min(calc(60 / var(--base-size)), 60px);
  height: min(calc(92 / var(--base-size)), 92px);
  background-image: url(../images/img_point_02.svg);
}
.point-list li:nth-of-type(3):before {
  left: min(calc(34 / var(--base-size)), 34px);
  width: min(calc(58 / var(--base-size)), 58px);
  height: min(calc(97 / var(--base-size)), 97px);
  background-image: url(../images/img_point_03.svg);
}
.point-list strong {
  padding: min(calc(3 / var(--base-size)), 3px) min(calc(1 / var(--base-size)), 1px);
  font-weight: 400;
  background: #000;
  background: linear-gradient(#e5ff76, #e5ff76) 0 100% / 0 100% no-repeat;
  background-size: 0 100%;
  transition: background 1.5s cubic-bezier(0.23, 1, 0.32, 1);;
}
.point-list .--show strong {
  background-size: 100% 100%;
}
.flow {
  margin-inline: 0;
  padding-inline: min(calc(36 / var(--base-size)), 36px);
  overflow-x: hidden;
}
.flow-inner {
  padding: min(calc(70 / var(--base-size)), 70px) min(calc(40 / var(--base-size)), 40px) min(calc(45 / var(--base-size)), 45px);
  background: #f7e9ef;
}
.flow-contents {
  position: relative;
}
.flow-cta-button {
  position: absolute;
  top: min(calc(490 / var(--base-size)), 490px);
  right: min(calc(-24 / var(--base-size)), -24px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(calc(300 / var(--base-size)), 300px);
  height: min(calc(300 / var(--base-size)), 300px);
  background: #ff6c00;
  background: linear-gradient(-45deg, #ff6c00 50%, #ffb680 60%, #ff6c00 70%);
  background-size: 600% 100%;
  border-radius: 50%;
  color: #fff;
  font-size: min(calc(36 / var(--base-size)), 36px);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  animation: flow-cta-shine 20s linear infinite;
}
@keyframes flow-cta-shine {
  0% { background-position-x: 400%; }
  50% { background-position-x: 0%; }
  100% { background-position-x: -400%; }
}
.flow-cta-button span {
  position: relative;
  z-index: 2;
  display: inline-block;
  pointer-events: none;
}
.flow-cta-button span::after {
  content: '';
  display: inline-block;
  position: relative;
  top: min(calc(-2 / var(--base-size)), -2px);
  right: min(calc(-4 / var(--base-size)), -4px);
  width: min(calc(18 / var(--base-size)), 18px);
  height: min(calc(20 / var(--base-size)), 20px);
  background: url(../images/icn_arrow_01.svg) 0 0 / contain no-repeat;
  animation: flow-cta-arrow 5s linear infinite;
}
@keyframes flow-cta-arrow {
  0%, 15%, 100% { transform: translateX(0); }
  5% { transform: translateX(50%); }
}
.flow-list li:nth-of-type(1) {
  width: min(calc(850 / var(--base-size)), 850px);
  margin: min(calc(50 / var(--base-size)), 50px) 0 0 min(calc(-120 / var(--base-size)), -120px);
}
.flow-list li:nth-of-type(2) {
  width: min(calc(775 / var(--base-size)), 775px);
  margin: min(calc(30 / var(--base-size)), 30px) 0 0 min(calc(-10 / var(--base-size)), -10px);
}
.flow-list li:nth-of-type(3) {
  width: min(calc(773 / var(--base-size)), 773px);
  margin: min(calc(-45 / var(--base-size)), -45px) 0 0 min(calc(-75 / var(--base-size)), -75px);
}
.flow-list li:nth-of-type(4) {
  width: min(calc(858 / var(--base-size)), 858px);
  margin: min(calc(-5 / var(--base-size)), -5px) 0 0 min(calc(-8 / var(--base-size)), -8px);
}
.flow-cta-text {
  margin-top: min(calc(50 / var(--base-size)), 50px);
  color: #e21717;
  font-size: min(calc(40 / var(--base-size)), 40px);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.flow-cta {
  display: block;
  margin-top: min(calc(30 / var(--base-size)), 30px);
}
.flow-cta-label {
  padding-block: min(calc(14 / var(--base-size)), 14px) min(calc(18 / var(--base-size)), 18px);
  background: #3e3e3e;
  border-radius: 100vmax;
  color: #fff;
  font-size: min(calc(36 / var(--base-size)), 36px);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.flow-cta-number {
  width: min(calc(576 / var(--base-size)), 576px);
  margin: min(calc(18 / var(--base-size)), 18px) auto 0;
}
.flow-cta-note {
  margin-top: min(calc(10 / var(--base-size)), 10px);
  font-size: min(calc(32 / var(--base-size)), 32px);
  text-align: center;
}
.voice {
  margin: min(calc(40 / var(--base-size)), 40px) 0 0;
  overflow: hidden;
}
.voice-inner {
  margin-inline: min(calc(36 / var(--base-size)), 36px);
  padding: min(calc(70 / var(--base-size)), 70px) min(calc(36 / var(--base-size)), 36px) min(calc(55 / var(--base-size)), 55px);
  background: #eadfeb;
}
.voice-video {
  margin: min(calc(60 / var(--base-size)), 60px) min(calc(1 / var(--base-size)), 1px) 0;
}
.voice-video video {
  width: 100%;
}
.voice-carousel {
  margin: min(calc(45 / var(--base-size)), 45px) min(calc(-40 / var(--base-size)), -40px) 0;
}
.voice-carousel .swiper-slide {
  position: relative;
  left: min(calc(-8 / var(--base-size)), -8px);
  max-width: min(calc(510 / var(--base-size)), 510px);
  height: auto;
  padding-right: min(calc(40 / var(--base-size)), 40px);
}
.voice-item-inner {
  width: min(calc(470 / var(--base-size)), 470px);
  height: 100%;
  padding: min(calc(40 / var(--base-size)), 40px);
  background: #fff;
}
.voice-row {
  display: flex;
  align-items: flex-start;
}
.voice-image {
  width: min(calc(172 / var(--base-size)), 172px);
}
.voice-detail {
  flex: 1;
  margin-right: min(calc(-20 / var(--base-size)), -20px);
  padding: min(calc(14 / var(--base-size)), 14px) 0 0 min(calc(46 / var(--base-size)), 46px);
}
.voice-rating {
  margin-top: min(calc(25 / var(--base-size)), 25px);
  color: #e3c107;
  font-size: min(calc(32 / var(--base-size)), 32px);
  font-weight: 700;
  letter-spacing: .1em;
}
.voice-rating > span {
  color: #c4c4c4;
}
.voice-row + p {
  margin-top: min(calc(20 / var(--base-size)), 20px);
  line-height: 1.4;
  text-align: justify;
}
.voice-carousel .swiper-pagination {
  position: relative;
  top: auto;
  bottom: auto;
  margin-top: min(calc(60 / var(--base-size)), 60px);
}
.voice-carousel .swiper-pagination-bullet {
  width: min(calc(40 / var(--base-size)), 40px);
  height: min(calc(40 / var(--base-size)), 40px);
  background: #c4c4c4;
  opacity: 1;
}
.voice-carousel .swiper-pagination-horizontal .swiper-pagination-bullet {
  margin: 0 min(calc(25 / var(--base-size)), 25px);
}
.voice-carousel .swiper-pagination-bullet-active {
  background: var(--color-default);
}
.price-inner {
  padding: min(calc(75 / var(--base-size)), 75px) min(calc(28 / var(--base-size)), 28px) min(calc(45 / var(--base-size)), 45px);
  background: #f8f5e9;
}
.price .section-heading {
  padding-bottom: 0;
}
.price .section-heading::after {
  content: none;
}
.price-box {
  margin-top: min(calc(40 / var(--base-size)), 40px);
  border-radius: min(calc(10 / var(--base-size)), 10px);
  background: #fff;
  overflow: hidden;
}
.price-heading {
  position: relative;
  padding: min(calc(34 / var(--base-size)), 34px) 0 min(calc(24 / var(--base-size)), 24px);
  font-size: min(calc(30 / var(--base-size)), 30px);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.price-name {
  display: block;
  width: auto;
  height: min(calc(43 / var(--base-size)), 43px);
  margin: 0 auto min(calc(16 / var(--base-size)), 16px);
}
.price-popular {
  position: absolute;
  top: min(calc(23 / var(--base-size)), 23px);
  left: min(calc(33 / var(--base-size)), 33px);
  display: block;
  width: min(calc(114 / var(--base-size)), 114px);
}
.price-box:nth-of-type(1) {
  margin-top: min(calc(30 / var(--base-size)), 30px);
}
.price-box:nth-of-type(1) .price-heading {
  background: #ccaede;
}
.price-box:nth-of-type(2) .price-heading {
  background: #bb65ef;
}
.price-box:nth-of-type(3) .price-heading {
  background: #acb8ff;
}
.price-row {
  display: flex;
  align-items: flex-start;
  padding: min(calc(44 / var(--base-size)), 44px) min(calc(30 / var(--base-size)), 30px) min(calc(18 / var(--base-size)), 18px) min(calc(36 / var(--base-size)), 36px);
}
.price-number-months {
  width: min(calc(218 / var(--base-size)), 218px);
}
.price-detail {
  flex: 1;
  margin-left: min(calc(30 / var(--base-size)), 30px);
  text-align: right;
}
.price-detail p:nth-of-type(1) {
  padding: min(calc(10 / var(--base-size)), 10px) 0 min(calc(14 / var(--base-size)), 14px);
  background: #969696;
  border-radius: 100vmax;
  color: #fff;
  font-size: min(calc(30 / var(--base-size)), 30px);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.price-detail img {
  display: inline-block;
  width: auto;
  height: min(calc(114 / var(--base-size)), 114px);
  margin-top: min(calc(6 / var(--base-size)), 6px);
}
.price-box:nth-of-type(2) .price-detail p:nth-of-type(2),
.price-box:nth-of-type(3) .price-detail p:nth-of-type(2) {
  margin: min(calc(8 / var(--base-size)), 8px) 0 0 min(calc(5 / var(--base-size)), 5px);
}
.price-note {
  margin: min(calc(-5 / var(--base-size)), -5px) min(calc(14 / var(--base-size)), 14px) 0;
}
.price-note li {
  margin-top: min(calc(40 / var(--base-size)), 40px);
  font-size: min(calc(32 / var(--base-size)), 32px);
}
.form-inner {
  padding: min(calc(75 / var(--base-size)), 75px) min(calc(40 / var(--base-size)), 40px) min(calc(60 / var(--base-size)), 60px);
  background: #ebdfdf;
}
.form-heading {
  margin: min(calc(50 / var(--base-size)), 50px) 0 min(calc(25 / var(--base-size)), 25px);
  padding: min(calc(20 / var(--base-size)), 20px);
  background: var(--color-default);
  border-radius: min(calc(10 / var(--base-size)), 10px);
  color: #fff;
  font-size: min(calc(32 / var(--base-size)), 32px);
  font-weight: 700;
  text-align: center;
}
.form-label {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: min(calc(30 / var(--base-size)), 30px);
  line-height: 1.4;
}
.form-label label {
  font-size: min(calc(36 / var(--base-size)), 36px);
  font-weight: 700;
}
.form-label label span {
  font-size: min(calc(28 / var(--base-size)), 28px);
}
.form-label .required,
.form-label .optional {
  position: relative;
  top: min(calc(-2 / var(--base-size)), -2px);
  padding: min(calc(2 / var(--base-size)), 2px) min(calc(10 / var(--base-size)), 10px) min(calc(3 / var(--base-size)), 3px) min(calc(12 / var(--base-size)), 12px);
  border-radius: 100vmax;
  color: #fff;
  font-size: min(calc(24 / var(--base-size)), 24px);
  font-weight: 700;
  letter-spacing: .1em;
}
.form-label .required {
  background: #ff5555;
}
.form-label .optional {
  background: #8b8b8b;
}
.form-field {
  margin-top: min(calc(14 / var(--base-size)), 14px);
}
.form-row {
  display: flex;
  margin: 0 min(calc(-5 / var(--base-size)), -5px);
}
.form-col {
  width: calc(50% - min(calc(20 / var(--base-size)), 20px));
  margin: 0 min(calc(10 / var(--base-size)), 10px);
}
.form-date-row .form-col:nth-of-type(1) {
  width: calc(55% - min(calc(20 / var(--base-size)), 20px));
}
.form-date-row .form-col:nth-of-type(2) {
  width: calc(45% - min(calc(20 / var(--base-size)), 20px));
}
.form-error {
  display: none;
  margin-top: min(calc(16 / var(--base-size)), 16px);
  color: #ce0000;
  font-size: min(calc(28 / var(--base-size)), 28px);
  font-weight: 700;
}
.form-error.--show {
  display: block;
}
.form-field input[type="text"],
.form-field input[type="email"] {
  width: 100%;
  padding: min(calc(15 / var(--base-size)), 15px) min(calc(17 / var(--base-size)), 17px);
  background: #fff;
  border: min(calc(2 / var(--base-size)), 2px) solid var(--color-default);
  border-radius: min(calc(10 / var(--base-size)), 10px);
  font-size: min(calc(36 / var(--base-size)), 36px);
  font-weight: 700;
}
.form-field input[type="text"].--error,
.form-field input[type="email"].--error {
  background: #ffcccc;
}
.form-select {
  position: relative;
}
.form-select::after {
  content: '';
  position: absolute;
  top: 50%;
  right: min(calc(30 / var(--base-size)), 30px);
  width: min(calc(19 / var(--base-size)), 19px);
  height: min(calc(19 / var(--base-size)), 19px);
  border-right: min(calc(5 / var(--base-size)), 5px) solid var(--color-default);
  border-bottom: min(calc(5 / var(--base-size)), 5px) solid var(--color-default);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.form-select select {
  width: 100%;
  padding: min(calc(13 / var(--base-size)), 13px) min(calc(17 / var(--base-size)), 17px) min(calc(17 / var(--base-size)), 17px);
  background: #fff;
  border: min(calc(2 / var(--base-size)), 2px) solid var(--color-default);
  border-radius: min(calc(10 / var(--base-size)), 10px);
  color: var(--color-gray);
  font-size: min(calc(36 / var(--base-size)), 36px);
  font-weight: 700;
}
.form-select select.--selected {
  color: var(--color-default);
}
.form-field textarea {
  width: 100%;
  height: min(calc(160 / var(--base-size)), 160px);
  min-height: min(calc(160 / var(--base-size)), 160px);
  padding: min(calc(15 / var(--base-size)), 15px);
  background: #fff;
  border: min(calc(2 / var(--base-size)), 2px) solid var(--color-default);
  border-radius: min(calc(10 / var(--base-size)), 10px);
  font-size: min(calc(36 / var(--base-size)), 36px);
  font-weight: 700;
}
.form-note {
  margin-top: min(calc(30 / var(--base-size)), 30px);
  font-size: min(calc(32 / var(--base-size)), 32px);
  line-height: 1.4;
}
.form-submit {
  display: block;
  width: 100%;
  margin-top: min(calc(40 / var(--base-size)), 40px);
  padding: min(calc(34 / var(--base-size)), 34px) 0;
  background: #ff5555;
  box-shadow: 0 min(calc(8 / var(--base-size)), 8px) 0 #bc3b3b;
  border-radius: 100vmax;
  color: #fff;
  font-size: min(calc(40 / var(--base-size)), 40px);
  font-weight: 700;
  letter-spacing: .025em;
  text-align: center;
}
.relation {
  margin: min(calc(40 / var(--base-size)), 40px) 0 0;
  overflow: hidden;
}
.relation-inner {
  margin-inline: min(calc(36 / var(--base-size)), 36px);
  padding: min(calc(75 / var(--base-size)), 75px) min(calc(28 / var(--base-size)), 28px) min(calc(50 / var(--base-size)), 50px);
  background: #dfebf8;
}
.relation-carousel {
  margin: min(calc(45 / var(--base-size)), 45px) min(calc(-36 / var(--base-size)), -36px) 0;
}
.relation-carousel .swiper-slide {
  padding: 0 min(calc(15 / var(--base-size)), 15px);
}
.relation-carousel .swiper-button-prev,
.relation-carousel .swiper-button-next {
  top: 50%;
  width: min(calc(80 / var(--base-size)), 80px);
  height: min(calc(80 / var(--base-size)), 80px);
  margin: 0;
  background: #7e7e7e;
  border-radius: 50%;
  transform: translateY(-50%);
}
.relation-carousel .swiper-button-prev::after,
.relation-carousel .swiper-button-next::after {
  content: '';
  position: absolute;
  top: 50%;
  width: min(calc(30 / var(--base-size)), 30px);
  height: min(calc(30 / var(--base-size)), 30px);
  border-right: min(calc(8 / var(--base-size)), 8px) solid #fff;
  border-bottom: min(calc(8 / var(--base-size)), 8px) solid #fff;
}
.relation-carousel .swiper-button-prev::after {
  left: min(calc(28 / var(--base-size)), 28px);
  transform: translateY(-50%) rotate(135deg);
}
.relation-carousel .swiper-button-next::after {
  left: min(calc(22 / var(--base-size)), 22px);
  transform: translateY(-50%) rotate(-45deg);
}
.relation-carousel .swiper-button-prev {
  left: min(calc(35 / var(--base-size)), 35px);
}
.relation-carousel .swiper-button-next {
  right: min(calc(35 / var(--base-size)), 35px);
}
@media (hover: hover) and (pointer: fine) {
  .relation-carousel .swiper-slide a,
  .relation-carousel .swiper-button-prev,
  .relation-carousel .swiper-button-next {
    transition: opacity var(--transition);
  }
  .relation-carousel .swiper-slide a:hover,
  .relation-carousel .swiper-button-prev:hover,
  .relation-carousel .swiper-button-next:hover {
    opacity: var(--hover-opacity);
  }
}
.footer-cta {
  display: block;
  margin: min(calc(36 / var(--base-size)), 36px) min(calc(64 / var(--base-size)), 64px) 0;
}
.footer-cta-label {
  padding-block: min(calc(14 / var(--base-size)), 14px) min(calc(18 / var(--base-size)), 18px);
  background: #3e3e3e;
  border-radius: 100vmax;
  color: #fff;
  font-size: min(calc(36 / var(--base-size)), 36px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .025em;
  text-align: center;
}
.footer-cta-number {
  margin: min(calc(18 / var(--base-size)), 18px) 0 0;
}
.footer-cta-number img {
  display: block;
}
.footer-cta-note {
  margin-top: min(calc(5 / var(--base-size)), 5px);
  font-size: min(calc(32 / var(--base-size)), 32px);
  text-align: center;
}
.footer {
  margin-top: min(calc(36 / var(--base-size)), 36px);
  padding: min(calc(25 / var(--base-size)), 25px) min(calc(60 / var(--base-size)), 60px) min(calc(250 / var(--base-size)), 250px);
  background: var(--color-default);
}
.footer-nav-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-nav-list li {
  margin-top: min(calc(20 / var(--base-size)), 20px);
}
.footer-nav-list li:nth-child(odd) {
  text-align: right;
}
.footer-nav-list li:nth-child(-n+3) {
  width: 30%;
}
.footer-nav-list li:nth-child(1) {
  text-align: left;
}
.footer-nav-list li:nth-child(2) {
  text-align: center;
}
.footer-nav-list a {
  display: inline-block;
  padding: min(calc(8 / var(--base-size)), 8px) 0;
  color: #fff;
  font-size: min(calc(28 / var(--base-size)), 28px);
  font-weight: 700;
  letter-spacing: .025em;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav-list a {
    transition: opacity var(--transition);
  }
  .footer-nav-list a:hover {
    opacity: var(--hover-opacity);
  }
}
.footer-copyright {
  margin-top: min(calc(50 / var(--base-size)), 50px);
  color: #adadad;
  font-size: min(calc(22 / var(--base-size)), 22px);
  letter-spacing: .05em;
}
.fixed-cta {
  position: fixed;
  bottom: min(calc(60 / var(--base-size)), 60px);
  left: 50%;
  z-index: 100;
  width: 100%;
  max-width: 750px;
  padding: 0 min(calc(38 / var(--base-size)), 38px);
  transform: translateX(-50%);
  pointer-events: none;
}
.fixed-cta-inner {
  transform: translateY(40%);
  opacity: 0;
  visibility: hidden;
  transition: transform .3s ease-in-out, opacity .3s ease-in-out, visibility .3s ease-in-out;
}
.fixed-cta.--show {
  pointer-events: inherit;
}
.fixed-cta.--show .fixed-cta-inner {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.fixed-cta.--hide {
  pointer-events: none;
}
.fixed-cta.--hide .fixed-cta-inner {
  transform: translateY(40%);
  opacity: 0;
  visibility: hidden;
}

.modal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, .7);
}
.modal-container {
  position: relative;
}
.modal-contents {
  padding: 0 min(calc(76 / var(--base-size)), 76px);
  max-height: 95vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute;
  top: min(calc(20 / var(--base-size)), 20px);
  right: min(calc(92 / var(--base-size)), 92px);
  z-index: 2;
  width: min(calc(72 / var(--base-size)), 72px);
  height: min(calc(72 / var(--base-size)), 72px);
  background: rgba(62, 62, 62, .6);
  border: none;
  border-radius: 50%;
  color: #fff;
  appearance: none;
  cursor: pointer;
}
.modal-close::before,
.modal-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(calc(52 / var(--base-size)), 52px);
  height: min(calc(6 / var(--base-size)), 6px);
  background: #fff;
}
.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-close span {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(10%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
@keyframes mmscaleIn {
  from {
    transform: scale(.95);
  }
  to {
    transform: scale(1);
  }
}
@keyframes mmscaleOut {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(.95);
  }
}
.micromodal-slide {
  display: none;
}
.micromodal-slide.is-open {
  display: block;
}
.micromodal-slide[aria-hidden="false"] .modal-overlay {
  animation: mmfadeIn .5s cubic-bezier(.0, .0, .2, 1);
}
.micromodal-slide[aria-hidden="false"] .modal-container {
  animation: mmslideIn .5s cubic-bezier(0, 0, .2, 1);
}
.micromodal-slide[aria-hidden="true"] .modal-overlay {
  animation: mmfadeOut .3s cubic-bezier(.0, .0, .2, 1);
}
.micromodal-slide[aria-hidden="true"] .modal-container {
  animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}
.micromodal-slide .modal-container,
.micromodal-slide .modal-overlay {
  will-change: transform;
}
html.modal-open {
  overflow: hidden;
}

.thanks {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding: min(calc(62 / var(--base-size)), 62px);
  background: rgba(0, 0, 0, .7);
}
.thanks-inner {
  width: 100%;
  max-width: 750px;
  margin-inline: auto;
  padding: min(calc(60 / var(--base-size)), 60px) min(calc(40 / var(--base-size)), 40px) min(calc(70 / var(--base-size)), 70px);
  background: #fbeaff;
}
.thanks-heading {
  width: min(calc(514 / var(--base-size)), 514px);
  margin-inline: auto;
}
.thanks-subheading {
  position: relative;
  margin-block: min(calc(50 / var(--base-size)), 50px) min(calc(85 / var(--base-size)), 85px);
  font-size: min(calc(40 / var(--base-size)), 40px);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.thanks-subheading::after {
  content: '';
  position: absolute;
  bottom: min(calc(-24 / var(--base-size)), -24px);
  left: 50%;
  width: min(calc(326 / var(--base-size)), 326px);
  height: min(calc(6 / var(--base-size)), 6px);
  background: url(../images/bg_heading_01.svg) 0 0 / 100% auto no-repeat;
  transform: translateX(-50%);
}
.thanks-message {
  max-width: min(calc(460 / var(--base-size)), 460px);
  margin-inline: auto;
}
.thanks-message p {
  margin-top: min(calc(25 / var(--base-size)), 25px);
  font-size: min(calc(32 / var(--base-size)), 32px);
  line-height: 1.4;
}
.thanks-back {
  display: block;
  width: min(calc(400 / var(--base-size)), 400px);
  margin: min(calc(50 / var(--base-size)), 50px) auto 0;
  padding-block: min(calc(20 / var(--base-size)), 20px);
  background: var(--color-gray);
  box-shadow: 0 min(calc(6 / var(--base-size)), 6px) 0 var(--color-default);
  border-radius: 100vmax;
  color: #fff;
  font-size: min(calc(32 / var(--base-size)), 32px);
  font-weight: 700;
  text-align: center;
}
