/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  background: #FAF8F4;
  color: #1A1A3E;
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== VARIABLES ===== */
:root {
  --navy: #1A1A3E;
  --navy-light: #252550;
  --gold: #C9A227;
  --gold-dark: #A8832A;
  --gold-light: #E8C84A;
  --cream: #FAF8F4;
  --cream-warm: #FFF8E8;
  --white: #FFFFFF;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-wide {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== TYPOGRAPHY ===== */
.serif { font-family: 'Noto Serif JP', serif; }
.sans { font-family: 'Noto Sans JP', sans-serif; }

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #C9A227 0%, #A8832A 100%);
  /*color: #1A1A3E;*/
  color: var(--white) !important;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  border-radius: 50px;
  padding: 0.9rem 2.5rem;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: filter 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(201,162,39,0.35);
  text-decoration: none;
}
.btn-gold:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,162,39,0.45);
}
.btn-gold:active { transform: scale(0.97); }
.btn-gold .arrow {
  width: 28px; height: 28px;
  background: rgba(26,26,62,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--navy);
  color: white;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  border-radius: 6px;
  padding: 0.75rem 1.75rem;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); }

/* ===== GOLD DIVIDER ===== */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  margin: 1rem 0;
}
.gold-divider::before, .gold-divider::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,0.7));
}
.gold-divider::after {
  background: linear-gradient(90deg, rgba(201,162,39,0.7), transparent);
}
.gold-divider span {
  color: var(--gold);
  font-size: 1rem;
}

/* ===== SECTION LABEL ===== */
.section-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,162,39,0.15);
  transition: box-shadow 0.3s;
}
#header.scrolled {
  box-shadow: 0 2px 20px rgba(26,26,62,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-en {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  max-width: 200px;
  text-align: center;
  font-size: 0.95rem;
  background: linear-gradient(135deg, #C9A227, #A8832A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  text-align: center;
  color: var(--navy);
  letter-spacing: 0.05em;
  max-width: 200px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header-nav a {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--gold-dark); }
.header-cta {
  background: linear-gradient(135deg, #C9A227, #A8832A);
  /*color: var(--navy) !important;*/
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.78rem !important;
  transition: filter 0.2s, transform 0.15s !important;
}
.header-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  color: var(--navy) !important;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,162,39,0.2);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 99;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201,162,39,0.1);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold-dark); }
.mobile-menu .mobile-cta {
  margin-top: 1rem;
  text-align: center;
  padding: 0.875rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #C9A227, #A8832A);
  color: var(--navy);
  font-weight: 700;
  border: none;
}

/* ===== HERO SECTION ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/memorial_hero_celestial_b9692016.png');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    /*rgba(250,248,244,0.15) 0%,
    rgba(250,248,244,0.25) 30%,
    rgba(250,248,244,0.45) 70%,
    rgba(250,248,244,0.85) 100%*/
    rgba(250,248,244,0.05) 0%,
    rgba(250,248,244,0.1) 30%,
    rgba(250,248,244,0.15) 70%,
    rgba(250,248,244,0.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem 1.5rem 4rem;
  max-width: 800px;
  margin: 0 auto;
}
.hero-headline {
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 20px rgba(255,255,255,0.8);
}
.hero-service-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.hero-service-name::before, .hero-service-name::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-service-name span {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 1.25rem;
  background: linear-gradient(135deg, #C9A227, #A8832A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  color: rgba(26,26,62,0.75);
  margin-bottom: 1.5rem;
}
.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(26,26,62,0.7);
}
.hero-badge::before {
  content: '✓';
  width: 18px; height: 18px;
  background: linear-gradient(135deg, #C9A227, #A8832A);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 900;
  flex-shrink: 0;
}
.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero-cta-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.72rem;
  color: rgba(26,26,62,0.5);
}

