    :root {
      --bg: #eef1f6;
      --surface: #ffffff;
      --surface-soft: #f7f9fd;
      --text: #111111;
      --muted: #5e6472;
      --line: #d9deea;
      --accent: #3d82ff;
      --accent-dark: #2f66cc;
      --content-width: 1200px;
      --narrow-width: 960px;
      --page-gutter: clamp(16px, 4vw, 32px);
      --radius: 18px;
      --shadow: 0 16px 36px rgba(20, 28, 50, 0.08);
    }

    *, *::before, *::after { box-sizing: border-box; }
    html, body { margin: 0; padding: 0; }
    body {
      font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
      color: var(--text);
      background: #fff;
      line-height: 1.6;
    }
    img { display: block; max-width: 100%; }
    a {
      color: inherit;
      text-decoration: none;
    }
    
    
    .center {
	    text-align: center;
    }
    
    .float-center {
	    text-align: center;
	    margin: auto;
    }
    
    .font-middle {
	    font-size: 1.3rem;
	    line-height: 180%;
    }
    
    .space {
	    width: 100%;
	    height: 20px;
    }
    
    h2 {
	    text-align: center;
    }
    
    .marker-yellow {
	    background:linear-gradient(transparent 60%, #ff6 60%);
	    font-weight: bold;
    }

    .container {
      width: min(var(--content-width), calc(100% - (var(--page-gutter) * 2)));
      margin: 0 auto;
    }
    
    .pain,
    .feature {
      width: min(var(--content-width), calc(100% - (var(--page-gutter) * 2)));
      margin: 0 auto 50px;
    }

    .pain > .container,
    .feature > .container,
    .plan > .container,
    .owner > .container,
    .case > .container,
    .pr > .container,
    .voice > .container {
      width: 100%;
    }

    
    
/* header */

.sp-header,
.overlay,
.sp-plan {
	display: none;
}

header {
	padding: 10px 10px;
	width: 100%;
	overflow: hidden; 
}

.logo {
	float: left;
}
.tel {
    float: right;
	text-align: center;
	width: 239px;
	font-family :
	MyYuGothicM, /* Windows調整用 */
	YuGothic,    /* Mac用 */
	sans-serif;
	font-size: 16px;
	padding-top: 4px;
}


@media all and (-ms-high-contrast: none){
  .menu > ul > li:last-child {
    margin-top: 0px !important; /* IE10以上 */
}

}

.fixbar {
  width: 100%;
}

@media (min-width: 960px) {
  .fixbar {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .fixbar .header {
    box-shadow: 0 10px 28px rgba(3, 10, 24, 0.14);
  }
}

.fixed .fixbar {
  position: fixed;
  margin: 0 auto !important;

  }
.header.fixed  {
	  top: 0px;
	  position: fixed;
	  z-index: 99999999;
	  width: 100%;
	  background-color: #fff;
  }


.mini-top {
		line-height: 100%;
		display: block;
		margin: 0 0 0 57px;
		font-size: 12px;
	}
	a .mini-top {
		color: #000;
	}
	.tel {
		line-height: 130%;
	}

    .cta-mini {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 168px;
      height: 46px;
      border-radius: 999px;
      background: var(--accent);
      color: #fff;
      font-weight: 700;
      text-decoration: none;
      box-shadow: 0 8px 18px rgba(61, 130, 255, 0.28);
      transition: transform 0.2s ease, background-color 0.2s ease;
    }

    .cta-mini:hover {
      transform: translateY(-1px);
      background: var(--accent-dark);
    }

    .hero {
      padding: 0px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 45% 55%;
      background: #e9edf3;
      border: 1px solid var(--line);
      border-radius: 0;
      overflow: hidden;
    }

    .hero-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-media {
      margin: 0;
    }

    .hero-copy {
      padding: clamp(20px, 3vw, 38px) clamp(18px, 3vw, 44px);
      text-align: center;
      display: grid;
      align-content: center;
    }

    .hero h1 {
      margin: 0;
      font-size: clamp(2rem, 3vw, 4.1rem);
      line-height: 120%;
      letter-spacing: 0.01em;
      font-weight: 900;
    }

    .hero h1 .accent { color: var(--accent); }

    .hero p {
      width: min(920px, 100%);
      margin: 16px auto 0;
      color: #2f3750;
      font-size: clamp(1rem, 1.5vw, 1.9rem);
      line-height: 1.65;
    }

    .hero-cta {
      margin-top: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 62px;
      min-width: 320px;
      padding: 0 30px;
      border-radius: 999px;
      background: var(--accent);
      color: #fff;
      text-decoration: none;
      font-size: 1.25rem;
      font-weight: 800;
      box-shadow: 0 16px 30px rgba(61, 130, 255, 0.3);
      transition: transform 0.2s ease, background-color 0.2s ease;
    }

    .hero-cta:hover {
      transform: translateY(-2px);
      background: var(--accent-dark);
    }

    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
    }
    
      .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }
    
    .grid-3 h3 {
	    text-align: center;
    }

    section { 
	    padding: 28px 0; 
	    margin-bottom: 50px;
	    }

    .section-head {
      margin-bottom: 18px;
    }

    .section-head h2 {
      margin: 0;
      font-size: clamp(1.7rem, 2.5vw, 2.5rem);
      line-height: 150%;
      letter-spacing: 0.01em;
    }

    .section-head p {
      margin: 8px 0 0;
      color: var(--muted);
    }

    .card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow);
    }

    .pain .card h3,
    .feature .card h3 {
      margin: 0 0 10px;
      font-size: 1.2rem;
    }

    .pain .card p,
    .feature .card p {
      margin: 0;
      color: #424a60;
    }

    .industry-card {
      padding: 22px;
    }

    .industry-head {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-bottom: 16px;
      min-height: 96px;
    }

    .industry-avatar {
      width: 92px;
      height: 92px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      background: #fff;
      border: 1px solid rgba(61, 130, 255, 0.14);
      box-shadow: 0 12px 24px rgba(20, 28, 50, 0.08);
    }

    .industry-copy {
      min-width: 0;
    }

    .feature .industry-card h3 {
      margin: 0;
      color: #1b2338;
      font-size: clamp(1.2rem, 1vw, 1.3rem);
      line-height: 1.35;
    }

    .industry-meta {
      margin-top: 6px;
      color: #65708b;
      font-size: 1rem;
      font-weight: 800;
      letter-spacing: 0.03em;
    }

    .feature .industry-card > p {
      line-height: 1.8;
    }

    .kpi {
      margin-top: 12px;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .kpi-item {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 18px;
      text-align: center;
    }

    .kpi-item strong {
      display: block;
      font-size: clamp(1.4rem, 2.6vw, 2rem);
      color: var(--accent);
      line-height: 1.1;
      margin-bottom: 6px;
    }

    .kpi-item span {
      font-size: 1rem;
    font-weight: bold;
    color: #505975;
    line-height: 200%;
    }
    
    /* おすすめのプラン recommen */
    
    .plan-highlight {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0; /* 仕切り線で区切るので gap は 0 */
  padding: 24px 32px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  max-width: 960px;
  margin: 0 auto 40px;
}

.plan-highlight__item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.plan-highlight__item span {
	  font-size: 18px;
}
.plan-highlight__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
}

