:root {
  --color-navy: #243d73;
  --color-blue: #eef5fb;
  --color-orange: #de6b37;
  --color-ink: #222831;
  --color-muted: #667085;
  --color-line: #d9e2ec;
  --color-bg: #ffffff;
  --color-soft: #f7f8f6;
  --font-sans: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-bg);
  font-family: var(--font-sans);
  line-height: 1.8;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-navy);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--color-line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
}

.site-brand {
  flex: 0 0 auto;
}

.site-brand img {
  width: 230px;
  max-height: 69px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 16px;
  font-size: 0.92rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--color-ink);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-orange);
}

.site-main {
  min-height: 60vh;
}

.legacy-page,
.contact-page {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 72px;
}

.entry-header {
  margin-bottom: 28px;
  text-align: center;
}

.page-kicker,
.entry-header p:first-child:not(.site-description) {
  margin: 0 0 8px;
  color: var(--color-orange);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.entry-title,
.legacy-page h1 {
  margin: 0 0 18px;
  color: var(--color-navy);
  font-size: clamp(1.75rem, 2.7vw, 2.7rem);
  line-height: 1.35;
  letter-spacing: 0;
}

.legacy-page h2,
.contact-page h2 {
  margin: 42px 0 18px;
  color: var(--color-navy);
  font-size: 1.55rem;
  line-height: 1.45;
  letter-spacing: 0;
}

.legacy-page h3 {
  margin: 30px 0 12px;
  color: var(--color-ink);
  font-size: 1.16rem;
  letter-spacing: 0;
}

.entry-content,
.legacy-page .entry-content {
  width: 100%;
}

.legacy-page .vc_row,
.legacy-page .wpb_row {
  margin: 28px 0;
}

.legacy-page .vc_row::after,
.legacy-page .wpb_row::after {
  display: table;
  clear: both;
  content: "";
}

.legacy-page .wpb_column,
.legacy-page .vc_column_container {
  width: 100%;
}

.legacy-page .wpb_wrapper > *:first-child {
  margin-top: 0;
}

.legacy-page .vc_col-sm-2,
.legacy-page .vc_col-sm-3,
.legacy-page .vc_col-sm-4,
.legacy-page .vc_col-sm-6 {
  float: left;
  padding: 12px;
}

.legacy-page .vc_col-sm-2 {
  width: 16.666%;
}

.legacy-page .vc_col-sm-3 {
  width: 25%;
}

.legacy-page .vc_col-sm-4 {
  width: 33.333%;
}

.legacy-page .vc_col-sm-6 {
  width: 50%;
}

.legacy-page .vc_col-sm-12 {
  width: 100%;
}

.legacy-page .vc_single_image-wrapper,
.legacy-page .wpb_single_image {
  display: inline-block;
  max-width: 100%;
}

.legacy-page .vc_single_image-img {
  margin: 0 auto;
}

.legacy-page .aligncenter,
.legacy-page .wpb_single_image.vc_align_center {
  text-align: center;
}

.legacy-page .vc_btn3-container,
.legacy-page .pastnews,
.legacy-page .tocon {
  margin: 24px 0;
  text-align: center;
}

.legacy-page .vc_btn3,
.legacy-page .pastnews a,
.legacy-page .tocon a,
.contact-methods a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  color: #fff;
  background: var(--color-orange);
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
}

.legacy-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.legacy-page th,
.legacy-page td {
  padding: 12px;
  border: 1px solid var(--color-line);
  vertical-align: top;
}

.legacy-page th {
  background: var(--color-blue);
  color: var(--color-navy);
}

.legacy-page ul,
.legacy-page ol {
  padding-left: 1.4em;
}

.legacy-page .contacttxt,
.contact-lead,
.contact-methods,
.contact-note {
  padding: 22px;
  background: var(--color-soft);
  border: 1px solid var(--color-line);
  border-radius: 6px;
}