/* ===== SECTION COMMON ===== */
section { padding: 5rem 0; }
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
#problem .section-header{

    margin-bottom: 2rem;
}
.section-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.section-title .gold { color: var(--gold); }
.section-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  color: rgba(26,26,62,0.55);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== WHY SECTION ===== */
#why { background: white; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.why-card {
  text-align: center;
  /*padding: 2rem 1.5rem;*/
  padding: 1rem 1.5rem 2rem 1.5rem;
}
.why-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1rem;
  background: var(--cream-warm);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon svg { width: 28px; height: 28px; stroke: var(--gold-dark); fill: none; stroke-width: 1.5; }
.why-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.why-card p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  color: rgba(26,26,62,0.6);
  line-height: 1.7;
}

/* ===== PROBLEM SECTION ===== */
#problem { background: var(--cream); }
.problem-subtitle {
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 1.75rem;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.problem-card {
  background: white;
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201,162,39,0.12);
}
.problem-icon {
  width: 48px; height: 48px;
  margin: 0 auto 0.75rem;
  background: var(--cream-warm);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.problem-icon svg { width: 22px; height: 22px; stroke: var(--gold-dark); fill: none; stroke-width: 1.5; }
.problem-card h4 {
  /*font-family: 'Noto Sans JP', sans-serif;*/
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}
.problem-card h4 span{
	display: block;
    background: var(--gold);
    border-radius: 50%;
    width: 20px;
    text-align: center;
    color: #fff;
	margin-right: 5px;
    font-size: 0.75rem;
    line-height: 20px;
}
.problem-card p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.72rem;
  color: rgba(26,26,62,0.55);
  line-height: 1.6;
  text-align: left;
  color: #5b5b5b;
}

/* ===== VIDEO SECTION ===== */
#video { background: white; }
.video-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
}
.video-text h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 1rem;
}
.video-text h2 .gold { color: var(--gold); }
.video-text p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  color: rgba(26,26,62,0.6);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.video-note {
  font-size: 0.7rem !important;
  color: rgba(26,26,62,0.4) !important;
  border-top: 1px solid rgba(201,162,39,0.15);
  padding-top: 0.5rem;
  margin-top: 0.75rem;
}
.video-player {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(26,26,62,0.15);
  background: #000;
  aspect-ratio: 16/9;
}
.video-player img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /*background: rgba(26,26,62,0.2);*/
  background: rgb(26 26 62 / 15%);
  cursor: pointer;
  transition: background 0.2s;
}
.video-play-btn:hover { background: rgba(26,26,62,0.35); }
.play-circle {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #C9A227, #A8832A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(201,162,39,0.5);
  transition: transform 0.2s;
}
.video-play-btn:hover .play-circle { transform: scale(1.1); }
.play-circle svg { width: 24px; height: 24px; fill: white; margin-left: 3px; }
.video-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.6);
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.video-bar span {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
}
.video-progress {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 2px;
}

/* ===== HOW TO USE ===== */
#howto { background: var(--cream); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(90deg, rgba(201,162,39,0.4), rgba(201,162,39,0.4));
  z-index: 0;
}
.step-item {
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #C9A227, #A8832A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  /*color: var(--navy);*/
  color: var(--white);
  box-shadow: 0 4px 16px rgba(201,162,39,0.3);
}
.step-arrow {
  position: absolute;
  top: 20px;
  right: -8px;
  color: var(--gold);
  font-size: 1.2rem;
  z-index: 2;
}
.step-icon {
  width: 48px; height: 48px;
  margin: 0 auto 0.75rem;
  background: white;
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon svg { width: 22px; height: 22px; stroke: var(--gold-dark); fill: none; stroke-width: 1.5; }
.step-item h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  /*color: var(--white);*/
  margin-bottom: 0.4rem;
}
.step-item p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.75rem;
  color: rgba(26,26,62,0.55);
  line-height: 1.6;
}