.plan-highlight__value {
  font-size: 28px;
  font-weight: 700;
  color: #1f2933;
  line-height: 1.1;
}

.plan-highlight__value--main {
  font-size: 36px;
}


.plan-highlight__sub {
  margin-top: 6px;
  font-size: 13px;
  color: #666;
}

/* 縦の仕切り線 */
.plan-highlight__divider {
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0),
    rgba(0,0,0,0.12),
    rgba(0,0,0,0)
  );
}

.plan-includes {
  margin: 24px auto 0;
  padding: 0;
}

.plan-includes__lead {
	text-align: center;
  margin: 0 0 14px;
  color: #25304a;
  font-size: 1rem;
  line-height: 1.8;
}

.plan-includes__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-includes__list li {
  position: relative;
  padding: 10px 12px 10px 30px;
  
  color: #374258;
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.6;
}

.plan-includes__list li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 12px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  box-shadow: none;
}
    
    
    /* plan */

    .plan {
      width: min(var(--content-width), calc(100% - (var(--page-gutter) * 2)));
      margin: 0 auto;
      padding: 24px 0 32px;
    }

    .plan .section-head {
      text-align: center;
      margin-bottom: 22px;
    }


    .plan-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 14px;
      align-items: start;
    }

    .plan-card {
      background: #ffffff;
      border: 1px solid #dde3ee;
      border-radius: 10px;
      padding: 14px;
      box-shadow: 0 14px 28px rgba(20, 28, 50, 0.06);
    }

    .plan-card.is-featured {
      border: 2px solid var(--accent);
      box-shadow: 0 18px 34px rgba(61, 130, 255, 0.14);
    }

    .plan-ribbon {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 10px 12px;
      border-radius: 10px;
      background: linear-gradient(180deg, #385476 0%, #233952 100%);
      color: #ffffff;
      font-size: 1rem;
      font-weight: 900;
      line-height: 1.2;
      text-align: center;
    }

    .plan-card.is-premium .plan-ribbon {
      background: linear-gradient(180deg, #aaa632 0%, #8d8627 100%);
    }

    .plan-price {
      margin: 16px 0 0;
      text-align: center;
      color: #545d71;
      font-size: 1rem;
      font-weight: 700;
      line-height: 1.3;
    }

    .plan-price strong {
      margin-left: 4px;
      color: #333847;
      font-size: clamp(1.8rem, 2.2vw, 2.15rem);
      font-weight: 900;
    }

    .plan-price span {
      margin-left: 2px;
      color: #545d71;
      font-size: 0.95rem;
      font-weight: 700;
    }

    .plan-note {
      min-height: 4.7em;
      margin: 12px 0 0px;
      color: #4a5164;
      font-size: 0.94rem;
      font-weight: 700;
      line-height: 1.55;
      text-align: center;
    }

    .plan-actions {
      display: grid;
      gap: 12px;
    }

    .plan-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      min-height: 50px;
      padding: 0 16px;
      border-radius: 10px;
      font-size: 1rem;
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: 0.02em;
      text-decoration: none;
      cursor: pointer;
      transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
      -webkit-tap-highlight-color: transparent;
    }

    .plan-link-secondary {
      border: 2px solid #4b7759;
      color: #2f6140;
      background: #f9fcfa;
      box-shadow: inset 0 -1px 0 rgba(47, 97, 64, 0.08);
    }

    .plan-link-primary {
      background: #2e5f39;
      color: #ffffff;
      box-shadow: 0 10px 18px rgba(46, 95, 57, 0.22);
    }

    .plan-link:hover {
      transform: translateY(-1px);
    }

    .plan-link-secondary:hover {
      border-color: #2f6140;
      background: #f3faf5;
    }

    .plan-link-primary:hover {
      background: #244d2d;
      box-shadow: 0 12px 20px rgba(36, 77, 45, 0.26);
    }

    .plan-link:active {
      transform: translateY(0);
    }

    .plan-specs {
      margin: 20px 0 0;
      padding: 14px 0 0;
      list-style: none;
      border-top: 1px solid #e5e9f0;
    }

    .plan-specs li {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 10px;
      align-items: center;
      padding: 9px 0;
      border-bottom: 1px solid #eef1f5;
      color: #31384a;
      font-size: 0.9rem;
      line-height: 1.45;
    }

    .plan-specs li:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }

    .plan-specs strong {
      font-weight: 900;
      color: #222b3e;
      white-space: nowrap;
    }

    .plan-mark {
      color: #3c4354;
      font-size: 1rem;
      font-weight: 900;
      line-height: 1;
      white-space: nowrap;
    }

    .plan-mark.is-limited {
      color: #6c7280;
    }

    .owner {
      padding: 16px 0 20px;
      width: min(var(--content-width), calc(100% - (var(--page-gutter) * 2)));
      margin: 0 auto;
    }

    .owner-box {
      padding: clamp(20px, 3vw, 32px);
      display: grid;
      grid-template-columns: 350px minmax(0, 1fr);
      gap: clamp(18px, 2.8vw, 34px);
      align-items: center;
      max-width: 1100px;
      margin: 0 auto;
      justify-content: center;
    }
    
    .owner-box-two {
      padding: clamp(20px, 3vw, 32px);
      display: grid;
      grid-template-columns: 350px minmax(0, 1fr);
      gap: clamp(18px, 2.8vw, 34px);
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      justify-content: center;
    }

    .owner-media {
      margin: 0;
      justify-self: center;
    }

    .owner-media img {
      width: min(350px, 100%);
      height: auto;
    }

    .owner-copy h2 {
      margin: 0 0 14px;
      font-size: clamp(1.45rem, 3vw, 2.4rem);
      line-height: 1.35;
      letter-spacing: 0.01em;
      font-weight: 900;
    }

    .owner-copy h2 .blue {
      color: var(--accent);
    }

    .owner-copy h2 .orange {
      color: #f07a00;
    }

    .owner-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 12px;
    }

    .owner-list li {
      position: relative;
      padding-left: 28px;
      color: #1a2134;
      font-size: clamp(1.05rem, 1.9vw, 1.25rem);
      line-height: 1.85;
    }
    
    .owner-box-two li {
	    font-size: 1.2rem;
    }

    .owner-list li::before {
      content: "";
      position: absolute;
      top: 0.82em;
      left: 0;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #333;
      transform: translateY(-50%);
    }

    .owner-accent {
      display: inline;
      padding: 0 0.14em 0.06em;
      margin: 0 -0.05em;
      background: linear-gradient(transparent 64%, rgba(255, 224, 116, 0.95) 64%);
      -webkit-box-decoration-break: clone;
      box-decoration-break: clone;
      font-weight: 800;
    }

    .owner-list li:nth-child(even) .owner-accent {
      background: linear-gradient(transparent 64%, rgba(194, 223, 255, 0.95) 64%);
    }

    .voice {
      width: min(var(--content-width), calc(100% - (var(--page-gutter) * 2)));
      margin: 0 auto;
      padding: 20px 0 70px;
    }

    .voice .section-head {
      text-align: center;
      margin-bottom: 24px;
    }

    .voice .section-head p {
      width: min(680px, 100%);
      margin: 10px auto 0;
    }

    .voice-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }

    .voice-card {
      position: relative;
      background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
      border: 1px solid rgba(61, 130, 255, 0.12);
      border-radius: 24px;
      padding: 24px;
      box-shadow: 0 18px 38px rgba(20, 28, 50, 0.08);
      overflow: hidden;
    }


    .voice-head {
      display: flex;
      align-items: center;
      gap: 16px;
      min-height: 92px;
    }

    .voice-avatar {
      width: 84px;
      height: 84px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      background: #ffffff;
      border: 1px solid rgba(61, 130, 255, 0.14);
      box-shadow: 0 12px 24px rgba(20, 28, 50, 0.08);
    }

    .voice-profile {
      min-width: 0;
    }

    .voice-role,
    .voice-meta {
      margin: 0;
    }

    .voice-role {
      color: #1a2134;
      font-size: 1.1rem;
      font-weight: 800;
      line-height: 1.4;
    }

    .voice-meta {
      margin-top: 4px;
      color: #5f6881;
      font-size: 0.95rem;
      font-weight: 700;
    }

    .voice-text {
      margin: 18px 0 0;
      color: #3f4963;
      font-size: 1rem;
      line-height: 1.9;
    }

    .case {
      width: min(var(--content-width), calc(100% - (var(--page-gutter) * 2)));
      margin: 0 auto;
      padding: 18px 0 36px;
    }

    .case .section-head {
      text-align: center;
      margin-bottom: 28px;
    }

    .case-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 26px 22px;
    }

    .case-grid > a {
      display: block;
      color: inherit;
      text-decoration: none;
      transition: transform 0.24s ease;
    }

    .case-grid > a:focus-visible {
      outline: 3px solid rgba(61, 130, 255, 0.4);
      outline-offset: 6px;
      border-radius: 24px;
    }

    .case-card {
      display: grid;
      grid-template-columns: 112px minmax(0, 1fr);
      gap: 18px;
      align-items: center;
    }

    .case-avatar {
      width: 112px;
      height: 112px;
      border-radius: 50%;
      object-fit: cover;
      background: #ffffff;
      border:1px solid rgba(61, 130, 255, 0.14);
      box-shadow: 0 12px 28px rgba(20, 28, 50, 0.1);
      transition: box-shadow 0.24s ease;
    }

    .case-bubble {
      position: relative;
      min-height: 126px;
      padding: 26px 28px;
      background: #fff;
      border-radius: 22px;
      box-shadow: 0 14px 34px rgba(20, 28, 50, 0.05);
      transition: background-color 0.24s ease, box-shadow 0.24s ease;
    }

    .case-bubble::before {
      content: "";
      position: absolute;
      top: 50%;
      left: -16px;
      width: 30px;
      height: 30px;
      background: #fff;
      clip-path: polygon(100% 0, 0 50%, 100% 100%);
      transform: translateY(-50%);
      transition: background-color 0.24s ease;
    }

    .case-grid > a:hover,
    .case-grid > a:focus-visible {
      transform: translateY(-6px);
    }

    .case-grid > a:hover .case-bubble,
    .case-grid > a:focus-visible .case-bubble {
      background: #f7fbff;
      box-shadow: 0 22px 42px rgba(20, 28, 50, 0.11);
    }

    .case-grid > a:hover .case-bubble::before,
    .case-grid > a:focus-visible .case-bubble::before {
      background: #f7fbff;
    }

    .case-grid > a:hover .case-avatar,
    .case-grid > a:focus-visible .case-avatar {
      box-shadow: 0 18px 34px rgba(20, 28, 50, 0.16);
    }

    .case-bubble h3 {
      margin: 0 0 12px;
      color: #1f2433;
      font-size: clamp(1.2rem, 1.3vw, 1.55rem);
      line-height: 1.45;
      font-weight: 500;
    }

    .case-bubble p {
      margin: 0;
      color: #2f3546;
      font-size: .9rem;
      line-height: 1.85;
    }

    .pr {
      width: calc(100% - (var(--page-gutter) * 2));
      max-width: var(--content-width);
      margin: 0 auto;
      padding: clamp(40px, 7vw, 72px) 0;
      background: #efefef;
    }

    .pr-inner {
      width: min(1200px, 100%);
      margin: 0 auto;
    }

    .pr-copy {
      text-align: center;
    }

    .pr-lead {
      margin: 0;
      color: #111111;
      font-size: clamp(1.9rem, 4vw, 2.5rem);
      font-weight: 900;
      line-height: 1.4;
    }

    .pr-title {
      margin: 20px auto 0;
      color: #1b1b1b;
      font-size: clamp(1.9rem, 3.9vw, 2.5rem);
      font-weight: 500;
      line-height: 1.65;
      letter-spacing: 0.01em;
    }

    .pr-emphasis {
      display: inline-block;
      padding: 0 0.06em 0.16em;
      border-bottom: 3px solid #1b1b1b;
      color: #111111;
      font-weight: 900;
      line-height: 1.05;
    }

    .pr-stats {
      width: min(760px, 100%);
      margin: clamp(46px, 7vw, 58px) auto 0;
      display: grid;
      grid-template-columns: repeat(2, minmax(240px, 320px));
      justify-content: center;
      gap: 28px;
      align-items: end;
    }

    .pr-stat {
      text-align: center;
    }

    .pr-label {
      margin: 0;
      color: #202020;
      font-size: clamp(1.35rem, 1.4vw, 1.2rem);
      font-weight: 500;
      line-height: 1.5;
    }

    .pr-value {
      margin: 18px 0 0;
      color: #111111;
      font-weight: 900;
      line-height: 1;
      white-space: nowrap;
    }

    .pr-value strong {
      font-size: clamp(3.6rem, 5vw, 3.4rem);
      font-weight: 900;
      letter-spacing: 0.01em;
    }

    .pr-value span {
      margin-left: 12px;
      font-size: clamp(1.4rem, 3vw, 1.1rem);
      font-weight: 500;
    }

    .faq {
      background:
        radial-gradient(circle at top left, rgba(61, 130, 255, 0.1), transparent 34%),
        linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
    }

    .faq .container {
      width: min(var(--narrow-width), calc(100% - (var(--page-gutter) * 2)));
      margin: 0 auto;
    }

    .faq .section-head {
      text-align: center;
      margin-bottom: 24px;
    }

    .faq .section-head p {
      width: min(640px, 100%);
      margin: 10px auto 0;
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq details {
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(61, 130, 255, 0.14);
      border-radius: 22px;
      box-shadow: 0 16px 34px rgba(20, 28, 50, 0.08);
      overflow: hidden;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .faq details[open] {
      transform: translateY(-2px);
      border-color: rgba(61, 130, 255, 0.32);
      box-shadow: 0 20px 40px rgba(32, 61, 122, 0.12);
    }

    .faq details + details { margin-top: 0; }

    .faq summary {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 16px;
      padding: 20px 22px;
      cursor: pointer;
      list-style: none;
      font-weight: 800;
      font-size: 1.05rem;
      color: #1b2438;
    }

    .faq summary::-webkit-details-marker { display: none; }

    .faq summary::after {
      content: "+";
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: #edf4ff;
      color: var(--accent-dark);
      font-size: 1.5rem;
      font-weight: 400;
      line-height: 1;
      transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    }

    .faq details[open] summary::after {
      content: "-";
      background: var(--accent);
      color: #ffffff;
      transform: rotate(180deg);
    }

    .faq-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: linear-gradient(135deg, #3d82ff, #69a8ff);
      color: #ffffff;
      font-weight: 900;
      letter-spacing: 0.02em;
      box-shadow: 0 10px 18px rgba(61, 130, 255, 0.24);
      flex-shrink: 0;
    }

    .faq-badge-answer {
      background: #eaf1ff;
      color: var(--accent-dark);
      box-shadow: none;
    }

    .faq-question {
      line-height: 1.5;
    }

    .faq-answer {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 16px;
      padding: 0 22px 22px;
      align-items: start;
      color: #4a546d;
    }

    .faq p {
      margin: 0;
      line-height: 1.8;
    }

    .last-cta {
      margin: 30px 0 64px;
      background: linear-gradient(120deg, #3d82ff, #5a9cff);
      color: #fff;
      border-radius: 22px;
      padding: 32px 24px;
      text-align: center;
      box-shadow: 0 18px 36px rgba(53, 110, 225, 0.32);
    }

    .last-cta h2 {
      margin: 0;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
    }

    .last-cta p {
      margin: 10px auto 0;
      width: min(840px, 100%);
      opacity: 0.96;
    }

    .last-cta a {
      margin-top: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 260px;
      height: 52px;
      background: #fff;
      color: #2258b8;
      border-radius: 999px;
      font-weight: 800;
      text-decoration: none;
    }
    
    
      .industry-links {
		  padding: 10px 0 0;
	  }

	  .tag-list {
		  display: flex;
		  flex-wrap: wrap;
		  justify-content: center;
		  gap: 12px;
		  margin: 0 auto;
		  padding: 0;
		  list-style: none;
		  max-width: 1000px;
	  }

	  .tag-list li {
		  max-width: 100%;
	  }

	  .tag {
		  display: inline-flex;
		  align-items: center;
		  justify-content: center;
		  min-height: 44px;
		  max-width: 100%;
		  padding: 10px 20px;
		  border-radius: 999px;
		  background: #888;
		  box-sizing: border-box;
		  color: #fff;
		  text-decoration: none;
		  text-align: center;
		  font-size: 0.9rem;
		  font-weight: 600;
		  line-height: 1.5;
		  white-space: normal;
		  transition: background-color 0.2s ease, transform 0.2s ease;
	  }

	  .tag:hover,
	  .tag:focus-visible {
		  background: #3d82ff;
		  transform: translateY(-1px);
	  }

	  .tag.is-current {
		  background: #3d82ff;
	  }


    .footer {
      border-top: 1px solid var(--line);
      color: #6d748a;
      text-align: center;
      padding: 20px 0 32px;
      font-size: 0.9rem;
    }

    .reveal {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }

    .reveal.is-show {
      opacity: 1;
      transform: translateY(0);
    }
    
    
    
/* ////////////// footer */



.content-wrap {
width: 1000px;
margin: 0px auto;
padding: 0px;
}


#footer {
width: 100%;
position:relative;
background: -webkit-linear-gradient(#030512 0%, #112b4c 100%);
background: -moz-linear-gradient(#030512 0%, #112b4c 100%);
background: -ms-linear-gradient(#030512 0%, #112b4c 100%);
padding: 20px 0 0px;
overflow: hidden;
line-height: 20px
}

#footer a:link,
#footer a:visited {
color: #fff;
}

#footer a:hover,
#footer a:active {
color: #fff;
text-decoration: none;
}

/* footer */

.foot-content {
	width: min(90%, 1180px);
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
}

.footcon {
	flex: 1 1 220px;
	width: auto;
    margin: 0;
}

.footcon h5 {
	color: #f2f2f2;
	font-size: 15px;
	margin-bottom: 10px;
	padding-bottom: 10px;
	letter-spacing: .1rem;
	font-weight: bold;
	border-bottom: 1px solid #ddd;
}

.footcon ul {
	margin-bottom: 30px;
}


.footcon li a {
	color: #DDD !important;
	font-size: 13px;
	line-height: 190%;
}



/* ////////////// copyright */

#copyright {
overflow: hidden;
width: 100%;
background-color: #000;
margin: auto;
padding: 15px 0 ;
}


.copyright {
color: #fff;
margin: 0 auto;
text-align: center;
width: min(1000px, calc(100% - 32px));
font-size: 16px;
line-height: 250%;
}

.copy-body,
.copy-link {
	display: initial;
}

.copyright a {
	padding: 20px;
	color: #fff;
}



 .copy {
font-size: 11px;
margin: 0;
padding: 0;
text-align: center;
color: #fff;
}

.warning-bottom {
font-size: 9px;
display:inline-block;
text-align: center;
width: 100%;
color: #fff;
padding-bottom: 20px;
}

#copyright .by {
color: #fff;
text-align: center;
font-size: 8px;
}

.row-fluid {
width: 100%;
}
.row-fluid [class*="span"]:first-child {
margin-left: 0px;
}

.row-fluid [class*="span"] {
display: block;
float: left;
width: 100%;
min-height: 30px;
margin-left: 2.12766%;
box-sizing: border-box;
}
.row-fluid .span4 {
width: 31.9149%;
}
.row-fluid .span2 {
width: 14.8936%;
}

/* arrow */

#topcontrol {
	position: fixed;
    bottom: 5px;
    right: 100px;
    opacity: 1;
    cursor: pointer;
	right: 20px !important;
	bottom: 20px !important;
}