.contact-lead {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  align-items: center;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.contact-methods h2,
.contact-note h2 {
  margin-top: 0;
}

.contact-form-panel {
  margin-top: 28px;
  padding: 44px 58px 58px;
  background: #fff;
  border: 3px solid var(--color-navy);
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(36, 61, 115, 0.08);
}

.contact-form-panel h2 {
  margin-top: 0;
}

.contact-form-intro {
  margin: 0 auto 34px;
  color: var(--color-ink);
  line-height: 1.9;
}

.contact-form-intro p {
  margin: 0;
}

.contact-form-intro__tel {
  margin: 30px 0 12px !important;
  color: var(--color-orange);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.contact-form-intro__hours {
  text-align: center;
}

.contact-form-intro__hours strong {
  margin-right: 16px;
}

.contact-form {
  display: grid;
  gap: 24px;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: minmax(160px, 240px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  color: var(--color-ink);
  font-weight: 700;
}

.contact-form__row--message {
  align-items: start;
}

.contact-form__row > label {
  padding-top: 11px;
}

.contact-form__row strong {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 7px;
  color: #fff;
  font-size: 0.78rem;
  line-height: 1.3;
  background: var(--color-orange);
  border-radius: 4px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--color-ink);
  font: inherit;
  font-weight: 500;
  background: #fff;
  border: 1px solid #cfd9e5;
  border-radius: 6px;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(222, 107, 55, 0.18);
  outline: none;
}

.contact-form [aria-invalid="true"] {
  border-color: #bd2f2f;
}

.contact-form small {
  display: block;
  min-height: 1.35em;
  margin-top: 6px;
  color: #bd2f2f;
  font-weight: 700;
}

.contact-form__actions {
  display: flex;
  justify-content: flex-start;
}

.contact-form button {
  min-width: 180px;
  min-height: 48px;
  padding: 12px 22px;
  color: #fff;
  font: inherit;
  font-weight: 800;
  background: var(--color-navy);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  background: var(--color-orange);
  outline: none;
}

.contact-form-message {
  margin: 0 0 20px;
  padding: 18px;
  border-radius: 6px;
}

.contact-form-message h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  letter-spacing: 0;
}

.contact-form-message p,
.contact-form-message ul {
  margin: 0;
}

.contact-form-message ul {
  padding-left: 1.2em;
}

.contact-form-message--success {
  color: #123c23;
  background: #eaf7ee;
  border: 1px solid #b7e0c1;
}

.contact-form-message--error {
  color: #651d1d;
  background: #fff0f0;
  border: 1px solid #f0c2c2;
}

.contact-form-receipt {
  margin-top: 8px !important;
  font-weight: 800;
}

.contact-privacy {
  margin-top: 18px;
}

.contact-privacy__box {
  max-height: 220px;
  padding: 18px 20px;
  overflow: auto;
  color: var(--color-ink);
  background: #f7f7f7;
  border: 1px solid var(--color-line);
  border-radius: 6px;
  font-weight: 500;
  line-height: 1.9;
}

.contact-privacy__box h3 {
  margin: 0 0 18px;
  padding: 11px 16px;
  color: #fff;
  background: var(--color-navy);
  border-radius: 5px;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-privacy__box h4 {
  margin: 18px 0 8px;
  color: var(--color-navy);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-privacy__box p,
.contact-privacy__box ul,
.contact-privacy__box ol {
  margin: 0 0 1em;
}

.contact-privacy__box ul,
.contact-privacy__box ol {
  padding-left: 1.4em;
}

.contact-privacy__agree {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  font-weight: 600;
}

.contact-privacy__agree input {
  width: 16px;
  height: 16px;
  min-height: 16px;
  padding: 0;
}

.contact-privacy__error {
  text-align: center;
}

.contact-form__trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  color: #fff;
  background: var(--color-navy);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.78fr) minmax(280px, 1fr);
  align-items: start;
  gap: 32px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0;
}

.site-footer a {
  color: #fff;
}

.site-footer__logo {
  width: 220px;
  margin-bottom: 14px;
  padding: 8px;
  background: #fff;
  border-radius: 4px;
}

.site-footer__map .tokigane-map__frame {
  display: block;
  width: 100%;
  height: 240px;
  border: 0;
  border-radius: 4px;
}

address {
  font-style: normal;
}

@media (max-width: 860px) {
  .site-header__inner {
    display: block;
    padding: 12px 0;
  }

  .site-brand img {
    width: 210px;
    margin: 0 auto 8px;
  }

  .site-nav {
    justify-content: center;
    gap: 0 12px;
  }

  .legacy-page .vc_col-sm-2,
  .legacy-page .vc_col-sm-3,
  .legacy-page .vc_col-sm-4,
  .legacy-page .vc_col-sm-6 {
    float: none;
    width: 100%;
  }

  .contact-lead,
  .contact-methods,
  .contact-form__grid,
  .contact-form__row,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .contact-form-panel {
    padding: 30px 20px 36px;
  }

  .contact-form__row {
    gap: 8px;
  }

  .contact-form__row > label {
    padding-top: 0;
  }

  .contact-privacy__box {
    max-height: 260px;
  }
}

@media (max-width: 520px) {
  .legacy-page,
  .contact-page {
    width: min(100% - 24px, 1080px);
    padding-top: 28px;
  }

  .site-nav {
    font-size: 0.86rem;
  }

  .site-nav a {
    min-height: 34px;
  }
}

/* Legacy WordPress rendering patches. */
.legacy-page {
  width: 100%;
  margin: 0;
  padding: 0 0 72px;
  overflow: hidden;
}

.legacy-page .page > .entry-wrapper > .entry-header {
  display: none;
}

.legacy-page .entry-wrapper,
.legacy-page .entry-content,
.legacy-page .wpb-content-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
}