/* ===== FEATURE SECTION ===== */
#feature { background: white; }
.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.feature-left, .feature-right {
  padding: 1.5rem 0;
}
.feature-left h2, .feature-right h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}
.feature-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.feature-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  color: rgba(26,26,62,0.75);
  line-height: 1.5;
}
.feature-check-list li::before {
  content: '✓';
  color: var(--gold-dark);
  font-weight: 900;
  font-size: 0.75rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.feature-block {
  background: var(--cream-warm);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}
.feature-block h4 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.feature-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-mockup {
  background: var(--navy);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(26,26,62,0.2);
  width: 100%;
}
.mockup-bar {
  background: rgba(255,255,255,0.08);
  padding: 0.5rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.mockup-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.mockup-dot.red { background: #ff5f57; }
.mockup-dot.yellow { background: #febc2e; }
.mockup-dot.green { background: #28c840; }
.mockup-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  margin-left: 0.25rem;
}
.mockup-body {
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.mockup-thumb {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.1);
}
.mockup-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*opacity: 0.7;*/
}
.feature-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.65rem;
  color: rgba(26,26,62,0.4);
  text-align: center;
  margin-top: 0.5rem;
}

/* ===== BENEFITS SECTION ===== */
#benefits { background: var(--cream); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.benefit-card {
  background: white;
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

#problem .benefit-card{
    border-radius: 6px;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(201,162,39,0.15);
}
.benefit-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.25rem;
  /*background: var(--cream-warm);*/
  /*border: 1px solid rgba(201,162,39,0.3);*/
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-icon svg { width: 28px; height: 28px; stroke: var(--gold-dark); fill: none; stroke-width: 1.5; }
.benefit-card h3{
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.benefit-icon .benefits_img_icon1{
	max-width: 100px;
}
.benefit-icon .benefits_img_icon2{
    max-width: 78px;
}
.benefit-icon .benefits_img_icon3{
	max-width: 95px;
}
.benefit-card p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  color: rgba(26,26,62,0.6);
  line-height: 1.75;
}
#problem .benefit-card p{
    padding: 0px 0.7rem;
    /*text-align: left;*/
    color: #5b5b5b;
}

#problem .benefit-card h3{
	margin-top: 0.75rem;
}

