:root {
  --blue: #0b4f9c;
  --blue-2: #1f6fc1;
  --blue-dark: #07366d;
  --blue-light: #eef6ff;
  --text: #183047;
  --muted: #5d7082;
  --line: #dce7f1;
  --white: #fff;
  --shadow: 0 18px 45px rgba(16, 61, 106, .12);
  --radius: 24px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.8;
}
a {
  color: inherit;
  text-decoration: none;
}
img, svg {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.narrow {
  max-width: 850px;
}
.center {
  text-align: center;
}
.section {
  padding: 104px 0;
}
.section-soft {
  background: #f6faff;
}
.section-blue {
  background: linear-gradient(135deg, #083d79 0%, #0b5aae 100%);
  color: #fff;
}
.section-label {
  margin: 0 0 14px;
  color: var(--blue-2);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
}
.section-blue .section-label, .light .section-label {
  color: #b9dcff;
}
h1, h2, h3, h4, p {
  margin-top: 0;
}
h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.35;
  letter-spacing: -.03em;
}
p {
  color: var(--muted);
}
.section-blue p {
  color: rgba(255, 255, 255, .82);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: -60px;
  z-index: 999;
  padding: 10px 16px;
  background: #000;
  color: #fff;
  border-radius: 8px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(220, 231, 241, .8);
}
.header-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  background: conic-gradient(from 0deg, var(--blue), #58a4e8, var(--blue));
  box-shadow: inset 0 0 0 9px #fff, 0 5px 16px rgba(15, 77, 149, .18);
}
.brand-core {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .8rem;
  font-weight: 800;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-text strong {
  font-size: 1.12rem;
  letter-spacing: .05em;
}
.brand-text small {
  margin-top: 5px;
  color: var(--blue);
  font-size: .67rem;
  letter-spacing: .22em;
}
.global-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .94rem;
  font-weight: 700;
}
.global-nav a {
  position: relative;
}
.global-nav a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width .25s ease;
}
.global-nav a:hover::after {
  width: 100%;
}
.nav-contact {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
}
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 10px;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 88px;
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 46px;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.hero-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--blue);
}
.hero h1 {
  margin: 0 0 26px;
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: 1.08;
  letter-spacing: -.055em;
  color: #17324b;
}
.hero h1 span {
  color: var(--blue);
}
.hero-lead {
  margin-bottom: 18px;
  color: #314b63;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 600;
  line-height: 1.9;
}
.hero-note {
  max-width: 670px;
  margin-bottom: 30px;
  font-size: .97rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 25px rgba(11, 79, 156, .24);
}
.button-secondary {
  border: 1px solid #b9cce0;
  background: #fff;
  color: var(--blue-dark);
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-badges span {
  padding: 7px 13px;
  border: 1px solid #d8e5f1;
  border-radius: 999px;
  background: #fff;
  color: #4d6780;
  font-size: .78rem;
  font-weight: 700;
}
.hero-visual {
  position: relative;
  filter: drop-shadow(0 25px 35px rgba(18, 70, 122, .14));
}
.hero-bg-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(48, 126, 207, .08);
}
.dot-a {
  width: 250px;
  height: 250px;
  right: -80px;
  top: 40px;
}
.dot-b {
  width: 150px;
  height: 150px;
  left: 42%;
  bottom: -50px;
}
.intro p:last-child {
  font-size: 1.03rem;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 44px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading > p {
  max-width: 400px;
  margin-bottom: 5px;
}
.service-groups {
  display: grid;
  gap: 30px;
}
.service-group {
  position: relative;
  padding: 42px;
  border: 1px solid #dfeaf5;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(24, 69, 111, .06);
}
.group-number {
  position: absolute;
  right: 28px;
  top: 18px;
  color: #eaf2fb;
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1;
}
.group-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}
.group-title .icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 800;
}
.group-title small {
  color: #7b8fa2;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
}
.group-title h3 {
  margin: 3px 0 0;
  font-size: 1.55rem;
}
.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-item {
  padding: 22px 18px;
  border-radius: 18px;
  background: #f7fbff;
}
.service-item h4 {
  margin-bottom: 10px;
  color: #173b5e;
  font-size: 1rem;
}
.service-item p {
  margin-bottom: 0;
  font-size: .88rem;
  line-height: 1.7;
}
.problems-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 72px;
  align-items: start;
}
.problem-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.problem-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 104px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(21, 64, 104, .05);
}
.problem-card span {
  flex: 0 0 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue-light);
  color: var(--blue);
  font-size: .75rem;
  font-weight: 800;
}
.problem-card p {
  margin: 0;
  color: #314b63;
  font-weight: 700;
  line-height: 1.55;
}
.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.strength-grid article {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
}
.strength-grid span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  font-weight: 800;
}
.strength-grid h3 {
  font-size: 1.35rem;
}
.strength-grid p {
  margin-bottom: 0;
}
.story-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 90px;
  align-items: center;
}
.story-mark {
  width: 320px;
  height: 320px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0 46%, #eef6ff 47% 100%);
  box-shadow: var(--shadow);
}
.story-mark > span {
  font-size: 5rem;
  font-weight: 800;
  color: var(--blue);
}
.dots-21 {
  position: absolute;
  inset: 0;
}
.dots-21 i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue-2);
  transform-origin: 0 0;
}
.story-emphasis {
  margin-top: 28px;
  padding: 20px 22px;
  border-left: 4px solid var(--blue);
  background: #f5f9ff;
  color: #294863;
}
.contact {
  padding-top: 60px;
}
.contact-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  padding: 54px 60px;
  border-radius: 30px;
  color: #fff;
  background: linear-gradient(135deg, #0a4b93, #1676c9);
  box-shadow: 0 24px 55px rgba(6, 65, 124, .24);
}
.contact-box .section-label {
  color: #b9dcff;
}
.contact-box h2 {
  margin-bottom: 14px;
}
.contact-box p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .86);
}
.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  gap: 12px;
}
.contact-actions small {
  grid-column: 1 / -1;
  text-align: center;
  color: rgba(255, 255, 255, .66);
}
.button-white {
  background: #fff;
  color: var(--blue);
}
.button-outline-white {
  border: 1px solid rgba(255, 255, 255, .7);
  color: #fff;
}
.site-footer {
  margin-top: 90px;
  padding: 54px 0 22px;
  background: #10283f;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.footer-brand {
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 800;
}
.footer-grid p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .68);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 28px;
  align-content: start;
}
.footer-links a {
  color: rgba(255, 255, 255, .8);
}
.copyright {
  padding-top: 20px;
  color: rgba(255, 255, 255, .46);
  font-size: .78rem;
}
.page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(11, 79, 156, .25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s;
}
.page-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
@media (max-width: 980px) {
  .global-nav {
    position: fixed;
    inset: 84px 20px auto;
    display: none;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .global-nav.is-open {
    display: flex;
  }
  .global-nav a {
    padding: 12px 8px;
  }
  .nav-contact {
    text-align: center;
  }
  .nav-toggle {
    display: block;
  }
  .hero-grid, .problems-grid, .story-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-kicker {
    justify-content: center;
  }
  .hero-actions, .hero-badges {
    justify-content: center;
  }
  .hero-visual {
    max-width: 720px;
    margin-inline: auto;
  }
  .service-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .problems-grid {
    gap: 40px;
  }
  .story-mark {
    margin-inline: auto;
  }
  .contact-box {
    grid-template-columns: 1fr;
  }
  .contact-actions {
    max-width: 520px;
  }
}
@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .section {
    padding: 76px 0;
  }
  .header-inner {
    height: 72px;
  }
  .global-nav {
    inset: 72px 14px auto;
  }
  .brand-mark {
    width: 42px;
    height: 42px;
  }
  .brand-text strong {
    font-size: 1rem;
  }
  .hero {
    padding: 52px 0 70px;
  }
  .hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.4rem);
  }
  .hero-lead br {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
  }
  .button {
    width: 100%;
  }
  .hero-badges {
    gap: 7px;
  }
  .hero-visual {
    margin-top: 12px;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p {
    margin-top: 14px;
  }
  .service-group {
    padding: 30px 20px;
  }
  .group-number {
    font-size: 3rem;
    right: 18px;
  }
  .service-list, .problem-cards, .strength-grid {
    grid-template-columns: 1fr;
  }
  .story-grid {
    gap: 44px;
  }
  .story-mark {
    width: 250px;
    height: 250px;
  }
  .story-mark > span {
    font-size: 4rem;
  }
  .contact-box {
    padding: 38px 24px;
  }
  .contact-actions {
    grid-template-columns: 1fr;
  }
  .contact-actions small {
    grid-column: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
  .pc-only {
    display: none;
  }
}
/* Ver.1.1: 正式ロゴ・トップイラスト調整 */
.brand {
  display: inline-flex;
  align-items: center;
}
.brand-logo {
  display: block;
  width: 190px;
  height: auto;
}
.hero h1 {
  font-size: clamp(2.7rem, 4.8vw, 4.7rem);
  line-height: 1.12;
  letter-spacing: -.045em;
}
.hero-visual {
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 50px rgba(18, 70, 122, .16);
  filter: none;
}
.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
@media (max-width: 700px) {
  .brand-logo {
    width: 155px;
  }
  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }
  .hero-visual {
    border-radius: 22px;
  }
}
/* Ver.1.2: トップ画面のバランス改善 */
.header-inner {
  height: 82px;
}
.brand-logo {
  width: auto;
  height: 62px;
  object-fit: contain;
}
.hero {
  padding: 48px 0 72px;
}
.hero-grid {
  grid-template-columns: 1fr 1fr;
  gap: 52px;
}
.hero-kicker {
  margin-bottom: 16px;
  font-size: 1rem;
}
.hero h1 {
  font-size: clamp(2.55rem, 4.15vw, 4.15rem);
  line-height: 1.13;
  margin-bottom: 22px;
}
.hero-lead {
  font-size: clamp(1.02rem, 1.45vw, 1.25rem);
  line-height: 1.85;
}
.hero-visual img {
  aspect-ratio: 3 / 2;
}
.quick-services {
  position: relative;
  z-index: 2;
  margin-top: -28px;
}
.quick-services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 36px rgba(16, 61, 106, .10);
}
.quick-services-grid a {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px 10px;
  border-right: 1px solid var(--line);
  transition: background .2s ease, transform .2s ease;
}
.quick-services-grid a:last-child {
  border-right: 0;
}
.quick-services-grid a:hover {
  background: #f4f9ff;
  transform: translateY(-2px);
}
.quick-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
}
.quick-services-grid strong {
  color: #294660;
  font-size: .86rem;
}
.cases {
  background: #fff;
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.case-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  box-shadow: 0 10px 24px rgba(20, 63, 104, .05);
}
.case-card > span {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: .75rem;
  font-weight: 800;
}
.case-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}
.case-card p {
  margin-bottom: 0;
  font-size: .92rem;
}
@media (max-width: 980px) {
  .brand-logo {
    height: 56px;
  }
  .quick-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .quick-services-grid a:nth-child(3) {
    border-right: 0;
  }
  .quick-services-grid a:nth-child(-n+3) {
    border-bottom: 1px solid var(--line);
  }
  .case-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .header-inner {
    height: 72px;
  }
  .brand-logo {
    width: auto;
    height: 48px;
  }
  .hero {
    padding: 38px 0 62px;
  }
  .hero h1 {
    font-size: clamp(2.2rem, 10.6vw, 3.25rem);
  }
  .quick-services {
    margin-top: -18px;
  }
  .quick-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quick-services-grid a {
    min-height: 100px;
  }
  .quick-services-grid a:nth-child(3) {
    border-right: 1px solid var(--line);
  }
  .quick-services-grid a:nth-child(even) {
    border-right: 0;
  }
  .quick-services-grid a:nth-child(-n+4) {
    border-bottom: 1px solid var(--line);
  }
}
/* Ver.1.3: 見出し・ロゴ表示のバランス調整 */
.brand-logo {
  width: 270px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}
