:root {
  --k-blue: #0f2f68;
  --k-blue-deep: #08204c;
  --k-red: #d52b2f;
  --k-green: #3a9a45;
  --k-light: #f5f7fb;
  --k-border: #d7dbe6;
  --k-text: #1f2534;
}

.kamiya-page {
  margin: 0;
  color: var(--k-text);
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
}

.kamiya-page * {
  box-sizing: border-box;
}

.k-container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.k-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e4e8f0;
  backdrop-filter: blur(6px);
}

.k-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
}

.k-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--k-blue);
}

.k-brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--k-blue);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 28px;
}

.k-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.k-brand__text strong {
  font-size: 37px;
  letter-spacing: 0.03em;
}

.k-brand__text small {
  font-size: 12px;
  margin-top: 4px;
}

.k-nav ul {
  display: flex;
  gap: 34px;
  align-items: center;
}

.k-nav a {
  color: #141f38;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  padding: 38px 0 35px;
  border-bottom: 3px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.k-nav a:hover,
.k-nav a.is-current {
  color: var(--k-blue);
  border-bottom-color: var(--k-blue);
}

.k-menu {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  padding: 0;
}

.k-menu span {
  display: block;
  width: 30px;
  height: 3px;
  margin: 6px auto;
  background: var(--k-blue);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.k-menu.is-open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.k-menu.is-open span:nth-child(2) {
  opacity: 0;
}

.k-menu.is-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.k-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.k-hero__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(0deg, rgba(10, 16, 36, 0.78), rgba(10, 16, 36, 0.72)), url("../../a56b25f3-5015-4aba-8e9e-df5f815a859f.png");
  background-size: cover;
  background-position: center 68%;
  transform: scale(1.52);
}

.k-hero__content {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 85px;
}

.k-hero__lead {
  color: #fff;
  font-size: clamp(54px, 4.6vw, 90px);
  font-weight: 700;
  line-height: 1.34;
  letter-spacing: 0.02em;
  text-shadow: 0 5px 16px rgba(0, 0, 0, 0.35);
  max-width: 980px;
}

.k-hero__cta {
  margin-top: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 360px;
  min-height: 74px;
  border-radius: 3px;
  background: var(--k-red);
  color: #fff;
  font-size: 35px;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, background 0.25s ease;
}

.k-hero__cta:hover {
  background: #b61f23;
  transform: translateY(-2px);
}

.k-section-block {
  padding: 56px 0;
}

.k-news {
  background: #fff;
  border-top: 1px solid #eef1f7;
}

.k-news__inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 38px;
}

.k-news__head {
  border-right: 1px solid var(--k-border);
  padding-right: 20px;
}

.k-news__head h2 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 74px;
  font-weight: 700;
  color: var(--k-blue);
  letter-spacing: 0.05em;
  line-height: 1;
}

.k-news__head p {
  font-size: 26px;
  margin-top: 12px;
}

.k-news__list li + li {
  margin-top: 16px;
}

.k-news__list a {
  display: grid;
  grid-template-columns: 140px 120px 1fr;
  align-items: center;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e9edf5;
}

.k-news__list time {
  font-size: 31px;
  letter-spacing: 0.02em;
  color: #374661;
  font-family: "Barlow Condensed", sans-serif;
}

.k-news__tag {
  display: inline-grid;
  place-items: center;
  height: 36px;
  border-radius: 4px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.k-news__tag--green {
  background: var(--k-green);
}

.k-news__tag--blue {
  background: var(--k-blue);
}

.k-news__list p {
  font-size: 29px;
  line-height: 1.5;
}

.k-news__more {
  margin-top: 24px;
  text-align: right;
}

.k-news__more a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 38px;
  font-weight: 700;
  color: var(--k-blue);
}

.k-news__more a::after {
  content: ">";
}

.k-concept {
  background: var(--k-light);
}

.k-title {
  color: var(--k-blue);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 72px;
  letter-spacing: 0.04em;
  font-weight: 700;
  line-height: 1;
}