/* ===== FLOW SECTION ===== */
#flow { background: white; }
.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}
.flow-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(90deg, rgba(201,162,39,0.3), rgba(201,162,39,0.3));
}
.flow-item {
  text-align: center;
  padding: 0 0.75rem;
  position: relative;
}
.flow-num {
  width: 56px; height: 56px;
  background: white;
  border: 2px solid rgba(201,162,39,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  position: relative;
  z-index: 1;
}
.flow-num-inner {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #C9A227, #A8832A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-num-inner svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2; }
.flow-arrow {
  position: absolute;
  top: 14px;
  right: -8px;
  color: var(--gold);
  font-size: 1rem;
  z-index: 2;
}
.flow-item h4 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  /*font-size: 0.88rem;*/
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.flow-item p {
  font-family: 'Noto Sans JP', sans-serif;
  /*font-size: 0.75rem;*/
  font-size: 0.82rem;
  color: rgba(26,26,62,0.55);
  line-height: 1.6;
}

/* ===== PRICING SECTION ===== */
#pricing { background: var(--cream); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.pricing-card {
  background: white;
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover {
  /*transform: translateY(-4px);*/
  /*box-shadow: 0 12px 32px rgba(201,162,39,0.15);*/
}
.pricing-card.featured {
  border: 2px solid var(--gold);
  box-shadow: 0 8px 32px rgba(201,162,39,0.2);
  transform: translateY(-8px);
}
.pricing-card.featured:hover { /*transform: translateY(-12px);*/ }
.pricing-ribbon {
  background: linear-gradient(135deg, #A8832A, #C9A227);
  /*color: var(--navy);*/
  color: var(--white);
  text-align: center;
  padding: 0.5rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.pricing-body { padding: 1rem 1.75rem 1.75rem 1.75rem; }
.pricing-tier {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  margin-bottom: 0.25rem;
}
.pricing-name {
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.pricing-volume {
  display: inline-block;
  background: var(--cream-warm);
  border: 1px solid rgba(201,162,39,0.3);
  color: var(--gold-dark);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.pricing-price {
  margin-bottom: 0.25rem;
}
.pricing-price .amount {
  /*font-family: 'Noto Sans JP', sans-serif;*/
  font-family: '小塚ゴシック Pro', 'Kozuka Gothic Pro', sans-serif;
  /*font-weight: 900;*/
  font-weight: 500;
  font-size: 1.9rem;
  color: var(--navy);
}
.pricing-card.featured .pricing-price .amount { color: var(--gold); }
.pricing-price .unit {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  color: rgba(26,26,62,0.5);
  margin-left: 0.25rem;
}
.pricing-per {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.72rem;
  color: rgba(168,131,42,0.6);
  margin-bottom: 1.25rem;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.8rem;
  color: rgba(26,26,62,0.7);
}
.pricing-features li::before {
  content: '✓';
  width: 18px; height: 18px;
  background: var(--cream-warm);
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--gold-dark);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.pricing-btn {
  display: block;
  text-align: center;
  padding: 0.875rem;
  border-radius: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.2s;
  text-decoration: none;
}
.pricing-btn.outline {
  border: 2px solid var(--gold);
  color: var(--gold-dark);
}
.pricing-btn.outline:hover { background: var(--cream-warm); }
.pricing-btn.solid {
  background: linear-gradient(135deg, #C9A227, #A8832A);
  /*color: var(--navy);*/
  color: var(--white);
  box-shadow: 0 4px 16px rgba(201,162,39,0.3);
}
.pricing-btn.solid:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* ===== FAQ SECTION ===== */
#faq { background: white; }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--cream);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 10px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
}
.faq-q:hover { background: rgba(201,162,39,0.05); }
.faq-q-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.faq-q-text::before {
  content: 'Q';
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.2;
}
.faq-icon {
  width: 24px; height: 24px;
  background: var(--cream-warm);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--gold-dark);
  transition: transform 0.25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 1.25rem 1.1rem 1.25rem;
  padding-left: calc(1.25rem + 1.75rem);
}
.faq-item.open .faq-a { display: block; }
.faq-a p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  color: rgba(26,26,62,0.65);
  line-height: 1.8;
}

/* ===== TRIAL / CTA SECTION ===== */
#trial {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
#trial::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,162,39,0.06) 0%, transparent 70%);
  pointer-events: none;
}
#trial::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,0.4), transparent);
}
.trial-header {
  text-align: center;
  margin-bottom: 3rem;
}
.trial-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cream-warm);
  border: 1px solid rgba(201,162,39,0.4);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  margin-bottom: 1.5rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: #7A5E1A;
}
.trial-badge .star { color: var(--gold-dark); }
.trial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.trial-form-card {
  background: white;
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(201,162,39,0.08);
}
.trial-form-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.75rem;
  color: rgba(26,26,62,0.5);
  margin-bottom: 0.35rem;
}
.form-label .req { color: var(--gold-dark); }
.form-input {
  width: 100%;
  background: var(--cream);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: rgba(168,131,42,0.6); }
.form-input::placeholder { color: rgba(26,26,62,0.3); }
textarea.form-input { resize: none; }
.form-input.is-error { border-color: #e53e3e; background: #fff5f5; }
.form-error-msg {
  display: none;
  color: #e53e3e;
  font-size: 0.78rem;
  margin-top: 0.3rem;
  padding-left: 0.2rem;
}
.form-error-msg.visible { display: block; }
.form-submit {
  width: 100%;
  background: linear-gradient(135deg, #C9A227, #A8832A);
  /*color: var(--navy);*/
  color: var(--white);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: filter 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(201,162,39,0.3);
}
.form-submit:hover { filter: brightness(1.08); transform: translateY(-1px); }
.form-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.7rem;
  color: rgba(168,131,42,0.5);
  text-align: center;
  margin-top: 0.5rem;
}
.trial-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.trial-contact-card {
  max-width: 415px;
  background: white;
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 12px rgba(201,162,39,0.06);
}
.trial-contact-card h4 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(201,162,39,0.08);
  transition: color 0.2s;
  color: rgba(26,26,62,0.6);
}
.contact-link:last-child { border-bottom: none; }
.contact-link:hover { color: var(--gold-dark); }
.contact-icon {
  width: 36px; height: 36px;
  background: var(--cream-warm);
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 16px; height: 16px; stroke: var(--gold-dark); fill: none; stroke-width: 2; }
.contact-text-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.65rem;
  color: rgba(168,131,42,0.6);
}
.contact-text-val {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
}
.contact-text-val img{
	margin-left: -5px;
}
.contact-text-val img:hover{
	opacity: 0.6;
}

