/* ===================================================================
   Reset & Base Styles
   ================================================================ */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Noto Sans JP", system-ui, -apple-system, sans-serif;
  color: #fff;
  background: #000;
  min-height: 100svh;
}

:root {
  --sa-top: env(safe-area-inset-top);
  --sa-bottom: env(safe-area-inset-bottom);
  --brand-deep: #000820;
  --teal: #00b2ba;
}

img{
  width: 100%;
  display: block;
}

video.full-width-video{
  width: 100%;
  display: block;
}

/* ===================================================================
   Header / Navigation / Drawer
   ================================================================ */

.global-header {
  background: var(--brand-deep);
  padding: calc(8px + var(--sa-top)) max(5%, 16px) 8px;
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

.header-logo img {
  height: 48px;
}

.header-cta img {
  height: 52px;
  transition: transform 0.2s;
}

.header-cta img:hover {
  transform: scale(1.05);
}

.hamburger {
  background: none;
  border: 0;
  padding: 4px;
  cursor: pointer;
}

.hamburger img {
  height: 40px;
}

/* To Top Button */
.to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0e4f7a;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
  z-index: 1000;
}

.to-top:hover {
  transform: translateY(-2px);
}

.to-top.is-show {
  opacity: 1;
  pointer-events: auto;
}

/* Global Navigation Drawer */
.global-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 78%;
  max-width: 420px;
  height: 100%;
  padding: calc(16px + var(--sa-top)) 24px 24px;
  background: var(--brand-deep);
  transition: right 0.3s;
  z-index: 110;
}

.global-nav.open {
  right: 0;
}

.global-nav ul {
  list-style: none;
  margin-top: 24px;
}

.global-nav li {
  margin: 20px 0;
}

.global-nav img {
  height: 28px;
}

.nav-close {
  position: absolute;
  top: calc(8px + var(--sa-top));
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
}

.nav-close:hover {
  transform: scale(1.1);
}

/* ===================================================================
   Hero v1 - Slideshow Hero
   ================================================================ */

.hero {
  position: relative;
  height: 100svh;
  padding-top: 80px;
  overflow: hidden;
}

.hero__slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroFade 30s infinite;
}

.hero__slides .s1 {
  animation-delay: 0s;
}

.hero__slides .s2 {
  animation-delay: 5s;
}

.hero__slides .s3 {
  animation-delay: 10s;
}

.hero__slides .s4 {
  animation-delay: 15s;
}

.hero__slides .s5 {
  animation-delay: 20s;
}

.hero__slides .s6 {
  animation-delay: 25s;
}

@keyframes heroFade {
  0%,
  100% {
    opacity: 0;
  }
  5%,
  20% {
    opacity: 1;
  }
}

.hero__overlay img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero__copy {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  padding: 0 6vw;
}

.hero__catch-1 {
  width: 21rem;
  display: block;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: clamp(22px, 6vw, 40px);
}

.hero__catch-2 {
  display: block;
  margin-top: 8px;
  font-weight: 700;
  font-size: clamp(18px, 5.2vw, 34px);
}

.hero__sub {
  margin-top: 12px;
  font-size: clamp(13px, 3.8vw, 18px);
}

.hero__icons {
  position: absolute;
  inset: auto 0 calc(12px + var(--sa-bottom)) 0;
  display: grid;
  justify-items: center;
  gap: 10px;
  z-index: 10;
  padding: 0 10px;
}

.hero__icon-group {
  display: flex;
  gap: 14px;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s ease forwards;
}

.hero__icon-group.g1 {
  animation-delay: 0.4s;
}

.hero__icon-group.g2 {
  animation-delay: 0.9s;
}

.hero__icon-group.g3 {
  animation-delay: 1.4s;
}

.hero__icon-group img {
  width: clamp(44px, 16vw, 72px);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================================================
   Hero v2 - Photo Background Hero
   ================================================================ */
.hero--v2 {
  position: relative;
  isolation: isolate;
  color: #fff;
  overflow: hidden;
  min-height: 100svh;
  background: #000;
}

.hero--v2 img{
  width: 100%;
}
.hero2__inner {
  position: relative;
  z-index: 1;
}

.hero2__catch {
  display: block;
  margin-inline: auto;
}

.hero2__catch--main img {
  width: 100%;
  margin: 0 auto clamp(16px, 3vw, 24px);
  padding: 0% 10% 0% 10%;
  filter: drop-shadow(0 2px 0 rgba(255, 255, 255, 0.06)) drop-shadow(0 0 24px rgba(255, 255, 255, 0.08));
}

.hero2__catch--sub img {
  width: 100%;
  margin: clamp(18px, 4vw, 28px) auto 0;
  padding: 0% 10% 0% 10%;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
}

/* ===================================================================
   Icon Slider - Infinite Marquee
   ================================================================ */

.icon-slider {
  --gap: clamp(12px, 3vw, 24px);
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  margin: clamp(10px, 3vw, 16px) auto clamp(8px, 2.5vw, 14px);
  width: min(1000px, 94vw);
  padding: 50px 0;
}

.icon-slider ul {
  list-style: none;
}

.icon-slider__track {
  display: flex;
  align-items: center;
  gap: var(--gap);
  width: max-content;
  animation: iconMarquee 18s linear infinite;
}

.icon-slider__item img {
  display: block;
  width: clamp(52px, 14vw, 86px);
  height: clamp(52px, 14vw, 86px);
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
  border-radius: 22%;
}

@keyframes iconMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===================================================================
   Demo Section
   ================================================================ */

.demo {
  background-color: #eaeaea;
}

.demo img,
.demo video {
  width: 100%;
  display: block;
}

/* ===================================================================
   Design Section - Tab-based Slider
   ================================================================ */

:root {
  --bg: #f5f6f7;
  --chip: #fff;
  --chip-border: #d9d9d9;
  --text: #222;
  --muted: #717171;
  --accent: #00b2ba;
}

.design-sec {
  background: #eaeaea;
  padding: 56px 20px 64px;
}

.design-inner {
  max-width: 980px;
  margin: 0 auto;
}

.design-title {
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  margin: 0 0 24px;
  color: var(--text);
}

.design-tab {
  display: none;
}

.design-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 820px;
  margin: 0 auto 22px;
}