.k-title span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 39px;
  font-weight: 700;
  margin-left: 18px;
}

.k-subtitle {
  font-size: 28px;
  margin: 14px 0 26px;
}

.k-concept__grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 42px;
}

.k-concept__mascot {
  background: #fff;
  border: 1px solid #e8ecf3;
  border-radius: 999px;
  width: 500px;
  height: 290px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.k-concept__mascot span {
  font-size: 120px;
  line-height: 1;
}

.k-concept__mascot p {
  margin-top: 8px;
  color: var(--k-green);
  font-size: 39px;
  font-weight: 700;
}

.k-concept__copy {
  color: var(--k-blue);
  font-size: 49px;
  font-weight: 700;
  line-height: 1.6;
}

.k-concept__text p {
  font-size: 35px;
  line-height: 1.8;
}

.k-concept__text p + p {
  margin-top: 18px;
}

.k-concept__text strong {
  color: var(--k-red);
}

.k-service {
  background: #fff;
}

.k-service__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.k-service__card {
  display: grid;
  grid-template-columns: 46% 1fr;
  border: 1px solid #d4dbea;
  background: #fff;
}

.k-service__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k-service__card div {
  padding: 22px 22px 24px;
}

.k-service__card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--k-blue);
  font-size: 48px;
  font-weight: 700;
}

.k-service__card h3 span {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  color: #fff;
  background: var(--k-blue);
}

.k-service__card p {
  margin-top: 10px;
  font-size: 32px;
  line-height: 1.65;
}

.k-strengths {
  background: var(--k-light);
}

.k-strengths__grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.k-strengths__item {
  background: #fff;
  border: 1px solid #d4dbea;
  padding: 20px;
}

.k-strengths__item h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--k-blue);
  font-size: 45px;
  font-weight: 700;
}

.k-strengths__item h3 span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--k-blue);
  color: #fff;
  font-size: 28px;
}

.k-strengths__item p {
  margin: 12px 0 16px;
  font-size: 28px;
  line-height: 1.6;
}

.k-strengths__item img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.k-footer {
  background: linear-gradient(180deg, var(--k-blue), var(--k-blue-deep));
  color: #fff;
  padding: 34px 0 16px;
}

.k-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.k-footer__name {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 12px;
}

.k-footer__brand p {
  font-size: 24px;
  line-height: 1.8;
}

.k-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  gap: 10px 26px;
  padding-top: 16px;
}

.k-footer__nav a {
  color: #fff;
  font-size: 24px;
  opacity: 0.92;
}

.k-footer small {
  display: block;
  text-align: center;
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 14px;
  font-size: 21px;
}

.k-page-hero {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0b234f, #113776);
}

.k-page-hero__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(8, 20, 48, 0.84), rgba(8, 20, 48, 0.38)), url("../../image/about/IMG_001S.jpg");
  background-size: cover;
  background-position: center;
}

.k-page-hero__inner {
  position: relative;
  z-index: 1;
  padding: 72px 0 60px;
  color: #fff;
}

.k-page-hero__eyebrow {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  letter-spacing: 0.22em;
  opacity: 0.8;
}

.k-page-hero h1 {
  margin-top: 10px;
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 1.1;
}

.k-page-hero__lead {
  margin-top: 18px;
  max-width: 760px;
  font-size: 1.0rem;
  line-height: 1.8;
}

.k-breadcrumb {
  border-bottom: 1px solid #e9edf5;
  background: #fff;
}

.k-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0;
  font-size: 14px;
  color: #63708d;
}

.k-breadcrumb li + li::before {
  content: ">";
  margin-right: 8px;
}

.k-company-intro {
  background: #fff;
}

.k-company-intro__grid,
.k-message__grid,
.k-company-access__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

.k-company-intro__copy,
.k-message__lead,
.k-company-access__lead {
  margin: 18px 0 20px;
  color: var(--k-blue);
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 700;
  line-height: 1.55;
}

.k-company-intro__body p,
.k-message__body p,
.k-company-access__lead,
.k-company-feature__grid p {
  font-size: 1.0rem;
  line-height: 1.9;
}

