:root {
  --color-bg: #0b1120;
  --color-card-bg: #151e32;
  --color-text-title: #fff;
  --color-text-main: #bababa;
  --color-text-sub: #c2c2c2;
  --color-gold: #c5a065;
  --color-gold-hover: #d4af72;
  --color-nav-bg: rgba(11, 17, 32, 0.95);
  --color-btn-primary: #682c6b;
  --color-btn-primary-hover: #1e3a8a;
  --color-btn-primary-shadow: rgba(30, 64, 175, 0.3);
  --color-btn-register: #502f9a;
  --color-btn-register-hover: #7c3aed;
  --font-heading: "Noto Serif JP", serif;
  --font-body: "Noto Sans JP", sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text-main);
}
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}
.text-gold {
  color: var(--color-gold) !important;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-large {
  font-size: 1.25em;
  font-weight: bold;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 36px;
  }
}
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}
.btn--primary {
  background-color: var(--color-gold);
  color: #fff;
  box-shadow: 0 4px 10px rgba(197, 160, 101, 0.3);
}
.btn--primary:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px);
}
.btn--large {
  padding: 18px 50px;
  font-size: 20px;
}
.btn-register {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  background-color: var(--color-btn-register);
  color: #fff;
  box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-register:hover {
  background-color: var(--color-btn-register-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(139, 92, 246, 0.4);
}
.btn-register--large {
  padding: 18px 50px;
  font-size: 20px;
}
.header {
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
  border-bottom: none;
}
@media (min-width: 1280px) {
  .header {
    position: fixed;
  }
}
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2em;
}
.header__logo {
  font-family: var(--font-heading);
  color: var(--color-text-title);
  letter-spacing: 0.05em;
  font-size: 24px;
}
.header__logo span {
  display: block;
  font-size: 70%;
  opacity: 0.5;
}
.header__nav {
  margin-left: auto;
}
.header__nav ul {
  display: flex;
  gap: 30px;
}
.header__nav a {
  color: var(--color-text-main);
  font-size: 16px;
}
.header__nav a:hover {
  color: var(--color-gold);
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__cta .btn.btn--primary {
  background-color: var(--color-btn-primary);
  box-shadow: 0 4px 10px var(--color-btn-primary-shadow);
}
.header__cta .btn.btn--primary:hover {
  background-color: var(--color-btn-primary-hover);
}
@media (max-width: 768px) {
  .header__cta .btn.btn--primary,
  .header__cta .btn-register {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
    z-index: 1001;
    margin: 0;
  }
}
.section {
  padding: 100px 0;
  overflow: hidden;
}
.section--dark {
  background-color: #0f1623;
}
.section--solution {
  text-align: center;
}
.section-title {
  color: var(--color-text-title);
  font-family: var(--font-heading);
  text-align: center;
  margin-bottom: 60px;
  font-size: 145%;
}
@media (min-width: 768px) {
  .section-title {
    font-size: 320%;
  }
}
.section-title.-sub {
  font-size: 120%;
  margin: 2em 0;
}
@media (min-width: 768px) {
  .section-title.-sub {
    font-size: 220%;
  }
}
.section-desc {
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-text-sub);
}
.hero {
  height: 100svh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 17, 32, 0.7);
  z-index: 2;
}
.hero__container {
  position: relative;
  z-index: 3;
  width: 100%;
}
.hero__content {
  max-width: 800px;
  padding: 20px;
  text-align: left;
}
@media (max-width: 768px) {
  .hero__content {
    text-align: center;
    margin: 0 auto;
  }
}
.hero__catch {
  color: var(--color-text-title);
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: 200%;
}
@media (min-width: 1280px) {
  .hero__catch {
    font-size: 350%;
  }
}
.hero__sub-catch {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--color-text-main);
}
.hero__desc {
  font-size: 18px;
  margin-bottom: 40px;
  color: var(--color-text-sub);
}
.hero__note {
  font-size: 0.9rem;
  margin-top: 10px;
  color: var(--color-text-sub);
}
.hero__cta .btn.btn--primary {
  background-color: var(--color-btn-primary);
  box-shadow: 0 4px 10px var(--color-btn-primary-shadow);
}
.hero__cta .btn.btn--primary:hover {
  background-color: var(--color-btn-primary-hover);
}
.problem-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 800px;
  margin: 0 auto;
}
.problem-card {
  background-color: var(--color-card-bg);
  padding: 40px 30px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  padding-top: 50px;
}
.problem-card__number {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 60px;
  font-weight: 900;
  color: rgba(197, 160, 101, 0.2);
  font-family: var(--font-heading);
  line-height: 1;
}
.problem-card h4 {
  margin-bottom: 15px;
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-text-title);
}
@media (min-width: 768px) {
  .problem-card h4 {
    font-size: 200%;
  }
}
.solution-bridge {
  text-align: center;
  margin-top: 60px;
}
.solution-bridge__text {
  color: var(--color-text-title);
  font-weight: bold;
  margin: 20px 0;
  text-align: center;
  font-size: 150%;
}
@media (min-width: 768px) {
  .solution-bridge__text {
    font-size: 275%;
  }
}
.solution-bridge__text span:not([class]) {
  display: block;
  font-size: 70%;
  color: var(--color-text-sub);
}
.solution-bridge__icon {
  font-size: 2rem;
  color: var(--color-gold);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1.05);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.95;
  }
}
.before-after-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .before-after-visual {
    flex-direction: column;
  }
}
.ba-card__visual {
  max-width: 400px;
  aspect-ratio: 3/4;
  background: #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid #444;
}
.ba-card__visual .img-placeholder {
  color: #888;
  border: 2px dashed #555;
  padding: 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ba-card__caption {
  margin-top: 0.5em;
  font-size: 120%;
}
@media (min-width: 768px) {
  .ba-card__caption {
    font-size: 120%;
  }
}
.ba-center {
  text-align: center;
}
.ba-arrow {
  width: 0;
  height: 0;
  border-top: 15px solid rgba(0, 0, 0, 0);
  border-bottom: 15px solid rgba(0, 0, 0, 0);
  border-left: 25px solid var(--color-gold);
  margin: 0 auto 10px;
}
@media (max-width: 768px) {
  .ba-arrow {
    transform: rotate(90deg);
  }
}
.ba-process {
  font-weight: bold;
  line-height: 1.4;
}
@media (max-width: 479px) {
  .ba-process {
    font-size: 250%;
  }
}
.features-list {
  max-width: 900px;
  margin: 0 auto;
}
.features-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .features-list ul {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.features-list li {
  font-weight: 500;
  text-align: left;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}
.features-list li:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(197, 160, 101, 0.3);
  transform: translateY(-2px);
}
.features-list li .fa-check {
  color: var(--color-gold);
  font-size: 1.2em;
  flex-shrink: 0;
}
.benefit-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.benefit-box {
  background: #fff;
  color: #333;
  padding: 40px;
  border-radius: 10px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.benefit-box h4 {
  text-align: center;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--color-bg);
  margin-bottom: 10px;
}
.benefit-sub {
  text-align: center;
  margin-bottom: 30px;
  color: #666;
  font-size: 0.9rem;
}
.simulation-box {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  background: #f9f9f9;
}
.sim-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #ccc;
}
.sim-row--divider {
  border-bottom: 2px solid #333;
}
.sim-row--cost {
  color: #c0392b;
}
.sim-row--result {
  border: none;
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 10px;
  padding-top: 15px;
  border-top: 2px solid var(--color-gold);
}
.benefit-note {
  font-size: 0.8rem;
  margin-top: 20px;
  color: #666;
  line-height: 1.5;
}
.usage-steps {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin: 50px 0;
}
.step-card {
  flex: 1;
  min-width: 250px;
  background: var(--color-card-bg);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.step-card__head {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  text-align: center;
  font-weight: bold;
  color: var(--color-gold);
  font-size: 120%;
  letter-spacing: 0.1em;
}
.step-card__body {
  max-width: 800px;
  margin: auto;
  padding: 30px 20px;
  text-align: center;
}
.step-card__body h4 {
  color: var(--color-text-title);
  margin-bottom: 10px;
  font-size: 150%;
}
@media (min-width: 768px) {
  .step-card__body h4 {
    font-size: 200%;
  }
}
.step-card-image {
  margin: 2em auto;
}
.step-card-additional {
  color: var(--color-text-title);
  padding: 2em;
  border: 3px solid var(--border-color, #f0f0f0);
  background-color: var(--color-bg);
  border-radius: 1em;
}
.step-card-additional h5 {
  font-size: 150%;
  margin: 0 0 1em;
}
.step-card-icon {
  font-size: 3rem;
  margin-top: 20px;
  color: var(--color-text-sub);
}
.plans-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 40px;
}
.plan-item {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: var(--color-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  position: relative;
}
.plan-item--recommend {
  background: #28344d;
  border: 2px solid var(--color-gold);
  transform: scale(1.05);
  z-index: 2;
  animation: pulse 3s ease-in-out infinite;
}
.plan-name {
  font-size: 120%;
  font-weight: bold;
  margin: 0 0 1em;
}
.plan-price {
  font-size: 40px;
  font-weight: bold;
  margin: 20px 0;
  font-family: var(--font-heading);
  color: var(--color-text-title);
}
.plan-price .currency {
  font-size: 1rem;
  font-weight: normal;
  margin-left: 0.25em;
}
.plan-detail dl {
  margin: 20px 0;
}
.plan-detail dl > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  text-align: left;
  align-items: center;
  padding: 1em 0;
  border-bottom: 1px dashed var(--border-color, #666);
}
.plan-detail dt {
  font-size: 80%;
  color: var(--color-text-sub);
  opacity: 0.8;
}
.plan-detail dd {
  color: var(--color-text-title);
  font-weight: bold;
}
.plan-desc {
  font-size: 0.8rem;
  color: var(--color-gold);
}
.plan-note {
  font-size: 0.8rem;
  color: var(--color-text-sub);
}
.recommend-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: #fff;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 20px;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-box {
  margin-bottom: 40px;
}
.faq-category {
  border-bottom: 2px solid var(--color-gold);
  display: inline-block;
  padding-bottom: 10px;
  margin: 2em auto;
  display: block;
  width: fit-content;
  color: var(--color-text-title);
  font-size: 125%;
}
@media (min-width: 768px) {
  .faq-category {
    font-size: 150%;
  }
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.faq-item {
  background: var(--color-card-bg);
  padding: 20px;
  border-radius: 6px;
}
.faq-item dt {
  position: relative;
  padding-left: 1.5em;
  font-weight: bold;
  color: var(--color-text-title);
  margin-bottom: 20px;
  font-size: 110%;
}
@media (min-width: 768px) {
  .faq-item dt {
    font-size: 125%;
  }
}
.faq-item dt .letter {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-gold);
}
.faq-item dd {
  padding-left: 1.5em;
}
.faq-item dd .letter {
  display: none;
}
.footer-copy {
  text-align: center;
  font-size: 75%;
  color: #666;
  margin-top: 2em;
  padding: 0.5em 0;
}
.footer-links {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.8rem;
}
.footer-links a:hover {
  text-decoration: underline;
}
.company-info {
  max-width: 600px;
  margin: 40px auto 0;
}
.company-info dl {
  margin: 20px 0;
}
.company-info dl > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  text-align: left;
  align-items: center;
  padding: 1em 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}