.design-btn {
  display: grid;
  place-items: center;
  height: 56px;
  border: 1.5px solid var(--chip-border);
  border-radius: 10px;
  background: var(--chip);
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.04);
}

.design-btn:hover {
  transform: translateY(-1px);
}

#tab-site:checked ~ .design-tabs [for="tab-site"],
#tab-logo:checked ~ .design-tabs [for="tab-logo"],
#tab-banner:checked ~ .design-tabs [for="tab-banner"],
#tab-flyer:checked ~ .design-tabs [for="tab-flyer"] {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent);
}

.design-slider {
  position: relative;
  width: 100%;
  height: 500px;
  aspect-ratio: 16 / 9;
  max-width: 920px;
  margin: 0 auto 28px;
  border-radius: 14px;
  overflow: hidden;
  background: radial-gradient(1200px 600px at -10% 30%, rgba(255, 255, 255, 0.22), transparent 60%),
    radial-gradient(900px 500px at 110% 70%, rgba(255, 255, 255, 0.18), transparent 65%),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.04) 0 1px, transparent 1px 40px), #e9ecef;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05), 0 12px 28px rgba(0, 0, 0, 0.12);
}

.design-slider .slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 0.35s, transform 0.35s;
}

.design-slider .slide img {
  width: 86%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

#tab-site:checked ~ .design-slider .slide-site,
#tab-logo:checked ~ .design-slider .slide-logo,
#tab-banner:checked ~ .design-slider .slide-banner,
#tab-flyer:checked ~ .design-slider .slide-flyer {
  opacity: 1;
  transform: none;
}

.nav-arrows label {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.nav-arrows .prev {
  left: 14px;
}

.nav-arrows .next {
  right: 14px;
}

.nav-arrows .prev::after,
.nav-arrows .next::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border: 3px solid var(--text);
  border-top-color: transparent;
  border-right-color: transparent;
  transform: rotate(45deg);
}

.nav-arrows .next::after {
  transform: rotate(-135deg);
}

.nav-arrows .prev,
.nav-arrows .next {
  display: none;
}

#tab-site:checked ~ .design-slider .nav-arrows .from-site,
#tab-logo:checked ~ .design-slider .nav-arrows .from-logo,
#tab-banner:checked ~ .design-slider .nav-arrows .from-banner,
#tab-flyer:checked ~ .design-slider .nav-arrows .from-flyer {
  display: block;
}

.design-lead {
  max-width: 760px;
  margin: 28px auto 0;
  text-align: center;
  color: var(--text);
  font-size: clamp(15px, 3.6vw, 20px);
  line-height: 1.9;
}

/* ===================================================================
   Strong Section
   ================================================================ */

.strong {
  background: #00a6b0;
  display: block;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(10px, 2.5vw, 18px);
  align-items: start;
}

.strong img {
  display: block;
  width: 100%;
  height: auto;
  padding: 5% 0% 5% 0%;
  will-change: opacity, transform;
  backface-visibility: hidden;
}

.strong2 img,
.staff img {
  display: block;
  width: 100%;
  height: auto;
  will-change: opacity, transform;
  backface-visibility: hidden;
}


.strong-last img {
  display: block;
  width: 100%;
  height: auto;
  padding: 0%;
  will-change: opacity, transform;
  backface-visibility: hidden;
}

/* ===================================================================
   Service All Section
   ================================================================ */

.service-all {
  background: #dff7f7;
  padding: clamp(40px, 6vw, 72px) 16px;
  color: #0a2a2a;
}

.service-all__inner {
  width: min(1100px, 94vw);
  margin: 0 auto;
}

.service-all__title {
  text-align: center;
  color: #10b7b7;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.06em;
  margin: 0 0 clamp(22px, 4vw, 36px);
  font-size: clamp(24px, 5.6vw, 48px);
}

.service-all__title-break {
  display: block;
  margin-top: 0.25em;
  font-size: inherit;
}