/* 日本語見出しが不自然に2段・3段にならないサイズへ統一 */
h2 {
  font-size: clamp(1.75rem, 2.55vw, 2.55rem);
  line-height: 1.45;
  letter-spacing: -.025em;
}
.intro h2 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(1.8rem, 2.8vw, 2.65rem);
}
.problems-grid {
  grid-template-columns: .9fr 1.1fr;
  gap: 58px;
}
.problems-grid > div:first-child h2 {
  max-width: 430px;
  font-size: clamp(1.85rem, 2.75vw, 2.7rem);
  line-height: 1.5;
}
.story-grid {
  grid-template-columns: 300px 1fr;
  gap: 64px;
}
.story-mark {
  width: 280px;
  height: 280px;
}
.story-mark > span {
  font-size: 4.4rem;
}
.story-grid h2 {
  max-width: 760px;
  font-size: clamp(1.8rem, 2.65vw, 2.65rem);
  line-height: 1.5;
}
.section-heading h2, .contact-box h2, .strengths h2 {
  font-size: clamp(1.75rem, 2.45vw, 2.45rem);
}
@media (max-width: 900px) {
  .brand-logo {
    width: 225px;
    max-height: 50px;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .story-mark {
    width: 240px;
    height: 240px;
  }
}
@media (max-width: 640px) {
  h2, .intro h2, .problems-grid > div:first-child h2, .story-grid h2, .section-heading h2, .contact-box h2, .strengths h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
    line-height: 1.5;
  }
  .brand-logo {
    width: 190px;
    max-height: 44px;
  }
}
/* =========================================================
   Ver.1.4 文字サイズ・ロゴ表示バランス調整
   ========================================================= */