.trial-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.trial-stat {
  background: white;
  border: 1px solid rgba(201,162,39,0.15);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
}
.trial-stat .num {
  font-family: 'Noto Sans JP', sans-serif;
  /*font-weight: 900;*/
    font-weight: 500;
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1.2;
}
.trial-stat .lbl {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.7rem;
  color: rgba(26,26,62,0.5);
  margin-top: 0.2rem;
}

/* ===== FINAL CTA ===== */
#final-cta {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  text-align: center;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  /*background-image: url('/manus-storage/memorial_hero_celestial_b9692016.jpg');
  background-size: cover;
  background-position: center bottom;*/
  z-index: 0;
}
.final-cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(250,248,244,0.8) 0%,
    rgba(250,248,244,0.6) 50%,
    rgba(250,248,244,0.8) 100%
  );
}
.final-cta-content {
  position: relative;
  z-index: 1;
}
.final-cta-content h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 16px rgba(255,255,255,0.8);
}
.final-cta-content h2 .gold { color: var(--gold); }
.final-cta-content p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
  color: rgba(26,26,62,0.65);
  margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
#footer {
  background: #F5F0E8;
  border-top: 1px solid rgba(201,162,39,0.2);
  /*padding-bottom: 5rem;*/
  padding-bottom: 7rem;
}
.footer-inner {
  padding: 3rem 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.footer-brand .logo-en { font-size: 1rem; }
.footer-brand p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.8rem;
  color: rgba(26,26,62,0.55);
  line-height: 1.7;
  margin-top: 0.75rem;
}
.footer-col-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  color: rgba(26,26,62,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-dark); }
.footer-company p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  color: rgba(26,26,62,0.6);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-company a {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  color: rgba(26,26,62,0.6);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}
.footer-company a:hover,.footer-company p:hover { /*color: var(--gold-dark);*/ opacity: 0.6; }
.footer-bottom {
  border-top: 1px solid rgba(201,162,39,0.15);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.72rem;
  color: rgba(26,26,62,0.4);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.72rem;
  color: rgba(26,26,62,0.4);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold-dark); }

/* ===== STICKY CTA BAR ===== */
#sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(26,26,62,0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(201,162,39,0.2);
  /*padding: 0.75rem 1.5rem;*/
  padding: 2rem 1.5rem;
}
.sticky-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.sticky-text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.sticky-badge {
	background: rgba(201, 162, 39, 0.2);
    border: 1px solid rgba(201, 162, 39, 0.4);
    color: var(--gold);
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
}
.sticky-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: white;
}
.sticky-cta {
  background: linear-gradient(135deg, #C9A227, #A8832A);
  /*color: var(--navy);*/
  color: var(--white);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: filter 0.2s, transform 0.15s;
  white-space: nowrap;
}

#pricing .sticky-cta{
	background: rgba(26, 26, 62, 1);
}
.sticky-cta:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.23,1,0.32,1), transform 0.6s cubic-bezier(0.23,1,0.32,1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.4s; }
.fade-up-d5 { transition-delay: 0.5s; }

/* ===== PRICING ALIGN FIX ===== */

.pricing-grid {
  align-items: stretch;
}

/* カード全体を縦方向flexにする */
.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* 中央カードだけ上にズラす処理をやめる */
.pricing-card.featured {
  transform: none;
}

/*.pricing-card.featured:hover {
  transform: translateY(-4px);
}*/

/* 本文エリアを縦方向flexにする */
.pricing-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* プラン名まわりの高さを揃える */
.pricing-tier {
  min-height: 1rem;
}

