:root {
  --color-main: #414141;
  --color-gold: #F8D9AE;

  --bg-gray: #F1F1F1;
  --bg-main: #fff;
}
main {
  font-family: 'Shippori Mincho', serif;
}

@media (max-width: 1180px) {
  body {
    padding-bottom: 0;
  }
}

/* component */
.c-font-read {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.15em;
}
.c-font-catch {
  font-size: 40px;
  line-height: 1.5;
  letter-spacing: 0.12em;
}
.c-font-text {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
.c-font-title-32 {
  font-size: 32px;
  line-height: 1.5;
}
.c-font-title-24 {
  font-size: 24px;
  line-height: 1.5;
}
.c-font-title-20 {
  font-size: 20px;
  line-height: 1.5;
}
.c-font-title-16 {
  font-size: 16px;
  line-height: 1.5;
}
.c-title {
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.c-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 87px;
  height: 1px;
  background: #000;
}
.c-title.u-center {
  text-align: center;
}
.c-title.u-center::before {
  left: 50%;
  transform: translateX(-50%);
}
.c-text-center {
  text-align: center;
}
.c-text-right {
  text-align: right;
}
.u-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.c-text-marker {
  background-image: linear-gradient(#FFF27B, #FFF27B);
  background-repeat: no-repeat;
  background-position: 0 76%;
  background-size: 100% .72em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 .15em;
}
.js-scroll-reveal .c-text-marker {
  background-size: 0 .72em;
}
.js-scroll-reveal.is-visible .c-text-marker {
  animation: textMarkerDraw 0.7s cubic-bezier(0.25, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--reveal-delay, 0ms) + 420ms + var(--marker-stagger, 0ms));
}
@keyframes textMarkerDraw {
  from {
    background-size: 0 .72em;
  }
  to {
    background-size: 100% .72em;
  }
}
.works-marker-sequence .c-text-marker:nth-of-type(1) {
  --marker-stagger: 0ms;
}
.works-marker-sequence .c-text-marker:nth-of-type(2) {
  --marker-stagger: 240ms;
}
.works-marker-sequence .c-text-marker:nth-of-type(3) {
  --marker-stagger: 480ms;
}

/* display */
.c-sp-only {
  display: none;
}
@media (max-width: 768px) {
  .c-sp-only {
    display: inline-block;
  }
  .c-pc-only {
    display: none;
  }
}

/* inner */
.c-button {
  display: inline-block;
  padding: 16px 64px;
  border-radius: 100vmax;
  text-decoration: none;
  transition: opacity 0.3s;
  border: solid 1px #fff;
}
.c-button:hover {
  opacity: 0.7;
}
.c-button-white {
  background: #fff;
  color: #000;
}
.c-button-black {
  background: #000;
  color: #fff;
}
.c-button-main {
  background: var(--color-main);
  color: #fff;
}

/* inner */
.c-section {
  padding: 120px 0;
}
.c-inner {
  max-width: calc(1180px + 32px * 2);
  margin: 0 auto;
  padding: 0 32px;
}
.c-inner-wide {
  max-width: calc(1620px + 32px * 2);
  margin: 0 auto;
  padding: 0 32px;
}
.c-inner-narrow {
  max-width: calc(920px + 32px * 2);
  margin: 0 auto;
  padding: 0 32px;
}

/* bg */
.c-bg-gray {
  background: var(--bg-gray);
}
.c-bg-main {
  background: var(--color-main);
}

/* section */
.fv-inner {
  display: flex;
  align-items: stretch;
}
.fv-contents {
  width: 960px;
  background: var(--color-main);
  color: #fff;
  padding: 150px 32px;
}
.fv-contents-inner {
  width: fit-content;
  margin: 0 auto;
}
.fv-read {
  color: var(--color-gold);
}
.fv-title {
  position: relative;
}
.fv-text {
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(255, 255, 255, 0.2);
  color: #BEBEBE;
}
.fv-title-symbol {
  position: absolute;
  top: 32px;
  left: -24px;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}
.fv-title-symbol::before,
.fv-title-symbol::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #ffbf00, #ffffff, #00cfff) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: fvSymbolRipple 4s ease-out infinite;
  opacity: 0;
  will-change: width, height, opacity;
}
.fv-title-symbol::after {
  content: none;
}
@keyframes fvSymbolRipple {
  0% {
    width: 12px;
    height: 12px;
    opacity: 0;
  }
  6% {
    width: 12px;
    height: 12px;
    opacity: 1;
  }
  55% {
    opacity: 0.28;
  }
  78% {
    opacity: 0;
  }
  94% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
  100% {
    width: 12px;
    height: 12px;
    opacity: 0;
  }
}
.fv-images-clip {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
  background: #efefef;
}
.fv-images {
  display: flex;
  gap: 8px;
  position: absolute;
  width: calc(200px * var(--fv-column-count, 5) + 8px * (var(--fv-column-count, 5) - 1));
  height: 170%;
  left: 50%;
  top: 50%;
  min-width: 0;
  min-height: 0;
  transform: translate(-50%, -50%) rotate(30deg) scale(1.25);
  transform-origin: center center;
}
.fv-col {
  flex: 0 0 200px;
  width: 200px;
  display: block;
  position: relative;
  min-width: 200px;
  height: 100%;
  overflow: hidden;
}
.fv-swiper {
  position: absolute;
  inset: 0;
}
.fv-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.fv-swiper .swiper-slide {
  width: 200px !important;
  height: auto !important;
}
.fv-swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: cover;
  object-position: top;
  aspect-ratio: 603 / 854;
}
.fv-buttons {
  display: flex;
  gap: 10px;
}