/* セクション見出しを全体的に控えめにし、不要な折返しを防ぐ */
h2 {
  font-size: clamp(1.75rem, 2.45vw, 2.45rem);
  line-height: 1.45;
  letter-spacing: -.02em;
}
/* トップコピーも画面を圧迫しない大きさに調整 */
.hero h1 {
  font-size: clamp(2.75rem, 5vw, 4.7rem);
  line-height: 1.12;
}
/* ミッション見出し */
.intro h2 {
  max-width: 820px;
  margin-inline: auto;
  font-size: clamp(1.85rem, 2.7vw, 2.55rem);
}
/* お困りごと：左側を少し広げ、見出しを2行程度に収める */
.problems-grid {
  grid-template-columns: .9fr 1.1fr;
  gap: 58px;
}
.problems-grid h2 {
  max-width: 430px;
  font-size: clamp(1.8rem, 2.5vw, 2.35rem);
  line-height: 1.55;
}
/* ブランドストーリー：見出しと21マークを控えめに */
.story-grid {
  grid-template-columns: 290px 1fr;
  gap: 68px;
}
.story-mark {
  width: 260px;
  height: 260px;
}
.story-mark > span {
  font-size: 4rem;
}
.dots-21 i {
  width: 12px;
  height: 12px;
}
.story h2 {
  max-width: 850px;
  font-size: clamp(1.8rem, 2.55vw, 2.5rem);
  line-height: 1.5;
}
.story-emphasis {
  font-size: .98rem;
}
/* ロゴは縦横比を保ち、ヘッダー内で落ち着いた大きさに */
.brand-logo {
  width: auto;
  height: 52px;
  object-fit: contain;
}
@media (max-width: 900px) {
  h2 {
    font-size: clamp(1.65rem, 5.8vw, 2.15rem);
  }
  .hero h1 {
    font-size: clamp(2.35rem, 9vw, 3.65rem);
  }
  .problems-grid, .story-grid {
    grid-template-columns: 1fr;
  }
  .problems-grid h2, .story h2 {
    max-width: none;
  }
  .story-mark {
    width: 220px;
    height: 220px;
    margin-inline: auto;
  }
  .story-mark > span {
    font-size: 3.4rem;
  }
}
@media (max-width: 600px) {
  .brand-logo {
    height: 43px;
  }
  .hero h1 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }
  .intro h2, .problems-grid h2, .story h2 {
    font-size: 1.75rem;
    line-height: 1.55;
  }
}
/* =========================================================
   KURECOM Brand Site Ver.2
   公開用カラー・立体感・スクロール演出
   ========================================================= */ :root {
  --blue: #0756a4;
  --blue-2: #2382d0;
  --blue-bright: #2b95df;
  --blue-dark: #063a72;
  --blue-deep: #082d55;
  --blue-light: #eaf5ff;
  --cyan-light: #e9fbff;
  --warm: #fff7e9;
}
body {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}
.site-header {
  box-shadow: 0 6px 24px rgba(7, 61, 112, .06);
}
.nav-contact {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  box-shadow: 0 8px 20px rgba(7, 86, 164, .20);
}
.hero {
  padding-top: 58px;
  background:
    radial-gradient(circle at 88% 18%, rgba(43, 149, 223, .20), transparent 28%), radial-gradient(circle at 7% 80%, rgba(34, 130, 208, .11), transparent 24%), linear-gradient(135deg, #ffffff 0%, #f2f9ff 53%, #eaf6ff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(7, 86, 164, .22) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 55%);
}
.hero-copy, .hero-visual {
  position: relative;
  z-index: 1;
}
.hero-kicker {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 8px 22px rgba(7, 70, 130, .08);
}
.hero-kicker::before {
  width: 24px;
}
.hero h1 span {
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.button-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  box-shadow: 0 14px 30px rgba(7, 86, 164, .28);
}
.button-primary:hover {
  box-shadow: 0 18px 36px rgba(7, 86, 164, .34);
}
.hero-badges span {
  border-color: #c9e3f8;
  color: #315b7d;
  box-shadow: 0 7px 18px rgba(10, 73, 132, .06);
}
.hero-visual {
  border: 1px solid rgba(255, 255, 255, .88);
  box-shadow: 0 28px 62px rgba(7, 72, 132, .20);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto -18px -18px auto;
  width: 118px;
  height: 118px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(43, 149, 223, .28), rgba(7, 86, 164, .08));
  z-index: -1;
}
.brand-strip {
  position: relative;
  z-index: 5;
  margin-top: -1px;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue), var(--blue-bright));
  color: #fff;
}
.brand-strip-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
}
.brand-strip strong {
  font-size: 1.08rem;
  letter-spacing: .03em;
}
.brand-strip span {
  color: rgba(255, 255, 255, .78);
  font-size: .88rem;
}
.quick-services {
  margin-top: 28px;
}
.quick-services-grid {
  border-color: #cfe3f4;
  box-shadow: 0 18px 44px rgba(7, 64, 120, .13);
}
.quick-services-grid a:nth-child(odd) .quick-icon {
  background: linear-gradient(135deg, #e9f5ff, #d6edff);
}
.quick-services-grid a:nth-child(even) .quick-icon {
  background: linear-gradient(135deg, #e9fbff, #daf3ff);
}
.quick-icon {
  border: 1px solid #cce6fa;
  box-shadow: 0 8px 16px rgba(22, 107, 181, .10);
}
.intro {
  background: linear-gradient(180deg, #fff 0%, #f8fcff 100%);
}
.intro .narrow {
  padding: 58px 62px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(7, 64, 120, .09);
  border-top: 5px solid var(--blue-2);
}
.section-soft {
  background: linear-gradient(180deg, #edf7ff 0%, #f7fbff 100%);
}
.service-group {
  border: 0;
  box-shadow: 0 18px 44px rgba(7, 65, 121, .10);
  overflow: hidden;
}
.service-group::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
}
.service-group:nth-child(2)::before {
  background: linear-gradient(180deg, #26a7c9, var(--blue));
}
.service-group:nth-child(3)::before {
  background: linear-gradient(180deg, #6d86e8, var(--blue));
}
.group-title .icon {
  background: linear-gradient(135deg, #e7f5ff, #d7edff);
  border: 1px solid #c9e5f8;
}
.service-item {
  background: linear-gradient(160deg, #f8fcff, #edf7ff);
  border: 1px solid #deedf8;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(7, 77, 139, .10);
}
.cases {
  background: linear-gradient(180deg, #fff 0%, #f4faff 100%);
}
.case-card {
  position: relative;
  overflow: hidden;
  border: 0;
  box-shadow: 0 16px 36px rgba(7, 64, 120, .10);
}
.case-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(35, 130, 208, .10);
}
.case-card:nth-child(2)::after {
  background: rgba(26, 165, 189, .12);
}
.case-card:nth-child(3)::after {
  background: rgba(111, 126, 225, .12);
}
.problems {
  background: linear-gradient(135deg, #f4faff 0%, #ffffff 50%, #edf8ff 100%);
}
.problem-card {
  border: 0;
  border-left: 4px solid var(--blue-2);
  box-shadow: 0 12px 28px rgba(7, 65, 121, .09);
}
.problem-card:nth-child(2n) {
  border-left-color: #27a4c8;
}
.problem-card span {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: #fff;
}
.section-blue {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #062d56 0%, #0756a4 56%, #2183cf 100%);
}
.section-blue::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -130px;
  top: -180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}
.section-blue::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -100px;
  bottom: -130px;
  border-radius: 50%;
  background: rgba(89, 193, 237, .16);
}
.section-blue .container {
  position: relative;
  z-index: 1;
}
.strength-grid article {
  box-shadow: 0 16px 34px rgba(0, 0, 0, .12);
  transition: transform .25s ease, background .25s ease;
}
.strength-grid article:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .13);
}
.story {
  background: linear-gradient(180deg, #fff 0%, #f3f9ff 100%);
}
.story-mark {
  background: radial-gradient(circle, #fff 0 43%, #e6f4ff 44% 66%, #d7edff 67% 100%);
  box-shadow: 0 25px 55px rgba(7, 72, 132, .18);
}
.story-emphasis {
  border-left: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #eaf5ff, #f7fbff);
  box-shadow: 0 10px 25px rgba(7, 64, 120, .07);
}
.contact {
  background: linear-gradient(180deg, #f3f9ff 0%, #fff 100%);
}
.contact-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #062f59 0%, #0756a4 55%, #2a92d8 100%);
}
.contact-box::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border: 42px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  right: -70px;
  top: -80px;
}
.contact-box > * {
  position: relative;
  z-index: 1;
}
.button-white, .button-outline-white {
  min-width: 220px;
}
.button-outline-white:hover {
  background: rgba(255, 255, 255, .12);
}
.footer-brand span {
  display: block;
  margin-top: 5px;
  color: #7fc2f1;
  font-size: .68rem;
  letter-spacing: .18em;
}
.site-footer a:hover {
  color: #8bd0ff;
}
.reveal, .reveal-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible, .reveal-card.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-card:nth-child(2) {
  transition-delay: .08s;
}
.reveal-card:nth-child(3) {
  transition-delay: .16s;
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
@media (max-width:980px) {
  .brand-strip-inner {
    flex-direction: column;
    gap: 2px;
    padding: 18px 0;
  }
  .quick-services {
    margin-top: 20px;
  }
}
@media (max-width:700px) {
  .hero::before {
    opacity: .18;
  }
  .intro .narrow {
    padding: 38px 22px;
  }
  .brand-strip strong {
    font-size: .98rem;
  }
  .brand-strip span {
    font-size: .78rem;
  }
  .contact-actions a {
    min-width: 0;
  }
}
/* Ver.3 公開仕上げ：正式ロゴ・見出し改行・電話番号の視認性 */
.brand-logo {
  width: 238px;
  height: 58px;
  max-height: none;
  object-fit: contain;
  object-position: left center;
}
.hero h1 {
  font-size: clamp(2.7rem, 4.25vw, 4.45rem);
  line-height: 1.16;
  letter-spacing: -.045em;
}
.hero-line {
  display: block;
  white-space: nowrap;
}
.hero-line-blue {
  color: var(--blue);
}
.story-logo-panel {
  min-height: 280px;
  padding: 36px 30px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9e7f4;
  border-radius: 28px;
  background: linear-gradient(145deg, #fff, #f1f7ff);
  box-shadow: var(--shadow);
  text-align: center;
}
.story-logo-panel img {
  width: 100%;
  max-width: 285px;
  height: auto;
}
.story-logo-panel p {
  margin: 22px 0 0;
  color: #506a82;
  font-size: .84rem;
  line-height: 1.65;
}
.story-logo-panel strong {
  color: var(--blue-dark);
}
.contact-phone-button {
  min-width: 270px;
  min-height: 78px;
  padding: 11px 28px 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #fff;
  color: var(--blue-dark);
  box-shadow: 0 12px 30px rgba(0, 35, 76, .22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-phone-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 35, 76, .28);
}
.contact-phone-button span {
  margin-bottom: 2px;
  color: #597087;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .05em;
}
.contact-phone-button strong {
  color: #063a76;
  font-size: clamp(1.5rem, 2.1vw, 1.9rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .02em;
}
.footer-logo {
  width: 205px;
  height: auto;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
}
@media (max-width: 980px) {
  .brand-logo {
    width: 210px;
    height: 52px;
  }
  .hero h1 {
    font-size: clamp(2.55rem, 7vw, 4rem);
  }
}
@media (max-width: 700px) {
  .brand-logo {
    width: 175px;
    height: 43px;
  }
  .hero h1 {
    font-size: clamp(2.05rem, 9.8vw, 3.15rem);
    line-height: 1.18;
  }
  .hero-line {
    white-space: nowrap;
  }
  .contact-phone-button {
    width: 100%;
    min-width: 0;
  }
  .contact-phone-button strong {
    font-size: 1.65rem;
  }
  .story-logo-panel {
    min-height: 230px;
    padding: 28px 22px;
  }
  .footer-logo {
    width: 185px;
  }
}
@media (max-width: 390px) {
  .hero h1 {
    font-size: 1.92rem;
    letter-spacing: -.055em;
  }
}
.numbers {
  background: #f8fbff;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 45px;
}
.number-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}
.number-value {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}
.number-title {
  margin-top: 18px;
  font-size: 1.2rem;
  font-weight: 700;
}
.number-card p {
  margin-top: 12px;
  font-size: .92rem;
}
@media(max-width:900px) {
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width:600px) {
  .numbers-grid {
    grid-template-columns: 1fr;
  }
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand img {
  width: 72px;
  height: auto;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.brand-company {
  font-size: 1.2rem;
  font-weight: 700;
}
.brand-sub {
  font-size: 0.82rem;
  color: #777;
}
@media (max-width:768px) {
  .brand img {
    width: 46px;
    height: 46px;
  }
  .brand-company {
    font-size: 0.95rem;
  }
  .brand-sub {
    font-size: 0.72rem;
  }
}
/* =========================================================
   KURECOM Website Ver.5 公開版
   ========================================================= */
.header-inner {
  height: 84px;
  gap: 22px
}
.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0
}
.brand-logo {
  flex: 0 0 auto;
  width: auto;
  height: 58px;
  object-fit: contain;
  object-position: left center
}
.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.25;
  white-space: nowrap
}
.brand-company {
  color: var(--blue-dark);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: .02em
}
.brand-sub {
  margin-top: 3px;
  color: #60758a;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .08em
}
.global-nav {
  gap: 20px
}
.timeline-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 92% 10%, rgba(35, 130, 208, .12), transparent 25%), linear-gradient(180deg, #fff 0%, #f2f8ff 100%)
}
.timeline-heading {
  margin-bottom: 56px
}
.timeline {
  position: relative;
  max-width: 980px;
  margin-inline: auto;
  padding: 8px 0 10px
}
.timeline-line {
  position: absolute;
  left: 174px;
  top: 18px;
  bottom: 18px;
  width: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: #d8e8f6
}
.timeline-line-progress {
  position: absolute;
  inset: 0 0 auto;
  height: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
  transition: height .15s linear
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 140px 36px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 34px
}
.timeline-item:last-child {
  margin-bottom: 0
}
.timeline-year {
  padding-top: 24px;
  color: var(--blue-dark);
  font-size: 1rem;
  font-weight: 900;
  text-align: right;
  letter-spacing: .02em
}
.timeline-marker {
  position: relative;
  z-index: 2;
  width: 18px;
  height: 18px;
  margin: 28px auto 0;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 0 3px rgba(35, 130, 208, .18), 0 6px 15px rgba(7, 86, 164, .22)
}
.timeline-card {
  position: relative;
  padding: 28px 32px;
  border: 1px solid #dceaf6;
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 15px 36px rgba(7, 64, 120, .08)
}
.timeline-card::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 29px;
  width: 18px;
  height: 18px;
  border-left: 1px solid #dceaf6;
  border-bottom: 1px solid #dceaf6;
  background: #fff;
  transform: rotate(45deg)
}
.timeline-tag {
  margin-bottom: 8px;
  color: var(--blue-2);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em
}
.timeline-card h3 {
  margin-bottom: 12px;
  color: #173b5e;
  font-size: clamp(1.18rem, 2vw, 1.48rem);
  line-height: 1.5
}
.timeline-card p:last-child {
  margin-bottom: 0
}
.timeline-current .timeline-marker {
  background: #fff;
  box-shadow: 0 0 0 5px var(--blue), 0 8px 20px rgba(7, 86, 164, .3)
}
.timeline-current .timeline-card {
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #063a72 0%, #0756a4 58%, #2382d0 100%);
  box-shadow: 0 22px 48px rgba(7, 70, 130, .22)
}
.timeline-current .timeline-card::before {
  border: 0;
  background: #0756a4
}
.timeline-current .timeline-tag {
  color: #bde2ff
}
.timeline-current .timeline-card h3 {
  color: #fff;
  font-size: clamp(1.45rem, 2.7vw, 2rem)
}
.timeline-current .timeline-card p {
  color: rgba(255, 255, 255, .86)
}
.numbers {
  background: #fff
}
.number-card {
  border: 1px solid #e0ecf6
}
.company {
  background: linear-gradient(180deg, #f7fbff 0%, #fff 100%)
}
.company-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid #dce8f3;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7, 64, 120, .07)
}
.company-table th, .company-table td {
  padding: 20px 24px;
  border-bottom: 1px solid #e4edf5;
  text-align: left;
  vertical-align: top
}
.company-table tr:last-child th, .company-table tr:last-child td {
  border-bottom: 0
}
.company-table th {
  width: 190px;
  color: var(--blue-dark);
  background: #eef7ff;
  font-weight: 800
}
.company-table td {
  color: #405a70
}
.page-top {
  z-index: 99999;
  cursor: pointer;
  pointer-events: auto
}
.page-top:hover {
  box-shadow: 0 13px 28px rgba(11, 79, 156, .34)
}
.page-top.is-visible:hover {
  transform: translateY(-3px)
}
@media(max-width:1120px) {
  .global-nav {
    gap: 14px;
    font-size: .86rem
  }
  .brand-logo {
    height: 52px
  }
  .brand-company {
    font-size: 1rem
  }
}
@media(max-width:980px) {
  .brand {
    gap: 5px
  }
  .brand-logo {
    height: 50px
  }
  .timeline-line {
    left: 134px
  }
  .timeline-item {
    grid-template-columns: 100px 36px minmax(0, 1fr)
  }
}
@media(max-width:700px) {
  .header-inner {
    height: 72px
  }
  .brand-logo {
    height: 43px
  }
  .brand-company {
    font-size: .88rem
  }
  .brand-sub {
    font-size: .63rem;
    letter-spacing: .04em
  }
  .timeline-heading {
    margin-bottom: 36px
  }
  .timeline {
    padding-left: 0
  }
  .timeline-line {
    left: 9px;
    top: 8px;
    bottom: 8px
  }
  .timeline-item {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 24px
  }
  .timeline-year {
    grid-column: 2;
    grid-row: 1;
    padding: 0 0 7px;
    text-align: left;
    font-size: .9rem
  }
  .timeline-marker {
    grid-column: 1;
    grid-row: 1/span 2;
    width: 16px;
    height: 16px;
    margin-top: 4px
  }
  .timeline-card {
    grid-column: 2;
    grid-row: 2;
    padding: 23px 20px;
    border-radius: 18px
  }
  .timeline-card::before {
    display: none
  }
  .company-table, .company-table tbody, .company-table tr, .company-table th, .company-table td {
    display: block;
    width: 100%
  }
  .company-table tr {
    border-bottom: 1px solid #e4edf5
  }
  .company-table tr:last-child {
    border-bottom: 0
  }
  .company-table th {
    padding: 14px 18px 7px;
    border-bottom: 0
  }
  .company-table td {
    padding: 7px 18px 16px;
    border-bottom: 0
  }
}
@media(max-width:430px) {
  .brand-logo {
    height: 38px
  }
  .brand-company {
    font-size: .79rem
  }
  .brand-sub {
    font-size: .58rem
  }
}
/* =========================================================
   Ver.5.1 SEO対策版：会社情報セクション
   ========================================================= */
.company {
  background: #fff;
}
.company-seo-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: stretch;
}
.company-details {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7, 64, 120, .07);
}
.company-details > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  border-bottom: 1px solid var(--line);
}
.company-details > div:last-child {
  border-bottom: 0;
}
.company-details dt, .company-details dd {
  margin: 0;
  padding: 18px 22px;
}
.company-details dt {
  background: #f1f7fd;
  color: var(--blue-dark);
  font-weight: 800;
}
.company-details dd {
  color: #314b63;
}
.company-details address {
  font-style: normal;
}
.company-details a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.company-message {
  padding: 36px;
  border-radius: 24px;
  background: linear-gradient(145deg, #edf7ff, #fff);
  box-shadow: 0 14px 34px rgba(7, 64, 120, .08);
}
.company-message h3 {
  margin-bottom: 18px;
  color: var(--blue-dark);
  font-size: 1.45rem;
  line-height: 1.55;
}
.company-message p {
  margin-bottom: 26px;
}
@media (max-width: 900px) {
  .company-seo-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .company-details > div {
    grid-template-columns: 1fr;
  }
  .company-details dt {
    padding-bottom: 8px;
  }
  .company-details dd {
    padding-top: 8px;
    overflow-wrap: anywhere;
  }
  .company-message {
    padding: 28px 22px;
  }
}

/* =========================================================
   KURECOM Website Ver.5.2α
   お問い合わせ導線・ブランドメッセージの再設計
   ========================================================= */
.promise-section {
  background: linear-gradient(135deg, #f4f9ff 0%, #ffffff 100%);
}
.promise-box {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 76px);
  border: 1px solid rgba(19, 87, 154, .14);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(17, 73, 126, .10);
  text-align: center;
}
.promise-box::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -90px;
  width: 280px;
  height: 280px;
  border: 38px solid rgba(34, 139, 230, .07);
  border-radius: 50%;
}
.promise-box > * { position: relative; z-index: 1; }
.promise-box h2 { margin-bottom: 26px; }
.promise-lead {
  margin: 0 0 22px;
  color: #123f72;
  font-size: clamp(1.18rem, 2vw, 1.62rem);
  font-weight: 800;
  line-height: 1.75;
}
.promise-text {
  max-width: 790px;
  margin: 0 auto;
  font-size: 1.03rem;
  line-height: 2;
}
.promise-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px 0;
}
.promise-services span,
.contact-topics span {
  padding: 8px 16px;
  border-radius: 999px;
  background: #edf6ff;
  color: #13579a;
  font-size: .9rem;
  font-weight: 800;
}
.promise-message {
  margin: 30px 0 0;
  color: var(--blue-dark);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -.03em;
}

.contact {
  padding-top: clamp(64px, 8vw, 108px);
  padding-bottom: clamp(64px, 8vw, 108px);
  background: linear-gradient(180deg, #f5f9fd 0%, #ffffff 100%);
}
.contact-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 6vw, 78px);
  border-radius: 32px;
  background: linear-gradient(125deg, #073764 0%, #0d62ae 57%, #2b91d4 100%);
  box-shadow: 0 28px 64px rgba(4, 48, 92, .20);
  color: #fff;
}
.contact-panel::before,
.contact-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.contact-panel::before {
  top: -130px;
  right: -55px;
  width: 330px;
  height: 330px;
  border: 42px solid rgba(255,255,255,.07);
}
.contact-panel::after {
  left: -90px;
  bottom: -150px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,.035);
}
.contact-panel > * { position: relative; z-index: 1; }
.contact-intro {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.contact-intro .section-label { color: #cfe9ff; }
.contact-intro h2 {
  margin: 8px 0 18px;
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 3.75rem);
  line-height: 1.2;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.contact-lead {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,.9);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.9;
}
.contact-topics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 25px;
}
.contact-topics span {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}
.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: 38px auto 0;
}
.contact-method {
  display: flex;
  min-width: 0;
  min-height: 188px;
  padding: 28px 30px;
  border-radius: 24px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.contact-method-phone {
  background: #fff;
  color: #073d78;
  box-shadow: 0 18px 38px rgba(0, 29, 65, .20);
}
.contact-method-mail {
  border: 1px solid rgba(255,255,255,.58);
  background: rgba(255,255,255,.09);
  color: #fff;
  backdrop-filter: blur(8px);
}
.contact-method:hover,
.contact-method:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(0, 29, 65, .28);
}
.contact-method:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}
.contact-method-label {
  margin-bottom: 9px;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.contact-method-phone .contact-method-label { color: #61768b; }
.contact-method-mail .contact-method-label { color: rgba(255,255,255,.8); }
.contact-method strong {
  display: block;
  max-width: 100%;
  font-size: clamp(1.45rem, 2.8vw, 2.25rem);
  font-weight: 900;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.contact-method-mail strong {
  font-size: clamp(1.05rem, 2vw, 1.55rem);
}
.contact-method-action {
  margin-top: 15px;
  font-size: .9rem;
  font-weight: 800;
}
.contact-note {
  margin: 22px 0 0;
  color: rgba(255,255,255,.78);
  font-size: .9rem;
  text-align: center;
}

@media (max-width: 820px) {
  .contact-methods { grid-template-columns: 1fr; max-width: 620px; }
  .contact-method { min-height: 160px; }
}
@media (max-width: 600px) {
  .promise-box,
  .contact-panel { border-radius: 22px; }
  .promise-box { padding: 38px 22px; }
  .contact-panel { padding: 40px 20px; }
  .contact-intro h2 {
    font-size: clamp(1.82rem, 9vw, 2.45rem);
    line-height: 1.28;
  }
  .contact-lead br { display: none; }
  .contact-method { min-height: 148px; padding: 24px 18px; border-radius: 19px; }
  .contact-method strong { font-size: 1.72rem; }
  .contact-method-mail strong { font-size: 1.02rem; }
}



/* =========================================================
   KURECOM Website Ver.5.2β
   問い合わせ強化・FAX・Google Map・アクセシビリティ調整
   ========================================================= */
.company-table a {
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.company-map {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  overflow: hidden;
  margin-top: 38px;
  border: 1px solid rgba(12, 77, 138, .13);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(7, 59, 108, .10);
}
.company-map-info {
  display: flex;
  padding: clamp(28px, 4vw, 46px);
  flex-direction: column;
  justify-content: center;
}
.company-map-label {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
}
.company-map-info h3 {
  margin: 0 0 16px;
  color: var(--blue-dark);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
}
.company-map-info p { margin: 0; line-height: 1.9; }
.map-link {
  align-self: flex-start;
  margin-top: 22px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--blue-dark);
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.map-link:hover,
.map-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(7, 59, 108, .22);
}
.company-map-frame {
  position: relative;
  height: clamp(360px, 31vw, 440px);
  min-width: 0;
  overflow: hidden;
  background: #e8eef4;
}
.company-map-frame iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.contact-eyebrow {
  margin: 2px 0 0;
  color: #fff;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 800;
  letter-spacing: .06em;
}
.contact-topics span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.contact-topics svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}
.contact-method-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  border-radius: 50%;
  place-items: center;
}
.contact-method-icon svg { width: 24px; height: 24px; fill: currentColor; }
.contact-method-phone .contact-method-icon {
  background: #e8f3ff;
  color: #0c5ca8;
}
.contact-method-mail .contact-method-icon {
  background: rgba(255,255,255,.15);
  color: #fff;
}
.contact-subinfo {
  display: flex;
  max-width: 980px;
  margin: 24px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.18);
  align-items: center;
  justify-content: center;
  gap: 24px 38px;
  color: rgba(255,255,255,.86);
  text-align: center;
}
.contact-subinfo div {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  white-space: nowrap;
}
.contact-subinfo span {
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.contact-subinfo strong { color: #fff; font-size: 1.05rem; letter-spacing: .04em; }
.contact-subinfo p { margin: 0; font-size: .9rem; }
.contact-note { display: none; }
@media (max-width: 820px) {
  .company-map { grid-template-columns: 1fr; }
  .company-map-frame { height: 340px; }
  .contact-subinfo { flex-direction: column; gap: 12px; }
}
@media (max-width: 600px) {
  .company-map { border-radius: 20px; }
  .company-map-info { padding: 28px 22px; }
  .company-map-frame { height: 300px; }
  .contact-topics { gap: 8px; }
  .contact-topics span { padding: 8px 12px; font-size: .82rem; }
}


/* Ver.5.2β Map表示安定化修正
   iframeの高さを親要素の明示的な高さに固定し、PCごとの縮小表示を防止 */
@supports not (height: clamp(360px, 31vw, 440px)) {
  .company-map-frame { height: 400px; }
}

.it-news-card + .it-news-card {
  margin-top: 32px;
}

/* 2026-09-08 お問い合わせフォーム */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.45fr);
  gap: 26px;
  max-width: 1040px;
  margin: 38px auto 0;
  align-items: start;
}
.contact-side { min-width: 0; }
.contact-side .contact-method { min-height: 210px; }
.contact-subinfo {
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  color: #fff;
}
.contact-subinfo div { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.contact-subinfo span { font-size: .82rem; font-weight: 800; letter-spacing: .08em; color: rgba(255,255,255,.72); }
.contact-subinfo strong { font-size: 1.12rem; }
.contact-subinfo p { margin: 11px 0 0; color: rgba(255,255,255,.78); font-size: .86rem; line-height: 1.7; }
.contact-form {
  padding: clamp(24px, 4vw, 38px);
  border-radius: 24px;
  background: #fff;
  color: #18334e;
  box-shadow: 0 18px 42px rgba(0,29,65,.2);
  text-align: left;
}
.contact-form h3 { margin: 0; color: #073d78; font-size: clamp(1.35rem, 2.6vw, 1.85rem); }
.contact-form-note { margin: 8px 0 22px; color: #61768b; font-size: .88rem; }
.form-row { margin-top: 17px; }
.form-row:first-of-type { margin-top: 0; }
.form-row label, .form-row-2col label { display: block; margin-bottom: 7px; color: #23435f; font-size: .9rem; font-weight: 800; }
.form-row-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"], .contact-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #c9d6e2;
  border-radius: 10px;
  background: #fbfdff;
  color: #18334e;
  font: inherit;
  padding: 12px 13px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form textarea { resize: vertical; min-height: 150px; line-height: 1.65; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: #0d62ae; background: #fff; box-shadow: 0 0 0 3px rgba(13,98,174,.13); }
.required-mark { display: inline-block; margin-left: 4px; padding: 2px 7px; border-radius: 999px; background: #eaf4ff; color: #0d62ae; font-size: .72rem; font-weight: 800; vertical-align: .08em; }
.form-consent { display: flex; gap: 9px; align-items: flex-start; margin: 20px 0 0; color: #4d6478; font-size: .82rem; line-height: 1.6; cursor: pointer; }
.form-consent input { margin-top: 4px; flex: 0 0 auto; }
.contact-submit { width: 100%; margin-top: 20px; border: 0; border-radius: 12px; padding: 15px 20px; background: #0d62ae; color: #fff; font: inherit; font-weight: 900; letter-spacing: .02em; cursor: pointer; box-shadow: 0 10px 22px rgba(13,98,174,.24); transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.contact-submit:hover, .contact-submit:focus-visible { transform: translateY(-2px); background: #094f8d; box-shadow: 0 14px 28px rgba(13,98,174,.3); }
.contact-submit:focus-visible { outline: 3px solid #9bd3ff; outline-offset: 3px; }
.contact-form-foot { margin: 12px 0 0; color: #6d8091; font-size: .78rem; line-height: 1.6; text-align: center; }
.form-trap { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; max-width: 680px; }
  .contact-side .contact-method { min-height: 160px; }
}
@media (max-width: 600px) {
  .contact-form { padding: 24px 18px; border-radius: 18px; }
  .form-row-2col { grid-template-columns: 1fr; gap: 17px; }
  .contact-subinfo { border-radius: 16px; }
}


/* 2026-09-08 お問い合わせ最終調整：FAX窓口削除・電話案内強化 */
.contact-side .contact-method-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 310px;
  text-align: center;
}
.contact-phone-hours {
  display: block;
  margin-top: 16px;
  color: #365a7b;
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.contact-phone-note {
  display: block;
  margin-top: 8px;
  color: #61768b;
  font-size: .84rem;
  line-height: 1.65;
}
.contact-side .contact-method-action {
  margin-top: 18px;
}
@media (max-width: 900px) {
  .contact-side .contact-method-phone { min-height: 235px; }
}
@media (max-width: 600px) {
  .contact-side .contact-method-phone { min-height: 215px; }
  .contact-phone-hours { font-size: .88rem; }
  .contact-phone-note { font-size: .8rem; }
}

/* 2026-09-08 最終表示調整：固定ヘッダーとお問い合わせ表示位置 */
html {
  scroll-padding-top: 104px;
}
#contact {
  scroll-margin-top: 104px;
}
@media (min-width: 901px) {
  .contact-phone-note {
    white-space: nowrap;
    font-size: .82rem;
    letter-spacing: -.01em;
  }
}
@media (max-width: 900px) {
  html {
    scroll-padding-top: 92px;
  }
  #contact {
    scroll-margin-top: 92px;
  }
}


/* 2026-09-08 お問い合わせアンカー最終修正
   固定ヘッダー直下に「電話＋フォーム」の開始位置を揃える */
#contact-form {
  scroll-margin-top: 104px;
}
@media (max-width: 900px) {
  #contact-form {
    scroll-margin-top: 92px;
  }
}