/* チップ（SNS/人事/事務/制作/編集） */
.service-all__chips{
  list-style:none;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
  gap: clamp(12px,2.8vw,20px);
  width:min(900px,96%);
  margin: clamp(10px,3vw,20px) auto clamp(18px,4vw,28px);
  padding:0;
}
.service-all__chips li{
  display:grid; place-items:center;
  aspect-ratio: 1 / 1;
  background:#22d3d3;
  color:#113;
  font-weight:800;
  font-size: clamp(20px,4.5vw,36px);
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}

.service-all__lead{
  max-width: 760px;
  margin: 28px auto 0;
  text-align: center;
  color: var(--text);
  font-size: clamp(15px, 3.6vw, 20px);
  line-height: 1.9;
}

/* ===================================================================
   Wish Section - Cards
   ================================================================ */

.wish-sec {
  background: #faf4ec;
  padding: clamp(28px, 6vw, 56px) 18px;
  display: grid;
  gap: clamp(18px, 3.5vw, 28px);
}

.wish-card {
  width: min(820px, 90vw);
  margin-inline: auto;
}

.wish-card__head {
  margin: 0;
  font-family: "Zen Kurenaido", sans-serif;
  padding: clamp(10px, 2.6vw, 16px) clamp(14px, 3vw, 22px);
  border-radius: 14px 14px 0 0;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  font-size: clamp(16px, 3.8vw, 22px);
  line-height: 1.6;
  color: #303030;
}

h2#last{
  font-size:1.5rem;
}

.wish-card__body {
  background: #fff;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  padding: clamp(18px, 4.6vw, 28px) clamp(16px, 4vw, 24px);
}

.wish-card__body p {
  margin: 0;
  color: #222;
  font-size: clamp(15px, 3.7vw, 20px);
  line-height: 2.1;
}

.wish-card--relax .wish-card__head {
  background: #d7e0df;
}

.wish-card--focus .wish-card__head {
  background: #ffe0b9;
}

.wish-card--achieve .wish-card__head {
  background: #ffe0b9;
}

/* ===================================================================
   Service Detail Section
   ================================================================ */

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.service-container{
  background-color: #e9f3fe;
  padding: clamp(28px, 5vw, 56px) 18px;
}


.service-container .header {
  background: #fff;
  color: #333;
  text-align: center;
  font-weight: 800;
  font-size: clamp(16px, 4.2vw, 24px);
  padding: clamp(14px, 2.2vw, 18px);
  border-radius: 6px;
  border: 1px solid #d7e3ee;
  box-shadow: 0 3px 0 #c8dbef;
  margin: 0 0 clamp(18px, 3.6vw, 26px);
}

.header h1 {
  font-size: 2.5rem;
  color: #1976d2;
  font-weight: 700;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-item {
  background: #90caf9;
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.service-item:hover {
  background: #64b5f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
}

.service-title {
  font-size: 2rem;
  color: #1a237e;
  font-weight: 600;
  flex-grow: 1;
}

.service-more {
  font-size: 1.5rem;
  color: #1a237e;
  font-weight: 700;
  padding: 0.5rem 1rem;
}

/* ===================================================================
   Service Detail & Flow Detail Sections
   ================================================================ */

.svc-detail {
  background: #eaf4fb;
  padding: clamp(28px, 5vw, 56px) 18px;
}

.svc-detail__inner {
  width: 90vw;
  margin: 0 auto;
}

.svc-detail__title {
  background: #fff;
  color: #333;
  text-align: center;
  font-weight: 800;
  font-size: clamp(20px, 4.8vw, 30px);
  padding: clamp(14px, 2.2vw, 18px);
  border-radius: 6px;
  border: 1px solid #d7e3ee;
  box-shadow: 0 3px 0 #c8dbef;
  margin: 0 0 clamp(18px, 3.6vw, 26px);
}

.svc-detail__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(14px, 3vw, 18px);
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #8ebbff;
  color: #2c2c2c;
  text-decoration: none;
  padding: 16px 18px;
  border-radius: 8px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.05);
  transition: filter 0.15s, transform 0.05s;
}

.detail-item:hover {
  filter: brightness(1.03);
}

.detail-item:active {
  transform: translateY(1px);
}

.detail-item__label {
  font-weight: 700;
  font-size: 1.5rem;
}

.flow-detail {
  background: #eaf4fb;
}

.flow-detail__list {
  list-style: none;
  margin: 0;
  padding: clamp(28px, 5vw, 56px) 18px;
  display: grid;
  gap: clamp(14px, 3vw, 18px);
}

.flow-detail__arrow {
  text-align: center;
  color: #9bb0b8;
  font-size: 22px;
}

.detail-item--mint {
  background: #bdf0e7;
  border: 1px solid #a6e3d8;
}

.icon-search {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #cfd9e6;
}

.icon-search::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid #333;
  transform: translate(-2px, -2px);
}

.icon-search::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 26px;
  width: 14px;
  height: 3px;
  background: #333;
  transform: rotate(45deg);
  border-radius: 2px;
}

/* ===================================================================
   Modal Styles
   ================================================================ */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal.is-open {
  display: flex;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  cursor: pointer;
}

.modal__panel {
  position: relative;
  background: white;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 1001;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: #666;
}