.k-company-intro__body p + p,
.k-message__body p + p {
  margin-top: 14px;
}

.k-company-intro__visual img,
.k-message__photo img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.k-company-intro__points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.k-company-intro__points div,
.k-company-feature__grid article {
  padding: 22px 24px;
  border: 1px solid #d5dceb;
  background: #f9fbfe;
}

.k-company-intro__points strong {
  display: block;
  color: var(--k-blue);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  letter-spacing: 0.08em;
}

.k-company-intro__points p {
  margin-top: 6px;
}

.k-message {
  background: var(--k-light);
}

.k-message__sign {
  margin-top: 28px;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid #cfd7e6;
}

.k-message__sign small {
  font-size: 14px;
  color: #68758e;
}

.k-message__sign strong {
  font-size: clamp(24px, 2.3vw, 36px);
  color: var(--k-blue);
}

.k-company-data {
  background: #fff;
}

.k-company-data__table-wrap {
  margin-top: 26px;
  border-top: 2px solid var(--k-blue);
}

.k-company-data__table {
  width: 100%;
}

.k-company-data__table th,
.k-company-data__table td {
  padding: 14px 14px;
  border-bottom: 1px solid #dde3ef;
  font-size: 1.0rem;
  line-height: 1.9;
  vertical-align: top;
}

.k-company-data__table th {
  width: 22%;
  color: var(--k-blue);
  font-weight: 700;
}

.k-company-feature {
  background: var(--k-light);
}

.k-company-feature__grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.k-company-feature__grid h3 {
  color: var(--k-blue);
  font-size: clamp(22px, 2vw, 30px);
  margin-bottom: 10px;
}

.k-company-access__list {
  margin-top: 26px;
  border-top: 1px solid #d7dbe6;
}

.k-company-access__list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid #d7dbe6;
}

.k-company-access__list dt {
  color: var(--k-blue);
  font-weight: 700;
}

.k-company-access__map iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 16px;
}

@media (max-width: 1280px) {
  .k-container,
  .k-hero__content {
    width: min(1240px, calc(100% - 36px));
  }

  .k-brand__text strong {
    font-size: 28px;
  }

  .k-nav ul {
    gap: 24px;
  }

  .k-nav a {
    font-size: 18px;
  }

  .k-hero {
    min-height: 560px;
  }

  .k-hero__lead {
    font-size: clamp(36px, 4.8vw, 62px);
  }

  .k-hero__cta {
    min-width: 240px;
    min-height: 56px;
    font-size: 24px;
  }

  .k-news__head h2,
  .k-title {
    font-size: 46px;
  }

  .k-title span,
  .k-subtitle,
  .k-news__list p,
  .k-concept__copy,
  .k-concept__text p,
  .k-service__card h3,
  .k-strengths__item h3,
  .k-footer__name {
    font-size: clamp(20px, 2.5vw, 34px);
  }

  .k-news__head p,
  .k-news__list time,
  .k-service__card p,
  .k-strengths__item p,
  .k-footer__brand p,
  .k-footer__nav a,
  .k-footer small {
    font-size: clamp(14px, 1.8vw, 20px);
  }
}