/* about */
.about {
  overflow: hidden;
}
.about-inner {
  display: flex;
  gap: 10px;
}
.about-image {
  width: 220px;
  height: auto;
  will-change: transform;
}
.about-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* service */
.service-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.service-item {
  width: calc(50% - 5px);
}
.service-item-symbol {
  position: relative;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}
.service-item-symbol::before,
.service-item-symbol::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #ffbf00, #ffffff, #00cfff) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: serviceSymbolRipple 3s ease-out infinite;
  opacity: 0;
  will-change: width, height, opacity;
}
.service-item-symbol::after {
  content: none;
}
.service-item:nth-child(1) .service-item-symbol::before,
.service-item:nth-child(1) .service-item-symbol::after {
  animation-delay: 0s;
}
.service-item:nth-child(2) .service-item-symbol::before,
.service-item:nth-child(2) .service-item-symbol::after {
  animation-delay: 0.5s;
}
.service-item:nth-child(3) .service-item-symbol::before,
.service-item:nth-child(3) .service-item-symbol::after {
  animation-delay: 1s;
}
.service-item:nth-child(4) .service-item-symbol::before,
.service-item:nth-child(4) .service-item-symbol::after {
  animation-delay: 1.5s;
}
.service-item:nth-child(5) .service-item-symbol::before,
.service-item:nth-child(5) .service-item-symbol::after {
  animation-delay: 2s;
}
.service-item:nth-child(6) .service-item-symbol::before,
.service-item:nth-child(6) .service-item-symbol::after {
  animation-delay: 2.5s;
}
@keyframes serviceSymbolRipple {
  0% {
    width: 10px;
    height: 10px;
    opacity: 0;
  }
  6% {
    width: 10px;
    height: 10px;
    opacity: 1;
  }
  55% {
    opacity: 0.28;
  }
  78% {
    opacity: 0;
  }
  94% {
    width: 100px;
    height: 100px;
    opacity: 0;
  }
  100% {
    width: 10px;
    height: 10px;
    opacity: 0;
  }
}
.service-item {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  background: var(--color-main);
  border-radius: 100vmax;
  color: #fff;
  text-align: center;
  gap: 16px;
}
.service-item-text {
  flex: 1;
}
.service-lead-text {
  font-size: 24px;
}

/* support */
.support-title-image-swiper-slide img,
.support-title-image > img {
  display: block;
  width: 220px;
  max-width: none;
  height: auto;
  border: 1px solid #B6B6B6;
}
.support-title-image-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

/* support */
.support-title-wrapper {
  display: flex;
  gap: 40px;
}
.support-title-text {
  flex: 1;
}
.support-title-image {
  width: 450px;
}