.modal__close:hover {
  background: #e0e0e0;
  color: #333;
  transform: rotate(90deg);
}

.modal__title {
  font-size: 1.75rem;
  color: #1976d2;
  margin-bottom: 1.5rem;
  padding-right: 2rem;
  font-weight: 700;
}

.modal__content {
  color: #424242;
  line-height: 1.8;
}

.modal__content h3 {
  font-size: 1.25rem;
  color: #1976d2;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.modal__content p {
  margin-bottom: 1rem;
}

.modal__content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.modal__content li {
  margin-bottom: 0.5rem;
}

.modal__text {
  font-size: clamp(14px, 3.6vw, 16px);
  line-height: 1.9;
  color: #424242;
}

/* ===================================================================
   Pricing Section
   ================================================================ */

.pricing-sample {
  background: #eaf4fb;
  padding: clamp(40px, 6vw, 72px) 16px;
  display: grid;
  place-items: center;
}

.pricing-card {
  width: min(760px, 96vw);
  width: 90vw;
  background: #fff;
  border: 1px solid #c9dcec;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(9, 30, 66, 0.08), 0 2px 0 #c9dcec;
  background: linear-gradient(#fff, #fff) padding-box, radial-gradient(120% 120% at 0% 0%, #eaf4fb 0%, transparent 60%)
    border-box;
}

.pricing-card__heading {
  margin: 0;
  background: linear-gradient(180deg, #1fb0ed 0%, #1594d0 100%);
  color: #fff;
  text-align: center;
  font-weight: 800;
  font-size: clamp(18px, 3.6vw, 26px);
  padding: clamp(14px, 3vw, 18px);
  letter-spacing: 0.08em;
}

.pricing-card__inner {
  padding: clamp(22px, 4.6vw, 30px);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.45em;
  margin: 4px 0 clamp(18px, 3.2vw, 26px);
  color: #2a2f33;
}

.pricing-card__price .yen {
  color: #1594d0;
  font-weight: 800;
  font-size: clamp(18px, 4.4vw, 24px);
  transform: translateY(2px);
}

.pricing-card__price .num {
  color: #18a8ea;
  font-weight: 900;
  font-size: clamp(38px, 10.5vw, 64px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 0 #fff;
}

.pricing-card__price .tilde {
  color: #18a8ea;
  font-weight: 800;
  font-size: clamp(18px, 4.4vw, 24px);
}

.pricing-card__price .term {
  color: #3a4a55;
  font-weight: 700;
  font-size: clamp(14px, 3.4vw, 18px);
}

.pricing-card__price .tax {
  color: #6a7a86;
  font-size: clamp(12px, 3vw, 14px);
}

.pricing-card__features {
  list-style: none;
  margin: 0 0 clamp(16px, 3vw, 24px);
  padding: clamp(14px, 3.4vw, 18px);
  background: #f2f8fd;
  border: 1px solid #d8e7f4;
  border-radius: 12px;
  display: grid;
  gap: clamp(10px, 2.4vw, 14px);
}

.pricing-card__features li {
  background: #fff;
  border: 1px solid #e4eef7;
  border-radius: 10px;
  padding: 10px 12px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
  font-size: clamp(14px, 3.6vw, 18px);
  color: #2c2f33;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-card__features .chk {
  --size: 34px;
  width: var(--size);
  height: var(--size);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(120% 120% at 30% 20%, #e6f5ff 0%, #d7eefc 60%);
  border: 1px solid #c5e2f6;
}

.pricing-card__features .chk::after {
  content: "";
  width: 12px;
  height: 6px;
  border: 3px solid #189ee6;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}

.pricing-card__notes {
  color: #5b6a77;
  font-size: clamp(12px, 3.2vw, 14px);
  line-height: 1.8;
}

/* ===================================================================
   FAQ Section
   ================================================================ */

.faq {
  background: #eaf4fb;
  padding: clamp(40px, 6vw, 72px) 16px;
  display: grid;
  place-items: center;
}

.faq-card {
  width:90vw;
  background: #fff;
  border: 1px solid #b9d2e6;
  border-radius: 10px;
  overflow: hidden;
}

.faq-title {
  margin: 0;
  text-align: center;
  font-weight: 800;
  font-size: clamp(18px, 3.6vw, 24px);
  letter-spacing: 0.06em;
  color: #27323a;
  padding: clamp(14px, 3vw, 18px);
  border-bottom: 1px solid #cfe0ef;
}

.faq-list {
  list-style: none;
  margin: 0;
  padding: clamp(6px, 1.2vw, 10px) 0;
}

.faq-item {
  padding: clamp(14px, 3.2vw, 18px) clamp(16px, 3.8vw, 22px);
}

.faq-item + .faq-item {
  border-top: 1px solid #cfe0ef;
}

.faq-q,
.faq-a {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 6px 0;
  line-height: 1.8;
}

.faq-q {
  color: #2b2b2b;
  font-size: clamp(16px, 4.5vw, 22px);
  font-weight: 700;
}

.faq-a {
  color: #1b7e74;
  font-size: clamp(16px, 4.5vw, 22px);
  font-weight: 800;
}

.badge {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 900;
  font-size: 18px;
  flex: 0 0 40px;
}

.badge-q {
  background: #fff;
  color: #27323a;
  border: 1.5px solid #8db8dc;
}

.badge-a {
  background: #38b2a5;
  color: #fff;
}

/* ===================================================================
   CTA Section
   ================================================================ */

.cta-section {
  background: #e0f7fa;
  padding: clamp(40px, 6vw, 72px) 16px;
  text-align: center;
}

.cta-heading {
  color: #00897b;
  font-size: clamp(22px, 6vw, 32px);
  font-weight: 800;
  margin: 0 0 clamp(18px, 3.6vw, 26px);
  line-height: 1.4;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #00897b;
  color: #fff;
  font-size: clamp(18px, 5vw, 24px);
  font-weight: 800;
  padding: 16px 28px 16px 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.2s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
}

.cta-time {
  background: #fff;
  color: #00897b;
  font-weight: 900;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-right: 12px;
  font-size: 0.9em;
}

/* ===================================================================
   Scroll-linked Animations
   ================================================================ */

/* Animation Keyframes */
@keyframes riseClear {
  from {
    opacity: 0;
    transform: translateY(clamp(32px, 8vw, 56px)) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes riseStrong {
  from {
    opacity: 0;
    transform: translateY(clamp(40px, 10vw, 64px)) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes riseWish {
  from {
    opacity: 0;
    transform: translateY(clamp(36px, 9vw, 60px)) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes risePricing {
  from {
    opacity: 0;
    transform: translateY(clamp(48px, 12vw, 72px)) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* View-timeline support for modern browsers */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    /* Demo images - exclude 1.jpg and 2.jpg from animation */
    .demo img:not([src$="1.jpg"]):not([src$="2.jpg"]) {
      opacity: 0;
      transform: translateY(clamp(32px, 8vw, 56px)) scale(0.98);
      animation: riseClear 0.8s cubic-bezier(0.22, 0.9, 0.18, 1) both;
      animation-timeline: view();
      animation-range: entry 0% cover 35%;
    }

    .demo img:nth-child(1) {
      animation-delay: 0s;
    }
    .demo img:nth-child(2) {
      animation-delay: 0.04s;
    }
    .demo img:nth-child(3) {
      animation-delay: 0.08s;
    }
    .demo img:nth-child(4) {
      animation-delay: 0.12s;
    }
    .demo img:nth-child(5) {
      animation-delay: 0.16s;
    }
    .demo img:nth-child(6) {
      animation-delay: 0.2s;
    }
    .demo img:nth-child(7) {
      animation-delay: 0.24s;
    }

    /* Strong sections */
    .strong img,
    .strong2 img,
    .staff img {
      opacity: 0;
      transform: translateY(clamp(40px, 10vw, 64px)) scale(0.96);
      animation: riseStrong 0.85s cubic-bezier(0.22, 0.9, 0.18, 1) both;
      animation-timeline: view();
      animation-range: entry 0% cover 35%;
      transform-origin: 50% 100%;
    }

    .strong img:nth-child(2) {
      animation-delay: 0.06s;
    }
    .strong img:nth-child(3) {
      animation-delay: 0.12s;
    }
    .strong img:nth-child(4) {
      animation-delay: 0.18s;
    }
    .strong img:nth-child(5) {
      animation-delay: 0.24s;
    }

    /* Wish cards */
    .wish-card {
      opacity: 0;
      transform: translateY(clamp(36px, 9vw, 60px)) scale(0.97);
      animation: riseWish 0.9s cubic-bezier(0.22, 0.9, 0.18, 1) both;
      animation-timeline: view();
      animation-range: entry 0% cover 30%;
    }

    .wish-card:nth-child(2) {
      animation-delay: 0.08s;
    }
    .wish-card:nth-child(3) {
      animation-delay: 0.16s;
    }
    .wish-card:nth-child(4) {
      animation-delay: 0.24s;
    }

    /* Pricing card */
    .pricing-card {
      opacity: 0;
      transform: translateY(clamp(48px, 12vw, 72px)) scale(0.95);
      animation: risePricing 1s cubic-bezier(0.22, 0.9, 0.18, 1) both;
      animation-timeline: view();
      animation-range: entry 0% cover 30%;
    }
  }
}

/* Fallback for browsers without view-timeline support */
.no-viewtimeline .demo img:not([src$="1.jpg"]):not([src$="2.jpg"]),
.no-viewtimeline .strong img,
.no-viewtimeline .strong2 img,
.no-viewtimeline .staff img,
.no-viewtimeline .wish-card,
.no-viewtimeline .pricing-card {
  opacity: 0;
  transform: translateY(48px) scale(0.98);
}

.no-viewtimeline .demo img.is-in {
  animation: riseClear 0.8s cubic-bezier(0.22, 0.9, 0.18, 1) both;
}

.no-viewtimeline .strong img.is-in,
.no-viewtimeline .strong2 img.is-in,
.no-viewtimeline .staff img.is-in {
  animation: riseStrong 0.85s cubic-bezier(0.22, 0.9, 0.18, 1) both;
}

.no-viewtimeline .wish-card.is-in {
  animation: riseWish 0.9s cubic-bezier(0.22, 0.9, 0.18, 1) both;
}

.no-viewtimeline .pricing-card.is-in {
  animation: risePricing 1s cubic-bezier(0.22, 0.9, 0.18, 1) both;
}

/* Static display for 1.jpg and 2.jpg */
.demo img[src$="1.jpg"],
.demo img[src$="2.jpg"] {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

/* Reduced motion support */
.reduce-motion * {
  animation: none !important;
  transition: none !important;
}

.reduce-motion .demo img,
.reduce-motion .strong img,
.reduce-motion .strong2 img,
.reduce-motion .staff img,
.reduce-motion .wish-card,
.reduce-motion .pricing-card {
  opacity: 1 !important;
  transform: none !important;
}

/* ===================================================================
   Responsive Design - Mobile Adjustments
   ================================================================ */

@media (max-width: 768px) {
  .header-logo img {
    height: 40px;
  }

  .header-cta img {
    height: 44px;
  }

  .hamburger img {
    height: 32px;
  }

  .global-nav {
    width: 100%;
    max-width: none;
  }

  .global-nav ul {
    text-align: center;
  }

  .global-nav img {
    height: 32px;
  }

  .header-cta {
    position: fixed;
    left: 100px;
    bottom: calc(9px + var(--sa-bottom));
    z-index: 120;
  }

  .header-cta img {
    height: 56px;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
  }

  .header h1 {
    font-size: 2rem;
  }

  .service-item {
    padding: 1.5rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon svg {
    width: 30px;
    height: 30px;
  }

  .service-title {
    font-size: 1.5rem;
  }

  .modal__panel {
    padding: 2rem;
  }

  .modal__title {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .design-tabs {
    gap: 10px;
  }

  .design-btn {
    height: 46px;
    font-size: 15px;
  }

  .design-slider {
    border-radius: 12px;
  }

  .design-slider .slide img {
    width: 92%;
  }
}

@media (max-width: 360px) {
  .hero__icon-group img {
    width: clamp(40px, 18vw, 64px);
  }

  .header-logo img {
    height: 36px;
  }

  .header-cta img {
    height: 50px;
  }
}

/* =========================================================
   サービス詳細 / 相談の流れ（共通スタイル）
   - 文字・レイアウトは共通
   - 配色のみセクションごとに切り替え
========================================================= */

/* セクションの外側余白・背景（必要に応じて調整） */
.svc-detail,
.flow-detail {
  padding: clamp(28px, 5vw, 56px) 18px;
  background: #eaf4fb;                  /* 下地は共通の薄いブルー */
}

/* 内側コンテナ（最大幅・中央寄せ） */
.svc-detail__inner {
  width: 90vw;
  margin: 0 auto;
}

/* セクション見出し（共通の見た目） */
.svc-detail__title {
  margin: 0 0 clamp(18px, 3.6vw, 26px);
  background: #ffffff;
  color: #333333;
  text-align: center;
  font-weight: 800;
  font-size: clamp(20px, 4.8vw, 30px);
  padding: clamp(14px, 2.2vw, 18px);
  border-radius: 8px;
  border: 1px solid #d7e3ee;
  box-shadow: 0 3px 0 #c8dbef;
}

/* 並び（どちらも同じ） */
.svc-detail__list,
.flow-detail__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(14px, 3vw, 18px);
}

/* =========================================================
   行アイテム（共通ルール）
   - 配色だけをセクション別で上書き
========================================================= */

.detail-item {
  /* レイアウト */
  display: flex;
  align-items: center;
  gap: 14px;

  /* 余白・角丸・影 */
  padding: 16px 18px;
  border-radius: 10px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.05);

  /* 文字（共通）*/
  color: #1f2a38;
  text-decoration: none;
  font-weight: 700;                          /* 太さを統一 */
  font-size: clamp(16px, 4.2vw, 20px);       /* サイズを統一 */

  /* アニメーション */
  transition: filter 0.15s ease, transform 0.05s ease;
}

.detail-item:hover {
  filter: brightness(1.03);
}

.detail-item:active {
  transform: translateY(1px);
}

/* ラベル（必要なら個別の余白を追加） */
.detail-item__label {
  line-height: 1.5;
}

/* ▼ セクション別の配色だけ変える ----------------------- */

/* サービス詳細：#90caf9 ベース */
.svc-detail .detail-item {
  background: #90caf9;
  border: 1px solid #64b5f6;
}

/* 相談の流れ：#a6e3d8 ベース */
.flow-detail .detail-item {
  background: #a6e3d8;
  border: 1px solid #8ed7c7;
}

/* 矢印（相談の流れの間仕切り） */
.flow-detail__arrow {
  text-align: center;
  color: #9bb0b8;
  font-size: 22px;
}

/* =========================================================
   虫眼鏡アイコン（service-icon で統一）
   - 丸い白ベースにルーペをCSSで描画
   - どちらのセクションでも同じ見た目
========================================================= */

.service-icon {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;

  /* 丸い白い土台 */
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #cfd9e6;

  /* 影でほんのり浮かせる（任意） */
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.04);
}

/* ルーペの丸（内側） */
.service-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid #333333;
  transform: translate(-2px, -2px);   /* 持ち手側へ少し寄せる */
}

/* ルーペの持ち手 */
.service-icon::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 26px;
  width: 14px;
  height: 3px;
  background: #333333;
  transform: rotate(45deg);
  border-radius: 2px;
}

/* =========================================================
   ちょいレスポンシブ（スマホ時に窮屈なら拡げる）
========================================================= */

@media (max-width: 480px) {
  .detail-item {
    padding: 14px 16px;
  }
  .service-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
}

/* ==================================== */
/* 01. グローバルナビ (ドロワーメニュー) */
/* ==================================== */

/* メニュー本体 */
.global-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%; /* 全画面を覆う */
  height: 100%;
  background-color: #001f3f; /* 濃い青/黒の背景色 */
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: translateX(100%); /* 初期状態は見えない位置 */
  transition: transform 0.3s ease-out;
  padding: 20px;
  box-sizing: border-box;
}

/* メニューが開いている状態 */
.global-nav.open {
  transform: translateX(0);
}

/* 閉じるボタン (X) */
.nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 3em; /* 大きくして目立つように */
  cursor: pointer;
  z-index: 1001;
  padding: 10px;
  line-height: 1;
}

/* ナビゲーションリスト */
.global-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  width: 100%;
}

/* リストアイテム */
.global-nav li {
  margin: 20px 0; /* 上下の間隔を大きく */
}

/* リンクテキスト */
.global-nav a {
  color: #ffffff;
  text-decoration: none; /* アンダーラインを削除 */
  font-size: 2.5em; /* 文字を大きく */
  font-weight: bold;
  display: block;
  padding: 10px 0;
  transition: color 0.2s;
}

.global-nav a:hover {
  color: #4db6ac; /* マウスオーバー時の色（CTAボタンの色） */
}

/* ==================================== */
/* 02. ドロワー内のCTAボタン（画像参照） */
/* ==================================== */

/* CTAボタンのコンテナ (画像のようにリストの下、画面中央に配置するため) */
/* ※HTMLのulの外側、または適切な位置にボタンがあることを前提とします。 */

/* 仮に、HTMLのCTAボタンを複製して、ドロワー内にもう一つ設置する場合のスタイル */
/* 便宜上、ここではnav内に配置されていると仮定してスタイルを調整します。 */

.global-nav .cta-button {
  /* HTMLのCTAボタンと同じスタイル（画像では下部に固定されているため、ここでは中央付近に配置） */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #00897b;
  color: #ffffff;
  font-size: 1.8em; /* リンクよりは小さく、目立つサイズ */
  font-weight: bold;
  padding: 15px 30px 15px 15px;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 50px; /* リストからの間隔 */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.global-nav .cta-time {
  background-color: #ffffff;
  color: #00897b;
  font-size: 0.8em;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

/* ※ 画像下部の固定CTAボタンは、別のクラス名で画面下部に固定するCSSが必要です。 */
/* HTML内の<div class="cta-section">のCSSは、以前のコードで対応済みのため省略します。 */

/* 画面下部固定のCTA（画像下部のボタンを再現する場合の例）*/
/* .fixed-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1010;
} */


/* =========================================================
   サービス紹介 / 相談の流れ
   ボタン強化スタイル（視認性アップ）
========================================================= */

/* ベースをよりボタンらしく */
.detail-item {
  position: relative;
  justify-content: space-between;
  padding: 18px 20px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: all 0.25s ease;
}

/* 矢印を追加（ボタン感UP） */
.detail-item::after {
  content: "›";
  font-size: 26px;
  font-weight: 900;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

/* ホバー時 */
.detail-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

/* ホバー時 矢印スライド */
.detail-item:hover::after {
  transform: translateX(4px);
}

/* クリック時 */
.detail-item:active {
  transform: translateY(1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* サービス詳細カラー強化 */
.svc-detail .detail-item {
  background: linear-gradient(180deg, #90caf9 0%, #64b5f6 100%);
  color: #0d1b2a;
}

/* 相談の流れカラー強化 */
.flow-detail .detail-item {
  background: linear-gradient(180deg, #bdf0e7 0%, #8ed7c7 100%);
  color: #083d37;
}

/* スマホ時タップしやすく */
@media (max-width: 480px) {
  .detail-item {
    padding: 20px;
    font-size: 17px;
  }
}


/* =========================================================
   サービス詳細エリア（完全ボタン化）
========================================================= */

.service-container {
  background-color: #e9f3fe;
  padding: clamp(32px, 6vw, 64px) 20px;
}

/* 見出し */
.service-container .header {
  background: #ffffff;
  color: #1976d2;
  text-align: center;
  font-weight: 800;
  font-size: clamp(20px, 5vw, 28px);
  padding: 18px;
  border-radius: 10px;
  border: 1px solid #d7e3ee;
  box-shadow: 0 4px 0 #c8dbef;
  margin-bottom: 28px;
}

/* リスト */
.services {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* =========================================================
   ▼ ボタン本体
========================================================= */

.service-item {
  position: relative;

  display: flex;
  align-items: center;
  gap: 18px;

  padding: 22px 24px;
  border-radius: 16px;

  background: linear-gradient(
    180deg,
    #90caf9 0%,
    #64b5f6 100%
  );

  cursor: pointer;

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);

  transition: all 0.25s ease;
}

/* hover */
.service-item:hover {
  transform: translateY(-4px);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* active */
.service-item:active {
  transform: translateY(1px);
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.18);
}

/* =========================================================
   アイコン
========================================================= */

.service-icon {
  width: 64px;
  height: 64px;
  background: #ffffff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.service-icon svg {
  width: 30px;
  height: 30px;
  stroke: #1976d2;
  stroke-width: 2;
  fill: none;
}

/* =========================================================
   タイトル
========================================================= */

.service-title {
  font-size: clamp(18px, 4.5vw, 24px);
  font-weight: 800;
  color: #0d1b2a;
  flex-grow: 1;
}

/* =========================================================
   右側の矢印（ボタン感UP）
========================================================= */

.service-item::after {
  content: "›";
  font-size: 30px;
  font-weight: 900;
  color: #0d1b2a;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.service-item:hover::after {
  transform: translateX(6px);
}

/* =========================================================
   スマホ最適化
========================================================= */

@media (max-width: 480px) {

  .service-item {
    padding: 20px;
  }

  .service-icon {
    width: 56px;
    height: 56px;
  }

  .service-title {
    font-size: 18px;
  }
}


/* ===============================
   Tablet (768px〜)
================================ */
@media screen and (min-width: 768px) {

  /* レイアウト幅を中央寄せ */
  .design-inner,
  .service-container,
  .svc-detail__inner,
  .pricing-card,
  .faq-card {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  /* サービス一覧を横並びに */
  .services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Heroテキスト少し拡大 */
  .hero__catch {
    font-size: 1.8rem;
  }

  .hero__sub {
    font-size: 1.1rem;
  }

  /* 料金カード余白強化 */
  .pricing-card {
    padding: 40px;
  }

  /* FAQ横幅改善 */
  .faq-list {
    padding: 0 20px;
  }
}


/* ===============================
   PC (1024px〜)
================================ */
@media screen and (min-width: 1024px) {

  /* 全体最大幅 */
  body {
    font-size: 16px;
  }

  .design-inner,
  .service-container,
  .svc-detail__inner,
  .pricing-card,
  .faq-card {
    max-width: 1100px;
  }

  /* サービスを3列表示 */
  .services {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  /* サービスカードに少し浮き感 */
  .service-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .service-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

  /* 相談の流れ 横並び */
  .flow-detail__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .flow-detail__arrow {
    display: none; /* PCでは矢印を消してスッキリ */
  }

  /* FAQゆとり */
  .faq-item {
    padding: 24px 32px;
  }

  /* 料金表示拡大 */
  .pricing-card__price .num {
    font-size: 3rem;
  }
}

/* =========================================
   PC専用レイアウト（marugame風）
========================================= */
@media screen and (min-width: 1024px) {

  /* ページ全体背景 */
  body {
    background-color: #eaf4ff; /* 薄いブルー */
  }

  /* メインコンテンツを中央に細く配置 */
  .design-inner,
  .service-container,
  .svc-detail__inner,
  .pricing-card,
  .faq-card,
  .hero,
  .section,
  .flow-detail {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  /* 全体を白いキャンバスにする */
  .design-inner,
  .service-container,
  .svc-detail__inner,
  .pricing-card,
  .faq-card,
  .flow-detail,
  .section {
    background: #ffffff;
    padding: 60px 60px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  }

  /* Heroだけ少し特別扱い */
  .hero {
    max-width: 720px;
    margin: 0 auto;
    background: #ffffff;
    padding: 80px 60px;
  }

  /* セクション間の余白を詰めて縦を短く */
  section {
    margin-bottom: 40px;
  }

  /* サービスはPCでも1カラム維持（縦に流す） */
  .services {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* Flowも縦に揃える */
  .flow-detail__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

}
/* =========================================
   PC時：全体をheroと同じ幅に統一
========================================= */
@media screen and (min-width: 1024px) {

  /* ページ背景（任意：薄いブルー） */
  body {
    background-color: #eaf4ff;
  }

  /* すべての主要セクションを720pxに統一 */
  header,
  main,
  footer,
  section,
  .service-container,
  .design-inner,
  .pricing-section,
  .faq-section,
  .cta-section {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

}
.svc-detail__inner{
  width: 100%;
  padding: 0;
}

/* =========================================
   PC時 モーダルの位置ずれ修正
========================================= */
@media screen and (min-width: 1024px) {

  /* モーダルはページ幅制限の影響を受けないようにする */
  .modal {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
  }

  /* モーダル内部は中央固定 */
  .modal__panel {
    max-width: 600px;
    width: 90%;
    margin: auto;
  }

}


/* =========================================
   Hero 文字の可読性アップ
========================================= */

/* 背景に暗めオーバーレイ追加 */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.35)
  );
  z-index: 1;
}

/* 文字レイヤーを前面へ */
.hero__copy {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* キャッチ文字 強めシャドウ */
.hero__catch,p.hero__sub{
text-shadow: 0 3px 11px rgb(241 212 212);
}