@media (max-width: 900px) {
  .k-header__inner {
    min-height: 74px;
  }

  .k-brand__mark {
    width: 36px;
    height: 36px;
    font-size: 21px;
  }

  .k-brand__text strong {
    font-size: 18px;
  }

  .k-brand__text small {
    font-size: 10px;
  }

  .k-menu {
    display: block;
  }

  .k-nav {
    position: fixed;
    top: 74px;
    right: 0;
    left: 0;
    background: #fff;
    border-bottom: 1px solid #e4e8f0;
    transform: translateY(-120%);
    transition: transform 0.25s ease;
  }

  .k-nav.is-open {
    transform: translateY(0);
  }

  .k-nav ul {
    display: block;
    padding: 8px 20px 16px;
  }

  .k-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid #edf0f7;
    font-size: 15px;
  }

  .k-nav a:hover,
  .k-nav a.is-current {
    border-bottom-color: #edf0f7;
  }

  .k-hero {
    min-height: 410px;
  }

  .k-hero__content {
    padding-top: 30px;
  }

  .k-hero__lead {
    max-width: 100%;
    line-height: 1.45;
  }

  .k-news__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .k-company-intro__grid,
  .k-message__grid,
  .k-company-access__grid,
  .k-company-feature__grid {
    grid-template-columns: 1fr;
  }

  .k-news__head {
    border-right: 0;
    border-bottom: 1px solid var(--k-border);
    padding-bottom: 14px;
  }

  .k-news__list a {
    grid-template-columns: 90px 76px 1fr;
    gap: 8px;
  }

  .k-news__tag {
    font-size: 11px;
    height: 24px;
  }

  .k-news__more {
    margin-top: 14px;
  }

  .k-concept__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .k-company-intro__points {
    grid-template-columns: 1fr;
  }

  .k-concept__mascot {
    width: 220px;
    height: 220px;
  }

  .k-concept__mascot span {
    font-size: 90px;
  }

  .k-service__grid,
  .k-strengths__grid {
    grid-template-columns: 1fr;
  }

  .k-service__card {
    grid-template-columns: 42% 1fr;
  }

  .k-service__card h3 span {
    width: 32px;
    height: 32px;
    font-size: 17px;
  }

  .k-footer__inner {
    display: block;
  }

  .k-footer__nav {
    grid-template-columns: 1fr 1fr;
    margin-top: 16px;
    padding-top: 0;
  }

  .k-company-data__table th,
  .k-company-data__table td,
  .k-company-access__list div {
    display: block;
    width: 100%;
  }

  .k-company-data__table th {
    padding-bottom: 8px;
    border-bottom: 0;
  }

  .k-company-data__table td {
    padding-top: 0;
  }
}

@media (max-width: 560px) {
  .k-container,
  .k-hero__content {
    width: calc(100% - 24px);
  }

  .k-hero {
    min-height: 330px;
  }

  .k-hero__cta {
    width: 100%;
    min-width: 0;
  }

  .k-section-block {
    padding: 36px 0;
  }

  .k-service__card {
    grid-template-columns: 1fr;
  }

  .k-service__card img {
    max-height: 180px;
  }
}
:root {
  --k-navy: #0d2b63;
  --k-navy-deep: #07204e;
  --k-red: #cf2f2f;
  --k-text: #1a2235;
  --k-muted: #69748f;
  --k-border: #d8deeb;
  --k-bg-soft: #f3f5f9;
  --k-green: #33a24f;
  --k-blue: #244da6;
}

* {
  box-sizing: border-box;
}

.kamiya-page {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--k-text);
  line-height: 1.65;
  background: #fff;
}

.k-container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.k-section-block {
  padding: 80px 0;
}

.k-title {
  margin: 0;
  color: var(--k-navy);
  font-family: "Barlow Condensed", "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.0em;
  line-height: 1;
}

.k-title span {
  margin-left: 16px;
  font-size: clamp(1rem, 1.6vw, 1.75rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

.k-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #e7ebf4;
}

.k-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 32px;
}

.k-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--k-navy-deep);
}

.k-brand__mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #2c60bf, #09307b);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
}

.k-brand__text {
  display: grid;
  line-height: 1.2;
}

.k-brand__text strong {
  font-size: clamp(1.2rem, 1.85vw, 2rem);
  font-weight: 700;
}

.k-brand__text small {
  font-size: 0.78rem;
  letter-spacing: 0.0em;
}