/* support flow */
.support-flow-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}
.support-flow-button {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.support-flow-button-prev,
.support-flow-button-next {
  position: static;
  margin: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.support-flow-button-prev::after,
.support-flow-button-next::after {
  content: none;
}
.support-flow-button-prev img,
.support-flow-button-next img {
  display: block;
  width: 100%;
  height: auto;
}
.support-flow-button-prev img {
  transform: rotate(180deg);
}
.support-flow-swiper {
  width: 100%;
  overflow: visible;
}
.support-flow-swiper-slide {
  width: 280px !important;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #B7B7B7;
  height: 100%!important;
}
.support-flow-item-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid #B7B7B7;
}
.support-flow-item-text {
  padding: 24px 24px 32px;
}

/* aside */
.c-font-title-24-symbol {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 12px;
  vertical-align: middle;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}
.c-font-title-24-symbol::before,
.c-font-title-24-symbol::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #ffbf00, #ffffff, #00cfff) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: fvSymbolRipple 4s ease-out infinite;
  opacity: 0;
  will-change: width, height, opacity;
}
.c-font-title-24-symbol::after {
  content: none;
}
.aside-text {
  color: #fff;
  display: inline-flex;
  align-items: center;
}
.aside-text-sub {
  color: var(--color-gold);
}