.sp-footer {
	display: none;
}

/* bottom contact */

.bottom-contact {
	width: 100%;
	background-size:cover;
	background-image: url(/images/bottom-bg.webp);
}

.bottom-cover {
background-color: rgba(0,0,0,0.4);
overflow: hidden;
padding: 50px 0;
}

.bottom-contact h3 {
	text-align: center;
	font-size: 18px;
	color: #fff;
}

.bottom-contact p {
	text-align: center;
	color: #fff;
}


    @media (max-width: 980px) {
      header {
        padding: 12px 16px;
      }
      .logo,
      .tel {
        float: none;
        width: 100%;
        text-align: center;
      }
      .mini-top {
        margin: 0 0 8px;
        font-size: 11px;
        text-align: center;
      }
      .logo img {
        width: min(220px, 72vw);
        margin: 0 auto;
      }
      .tel {
        padding-top: 10px;
        font-size: 14px;
        line-height: 1.6;
      }
      .tel img {
        width: min(240px, 100%);
        margin: 6px auto 0;
      }
      .fixbar {
        margin-top: 10px;
      }
      .nav { display: none; }
      .hero-grid { grid-template-columns: 1fr; }
      .hero-media { max-height: 340px; }
      .plan-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .owner-box,
      .owner-box-two { grid-template-columns: 1fr; }
      .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .grid-2 { grid-template-columns: 1fr; }
      .voice-grid { grid-template-columns: 1fr; }
      .case-grid { grid-template-columns: 1fr; }
      .hero-cta { min-width: 0; width: 100%; }
      .cta-mini { min-width: 0; padding: 0 14px; }
      .foot-content {
        width: calc(100% - 32px);
      }
      .footcon {
        flex-basis: calc(50% - 10px);
      }
      .sp-footer {
        display: block;
        width: calc(100% - 24px);
        margin: 18px auto 0;
        padding-top: 18px;
        border-top: 1px solid rgba(255,255,255,0.14);
      }
      .sp-footer ul {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
      }
      .sp-footer li a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 92px;
        padding: 12px 8px;
        border-radius: 16px;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.1);
        color: #fff !important;
        text-align: center;
        line-height: 1.5;
      }
      .sp-footer li a i {
        margin-bottom: 6px;
        font-size: 20px;
      }
      .sp-footer p img {
        margin: 0 auto 14px;
      }
    }

    @media (max-width: 820px) {
      .plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .plan-includes__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .pr-stats {
        width: min(420px, 100%);
        grid-template-columns: 1fr;
        gap: 34px;
      }
      .footcon { flex-basis: calc(50% - 10px); }
      
       .tag-list {
	       width: 90%;
       }
    }

    @media (max-width: 640px) {
      .header-inner { height: 68px; }
      .brand { font-size: 1rem; }
      .hero-copy { text-align: left; }
      .hero h1 { font-size: clamp(1.8rem, 10vw, 1.35rem);
	      text-align: center;
	       }
      .hero p { font-size: 1rem; margin-top: 12px; 
		      text-align: center;
      }
      .plan-includes {
        padding: 0;
      }
      .plan-includes__lead {
        margin-bottom: 14px;
        font-size: 1rem;
        text-align: left;
      }
      .plan-includes__list {
        grid-template-columns: 1fr;
      }
      .plan-includes__list li {
        padding: 12px 14px 12px 34px;
        font-size: 0.94rem;
        line-height: 1.7;
      }
      .plan-includes__list li::before {
        top: 18px;
        left: 14px;
      }
      .font-middle {
    font-size: 1rem;
    }
    p.font-middle br {
	    display: none;
	    }
      .plan-grid { grid-template-columns: 1fr; gap: 16px; }
      .plan-card { padding: 16px; }
      .plan-note { min-height: 0; }
      .plan-link { min-height: 54px; }
      .pr {
        padding: 34px 0;
      }
      .pr-inner {
        width: 100%;
      }
      .pr-copy {
        padding: 0 6px;
      }
      .pr-lead {
        font-size: clamp(1.4rem, 7.2vw, 1.78rem);
        line-height: 1.55;
      }
      .pr-title {
        margin-top: 12px;
        font-size: clamp(1.42rem, 7vw, 1.82rem);
        line-height: 1.72;
      }
      .pr-emphasis {
        padding-bottom: 0.12em;
        border-bottom-width: 2px;
      }
      .pr-stats {
        width: min(320px, 100%);
        margin-top: 30px;
        gap: 22px;
      }
      .pr-stat {
        padding: 0 10px;
      }
      .pr-label {
        font-size: 1.04rem;
        line-height: 1.55;
      }
      .pr-value {
        margin-top: 12px;
        white-space: normal;
      }
      .pr-value strong {
        font-size: clamp(3rem, 15vw, 4rem);
      }
      .pr-value span {
        display: inline-block;
        margin-left: 6px;
        font-size: 1.18rem;
        line-height: 1.2;
      }
      .grid-3 { grid-template-columns: 1fr; }
      .kpi { grid-template-columns: 1fr 1fr; }
      .owner-box,
      .owner-box-two {
        padding: 12px 0;
        gap: 18px;
      }
      .case {
        padding: 12px 0 28px;
      }
      .case-grid {
        gap: 18px;
      }
      .case-card {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 12px;
        align-items: start;
      }
      .case-avatar {
        width: 82px;
        height: 82px;
        border-width: 4px;
      }
      .case-bubble {
        min-height: 0;
        padding: 18px 18px 18px 20px;
        border-radius: 18px;
      }
      .case-bubble::before {
        top: 28px;
        left: -11px;
        width: 20px;
        height: 20px;
        transform: none;
      }
      .case-bubble h3 {
        margin-bottom: 8px;
        font-size: 1.05rem;
      }
      .case-bubble p {
        font-size: 0.94rem;
        line-height: 1.75;
      }
      .voice-card { padding: 20px; }
      .voice-head { gap: 14px; min-height: 80px; }
      .voice-avatar {
        width: 72px;
        height: 72px;
        border-radius: 18px;
      }
      .industry-head {
        gap: 14px;
        min-height: 78px;
        margin-bottom: 14px;
      }
      .industry-avatar {
        width: 72px;
        height: 72px;
      }
      .feature .industry-card h3 {
        font-size: 1.18rem;
      }
      .industry-meta {
        font-size: 0.92rem;
      }
      .faq summary { gap: 12px; padding: 16px; font-size: 0.98rem; }
      .faq summary::after,
      .faq-badge {
        width: 32px;
        height: 32px;
      }
      .faq-answer { gap: 12px; padding: 0 16px 16px; }
      .card { padding: 18px; }
      section { padding: 22px 0; }
      .last-cta { margin-bottom: 48px; }
      .foot-content {
        width: calc(100% - 24px);
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 14px;
      }
      .footcon {
        width: auto;
        margin: 0;
      }
      .footcon h5 {
        margin-bottom: 8px;
        padding-bottom: 8px;
      }
      .footcon ul {
        margin-bottom: 20px;
      }
      .footcon li a {
        display: block;
        padding: 5px 0;
        font-size: 14px;
        line-height: 1.8;
      }
      .sp-footer {
        width: calc(100% - 16px);
      }
      .sp-footer ul {
        gap: 8px;
      }
      .sp-footer li a {
        min-height: 84px;
        padding: 10px 6px;
        font-size: 12px;
      }
      .sp-footer li a i {
        font-size: 18px;
      }
      .copyright {
        width: calc(100% - 24px);
        font-size: 14px;
        line-height: 1.9;
      }
      .copy-body,
      .copy-link {
        display: block;
      }
      .copyright a {
        padding: 0 10px;
      }
      .copy {
        width: calc(100% - 24px);
        margin: 0 auto;
        line-height: 1.8;
      }
    }
