:root {
  --background: #090b10;
  --surface: #11151d;
  --surface-light: #ffffff;
  --text: #f7f7f7;
  --text-dark: #171717;
  --subtext: #aeb4bf;
  --accent: #f6c453;
  --line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Noto Sans JP",
    sans-serif;
  line-height: 1.7;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  background: rgba(9, 11, 16, 0.75);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.logo {
  font-weight: 800;
  letter-spacing: 0.12em;
}

.header-button {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  min-height: 50vh;
  display: grid;
  place-items: center;
  padding: 130px 7% 80px;
  background:
    radial-gradient(
      circle at 70% 30%,
      rgba(246, 196, 83, 0.18),
      transparent 35%
    ),
    linear-gradient(135deg, #08090d, #121722);
}

.hero-content {
  width: min(100%, 1100px);
  text-align: center;
}

.english-title,
.section-label {
    text-align: center;
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(45px, 9vw, 105px);
  line-height: 1.05;
}

.hero-description {
  max-width: 650px;
  margin: 28px 0;
  color: var(--subtext);
  font-size: clamp(16px, 2vw, 20px);
}

.hero-numbers {
    justify-content: center;
    text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 38px 0;
}

.hero-numbers div {
  min-width: 150px;
  padding-right: 25px;
  border-right: 1px solid var(--line);
}

.hero-numbers strong,
.hero-numbers span {
  display: block;
}

.hero-numbers strong {
  font-size: 23px;
}

.hero-numbers span {
  color: var(--subtext);
  font-size: 13px;
}

.main-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 13px 28px;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-buttons .main-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.4;
    min-width: 220px;
    min-height: 80px;
}

.hero-buttons .main-button span {
    font-size: 15px;
    font-weight: 700;
}

.main-button:hover {
  transform: translateY(-3px);
}

.section {
  padding: 100px 7%;
  text-align: center;
  background: #f4f2ed;
  color: var(--text-dark);
}

.dark-section {
  background: var(--background);
  color: var(--text);
}

.section > h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 60px);
}

.section-description {
  margin-bottom: 45px;
  color: #666;
}

.card-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  width: min(100%, 1150px);
  margin: 45px auto 0;
}

.card,
.review-card,
.price-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}

.card > span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.card h3,
.price-card h3 {
  margin: 12px 0;
  font-size: 24px;
}

.card p,
.review-card p {
  color: var(--subtext);
}

.light-card {
  background: #fff;
  border-color: #ddd;
}

.light-card p {
  color: #666;
}

.price-grid {
  grid-template-columns: repeat(2, minmax(0, 460px));
  justify-content: center;
}

.price-card {
  position: relative;
}

.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(246, 196, 83, 0.12);
}

.price-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  font-size: 12px;
  font-weight: 800;
}

.price {
  margin: 15px 0;
  color: var(--accent);
  font-size: 38px;
  font-weight: 900;
}

.price-card ul {
  min-height: 120px;
  padding-left: 20px;
  color: var(--subtext);
}

.slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  width: min(100%, 1050px);
  margin: 40px auto 0;
}

.slider-window {
    width: 420px;
    margin: auto;
    overflow: hidden;
    border-radius: 20px;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease;
}

.slider-track img {
    min-width: 100%;
    height: 800px;
}

.slider-button {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

.slider-dots {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px auto 0;
}

.slider-dot {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #999;
  cursor: pointer;
}

.slider-dot.active {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #f6c453;
}

#slider-caption {
  display: block;
  width: 100%;
  margin: 14px auto 0;
  padding: 0;
  color: #222;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.steps {
  width: min(100%, 850px);
  margin: 45px auto 0;
}

.steps article {
  display: flex;
  gap: 22px;
  padding: 25px 0;
  border-bottom: 1px solid #ccc;
}

.steps article > span {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #111;
  color: var(--accent);
  font-weight: 900;
}

.steps h3 {
  margin: 0;
}

.steps p {
  margin: 5px 0 0;
  color: #666;
}

.stars {
  color: var(--accent) !important;
  letter-spacing: 0.12em;
}

.review-card small {
  color: #777;
}

.faq {
  width: min(100%, 900px);
  margin: 45px auto 0;
}

.faq details {
  margin-bottom: 12px;
  padding: 20px 24px;
  border: 1px solid #ddd;
  border-radius: 14px;
  background: #fff;
}

.faq summary {
  font-weight: 800;
  cursor: pointer;
}

.faq details p {
  color: #666;
}

.contact-section {
  padding: 100px 7%;
  text-align: center;
  background:
    radial-gradient(
      circle,
      rgba(246, 196, 83, 0.17),
      transparent 45%
    ),
    var(--background);
}

.contact-section h2 {
  margin: 0;
  font-size: clamp(35px, 6vw, 70px);
}

.contact-section p {
  margin-bottom: 28px;
  color: var(--subtext);
}

footer {
  padding: 35px 20px 100px;
  text-align: center;
  border-top: 1px solid var(--line);
  color: var(--subtext);
  font-size: 13px;
}

.fixed-contact {
  display: none;
}

.price-image {
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
}

.price-image img {
    display: block;
    width: 100%;
    height: auto;
}

.price-image img {
    width: 900px;
    max-width: 100%;
    height: auto;
}

@media (max-width: 800px) {
  .header {
    padding: 14px 18px;
  }

  .header-button {
    display: none;
  }

  .hero {
    min-height: 820px;
    padding: 120px 22px 70px;
  }

  .hero-numbers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-numbers div {
    min-width: 0;
  }

  .section {
    padding: 75px 22px;
  }

  .card-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .slider {
    gap: 7px;
  }

@media (max-width: 800px) {

  .slider-window {
    width: 90%;
    max-width: 320px;   /* お好みで300〜380pxに調整 */
    margin: 0 auto;
  }

  .slider-track img {
    width: 100%;
    height: auto;
    display: block;
  }

}

  .slider-button {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .fixed-contact {
    position: fixed;
    z-index: 200;
    right: 15px;
    bottom: 15px;
    left: 15px;
    display: block;
    padding: 15px;
    border-radius: 999px;
    background: var(--accent);
    color: #111;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
  }
}