/* why compare */
.why-compare {
  position: relative;
  overflow: hidden;
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
  height: 400px;
  overflow: hidden;
}
.why-compare-base img,
.why-compare-overlay img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.why-compare-base,
.why-compare-overlay {
  position: relative;
}
.why-compare-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  clip-path: inset(0 50% 0 0);
}
.why-compare-text {
  position: absolute;
  top: 50%;
  width: 238px;
  height: 238px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s linear;
}
.why-compare-text-left {
  left: 160px;
}
.why-compare-text-right {
  right: 160px;
}
.why-compare[data-active-side="left"] .why-compare-text-left {
  opacity: 1;
}
.why-compare[data-active-side="right"] .why-compare-text-right {
  opacity: 1;
}
.why-compare[data-active-side="both"] .why-compare-text-left,
.why-compare[data-active-side="both"] .why-compare-text-right {
  opacity: 1;
}
.why-compare-text img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.why-compare-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: ew-resize;
  z-index: 3;
}
.why-compare-handle img {
  display: block;
  width: 100%;
  height: 100%;
}
.why-flow {
  display: flex;
  overflow: hidden;
}
.why-flow-swiper-wrapper {
  display: flex;
  width: 100%;
}
.why-flow-item {
  position: relative;
  margin-right: 24px;
  width: calc(25% - 24px);
}
.why-flow-item:not(:last-child):before {
  content: "";
  position: absolute;
  top: 72%;
  left: calc(100% + 2px);
  width: 20px;
  height: 20px;
  background: url(../img/sponsor/icon-arrow-right.svg) no-repeat center center / contain;
}
.why-flow-item {
  border: 1px solid #B6B6B6;
}
.why-flow-item-text {
  padding: 16px 24px;
  text-align: center;
  background: #F7F6F2;
}
.why-flow-item-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid #B6B6B6;
}
.why-flow-item-image img {
  display: block;
  width: 100%;
  height: auto;
}
.why-flow-button-group {
  display: none;
}
.why-flow-swipe-hint {
  display: none;
}
.why-flow-button-group-item {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.why-flow-button-group-item img {
  display: block;
  width: 100%;
  height: auto;
}
.why-flow-button-prev img {
  transform: rotate(180deg);
}
.why-flow-button-group-item.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* works */
.works-contents {
  display: flex;
  gap: 32px;
}
.works-content-item {
  flex: 1;
  text-align: center;
  border: 1px solid #aaa;
  background: #fff;
  padding: 24px 40px;
}
.works-content-item-title {
  padding-bottom: 32px;
  margin-bottom: 16px;
  border-bottom: 1px solid #aaa;
}
.works-contents + .works-contents {
  margin-top: 32px;
}
.works-bottom-text {
  line-height: 2;
}

/* example */
.example-button-group {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  justify-content: flex-end;
}
.example-button-group-item {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.example-button-group-item img {
  display: block;
  width: 100%;
  height: auto;
}
.example-button-prev img {
  transform: rotate(180deg);
}
.example-button-group-item.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
.example-swiper {
  width: 100%;
  overflow: visible;
}
.example-swiper .swiper-wrapper {
  align-items: stretch;
}
.example-swiper-slide {
  width: 460px !important;
  flex-shrink: 0;
  height: auto;
  display: flex;
  flex-direction: column;
}
.example-swiper-slide-title {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
  align-items: baseline;
}
.example-swiper-slide-title-sub {
  min-width: 56px;
}
.example-swiper-slide-content-title {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #D9D9D9;
}
.example-swiper-slide-text {
  padding: 24px;
  flex: 1;
}
.example-swiper-slide-content {
  border: 1px solid #D9D9D9;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.example-swiper-slide-image img {
  display: block;
  width: 100%;
  height: auto;
}
.example-swiper-slide-image-blank {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #dcdcdc;
}

/* plan */
.plan {
  background: #f7f6f2;
}
.plan-contents {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.plan-content-item {
  display: flex;
  flex-direction: column;
}
.plan-content-item-catch {
  margin: 0 0 14px;
  text-align: center;
  letter-spacing: 0.1em;
}
.plan-content-item-contents {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid #ece7dd;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.plan-content-item-title {
  margin: 0;
  padding: 12px 14px;
  color: #fff;
  text-align: center;
  letter-spacing: 0.12em;
}
.plan-content-item-title-light {
  background: #ababab;
}
.plan-content-item-title-theme {
  background: #cf943b;
}
.plan-content-item-title-crown {
  background: #444;
}
.plan-content-item-desc {
  margin: 20px 20px 0;
  min-height: 62px;
  text-align: center;
  line-height: 1.9;
}
.plan-content-item-price {
  margin: 12px 20px 0;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
}
.plan-content-item-price .price-small {
  line-height: 1.2;
}
.plan-content-item-price .price-number {
  font-size: 58px;
  line-height: 1;
  letter-spacing: 0.03em;
}
.plan-content-item-label {
  margin: 20px 0 8px;
  text-align: center;
}
.plan-content-item-use {
  margin: 0 18px;
  padding: 6px 10px;
  text-align: center;
  border: 1px solid #555;
  border-radius: 8px;
  line-height: 1.7;
}
.plan-content-item-table {
  width: calc(100% - 36px);
  margin: 0 18px 24px;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #555;
  border-radius: 8px;
  overflow: hidden;
}
.plan-content-item-table td {
  width: 50%;
  padding: 5px 8px;
  text-align: center;
  line-height: 1.5;
  border-bottom: 1px solid #aaa;
  font-size: 12px;
}
.plan-content-item-table tr:last-child td {
  border-bottom: 0;
}
.plan-content-item-table td + td {
  border-left: 1px solid #aaa;
}
.plan-content-item-table .c-blank {
  color: #bcbcbc;
}
.plan-content-item-recommended.u-scale-up {
  transform: scale(1.03);
}
.plan-content-item-recommended .plan-content-item-contents {
  border-color: #dfd1b7;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.plan-content-item-list {
  font-size: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  line-height: 1.8;
}
.plan-content-item-list-item {
  position: relative;
  padding-left: 1.4em;
}
.plan-content-item-list-item::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

/* faq */
.faq-content-item {
  margin: 0;
  border: 1px solid #D9D9D9;
}
.faq-content-item:not(:last-child) {
  margin-bottom: 32px;
}
.faq-content-item-question {
  position: relative;
  margin: 0;
  padding: 12px 24px 12px 62px;
  cursor: pointer;
  font-weight: 400;
}
.faq-content-item-question::before {
  content: "Q.";
  position: absolute;
  left: 30px;
  top: 12px;
}
.faq-content-item-question::after {
  content: "＋";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  line-height: 1;
  color: #222;
}
.faq-content-item-question.is-active::after {
  content: "−";
}
.faq-content-item-answer {
  display: none;
  position: relative;
  margin: 0;
  padding: 12px 24px 12px 62px;
  background: var(--color-main);
  color: var(--color-gold);
}
.faq-content-item-answer::before {
  content: "A.";
  position: absolute;
  left: 30px;
  top: 12px;
}
.faq-content-item-answer.is-active {
  display: block;
}

/* cta */
.cta {
  position: relative;
  --cta-parallax-y: 0px;
  max-height: 400px;
  min-height: 220px;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
  pointer-events: none;
}
.cta-image {
  position: absolute;
  inset: -22% 0;
  display: block;
  width: 100%;
  height: 144%;
  object-fit: cover;
  transform: translate3d(0, var(--cta-parallax-y), 0) scale(1.1);
  will-change: transform;
  z-index: 0;
}
.cta .c-inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.cta-inner {
  position: relative;
  color: #fff;
}
.cta-text-sub {
  color: var(--color-gold);
}

/* cta bottom */
.cta-bottom {
  padding: 96px 0 120px;
  background: #fff;
}
.cta-bottom-inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 48px;
  align-items: start;
}
.cta-bottom-title-text {
  line-height: 1.45;
  letter-spacing: 0.08em;
}
.cta-bottom-title-text-sub {
  margin: 0;
  line-height: 2;
  letter-spacing: 0.08em;
}
.cta-bottom-contents-title {
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d9d9d9;
}
.cta-bottom-contents-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cta-bottom-contents-item {
  display: flex;
  flex-direction: column;
}
.cta-bottom-contents-item-title {
  margin: 0 0 16px;
  font-size: 11px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  font-weight: 400;
  white-space: nowrap;
}
.c-cta-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 68px;
  padding: 10px 10px 10px 22px;
  background: #222;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
  margin-top: auto;
}
.c-cta-button:hover {
  opacity: 0.8;
}
.c-cta-button-label {
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.c-cta-button-icon-wrap {
  flex: 0 0 22px;
  width: 22px;
  height: 21px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.c-cta-button-icon {
  width: 22px;
  height: 21px;
  display: block;
}

/* splash */
html.is-splash-lock,
html.is-splash-lock body {
  overflow: hidden;
}
.lp-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 1), rgba(248, 245, 238, 0.96) 62%, rgba(241, 236, 227, 0.94) 100%),
    linear-gradient(180deg, #ffffff, #f7f4ee);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.62s ease, visibility 0.62s ease;
}
.lp-splash.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lp-splash.is-leave {
  opacity: 0;
}
.lp-splash.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.lp-splash-inner {
  position: relative;
  width: min(92vw, 640px);
  display: grid;
  place-items: center;
  gap: 0;
  z-index: 2;
}
.lp-splash-logo-wrap {
  width: 128px;
  max-width: 128px;
  position: relative;
  display: block;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  filter: drop-shadow(0 4px 14px rgba(124, 94, 49, 0.18));
}
.lp-splash-logo {
  display: block;
  width: 100%;
  height: auto;
}
.lp-splash-message {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.02em;
  color: #3f3a33;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.4;
  letter-spacing: 0.08em;
}
.lp-splash-char {
  display: inline-block;
  opacity: 0;
  filter: blur(12px);
  transform: translate3d(0, 8px, 0);
}
.lp-splash.is-active .lp-splash-logo-wrap {
  animation: splashLogoIn 0.95s cubic-bezier(0.25, 0.1, 0.25, 1) 0.15s forwards;
}
.lp-splash.is-active .lp-splash-char {
  animation: splashCharIn 0.72s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.72s + var(--char-index) * 0.14s);
}
@keyframes splashLogoIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes splashCharIn {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: translate3d(0, 8px, 0);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

/* fv linked animation */
.fv {
  transition: opacity 0.9s ease, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 0.9s ease;
}
html.is-fv-pending .fv {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.99);
  filter: blur(4px);
}
html.is-fv-ready .fv {
  opacity: 1;
  transform: none;
  filter: none;
}