.pricing-name {
  min-height: 2rem;
}

.pricing-volume {
  width: fit-content;
}

/* 価格部分の高さを揃える */
.pricing-price {
  min-height: 3.4rem;
  display: flex;
  align-items: baseline;
}

.pricing-per {
  min-height: 1.2rem;
}

/* 特徴リスト部分を伸ばして、ボタン位置を下に揃える */
.pricing-features {
  flex: 1;
}

/* ボタンをカード下部に揃える */
.pricing-btn {
  margin-top: auto;
}

.trial_plan_lead{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 5rem;
    gap: 2rem;
}

.trial_plan_lead p{
	/*font-family: 'Noto Serif JP', serif;*/
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
@media (max-width: 480px) {
	.trial_plan_lead{
	    margin-top: 4rem;
	}
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .header-cta-desktop { display: none; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .problem-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .steps-grid::before { display: none; }
  .feature-inner { grid-template-columns: 1fr; }
  .feature-center { order: -1; }
  .flow-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-grid::before { display: none; }
}
@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .hero-headline { font-size: 2rem; }
  .why-grid { grid-template-columns: 1fr; gap: 1rem; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .video-inner { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .flow-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .trial-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sticky-label { display: none; }
}
/*sp調整用*/
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-links {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-company {
    grid-column: 2;
    grid-row: 2;
  }
}
@media (max-width: 480px) {
  .hero-badges { flex-direction: column; gap: 0.75rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .trial-stats { grid-template-columns: 1fr 1fr; }
}
/* ===== CONTACT POPUP ===== */
#contact-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,26,62,0.55);
  backdrop-filter: blur(4px);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#contact-overlay.open {
  display: flex;
}
.contact-popup {
  background: white;
  border: 1px solid rgba(201,162,39,0.25);
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(26,26,62,0.2);
  animation: popupIn 0.25s cubic-bezier(0.23,1,0.32,1);
}
@keyframes popupIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.contact-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background: var(--cream);
  border: 1px solid rgba(201,162,39,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: rgba(26,26,62,0.5);
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}
.contact-popup-close:hover {
  background: var(--cream-warm);
  color: var(--navy);
}
.contact-popup h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.contact-popup .popup-subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  color: rgba(26,26,62,0.5);
  margin-bottom: 1.5rem;
}
.text_three_css{
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
    max-width: 290px;
}

/*従来の制作方法の悩みのSP CSS*/
@media (max-width: 480px) {
  .problem-icon{
    width: 55px;
    height: 55px;
  }
  .problem-icon svg{
    width: 30px;
    height: 30px;
  }
  .problem-card h4{
    font-size:1rem;
  }
  .problem-card p{
    font-size:0.9rem;
  }
}


/*ステップ項目のSP CSS*/
@media (max-width: 480px) {
  .step-item{
    margin-bottom: 35px;
  }
  .step-num{
    width: 30px;
    height: 30px;
  }
  .step-icon{
    width: 90px;
    height: 55px;
  }

  .step-icon svg{
    width: 35px;
    height: 50px;
  }
  .step-arrow{
    transform: translate(50%, 0px) rotate(90deg);
    top: unset;
    bottom: -50px;
    right: 50%;
  }
}

/*導入フローのSP CSS*/
@media (max-width: 480px) {
  .flow-item{
    margin-bottom: 35px;
  }
  .flow-num{
    width: 60px;
    height: 60px;
  }
  .flow-num-inner{
    width: 45px;
    height: 45px;
  }
  .flow-num-inner svg{
    width: 22px;
    height: 30px;
  }
  .flow-arrow{
    transform: translate(50%, 0px) rotate(90deg);
    top: unset;
    bottom: -37px;
    right: 50%;
  }
}
/*トライアルフォームのSP CSS*/
@media (max-width: 480px) {
  .text_three_css {
    max-width: 195px;
  }
}

/*sp表示制御用*/
.sp_show{
  display: none !important;
}
@media (max-width: 480px) {
  .sp_hide{
    display: none !important;
  }
  .sp_show{
    display: block !important;
  }
}