.k-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.k-nav a {
  display: inline-block;
  color: var(--k-text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.98rem;
  border-bottom: 3px solid transparent;
  padding: 28px 0 24px;
}

.k-nav a:hover,
.k-nav a.is-current {
  color: var(--k-navy);
  border-bottom-color: var(--k-navy);
}

.k-menu {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.k-menu span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--k-navy);
  margin: 6px auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.k-menu.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.k-menu.is-open span:nth-child(2) {
  opacity: 0;
}

.k-menu.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.k-hero {
  position: relative;
  min-height: min(72vh, 830px);
  overflow: hidden;
}

.k-hero__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(6, 15, 36, 0.55), rgba(6, 15, 36, 0.2)), url("../../image/index/001S.png");
  background-size: cover;
  background-position: center top;
  transform: scale(1.02);
}

.k-hero__content {
  position: relative;
  z-index: 1;
  width: min(1200px, 92vw);
  margin: 0 auto;
  min-height: min(72vh, 830px);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 32px;
  text-align: center;
}

.k-hero__lead {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4.5vw, 4.3rem);
  line-height: 1.45;
  font-weight: 700;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.55);
}

.k-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(340px, 80vw);
  min-height: 62px;
  background: linear-gradient(180deg, #d93a3a, #b51e1e);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.0em;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.k-hero__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.k-news {
  background: #fff;
  border-bottom: 1px solid #edf0f5;
}

.k-news__inner {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr;
  gap: 38px;
}

.k-news__head {
  border-right: 1px solid var(--k-border);
  padding-right: 26px;
}

.k-news__head h2 {
  margin: 0;
  color: var(--k-navy);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.0em;
  line-height: 1;
}

.k-news__head p {
  margin: 8px 0 0;
  color: #263248;
  font-size: 1.0rem;
  font-weight: 700;
}

.k-news__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.k-news__list li {
  border-bottom: 1px solid #e7ebf4;
}

.k-news__list a {
  display: grid;
  grid-template-columns: 130px 92px 1fr;
  gap: 18px;
  align-items: center;
  padding: 10px 0;
  color: inherit;
  text-decoration: none;
}

.k-news__list time {
  color: #4a566e;
  font-weight: 700;
  font-size: 1.0rem;
}

.k-news__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 4px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
}

.k-news__tag--green {
  background: var(--k-green);
}

.k-news__tag--blue {
  background: var(--k-blue);
}

.k-news__list p {
  margin: 0;
  font-size: 1.0rem;
}

.k-news__more {
  margin: 20px 0 0;
  text-align: right;
}

.k-news__more a {
  color: var(--k-navy);
  text-decoration: none;
  font-size: 1.05rem;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
}

.k-news__more a::after {
  content: " >";
}

.k-concept {
  background: var(--k-bg-soft);
}

.k-concept__grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 46px;
  align-items: center;
}

.k-concept__mascot {
  background: url("../../image/index/image17.jpg");
  border: 1px solid #e4e9f3;
  border-radius: 24px;
  text-align: center;
  padding: 24px 16px 20px;
}

.k-concept__mascot span {
  display: block;
  font-size: 6.8rem;
  line-height: 1;
}

.k-concept__mascot p {
  margin: 10px 0 0;
  font-weight: 800;
  color: #20874b;
  font-size: 1.65rem;
}

.k-concept__text p {
  font-size: 1.05rem;
  color: #273044;
}

.k-concept__copy {
  color: var(--k-navy) !important;
  font-size: 2.0rem !important;
  font-weight: 800;
  line-height: 1.6 !important;
}

.k-concept__text strong {
  color: #d0362f;
}

.k-subtitle {
  margin: 14px 0 0;
  color: #39445a;
  font-size: 1.05rem;
  font-weight: 400;
}

.k-service__grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.k-service__card {
  border: 1px solid #cfd7e6;
  background: #fff;
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 214px;
}

.k-service__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k-service__card div {
  padding: 18px 22px;
}

.k-service__card h3 {
  margin: 0;
  color: var(--k-navy);
  font-size: 1.6rem;
  line-height: 1.1;
  font-family: "Barlow Condensed", "Noto Sans JP", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.k-service__card h3 span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--k-navy);
  color: #fff;
  display: inline-grid;
  place-items: center;
  font-size: 1.35rem;
}

.k-service__card p {
  margin: 14px 0 0;
  font-size: 1.0rem;
}