/* scroll reveal */
.js-scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  filter: blur(8px);
  transition:
    opacity 0.8s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}
.js-scroll-reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

@supports (content-visibility: auto) {
  .about,
  .service,
  .support,
  .aside,
  .why,
  .works,
  .example,
  .plan,
  .faq,
  .cta,
  .cta-bottom {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
  }
}

/* responsive */
@media (max-width: 1180px) {
  .cta-bottom-contents-item-title {
    white-space: normal;
  }
  .why-compare-text {
    width: 200px;
    height: 200px;
  }
  .why-compare-text-left {
    left: 80px;
  }
  .why-compare-text-right {
    right: 80px;
  }
}

@media (max-width: 1024px) {
  .c-section {
    padding: 88px 0;
  }
  .c-font-catch {
    font-size: 32px;
  }

  /* fv */
  .fv-inner {
    flex-direction: column;
  }
  .fv-contents {
    width: 100%;
    padding: 100px 32px;
  }
  .fv-images-clip {
    flex: none;
    width: 100%;
    height: 360px;
  }

  /* about */
  .about-image {
    width: 150px;
  }

  /* support */
  .support-title-wrapper {
    flex-direction: column;
    gap: 32px;
  }
  .support-title-image {
    width: 100%;
  }
  .support-title-image-swiper-slide img,
  .support-title-image > img {
    width: 100%;
  }

  /* why */
  .why-compare {
    height: auto;
  }
  .why-compare-text {
    width: 160px;
    height: 160px;
  }
  .why-compare-text-left {
    left: 40px;
  }
  .why-compare-text-right {
    right: 40px;
  }
  .why-flow-swiper-wrapper {
    flex-wrap: wrap;
  }
  .why-flow-item {
    width: calc(50% - 12px);
    margin-right: 0;
    margin-bottom: 24px;
  }
  .why-flow-item:nth-child(odd) {
    margin-right: 24px;
  }
  .why-flow-item:not(:last-child)::before {
    content: none;
  }

  /* works */
  .works-contents {
    gap: 16px;
  }
  .works-content-item {
    padding: 24px 20px;
  }

  /* plan */
  .plan-contents {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 520px;
    margin: 0 auto;
  }
  .plan-content-item-desc {
    min-height: 0;
  }
  .plan-content-item-recommended.u-scale-up {
    transform: none;
  }

  /* cta */
  .cta-bottom-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .c-section {
    padding: 64px 0;
  }
  .c-inner,
  .c-inner-wide,
  .c-inner-narrow {
    padding: 0 20px;
  }
  .c-font-catch {
    font-size: 26px;
    letter-spacing: 0.08em;
  }
  .c-font-read {
    font-size: 15px;
    line-height: 1.9;
  }
  .c-font-title-32 {
    font-size: 22px;
  }
  .c-font-title-24 {
    font-size: 18px;
  }
  .c-font-title-20 {
    font-size: 16px;
  }
  .c-font-title-16 {
    font-size: 14px;
  }
  .c-font-text {
    font-size: 13px;
  }
  .c-title {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  .c-button {
    padding: 14px 32px;
  }

  /* text */
  .c-text-center,
  .c-text-right {
    text-align: left;
  }
  .c-title.u-center {
    text-align: left;
  }
  .c-title.u-center::before {
    left: 0;
    transform: none;
  }
  .aside-inner,
  .cta-inner {
    text-align: left;
  }
  .cta-inner {
    width: 100%;
  }

  /* fv */
  .fv {
    overflow: hidden;
  }
  .fv-contents {
    padding: 72px 20px;
  }
  .fv-contents-inner {
    width: 100%;
  }
  .fv-images-clip {
    height: 280px;
  }
  .fv-buttons {
    flex-wrap: wrap;
  }
  .fv-title-symbol {
    top: 16px;
    left: -12px;
  }

  /* about */
  .about-inner {
    display: block;
  }
  .about-inner .c-inner {
    padding: 0;
  }
  .about-image {
    display: none;
  }

  /* service */
  .service-inner {
    gap: 8px;
  }
  .service-item {
    width: 100%;
    padding: 14px 20px;
    text-align: left;
  }
  .service-lead-text {
    font-size: 17px;
  }
  .service-item-symbol {
    flex: none;
  }

  /* support */
  .support-title-wrapper {
    gap: 24px;
  }
  .support-flow-title-wrapper {
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
  }
  .support-flow-swiper-slide {
    width: 260px !important;
  }
  .support-flow-item-title {
    gap: 12px;
    padding-bottom: 12px;
  }
  .support-flow-item-text {
    padding: 20px 20px 24px;
  }

  /* aside */
  .c-font-title-24-symbol {
    flex: none;
  }

  /* why */
  .why-compare {
    touch-action: pan-y;
  }
  .why-compare-text {
    width: 110px;
    height: 110px;
  }
  .why-compare-text-left {
    left: 12px;
  }
  .why-compare-text-right {
    right: 12px;
  }
  .why-compare-handle {
    width: 26px;
    height: 26px;
  }
  .why-flow {
    overflow: visible;
  }
  .why-flow-button-group {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    justify-content: flex-end;
  }
  .why-flow-swipe-hint {
    display: block;
    margin: -8px 0 12px;
    text-align: right;
    color: #666;
  }
  .why-flow .why-flow-swiper-wrapper {
    flex-wrap: nowrap;
  }
  .why-flow .why-flow-item,
  .why-flow .why-flow-item:nth-child(odd) {
    width: min(280px, 78vw) !important;
    margin-right: 0;
    margin-bottom: 0;
  }
  .why-flow .why-flow-item::before {
    content: none;
  }
  .why-flow .why-flow-item-text {
    padding: 14px 20px;
  }

  /* works */
  .works-contents {
    flex-direction: column;
    gap: 16px;
  }
  .works-contents + .works-contents {
    margin-top: 16px;
  }
  .works-content-item {
    padding: 20px 24px;
  }
  .works-content-item-title {
    padding-bottom: 16px;
    margin-bottom: 12px;
  }

  /* example */
  .example-swiper-slide {
    width: min(400px, 82vw) !important;
  }
  .example-swiper-slide-title {
    gap: 10px;
  }
  .example-swiper-slide-text {
    padding: 16px;
  }

  /* plan */
  .plan-contents {
    max-width: 480px;
  }
  .plan-content-item-catch {
    margin-bottom: 10px;
  }
  .plan-content-item-price .price-number {
    font-size: 52px;
  }

  /* faq */
  .faq-content-item:not(:last-child) {
    margin-bottom: 16px;
  }
  .faq-content-item-question {
    padding: 16px 44px 16px 44px;
    font-size: 16px;
  }
  .faq-content-item-question::before {
    left: 16px;
    top: 16px;
  }
  .faq-content-item-question::after {
    right: 16px;
    font-size: 24px;
  }
  .faq-content-item-answer {
    padding: 16px 44px 16px 44px;
    font-size: 15px;
  }
  .faq-content-item-answer::before {
    left: 16px;
    top: 16px;
  }

  /* cta */
  .cta {
    min-height: 260px;
    max-height: none;
    padding: 72px 0;
  }
  .cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .cta-bottom {
    padding: 64px 0 80px;
  }
  .cta-bottom-contents-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .c-cta-button {
    min-height: 62px;
    padding-left: 18px;
  }
  .aside-text.u-second {
    margin-left: 24px; 
  }
  .lp-splash-logo-wrap {
    width: 128px;
    max-width: 128px;
  }
}

@media (max-width: 480px) {
  .c-inner,
  .c-inner-wide,
  .c-inner-narrow {
    padding: 0 16px;
  }
  .c-font-catch {
    font-size: 20px;
  }
  .c-button {
    width: 100%;
    padding: 13px 24px;
    text-align: center;
  }

  /* fv */
  .fv-buttons {
    flex-direction: column;
  }
  .fv-images-clip {
    height: 220px;
  }

  /* support */
  .support-flow-swiper-slide {
    width: 240px !important;
  }

  /* why */
  .why-compare-text {
    width: 88px;
    height: 88px;
  }
  .why-compare-text-left {
    left: 8px;
  }
  .why-compare-text-right {
    right: 8px;
  }

  /* example */
  .example-swiper-slide {
    width: 86vw !important;
  }

  /* plan */
  .plan-content-item-price .price-number {
    font-size: 44px;
  }
  .lp-splash-logo-wrap {
    width: 128px;
    max-width: 128px;
    margin-bottom: 18px;
  }
  .lp-splash-inner {
    gap: 32px;
  }
}

.wf-mobile-sticky-cta-wrap {
  display: none;
}