.legacy-page .vc_row,
.legacy-page .wpb_row {
  width: 100%;
  margin: 0;
}

.legacy-page .vc_row::before,
.legacy-page .vc_row::after {
  display: table;
  clear: both;
  content: "";
}

.legacy-page .vc_row-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.legacy-page .vc_row-flex::before,
.legacy-page .vc_row-flex::after {
  display: none;
}

.legacy-page .vc_row-flex > .vc_column_container {
  display: flex;
}

.legacy-page .vc_row-flex > .vc_column_container > .vc_column-inner {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.legacy-page .vc_column-inner,
.legacy-page .wpb_wrapper {
  width: 100%;
}

.legacy-page .vc_empty_space {
  clear: both;
}

.legacy-page .wpb_single_image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.legacy-page .wpb_single_image .vc_single_image-wrapper {
  display: inline-block;
  max-width: 100%;
  vertical-align: top;
}

.legacy-page .vc_align_center {
  text-align: center;
}

.legacy-page .vc_align_left {
  text-align: left;
}

.legacy-page .vc_align_right {
  text-align: right;
}

.legacy-page .aligncenter {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.legacy-page .alignleft {
  float: left;
  margin: 0 18px 18px 0;
}

.legacy-page .alignright {
  float: right;
  margin: 0 0 18px 18px;
}

.legacy-page .vc_custom_1761478839402,
.legacy-page .vc_custom_1591608017977 {
  background-image: url("/assets/images/legacy/back_orange3.png");
  background-position: 0 0;
  background-repeat: repeat;
}

.legacy-page .vc_custom_1591608200573 {
  background-image: url("/assets/images/legacy/back_navy2.png");
  background-position: 0 0;
  background-repeat: repeat;
}

.legacy-page .vc_custom_1761478867726,
.legacy-page .vc_custom_1590325673398,
.legacy-page .vc_custom_1590822960745 {
  background-color: #2b4075;
}

.legacy-page .vc_custom_1761222938199 {
  background-color: #f5f5f5;
}

.legacy-page .vc_custom_1761395841334 {
  background-color: #df5f58;
}

.legacy-page .vc_custom_1761287241757 {
  background-color: #e89385;
}

.tkgnbc {
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #312d3d;
}

.tkgnbc p {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 10px 0;
  color: #fff;
  font-size: 0.78rem;
}

.tkgnbc a {
  color: #fff;
  text-decoration: none;
}

.topsec {
  margin: 90px auto 40px;
}

.topplogo img {
  width: min(760px, 88vw);
}

.top-h1 {
  margin: 0 auto 42px;
  color: #312d3d;
  font-family: "Zen Maru Gothic", var(--font-sans);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.br-sp {
  display: none;
}

.newssec {
  padding: 46px 0;
}

.legacy-page .newssec_inner {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
}

.newspic img {
  width: min(220px, 60vw);
  margin: 0 auto;
}

.nslist {
  padding: 26px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 6px 6px rgba(222, 107, 55, 0.5);
}

.whatsnew hr {
  height: 1px;
  margin: 0;
  background: #edf1f7;
  border: 0;
}

.whatsnew dl {
  margin: 0;
}

.whatsnew a {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 12px 0;
  color: #312d3d;
  text-decoration: none;
}

.whatsnew dt,
.whatsnew dd {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.whatsnew dt {
  color: #2b4075;
  font-weight: 700;
}

.pastnews,
.tocon,
.tocon2 {
  margin: 26px 0;
  text-align: center;
}

.pastnews a,
.tocon a,
.tocon2 a,
.sub-page-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 42px;
  color: #fff;
  background-color: #de6b37;
  border-radius: 20px;
  font-weight: 700;
  text-decoration: none;
}

.headtitle {
  width: min(760px, calc(100% - 32px));
  margin: 10px auto 28px;
  color: #2b4075;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.desc,
.titlentxt,
.abtitlentxt {
  color: #312d3d;
  font-size: 1rem;
  line-height: 1.9;
}

.desc {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto 34px;
  text-align: center;
}

.serv4mov img {
  width: min(240px, 56vw);
  margin: 0 auto;
}

.legacy-page .serv4mov,
.legacy-page .servfmov {
  display: none;
}

.legacy-page .servsec,
.legacy-page .servlsec,
.legacy-page .aboutsec,
.legacy-page .customer-voice,
.legacy-page .newsconsec,
.legacy-page .topconsec,
.legacy-page .servcol,
.legacy-page .abocol,
.legacy-page .infolist,
.legacy-page .flowinner {
  width: min(960px, calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

.servsec {
  text-align: center;
}

.servwidth,
.btmcol {
  text-align: center;
}

.servpics img {
  width: min(190px, 100%);
  margin: 0 auto;
}

.servpics h2 {
  width: min(190px, 100%);
  margin: -8px auto 0;
  padding: 6px 8px;
  color: #fff;
  background: #2b4075;
  border-radius: 5px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.servlogo img,
.servlogosec img {
  width: min(260px, 70vw);
  margin: 0 auto;
}

.servpagetitle,
.aboutptitle,
.komontitle {
  color: #2b4075;
  font-weight: 700;
  line-height: 1.55;
}

.servpagetitle {
  margin: 10px auto 18px;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
}

.titlentxt {
  width: min(720px, 100%);
  margin: 0 auto;
}

.sub-page-link {
  margin: 24px 0 40px;
}

.aboutpics img {
  width: min(620px, 100%);
  margin: 0 auto;
}

.aboutptitle,
.abtitlentxt {
  width: min(760px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.gmapsec {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
}

.tkgninfo {
  color: #312d3d;
}

.tkgninfo table {
  background: #fff;
}

.company_address {
  padding: 50px 0;
  background-color: #f5f5f5;
}

.company_address_boxes {
  display: flex;
  justify-content: center;
  gap: 24px;
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.company_address_box {
  width: min(400px, 100%);
}

.company_img img {
  width: min(320px, 100%);
}

.customer-voice ul {
  margin: 25px auto;
  padding: 20px;
  background: #2b4075;
}

.customer-voice li {
  list-style: none;
  margin: 0;
  padding: 28px 36px;
  background: #fff;
  font-size: 0.95rem;
  line-height: 1.9;
}

.customer-voice li + li {
  margin-top: 20px;
}

.customer-voice-head {
  display: flex;
  align-items: center;
  gap: 28px;
}

.customer-voice .icon_bg {
  display: inline-grid;
  place-items: center;
  width: 150px;
  height: 150px;
  padding: 15px;
  border-radius: 50%;
  background-color: #b4c7e7;
}

.customer-voice .icon_bg img {
  width: 115px;
  height: 115px;
  object-fit: contain;
}

.customer-voice .icon_rv {
  transform: scale(-1, 1);
}

.voice-ttl {
  display: inline-block;
  color: #44546a;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700;
  text-decoration: underline;
}

.banner_h2 {
  color: #2b4075;
}

.banner_box {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 0 auto 24px;
}

.banner_box img {
  width: min(700px, 100%);
  margin: 0 auto;
}

.ssns_mb {
  display: none;
}

.topconsec {
  padding: 48px 0;
}

.topconpic img,
.toconsecond img {
  width: min(360px, 70vw);
  margin: 0 auto;
}

.tcontitle {
  color: #2b4075;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.6;
}

.btminfo h2 {
  margin: 10px 0 20px;
  color: #2b4075;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.2;
}

.btminfo p {
  margin: 12px 0;
  font-size: 0.9rem;
}

.komon,
.original_bg-white-area {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto 36px;
}

.komoninner {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 24px;
  background: #fff;
  border-radius: 10px;
}

.komoninner p {
  margin: 0 0 0.8em;
  padding: 18px;
  color: #312d3d;
  background: #f0f8ff;
  border-radius: 10px;
  font-weight: 700;
  text-align: center;
}

.komoninner ul {
  margin: 1.5em 0 0;
  padding-left: 1.2em;
}

.komoninner li {
  margin: 0.6em 0;
  line-height: 1.7;
}

.emphasis {
  font-size: 1.35em;
}

.news-list-page {
  background: #f5f5f5;
}

.page-hero {
  padding: 0 0 34px;
  text-align: center;
  background: #fff;
}

.page-hero > p {
  margin: 0 0 30px;
}

.page-hero__icon img {
  width: 150px;
  margin: 0 auto 14px;
}

.page-hero h1 {
  color: #2b4075;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.news-list {
  width: min(920px, calc(100% - 32px));
  margin: 40px auto 0;
}

.news-list__item {
  padding: 30px 34px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 8px rgba(36, 61, 115, 0.08);
}

.news-list__item + .news-list__item {
  margin-top: 22px;
}

.news-list__title {
  margin: 0 0 8px;
  color: #2b4075;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
}

.news-list__title a {
  color: inherit;
  text-decoration: none;
}

.news-list__title a:hover,
.news-list__title a:focus-visible {
  color: #de6b37;
}

.news-list__excerpt {
  margin: 18px 0 0;
  line-height: 1.9;
}

.news-list__note {
  margin: 14px 0 0;
  padding: 10px 12px;
  color: #5b6472;
  background: #f5f5f5;
  border-left: 4px solid #de6b37;
  font-size: 0.9rem;
}

.post-meta {
  color: #667085;
  font-size: 0.88rem;
  line-height: 1.5;
}

.post-meta .updated {
  display: none;
}

.news-detail {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 80px;
}

.news-detail__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 28px;
  color: #6b7280;
  font-size: 0.88rem;
}

.news-detail__breadcrumb a {
  color: #4c5870;
  text-decoration: none;
}

.news-detail__breadcrumb a:hover,
.news-detail__breadcrumb a:focus-visible {
  color: var(--color-orange);
}

.news-detail__header {
  position: relative;
  margin: 0 0 34px;
  padding: 44px 48px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86)),
    url("/assets/images/legacy/back_orange3.png");
  border: 1px solid #f0d7c7;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(36, 61, 115, 0.1);
}

.news-detail__label {
  margin: 0 0 12px;
  color: var(--color-orange);
  font-family: "Zen Maru Gothic", var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-detail h1 {
  margin: 0;
  color: #2b4075;
  font-size: clamp(1.55rem, 3.4vw, 2.55rem);
  line-height: 1.45;
}

.news-detail__date {
  display: inline-flex;
  margin-top: 18px;
  padding: 5px 13px;
  color: #fff;
  background: #2b4075;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.news-detail__body {
  padding: 44px 50px;
  background: #fff;
  border: 1px solid #e7edf5;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(36, 61, 115, 0.08);
}

.news-detail__body > *:first-child {
  margin-top: 0;
}

.news-detail__body > *:last-child {
  margin-bottom: 0;
}

.news-detail__body p {
  margin: 0 0 1.35em;
  line-height: 2;
}

.news-detail__body a {
  overflow-wrap: anywhere;
  color: #244d8f;
  font-weight: 600;
}

.news-detail__body hr {
  height: 1px;
  margin: 24px 0;
  background: #d9e2ec;
  border: 0;
}

.news-detail__body img {
  margin: 18px auto;
  border-radius: 4px;
}

.news-detail__body figure {
  margin: 28px 0;
}

.news-detail__body .alignleft,
.news-detail__body .alignright,
.news-detail__body .aligncenter {
  float: none;
  margin: 0;
}

.news-detail__image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
  margin: 28px 0;
}

.news-detail__image-link,
.news-detail__body a:has(> img) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  margin: 10px 14px 10px 0;
  padding: 8px;
  color: inherit;
  background: #f8fafc;
  border: 1px solid #e1e9f2;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(36, 61, 115, 0.06);
  cursor: zoom-in;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.news-detail__image-row .news-detail__image-link,
.news-detail__image-row a:has(> img) {
  margin: 0;
}

.news-detail__image-link:hover,
.news-detail__image-link:focus-visible,
.news-detail__body a:has(> img):hover,
.news-detail__body a:has(> img):focus-visible {
  border-color: #de6b37;
  box-shadow: 0 12px 26px rgba(36, 61, 115, 0.12);
  outline: none;
  transform: translateY(-1px);
}

.news-detail__image-link img,
.news-detail__body a:has(> img) img {
  display: block;
  width: auto;
  max-width: min(100%, 320px);
  max-height: 360px;
  margin: 0;
  object-fit: contain;
}

.news-detail__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.news-detail__body th,
.news-detail__body td {
  padding: 14px 16px;
  border: 1px solid #d9e2ec;
  vertical-align: top;
}

.news-detail__body th {
  color: #2b4075;
  background: #eef5fb;
  font-weight: 700;
  text-align: left;
}

.news-detail__body .wp-block-gallery,
.news-detail__body .blocks-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.news-detail__body .blocks-gallery-item {
  list-style: none;
  margin: 0;
}

.news-detail__body .blocks-gallery-item figure,
.news-detail__body .blocks-gallery-item img {
  width: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
}

.news-lightbox-open {
  overflow: hidden;
}

.news-lightbox[hidden] {
  display: none;
}

.news-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(17, 24, 39, 0.82);
}

.news-lightbox__dialog {
  position: relative;
  display: grid;
  gap: 10px;
  width: min(1100px, 100%);
  max-height: 94vh;
  color: #fff;
  outline: none;
}

.news-lightbox__figure {
  display: grid;
  gap: 10px;
  place-items: center;
  margin: 0;
}

.news-lightbox__image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.news-lightbox__caption,
.news-lightbox__counter {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  text-align: center;
}

.news-lightbox__close,
.news-lightbox__nav {
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: rgba(36, 61, 115, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  cursor: pointer;
}

.news-lightbox__close:hover,
.news-lightbox__close:focus-visible,
.news-lightbox__nav:hover,
.news-lightbox__nav:focus-visible {
  background: #de6b37;
  outline: none;
}

.news-lightbox__close {
  position: absolute;
  top: -18px;
  right: -10px;
  width: 44px;
  height: 44px;
  font-size: 1.7rem;
  line-height: 1;
}

.news-lightbox__nav {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  font-size: 2.4rem;
  line-height: 1;
  transform: translateY(-50%);
}

.news-lightbox__nav--prev {
  left: -12px;
}

.news-lightbox__nav--next {
  right: -12px;
}

.news-detail__footer {
  margin-top: 34px;
  text-align: center;
}

.news-detail__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 34px;
  color: #fff;
  background: var(--color-orange);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.news-detail__back:hover,
.news-detail__back:focus-visible {
  background: #c55325;
}

@media (min-width: 768px) {
  .legacy-page .vc_col-sm-2 {
    width: 16.666%;
  }

  .legacy-page .vc_col-sm-3 {
    width: 25%;
  }

  .legacy-page .vc_col-sm-4 {
    width: 33.333%;
  }

  .legacy-page .vc_col-sm-6 {
    width: 50%;
  }

  .legacy-page .vc_col-sm-8 {
    width: 66.666%;
  }

  .legacy-page .vc_col-sm-9 {
    width: 75%;
  }

  .legacy-page .vc_col-sm-12 {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .legacy-page {
    padding-top: 0;
  }

  .legacy-page .vc_col-sm-2,
  .legacy-page .vc_col-sm-3,
  .legacy-page .vc_col-sm-4,
  .legacy-page .vc_col-sm-6,
  .legacy-page .vc_col-sm-8,
  .legacy-page .vc_col-sm-9 {
    float: none;
    width: 100%;
  }

  .legacy-page .vc_row-flex {
    display: block;
  }

  .br-sp {
    display: block;
  }

  .topsec {
    margin-top: 48px;
  }

  .newssec {
    padding: 34px 0;
  }

  .legacy-page .newssec_inner,
  .legacy-page .servsec,
  .legacy-page .servlsec,
  .legacy-page .aboutsec,
  .legacy-page .customer-voice,
  .legacy-page .newsconsec,
  .legacy-page .topconsec,
  .legacy-page .servcol,
  .legacy-page .abocol,
  .legacy-page .infolist,
  .legacy-page .flowinner {
    width: min(100% - 24px, 960px);
  }

  .nslist {
    margin-top: 24px;
    padding: 20px;
  }

  .whatsnew a {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .customer-voice ul {
    padding: 10px;
  }

  .customer-voice li {
    padding: 16px;
  }

  .customer-voice-head,
  .company_address_boxes,
  .banner_box {
    display: block;
  }

  .customer-voice .icon_bg {
    margin: 0 auto 12px;
  }

  .ssns_pc {
    display: none !important;
  }

  .ssns_mb {
    display: inline-block !important;
  }

  .topconsec {
    padding: 32px 0;
    text-align: center;
  }

  .news-list__item {
    padding: 24px 20px;
  }

  .news-detail {
    width: min(100% - 24px, 920px);
    padding-top: 24px;
  }

  .news-detail__header {
    padding: 32px 24px;
  }

  .news-detail__body {
    padding: 30px 22px;
  }

  .news-detail__body .wp-block-gallery,
  .news-detail__body .blocks-gallery-grid {
    grid-template-columns: 1fr;
  }

  .news-detail__image-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .news-detail__image-link,
  .news-detail__body a:has(> img) {
    margin-right: 8px;
  }

  .news-detail__image-row .news-detail__image-link,
  .news-detail__image-row a:has(> img) {
    width: 100%;
  }

  .news-detail__image-link img,
  .news-detail__body a:has(> img) img {
    max-width: 100%;
    max-height: 300px;
  }

  .news-lightbox {
    padding: 18px;
  }

  .news-lightbox__image {
    max-height: 78vh;
  }

  .news-lightbox__close {
    top: -14px;
    right: -6px;
  }

  .news-lightbox__nav {
    top: auto;
    bottom: 34px;
    width: 42px;
    height: 42px;
    font-size: 2rem;
    transform: none;
  }

  .news-lightbox__nav--prev {
    left: 16px;
  }

  .news-lightbox__nav--next {
    right: 16px;
  }
}