.company-info dl > div:last-child {
  border-bottom: none;
}
.company-info dt {
  font-size: 90%;
  color: var(--color-text-sub);
  opacity: 0.8;
}
.company-info dd {
  color: var(--color-text-title);
  font-weight: 500;
}
@media (min-width: 768px) {
  .company-info dl > div {
    grid-template-columns: 100px 1fr;
  }
}
.cta-box {
  text-align: center;
  color: var(--color-card-bg);
  background-color: #fafafa;
  padding: 2em 12px;
  border-radius: 12px;
  position: relative;
}
.cta-content {
  position: relative;
  z-index: 4;
}
.cta-title {
  font-family: var(--font-heading);
  margin-bottom: 20px;
  font-size: 1.5rem;
}
@media (min-width: 1280px) {
  .cta-title {
    font-size: 2.5rem;
  }
}
.cta-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
@media (max-width: 479px) {
  .cta-img {
    position: absolute;
    bottom: 0;
    left: 70vw;
    width: 33vw;
  }
}
@media (min-width: 768px) {
  .cta-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28%;
  }
  .cta-content {
    padding-right: 30%;
  }
}
@media (min-width: 768px) {
  br.--sp {
    display: none;
  }
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}
.modal.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}
.modal__content {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 40px 20px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 10001;
}
@media (min-width: 768px) {
  .modal__content {
    padding: 50px;
  }
}
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #666;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.modal__close:hover {
  background-color: #f5f5f5;
  color: #333;
}
.modal__title {
  font-family: var(--font-heading);
  color: #333;
  margin-bottom: 30px;
  text-align: center;
  font-size: 145%;
}
@media (min-width: 768px) {
  .modal__title {
    font-size: 2rem;
  }
}
.modal__catch {
  color: #333;
  font-weight: bold;
  margin: 20px 0;
  text-align: center;
  font-size: 200%;
}
@media (min-width: 768px) {
  .modal__catch {
    font-size: 275%;
  }
}
.modal__catch span:not([class]) {
  display: block;
  font-size: 70%;
}
.modal__desc {
  font-size: 85%;
  color: #de5e5e;
  margin: 3em 0;
  text-align: center;
  padding: 2em;
  background-color: #fce9e5;
}
.modal__body {
  color: #666;
  line-height: 1.8;
}
.modal__body p {
  margin-bottom: 1em;
}
.formkit {
  --formkit-button-submit-bg: var(--color-btn-register);
  --formkit-button-submit-bg-hover: var(--color-btn-register-hover);
} /*# sourceMappingURL=default.css.map */