.k-strengths {
  background: var(--k-bg-soft);
}

.k-strengths__grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.k-strengths__item {
  border-right: 1px solid #d7deea;
  padding-right: 18px;
}

.k-strengths__item:last-child {
  border-right: none;
}

.k-strengths__item h3 {
  margin: 0;
  color: var(--k-navy);
  font-size: 1.6rem;
  font-family: "Barlow Condensed", "Noto Sans JP", sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.k-strengths__item h3 span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--k-navy);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.2rem;
}

.k-strengths__item p {
  margin: 12px 0 16px;
  font-size: 0.98rem;
}

.k-strengths__item img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border: 1px solid #d6ddeb;
}

.k-footer {
  background: linear-gradient(180deg, #0b2558, #061c45);
  color: #eff4ff;
  margin-top: 0;
}

.k-footer__inner {
  padding: 34px 0 24px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.k-footer__brand p {
  margin: 0 0 6px;
  font-size: 0.95rem;
}

.k-footer__name {
  font-size: 1.95rem !important;
  font-family: "Barlow Condensed", "Noto Sans JP", sans-serif;
  margin-bottom: 12px !important;
}

.k-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 200px));
  gap: 8px 24px;
}

.k-footer__nav a {
  color: #eff4ff;
  text-decoration: none;
  font-size: 0.96rem;
}

.k-footer small {
  display: block;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 0;
  font-size: 0.84rem;
}

@media (max-width: 1000px) {
  .k-menu {
    display: block;
    position: relative;
    z-index: 60;
  }

  .k-nav {
    position: fixed;
    inset: 84px 0 auto 0;
    background: #fff;
    border-top: 1px solid #e4eaf5;
    transform: translateY(-120%);
    transition: transform 0.25s ease;
    z-index: 55;
  }

  .k-nav.is-open {
    transform: translateY(0);
  }

  .k-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: min(1200px, 92vw);
    margin: 0 auto;
  }

  .k-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid #e8edf7;
    border-top: none;
  }

  .k-nav a.is-current,
  .k-nav a:hover {
    border-bottom-color: #e8edf7;
  }

  .k-news__inner,
  .k-concept__grid,
  .k-service__grid,
  .k-strengths__grid,
  .k-footer__inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .k-news__head {
    border-right: none;
    border-bottom: 1px solid var(--k-border);
    padding-right: 0;
    padding-bottom: 18px;
  }

  .k-news__list a {
    grid-template-columns: 105px 84px 1fr;
    gap: 10px;
  }

  .k-service__card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .k-service__card img {
    aspect-ratio: 16 / 9;
  }

  .k-strengths__item {
    border-right: none;
    border-bottom: 1px solid #d7deea;
    padding-right: 0;
    padding-bottom: 22px;
  }

  .k-strengths__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .k-footer__nav {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .k-header__inner {
    min-height: 70px;
    gap: 12px;
  }

  .k-brand__mark {
    width: 38px;
    height: 38px;
    font-size: 1.3rem;
  }

  .k-brand__text strong {
    font-size: 1rem;
  }

  .k-brand__text small {
    font-size: 0.62rem;
  }

  .k-nav {
    inset: 70px 0 auto 0;
  }

  .k-hero,
  .k-hero__content {
    min-height: 62vh;
  }

  .k-hero__lead {
    font-size: clamp(1.55rem, 6vw, 2.2rem);
  }

  .k-hero__cta {
    min-height: 54px;
    font-size: 1rem;
  }

  .k-news__list a {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px 0;
  }

  .k-news__tag {
    width: fit-content;
  }

  .k-concept__mascot span {
    font-size: 5.5rem;
  }

  .k-concept__mascot p {
    font-size: 1.35rem;
  }

  .k-title span {
    display: block;
    margin: 8px 0 0;
    font-size: 1.0rem;
  }

  .k-footer__inner {
    display: block;
  }

  .k-footer__nav {
    margin-top: 22px;
    grid-template-columns: 1fr;
  }
}
