

html {
  scroll-padding-top: calc(80px + var(--admin-bar-offset, 0px) + 20px);
}

@media (max-width: 1023px) {
  html {
    scroll-padding-top: calc(80px + var(--admin-bar-offset, 0px) + 16px);
  }
}



/* ========================================
Subpage common
======================================== */
body.subpage {
  font-family: var(--font-noto);
  background: #fff;
}
.subpage main {
  padding-top: 0;
}
.subpage-main {
  padding-top: 0px;
}
.admin-bar .subpage-main {
  padding-top: -40px;
}
.subpage-kv {
  position: relative;
  padding: 120px 0 100px;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.subpage-kv--blue {
  background: linear-gradient(90deg, #1783d7 0%, #0d47a1 100%);
}
.subpage-kv--blue::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/bgContact.png") center/cover no-repeat;
  opacity: .32;
  pointer-events: none;
}
.subpage-kv--light {
/*  background: #f6f6f6;*/
}
.subpage-kv--light::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -140px;
  width: 760px;
  height: 420px;
  background: url("../images/bgRectangle.png") center/contain no-repeat;
  opacity: .12;
  pointer-events: none;
}
.subpage-kv .container { position: relative; z-index: 1;width: 100%; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 40px;
  font-size: 14px;
  color: rgba(255,255,255,.86);
}
.subpage-kv--light .breadcrumb { justify-content: flex-end; color: #999; }
.breadcrumb a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb .sep { opacity: .7; }
.subpage-title-en {
  margin: 0; font-family: var(--font-lato); font-weight: 900;
  letter-spacing: 2px; font-size: clamp(56px, 6vw, 76px); line-height: 1;
}
.subpage-kv--blue .subpage-title-en { color: #fff; }
.subpage-kv--light .subpage-title-en { color: #0080D9; }
.subpage-title-ja { margin-top: 10px; font-size: 14px; font-weight: 700; color: #0080D9; }
.subpage-content { padding: 70px 0 120px; }
.subpage-contact { margin-top: 120px; }
.sub-container-narrow {
  margin: 0 auto; padding: 0 20px;
}
.sub-container-wide {
  margin: 0 auto; padding: 0 50px;
}
.sub-container-narrow { max-width: 1060px; }
.sub-container-wide { max-width: 1340px; }

@media (max-width: 1023px) {
  .breadcrumb {font-size:11px !important;}
  .subpage-contact { margin-top: 70px; }
  .sub-container-narrow {
    margin: 0 auto; padding: 0 20px;
  }
  .sub-container-wide {
    margin: 0 auto; padding: 0 20px;
  }
}



/* ----------------------------------------
   About
---------------------------------------- */

.about-page .subpage-content {
  padding-top: 0;
}

.about-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 25em;
  background: url("../images/aboutus_01.jpg") center center / cover no-repeat;
  font-size: 30px;
  overflow: hidden;
}

.about-hero-copy {
  max-width: 1340px;
  margin: 0 auto;
  padding: 100px 50px;
  color: #fff;
}

.about-hero-copy p {
  margin: 0;
  font-family: var(--font-zen-old);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 2px;
  text-shadow: 0 0 18px rgba(13, 71, 161, 0.6);
}

.about-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  margin-top: 90px;
}

.about-section-image,
.about-section-text {
  min-width: 0;
}

.about-section-image {
  min-height: 520px;
}

.about-section-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 通常: 画像左、テキスト右 */
.about-section .about-section-image {
  order: 1;
  padding-right: 50px;
}

.about-section .about-section-text {
  order: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-right: max(50px, calc((100vw - 1340px) / 2 + 50px));
  padding-left: 50px;
}

/* reverse: 画像右、テキスト左 */
.about-section--reverse .about-section-text {
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: max(50px, calc((100vw - 1340px) / 2 + 50px));
  padding-right: 50px;
}

.about-section--reverse .about-section-image {
  order: 2;
  padding-right: 0;
  padding-left: 50px;
}

.about-section-text h2 {
  margin: 0 0 28px;
  font-family: var(--font-zen-old);
  font-size: 40px;
  line-height: 1.45;
  letter-spacing: 4px;
  color: #333;
}

.about-section-text p {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 1.6px;
}

/* ----------------------------------------
   Mobile
---------------------------------------- */
@media (max-width: 1023px) {
  .about-page .subpage-kv {
    padding-top: 90px;
    padding-bottom: 80px;
    min-height: auto;
  }

  .about-hero {
    min-height: 386px;
    background-position: center center;
  }

  .about-hero-copy {
    padding: 34px 20px;
  }

  .about-hero-copy p {
    font-size: 18px;
    line-height: 1.9;
    letter-spacing: 1.4px;
  }

  .about-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 70px;
  }
  .about-section .about-section-image,
  .about-section--reverse .about-section-image {
    padding: 0;
  }

  .about-section .about-section-image,
  .about-section--reverse .about-section-image,
  .about-section .about-section-text,
  .about-section--reverse .about-section-text {
    order: initial;
  }

  .about-section-image {
    min-height: 0;
  }

  .about-section-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .about-section .about-section-text,
  .about-section--reverse .about-section-text {
    padding: 0 20px;
  }

  .about-section-text h2 {
    font-size: 34px;
    letter-spacing: 2px;
    line-height: 1.5;
    margin-bottom: 22px;
  }

  .about-section-text p {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 1px;
    margin-bottom: 18px;
  }

}



/* ----------------------------------------
 Business 
---------------------------------------- */

.business-card-large {
  position:relative; display:block; overflow:hidden; text-decoration:none; color:#fff;
}
.business-card-large img { width:100%; height:280px; object-fit:cover; display:block; }
.business-card-large::after { content:""; position:absolute; inset:0; background:rgba(0,0,0,.18); }
.business-card-large .label {
  position:absolute; left:36px; top:50%; transform:translateY(-50%); z-index:1;
  display:flex; align-items:center; gap:18px; font-size:18px; font-weight:700; letter-spacing:1.4px;
}
.business-card-large .circle {
  width:40px; height:40px; border:2px solid #fff; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center; font-size:22px;
}
.business-item-desc { margin-top:18px; font-size:16px; line-height:2; letter-spacing:1.4px; }

.business-page .subpage-title-en {
  color: #333333;
}


.business-card-large img {
  transition: transform 0.5s ease;
}

.business-card-large::after {
  transition: background 0.35s ease;
}

.business-page .subpage-kv {
  padding-top: 116px;
  padding-bottom: 118px;
  min-height: 340px;
}

.business-page .subpage-title-en {
  color: #3a3a3a;
  font-size: clamp(60px, 6vw, 76px);
  letter-spacing: 1px;
}

.business-page .subpage-title-ja {
  color: #0080d9;
}

.business-page .subpage-kv--light::before {
  content: "";
  position: absolute;
  top: 120px;
  right: -300px;
  width: 1230px;
  height: 860px;
  background: url("../images/bgRectangleGray.png") center/contain no-repeat;
  opacity: 1;
}

/* Content area */
.business-page .subpage-content {
  padding-top: 88px;
}

.business-page .sub-container-narrow {
  max-width: 980px;
}

/* List */
.business-page .business-list {
  display:grid;
  gap: 76px;
  max-width: 1040px;
  margin: 0 auto;
}

/* Item heading */
.business-page .business-item-title {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0;
  color: #333;
}

.business-page .business-item-underline {
  width: 50px;
  height: 1px;
  margin-bottom: 30px;
  background: #0D47A1;
}

/* Card */
.business-page .business-card-large {
  border-radius: 0;
}

.business-page .business-card-large img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.business-page .business-card-large::after {
  background: rgba(0, 0, 0, 0.18);
}

/* Overlay label */
.business-page .business-card-large .label {
  left: 26px;
  top: 50%;
  transform: translateY(-50%);
  gap: 14px;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #fff;
}

.business-page .business-card-large .circle {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  color: #fff;
  background: transparent;
  box-sizing: border-box;
}

/* Description */
.business-page .business-item-desc {
  margin-top: 30px;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #333;
}

/* Hover */
.business-page .business-card-large:hover img {
  transform: scale(1.03);
}

.business-page .business-card-large:hover::after {
  background: rgba(0, 0, 0, 0.12);
}


@media (max-width: 1023px) {
  .business-page .subpage-kv {
    padding-top: 90px;
    padding-bottom: 38px;
    min-height: 260px;
  }

  .business-page .subpage-kv--light::before {
    top: 70px;
    left: -210px;
    width: 1000px;
    height: 700px;
    background: url("../images/bgRectangleGray.png") center/contain no-repeat;
    opacity: 1;
  }

  .business-page .subpage-title-en {
    font-size: 50px;
    letter-spacing: 0;
  }

  .business-page .subpage-content {
    padding-top: 28px;
  }

  .business-page .business-list {
    gap: 54px;
  }

  .business-page .business-item-title {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.45;
  }

  .business-page .business-item-underline {
    width: 50px;
    margin-bottom: 30px;
  }

  .business-page .business-card-large img {
    height: 200px;
  }

  .business-page .business-card-large .label {
    left: 16px;
    gap: 10px;
    font-size: 18px;
    line-height: 1.35;
    letter-spacing: 0;
  }

  .business-page .business-card-large .circle {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    font-size: 20px;
    border-width: 1.5px;
  }

  .business-page .business-item-desc {
    margin-top: 20px;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.1em;
    color: #333;
  }

}




/* ----------------------------------------
 Business Detail
---------------------------------------- */

.business-detail-page .subpage-kv {
  padding-top: 116px;
  padding-bottom: 26px;
  min-height: 120px;
  align-items: flex-end;
}

.admin-bar .subpage-main.news-detail-page {
  padding-top: 0;
}

.business-detail-page .subpage-kv--light::before {
  display: none;
}

.business-detail-page .breadcrumb {
  justify-content: flex-end;
  margin-bottom: 0;
  color: #b2b2b2;
  font-size: 14px;
}

.business-detail-page .business-detail-content {
  padding-top: 32px;
}

.business-detail-page .business-detail-article {
  max-width: 1040px;
  margin: 0 auto;
}

.business-detail-title {
  margin: 0 0 32px;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.3;
  letter-spacing: 0;
  color: #0D47A1;
}

.business-detail-main-image {
  margin: 0 0 64px;
}

.business-detail-main-image img {
  width: 100%;
  aspect-ratio: 1000 / 560;
  object-fit: cover;
  display: block;
}

.business-detail-section + .business-detail-section {
  margin-top: 72px;
}

.business-detail-heading {
  margin: 0 0 28px;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.45;
  color: #0D47A1;
}

.business-detail-summary-box {
  background: #f2f6fa;
  padding: 34px 42px;
}

.business-detail-summary-box p {
  margin: 1em 0;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #333;
}

.business-detail-works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.business-detail-work-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.business-detail-work-thumb {
  margin-bottom: 10px;
}

.business-detail-work-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1.28;
  object-fit: cover;
  display: block;
}

.business-detail-work-date {
  margin: 0 0 4px;
  font-size: 12px;
  line-height: 1.5;
  color: #333;
}

.business-detail-work-title {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
  color: #333;
}

.business-detail-works-link {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

.business-detail-works-link .btn-view-all {
  margin-top: 0;
}

.business-detail-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.business-detail-related-card {
  position: relative;
  display: block;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}

.business-detail-related-card img {
  width: 100%;
  aspect-ratio: 1.9 / 1;
  object-fit: cover;
  display: block;
}

.business-detail-related-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
}

.business-detail-related-label {
  position: absolute;
  left: 18px;
  top: 16px;
  z-index: 1;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.business-detail-related-icon {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  width: 34px;
  height: 34px;
}

.business-detail-related-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.business-detail-work-card:hover .business-detail-work-thumb img,
.business-detail-related-card:hover img {
  transform: scale(1.04);
  transition: transform 0.45s ease;
}

.business-detail-work-thumb img,
.business-detail-related-card img {
  transition: transform 0.45s ease;
}

@media (max-width: 1023px) {
  .business-detail-page .subpage-kv {
    padding-top: 90px;
    padding-bottom: 20px;
    min-height: 96px;
  }

  .business-detail-page .breadcrumb {
    
  }

  .business-detail-page .business-detail-content {
    padding-top: 20px;
  }

  .business-detail-page .business-detail-article {
    max-width: none;
  }

  .business-detail-title {
    margin-bottom: 24px;
    font-size: 30px;
    line-height: 1.45;
  }

  .business-detail-main-image {
    margin-bottom: 50px;
  }

  .business-detail-main-image img {
    aspect-ratio: 1 / 0.72;
  }

  .business-detail-section + .business-detail-section {
    margin-top: 48px;
  }

  .business-detail-heading {
    margin-bottom: 30px;
    font-size: 21px;
    line-height: 1.5;
  }

  .business-detail-summary-box {
    padding: 24px 22px;
  }

  .business-detail-summary-box p {
    font-size: 14px;
  }

  .business-detail-works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .business-detail-work-thumb {
    margin-bottom: 8px;
  }

  .business-detail-work-date {
    font-size: 11px;
  }

  .business-detail-work-title {
    font-size: 13px;
    line-height: 1.5;
  }

  .business-detail-works-link {
    justify-content: center;
    margin-top: 18px;
  }

  .business-detail-related-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .business-detail-related-label {
    left: 14px;
    top: 12px;
    font-size: 14px;
  }

  .business-detail-related-icon {
    right: 10px;
    bottom: 10px;
    width: 30px;
    height: 30px;
  }

}







/* 
  News
 */


.admin-bar .subpage-main.news-page {
  padding-top: 0;
}
.news-layout-sub { display:grid; grid-template-columns:170px 1fr; gap:70px; }
.news-filter { padding-top:10px; }
.news-filter a {
  display:flex; align-items:center; gap:10px; margin-bottom:18px;
  color:#999; text-decoration:none; font-size:15px; font-weight:500;
}
.news-filter a.active { color:#0d47a1; font-weight:700; }
.news-filter a::before { content:"◆"; font-size:10px; }
.news-list-sub { border-top:1px solid rgba(13,71,161,.1); }
.news-row {
  display: grid;
  grid-template-columns: 126px 1fr 30px;
  align-items: flex-start;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(13,71,161,.1);
  text-decoration: none;
  color: #333;
}
.news-row-thumb {
  width: 126px;
  height: 81px;
  object-fit: cover;
  display: block;
  background: #fff;
}
.noimage { filter: saturate(100%) contrast(100%) brightness(100%);}
.news-row-body { min-width:0; }
.news-row-meta { display:flex; align-items:center; gap:16px; margin-bottom:6px; }
.news-row-date { color:#0d47a1; font-weight:700; font-size:14px; }
.news-row-cat {
  min-height:24px; padding:3px 12px; border-radius:999px; background:#edf6ff;color:#0d47a1; font-size:12px; font-weight:700;
}
.news-row-title {
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis; font-size:15px; line-height:1.8;
}
.news-row-arrow {
  width:30px; height:30px; border:1px solid #0d47a1; border-radius:50%;display:inline-flex; align-items:center; justify-content:center; color:#0d47a1; font-size:18px;align-self: center;justify-self: center;
}
.pagination {
  display:flex; justify-content:center; align-items:center; gap:14px; margin-top:52px;
}
.pagination a, .pagination span {
  width:36px; height:36px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center;text-decoration:none; font-size:15px; font-weight:700;
}
.pagination .current { background:#0080D9; color:#fff; }
.pagination .num { background:#edf4fb; color:#0080D9; }
.pagination .arrow { color:#0080D9; font-size:22px; width:auto; }

/* reuse contact */
.subpage-contact .contact-box { max-width:none; margin-right:0; }

@media (max-width:1023px) {

  .business-list { gap:60px; }
  .business-item-title { font-size:28px; margin-bottom:14px; }
  .business-card-large img { height:200px; }
  .business-card-large .label { left:18px; gap:12px; font-size:16px; }
  .business-card-large .circle { width:34px; height:34px; font-size:18px; }
  .business-item-desc { font-size:14px; line-height:2; margin-top:16px; }

  .news-layout-sub { grid-template-columns:1fr; gap:24px; }
  .news-filter {
    display:flex; gap:10px; overflow-x:auto; padding:0 0 12px;
  }
  .news-filter a {
    flex:0 0 auto; margin-bottom:0; min-height:34px; padding:0 18px; border-radius:999px;
    background:#edf4fb; color:#999;
  }
  .news-filter a.active { background:#edf6ff; color:#0d47a1; }
  .news-filter a::before { display:none; }
  .news-row {
    grid-template-columns: 90px 1fr 30px;
    gap: 14px;
    align-items: flex-start;
  }
  .news-row-thumb {
    width: 99px;
    height: 66px;
    margin-top: 2px;
  }
  .news-row-arrow {
    align-self: center;
    justify-self: center;
  }
  .news-row-meta { flex-wrap:wrap; gap:10px 12px; margin-bottom:6px; }
  .news-row-title { white-space:normal; overflow:visible; text-overflow:unset; font-size:14px; line-height:1.85; }
  .pagination { gap:10px; margin-top:40px; }
  .pagination a, .pagination span { width:38px; height:38px; }
}




/* ----------------------------------------
 Works archives
---------------------------------------- */

.admin-bar .subpage-main.works-page,
.admin-bar .subpage-main.works-detail-page {
  padding-top: 0;
}

.works-page .subpage-kv {
  padding-top: 116px;
  padding-bottom: 118px;
  min-height: 340px;
}

.works-page .subpage-title-en {
  color: #3a3a3a;
  font-size: clamp(60px, 6vw, 76px);
  letter-spacing: 1px;
}

.works-page .subpage-title-ja {
  color: #0080d9;
}

.works-page .subpage-kv--light::before {
  content: "";
  position: absolute;
  top: 120px;
  right: -300px;
  width: 1230px;
  height: 860px;
  background: url("../images/bgRectangleGray.png") center/contain no-repeat;
  opacity: 1;
}

.works-page .works-page-content {
  padding-top: 88px;
}

.works-page .sub-container-narrow {
  max-width: 1100px;
}

/* filter */
.works-filter-panel {
  background: #f3f4f8;
  padding: 28px 28px 20px;
  margin-bottom: 36px;
  border-radius: 5px;
}

.works-filter-head {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.works-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #333;
}

.works-filter-toggle-icon {
  font-size: 10px;
  line-height: 1;
}

.works-filter-body {
  display: grid;
  gap: 16px;
}

.works-filter-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: start;
  gap: 18px;
}

.works-filter-label {
  padding-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #333;
}

.works-filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.works-filter-options button {
  min-width: 88px;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid #d8dce4;
  background: transparent;
  color: #333;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.25s ease;
}

.works-filter-options button.is-active {
  background: #0D47A1;
  border-color: #0D47A1;
  color: #fff;
}

.works-filter-submit {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.works-filter-search {
  min-width: 250px;
  height: 50px;
  border-radius: 4px;
  background: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #333;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease,
    gap 0.25s ease;
}

.works-filter-search i {
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}

.works-filter-search:hover {
  background: #0D47A1;
  color: #fff;
  box-shadow: 0 8px 18px rgba(13, 71, 161, 0.18);
  transform: translateY(-2px);
  gap: 14px;
}

.works-filter-search:hover i {
  transform: translateX(2px);
  color: #fff;
}

.works-filter-search:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(13, 71, 161, 0.14);
}

.works-filter-search:focus-visible {
  outline: 2px solid #0D47A1;
  outline-offset: 2px;
}

/* archive */
.works-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px 22px;
}

.works-archive-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.works-archive-thumb {
  margin-bottom: 10px;
}

.works-archive-thumb img {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.works-archive-card:hover .works-archive-thumb img {
  transform: scale(1.04);
}

.works-archive-date {
  margin: 0 0 4px;
  font-size: 12px;
  line-height: 1.5;
  color: #333;
}

.works-archive-title {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
  color: #333;
}

.works-pagination {
  margin-top: 42px;
}

.works-page .works-page-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.works-page .subpage-contact {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.works-detail-tax-link {
  color: #0D47A1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.works-detail-tax-link:hover {
  opacity: 0.8;
}

/* Works search result summary */
.works-result-summary {
  margin: 0 0 34px;
  padding: 20px 26px;
  background: #f5f8fb;
/*  border-left: 4px solid #0D47A1;*/
}

.works-result-summary-label {
  margin: 0 0 8px;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
  color: #0D47A1;
}

.works-result-summary-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
  color: #333;
}


@media (max-width: 1023px) {
  .works-page .subpage-kv {
    padding-top: 90px;
    padding-bottom: 38px;
    min-height: 260px;
  }

  .works-page .subpage-kv--light::before {
    top: 70px;
    left: -210px;
    width: 1000px;
    height: 700px;
    background: url("../images/bgRectangleGray.png") center/contain no-repeat;
    opacity: 1;
  }

  .works-page .subpage-title-en {
    font-size: 50px;
    letter-spacing: 0;
  }

  .works-page .works-page-content {
    padding-top: 28px;
  }

  .works-filter-panel {
    padding: 14px 12px;
    margin-bottom: 30px;
    border-radius: 5px;
  }

  .works-filter-head {
    margin-bottom: 0;
  }

  .works-filter-body {
    display: none;
  }

  .works-filter-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .works-filter-label {
    padding-top: 0;
    font-size: 12px;
  }

  .works-filter-options {
    gap: 6px;
  }

  .works-filter-options button {
    min-width: auto;
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .works-filter-search {
    min-width: 150px;
    height: 36px;
    font-size: 12px;
  }

  .works-archive-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .works-archive-thumb {
    margin-bottom: 8px;
  }

  .works-archive-date {
    font-size: 11px;
  }

  .works-archive-title {
    font-size: 13px;
    line-height: 1.5;
  }

  .works-pagination {
    margin-top: 28px;
  }

  .works-result-summary {
    margin-bottom: 24px;
    padding: 18px 16px;
  }

  .works-result-summary-label {
    margin-bottom: 6px;
    font-size: 11px;
  }

  .works-result-summary-title {
    font-size: 16px;
    line-height: 1.7;
  }

}

.works-filter-options button,
.works-filter-search,
.works-filter-toggle {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  caret-color: transparent;
}

.works-filter-options button:focus,
.works-filter-search:focus,
.works-filter-toggle:focus {
  outline: none;
}

.works-filter-options button:focus-visible,
.works-filter-search:focus-visible,
.works-filter-toggle:focus-visible {
  outline: none;
  box-shadow: none;
}



/* ----------------------------------------
 Works Detail
---------------------------------------- */

.admin-bar .subpage-main.business-detail-page {
  padding-top: 0;
}

.works-detail-page .subpage-kv {
  padding-top: 116px;
  padding-bottom: 26px;
  min-height: 120px;
  align-items: flex-end;
}

.works-detail-page .subpage-kv--light::before {
  display: none;
}

.works-detail-page .breadcrumb {
  justify-content: flex-end;
  margin-bottom: 0;
  color: #b2b2b2;
  font-size: 14px;
}

.works-detail-page .works-detail-content {
  padding-top: 32px;
}

.works-detail-page .works-detail-article {
  max-width: 1040px;
  margin: 0 auto;
}

.works-detail-title {
  margin: 0 0 18px;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.3;
  letter-spacing: 0;
  color: #0D47A1;
}

.works-detail-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.works-detail-date,
.works-detail-cat {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}

.works-detail-main-image {
  margin: 0 0 64px;
}

.works-detail-main-image img {
  width: 100%;
  aspect-ratio: 1000 / 560;
  object-fit: cover;
  display: block;
}

.works-detail-section + .works-detail-section {
  margin-top: 72px;
}

.works-detail-heading {
  margin: 0 0 28px;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.45;
  color: #0D47A1;
}

.works-detail-summary-box {
  background: #f2f6fa;
  padding: 34px 42px;
}

.works-detail-spec {
  display: grid;
  gap: 14px;
}

.works-detail-spec-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
}

.works-detail-spec dt {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
  color: #333;
}

.works-detail-spec dd {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

.works-detail-body {
  display: grid;
  gap: 24px;
}

.works-detail-body p {
  margin: 0;
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: 0.08em;
  color: #333;
}

.works-detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 2em;
}

.works-detail-gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
  display: block;
}

.works-detail-gallery-item-title {
  margin-top: 0.5em;
  color: #0D47A1;
  font-weight: bold;
}

.works-detail-back {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}

.works-detail-back .btn-view-all {
  margin-top: 0;
}

@media (max-width: 1023px) {
  .works-detail-page .subpage-kv {
    padding-top: 90px;
    padding-bottom: 20px;
    min-height: 96px;
  }

  .works-detail-page .breadcrumb {
    
  }

  .works-detail-page .works-detail-content {
    padding-top: 20px;
  }

  .works-detail-page .works-detail-article {
    max-width: none;
  }

  .works-detail-title {
    margin-bottom: 12px;
    font-size: 30px;
    line-height: 1.45;
  }

  .works-detail-meta {
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }

  .works-detail-date,
  .works-detail-cat {
    font-size: 12px;
  }

  .works-detail-main-image {
    margin-bottom: 40px;
  }

  .works-detail-main-image img {
    aspect-ratio: 1 / 0.72;
  }

  .works-detail-section + .works-detail-section {
    margin-top: 48px;
  }

  .works-detail-heading {
    margin-bottom: 18px;
    font-size: 21px;
    line-height: 1.5;
  }

  .works-detail-summary-box {
    padding: 24px 22px;
  }

  .works-detail-spec {
    gap: 12px;
  }

  .works-detail-spec-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .works-detail-spec dt,
  .works-detail-spec dd {
    font-size: 14px;
    line-height: 1.8;
  }

  .works-detail-body {
    gap: 18px;
  }

  .works-detail-body p {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.08em;
  }

  .works-detail-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .works-detail-back {
    margin-top: 34px;
  }
}

/* Works filter toggle animation */
.works-filter-body {
  overflow: hidden;
  transition:
    height 0.35s ease,
    opacity 0.25s ease,
    margin-top 0.35s ease;
  opacity: 1;
}

.works-filter-panel.is-collapsed .works-filter-body {
  opacity: 0;
  margin-top: 0;
}

.works-filter-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1em;
}

.works-filter-toggle-icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.works-filter-toggle-icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* 開いている時は minus */
.works-filter-toggle[aria-expanded="true"] .icon-minus {
  opacity: 1;
}

.works-filter-toggle[aria-expanded="true"] .icon-plus {
  opacity: 0;
}

/* 閉じている時は plus */
.works-filter-toggle[aria-expanded="false"] .icon-minus {
  opacity: 0;
}

.works-filter-toggle[aria-expanded="false"] .icon-plus {
  opacity: 1;
}



/* ----------------------------------------
 News Page
---------------------------------------- */

.news-page .subpage-kv {
  padding-top: 116px;
  padding-bottom: 118px;
  min-height: 340px;
}

.news-page .subpage-kv--blue::before {
  opacity: 1;
}

.news-page .subpage-title-en {
  color: #fff;
  font-size: clamp(60px, 6vw, 76px);
  letter-spacing: 1px;
}

.news-page .subpage-title-ja {
  color: #fff;
}

.news-page .breadcrumb {
  justify-content: flex-end;
  color: rgba(255,255,255,.85);
}

.news-page .news-page-content {
  padding-top: 56px;
}

.news-page .news-page-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.news-page .news-layout-sub {
  align-items: start;
}

.news-page .news-filter {
  position: sticky;
  top: 120px;
}

.news-page .news-list-sub {
  background: transparent;
}

.news-page .news-pagination {
  margin-top: 56px;
}

@media (max-width: 1023px) {
  .news-page .subpage-kv {
    margin-top: 80px;
    padding-top: 20px;
    padding-bottom: 80px;
    min-height: 180px;
  }

  .news-page .subpage-title-en {
    font-size: 50px;
    letter-spacing: 0;
  }

  .news-page .news-page-content {
    padding-top: 28px;
  }

  .news-page .news-page-inner {
    max-width: none;
  }

  .news-page .news-filter {
    position: static;
  }

  .news-page .news-pagination {
    margin-top: 34px;
  }
}




/* ----------------------------------------
 News Detail
---------------------------------------- */

.news-detail-page .subpage-kv {
  padding-top: 116px;
  padding-bottom: 26px;
  min-height: 120px;
  align-items: flex-end;
}

.news-detail-page .subpage-kv--light::before {
  display: none;
}

.news-detail-page .breadcrumb {
  justify-content: flex-end;
  margin-bottom: 0;
  color: #b2b2b2;
  font-size: 14px;
}

.news-detail-page .news-detail-header {
  max-width: 1440px;
  margin: 0 auto 50px;
}

.news-detail-page .news-detail-content {
  padding-top: 32px;
}

.news-detail-page .news-detail-article {
  max-width: 1040px;
  margin: 0 auto;
}

.news-detail-header {
  margin-bottom: 50px;
}

.news-detail-page-title {
  margin: 0;
  font-family: var(--font-lato);
  font-weight: 900;
  font-size: clamp(60px, 6vw, 76px);
  line-height: 1;
  letter-spacing: 1px;
  color: #0080D9;
}

.news-detail-page-subtitle {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #0080D9;
}

.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.news-detail-date {
  display: block;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}

.news-detail-title {
  margin: 0 0 32px;
  font-family: var(--font-noto);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.45;
  color: #333;
  letter-spacing: 0;
}

.news-detail-main-image {
  margin: 0 0 48px;
}

.news-detail-main-image img {
  width: 100%;
  aspect-ratio: 1000 / 560;
  object-fit: cover;
  display: block;
}

.news-detail-body {
  display: grid;
  gap: 24px;
}

.news-detail-body p {
  margin: 0;
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: 0.06em;
  color: #333;
}

.news-detail-body h3 {
  margin: 12px 0 -4px;
  font-size: 22px;
  line-height: 1.6;
  font-weight: 700;
  color: #333;
}

.news-detail-note {
  font-size: 13px;
  line-height: 2;
  color: #666;
}

.news-detail-back {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.news-detail-back .btn-view-all {
  margin-top: 0;
}

@media (max-width: 1023px) {
  .news-detail-page .subpage-kv {
    padding-top: 90px;
    padding-bottom: 20px;
    min-height: 96px;
  }

  .news-detail-page .breadcrumb {
    
  }

  .news-detail-page .news-detail-header {
    max-width: none;
    margin-bottom: 34px;
  }

  .news-detail-page .news-detail-content {
    padding-top: 20px;
  }

  .news-detail-page .news-detail-article {
    max-width: none;
  }

  .news-detail-page-title {
    font-size: 58px;
    letter-spacing: 0;
  }

  .news-detail-page-subtitle {
    margin-top: 8px;
    font-size: 14px;
  }

  .news-detail-date {
/*    margin-bottom: 12px;*/
    font-size: 12px;
  }

  .news-detail-title {
    margin-bottom: 22px;
    font-size: 24px;
    line-height: 1.55;
  }

  .news-detail-main-image {
    margin-bottom: 30px;
  }

  .news-detail-main-image img {
    aspect-ratio: 1 / 0.72;
  }

  .news-detail-body {
    gap: 18px;
  }

  .news-detail-body p {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.04em;
  }

  .news-detail-body h3 {
    margin: 10px 0 -2px;
    font-size: 18px;
    line-height: 1.6;
  }

  .news-detail-note {
    font-size: 12px;
    line-height: 2;
  }

  .news-detail-back {
    margin-top: 34px;
  }
}



/* ----------------------------------------
 Technologies Page
---------------------------------------- */

.technologies-layout {
  align-items: start;
}

.technology-block {
  scroll-margin-top: calc(100px + var(--admin-bar-offset, 0px));
}

.technologies-page .subpage-kv {
  padding-top: 116px;
  padding-bottom: 118px;
  min-height: 340px;
}

.technologies-page .subpage-kv--blue::before {
  opacity: 1;
}

.technologies-page .subpage-title-en {
  color: #fff;
  font-size: clamp(60px, 6vw, 76px);
  letter-spacing: 1px;
}

.technologies-page .subpage-title-ja {
  color: #fff;
}

.technologies-page .breadcrumb {
  justify-content: flex-end;
  color: rgba(255,255,255,.85);
}

.technologies-page .technologies-content {
  padding-top: 56px;
}

.technologies-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: start;
}

/* side nav */
.technologies-side-nav {
  position: sticky;
  top: calc(110px + var(--admin-bar-offset, 0px));
  align-self: start;
  z-index: 2;
  max-height: calc(100vh - 110px - var(--admin-bar-offset, 0px) - 24px);
  overflow: auto;
  border-top: 1px solid #e5e8ef;
  border-left: 1px solid #e5e8ef;
  border-right: 1px solid #e5e8ef;
  background: #fff;
  height: fit-content;
}

.technologies-side-nav a {
  position: relative;
  display: block;
  padding: 18px 16px 18px 28px;
  border-bottom: 1px solid #e5e8ef;
  font-size: 12px;
  line-height: 1.5;
  color: #666;
  text-decoration: none;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.technologies-side-nav a.active,
.technologies-side-nav a:hover {
  color: #0D47A1;
  font-weight: 700;
}

.technologies-side-nav a.active::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 6px;
  height: 6px;
  background: #0D47A1;
  transform: translateY(-50%) rotate(45deg);
}

/* main */
/*.technologies-main {
  position: relative;
  padding-left: 0;
}*/
.technologies-main {
  min-width: 0;
}

.technologies-main::before {
  display: none;
}

.technology-block {
  position: relative;
  padding-left: 76px;
}

/* 各ブロックごとに縦線 */
.technology-block::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 90px;
  bottom: 0;
  width: 1px;
  background: #d7e6f6;
}

.technology-block:last-child::before {
  bottom: 0;
}

.technology-block + .technology-block {
  margin-top: 100px;
}

.technology-block-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  min-height: 60px;
}

/* diamond */
.technology-number {
  width: 60px;
  height: 60px;
  border: 1px solid #b7d0ea;
  transform: rotate(45deg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  flex: 0 0 60px;
  margin-left: -76px;
}

.technology-number span {
  display: inline-block;
  transform: rotate(-45deg);
  font-family: "Anton", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  color: #6fa3d8;
  letter-spacing: 0;
}

.technology-name {
  margin: 0;
  font-size: 28px;
  line-height: 1.45;
  font-weight: 500;
  color: #333;
}

.technology-main-image {
  margin: 0 0 24px;
}

.technology-main-image img {
  width: 100%;
/*  max-width: 560px;
  aspect-ratio: 560 / 280;*/
  object-fit: cover;
  display: block;
}

.technology-text h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.55;
  font-weight: 700;
  color: #0D47A1;
}

.technology-lead {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 700;
  color: #333;
}

.technology-text p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 2;
  color: #333;
}

.technology-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 24px;
  margin-bottom: 18px;
  background: #f7f7f7;
}

.technology-tags span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.5;
  color: #999;
  text-align: center;
}

.technology-expand {
  height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition:
    height 0.35s ease,
    opacity 0.25s ease,
    margin-top 0.35s ease;
}

.technology-expand.is-open {
  opacity: 1;
  margin-top: 18px;
}

.technology-expand-inner {
  padding-top: 2px;
}

.technology-expand-inner p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 2;
  color: #333;
}

.technology-more {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.technology-more-btn {
  min-width: 160px;
  height: 34px;
  padding: 0 18px;
  background: #0D47A1;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    gap 0.25s ease;
}

.technology-more-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  gap: 10px;
}

.technology-more-btn:focus,
.technology-more-btn:focus-visible {
  outline: none;
  box-shadow: none;
}

.technology-more-icon {
  transition: transform 0.25s ease;
}

.js-technology-toggle[aria-expanded="true"] .technology-more-icon {
  transform: rotate(45deg);
}

.technology-block {
  position: relative;
}

.technology-block.is-open .technology-more {
  margin-top: 30px;
}

.technology-block.is-collapsed .technology-more {
  position: relative;
  margin-top: 22px;
}

.technology-block.is-collapsed .technology-more::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% + 8px);
  height: 72px;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.72) 45%,
    rgba(255, 255, 255, 0.96) 75%,
    rgba(255, 255, 255, 1) 100%
  );
}

/* Technologies Expand Layout */
.technology-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.technology-detail-card {
  background: #f7f7f7;
}

.technology-detail-card--wide {
  grid-column: span 3;
}

.technology-detail-card-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.technology-detail-card-body {
  padding: 14px 16px 16px;
}

.technology-detail-card-body h4 {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  color: #333;
}

.technology-detail-card-body p {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: #666;
}

.technology-detail-wide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 18px;
}

.technology-detail-wide-item img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.technology-detail-wide-item figcaption {
  padding-top: 10px;
}

.technology-detail-wide-item figcaption strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.technology-detail-wide-item figcaption p {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: #666;
}


@media (max-width: 1023px) {
  .technology-block {
    scroll-margin-top: calc(90px + var(--admin-bar-offset, 0px));
  }

  .technologies-page .subpage-kv {
    margin-top: 80px;
    padding-top: 20px;
    padding-bottom: 80px;
    min-height: 180px;
  }

  .technologies-page .subpage-title-en {
    font-size: 50px;
    letter-spacing: 0;
  }

  .technologies-page .technologies-content {
    padding-top: 28px;
  }

  .technologies-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .technologies-side-nav {
    display: none;
  }

  .technologies-main {
    padding-left: 0;
  }

  .technology-block {
    padding-left: 0;
  }

  .technology-block::before {
    display: none;
  }

  .technology-block + .technology-block {
    margin-top: 70px;
  }

  .technology-block-head {
    gap: 14px;
    margin-bottom: 18px;
    min-height: 32px;
  }

  .technology-number {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    margin-left: 0;
  }

  .technology-number span {
    font-size: 15px;
  }

  .technology-name {
    font-size: 18px;
    line-height: 1.5;
  }

  .technology-main-image {
    margin-bottom: 16px;
  }

  .technology-main-image img {
    max-width: none;
    width: 100%;
/*    aspect-ratio: 1 / 0.6;*/
  }

  .technology-text h3 {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
  }

  .technology-lead {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.9;
  }

  .technology-text p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 2;
  }

  .technology-tags {
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 18px;
    margin-bottom: 14px;
  }

  .technology-tags span {
    min-height: 42px;
    font-size: 11px;
    padding: 8px 6px;
  }

  .technology-expand.is-open {
    margin-top: 14px;
  }

  .technology-more-btn {
    min-width: 170px;
    height: 38px;
    font-size: 12px;
  }

  .technology-block.is-collapsed .technology-more::before {
    height: 56px;
  }

  /* Technologies Expand Layout */
  .technology-detail-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .technology-detail-card--wide {
    grid-column: span 1;
  }

  .technology-detail-card-body {
    padding: 12px 14px 14px;
  }

  .technology-detail-card-body h4 {
    font-size: 13px;
  }

  .technology-detail-card-body p,
  .technology-detail-wide-item figcaption p {
    font-size: 12px;
    line-height: 1.8;
  }

  .technology-detail-wide {
    gap: 14px;
  }

}



/* ----------------------------------------
 Contact Page
---------------------------------------- */

.subpage-main.contact-page {
  padding-top: 0;
}

.contact-page .subpage-kv {
  padding-top: 116px;
  padding-bottom: 118px;
  min-height: 340px;
}

.contact-page .subpage-kv--blue::before {
  display: none;
}

.contact-page .subpage-title-en {
  color: #fff;
  font-size: clamp(60px, 6vw, 76px);
  letter-spacing: 1px;
}

.contact-page .subpage-title-ja {
  color: #fff;
}

.contact-page .breadcrumb {
  justify-content: flex-end;
  color: rgba(255,255,255,.85);
}

.contact-page .contact-page-content {
  padding-top: 56px;
}

.contact-page .contact-page-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.contact-intro {
  text-align: center;
  margin-bottom: 46px;
}

.contact-intro p {
  margin: 0;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #333;
}

.contact-info-box {
  background: #f7f7f7;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 42px 60px 36px;
  margin-bottom: 76px;
}

.contact-info-col {
  text-align: center;
}

.contact-info-label {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
  color: #333;
}

.contact-info-main {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.4;
  color: #0080D9;
  font-weight: 700;
}

.contact-info-main span:first-child {
  color: #333;
  font-weight: 500;
}

.contact-info-main a {
  color: inherit;
  text-decoration: none;
}

.contact-info-sub {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #8a8a8a;
}

.contact-form {
  max-width: 820px;
  margin: 0 auto;
}

.contact-form-row + .contact-form-row {
  margin-top: 28px;
}

.contact-form-row--narrow {
  max-width: 260px;
}

.contact-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #333;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 20px;
  padding: 0 8px;
  font-size: 11px;
  line-height: 1;
  border-radius: 2px;
  color: #fff;
  font-weight: 700;
}

.tag-required {
  background: #0080D9;
}

.tag-optional {
  background: #9d9d9d;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  border: none;
  background: #f3f4f8;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  padding: 18px 18px;
  border-radius: 4px;
  appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9e9e9e;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid #0D47A1;
  outline-offset: 0;
}

.contact-form-agree {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.contact-checkbox label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  cursor: pointer;
}

.contact-checkbox label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #0D47A1;
}

.contact-form-submit {
  margin-top: 38px;
}

.contact-submit-btn {
  width: 100%;
  min-height: 56px;
  border: none;
  border-radius: 4px;
  background: #0080D9;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.contact-submit-btn:hover {
  background: #0D47A1;
  box-shadow: 0 8px 18px rgba(13, 71, 161, 0.18);
  transform: translateY(-2px);
}

.contact-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(13, 71, 161, 0.14);
}

.contact-form #message {
  padding: 20px;
}

@media (max-width: 1023px) {
  .contact-page .subpage-kv {
    margin-top: 80px;
    padding-top: 20px;
    padding-bottom: 80px;
    min-height: 180px;
  }

  .contact-page .subpage-title-en {
    letter-spacing: 0;
  }

  .contact-page .contact-page-content {
    padding-top: 34px;
    padding-bottom: 80px;
  }

  .contact-page .contact-page-inner {
    max-width: none;
  }

  .contact-intro {
    text-align: left;
    margin-bottom: 28px;
  }

  .contact-intro p {
    font-size: 14px;
    line-height: 2;
  }

  .contact-info-box {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 28px 22px;
    margin-bottom: 38px;
  }

  .contact-info-label {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
  }

  .contact-info-main {
    font-size: 22px;
  }

  .contact-info-sub {
    font-size: 13px;
  }

  .contact-form {
    max-width: none;
  }

  .contact-form-row + .contact-form-row {
    margin-top: 22px;
  }

  .contact-form-row--narrow {
    max-width: 128px;
  }

  .contact-label {
    margin-bottom: 10px;
    font-size: 14px;
    gap: 8px;
  }

  .tag {
    min-width: 30px;
    height: 18px;
    font-size: 10px;
    padding: 0 6px;
  }

  .contact-form input[type="text"],
  .contact-form input[type="tel"],
  .contact-form input[type="email"],
  .contact-form textarea {
    font-size: 14px;
    padding: 15px 14px;
  }

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

  .contact-form-agree {
    margin-top: 28px;
    justify-content: center;
  }

  .contact-checkbox {
    font-size: 14px;
  }

  .contact-form-submit {
    margin-top: 28px;
  }

  .contact-submit-btn {
    min-height: 52px;
    font-size: 15px;
  }

  .contact-form #message {
    padding: 15px;
  }


}





/* ----------------------------------------
 Company Page
---------------------------------------- */

.subpage-main.company-page {
  padding-top: 0;
}

.company-page .subpage-kv {
  padding-top: 116px;
  padding-bottom: 118px;
  min-height: 340px;
}

.company-page .subpage-kv--blue::before {
  display: none;
}

.company-page .subpage-title-en {
  color: #fff;
  font-size: clamp(60px, 6vw, 76px);
  letter-spacing: 1px;
}

.company-page .subpage-title-ja {
  color: #fff;
}

.company-page .breadcrumb {
  justify-content: flex-end;
  color: rgba(255,255,255,.85);
}

.company-page .company-page-content {
  padding-top: 56px;
}

.company-page .company-page-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.company-intro {
  text-align: center;
  margin-bottom: 46px;
}

.company-intro p {
  margin: 0;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: #333;
}

.company-info-box {
  background: #f7f7f7;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 42px 60px 36px;
  margin-bottom: 76px;
}

.company-info-col {
  text-align: center;
}

.company-info-label {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
  color: #333;
}

.company-info-main {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.4;
  color: #0080D9;
  font-weight: 700;
}

.company-info-main span:first-child {
  color: #333;
  font-weight: 500;
}

.company-info-main a {
  color: inherit;
  text-decoration: none;
}

.company-info-sub {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #8a8a8a;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border-top: 1px solid #d9e3ee;
  border-left: 1px solid #d9e3ee;
  background: #fff;
}

.company-table th,
.company-table td {
  padding: 14px 18px;
  border-right: 1px solid #d9e3ee;
  border-bottom: 1px solid #d9e3ee;
  font-size: 14px;
  line-height: 1.9;
  vertical-align: top;
  color: #333;
  word-break: break-word;
}

.company-table th {
  width: 180px;
  background: #f5f8fb;
  font-weight: 700;
  color: #0D47A1;
  text-align: left;
}

.company-table td {
  background: #fff;
  font-weight: 400;
}

.company-table a {
  color: #0D47A1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.company-table a:hover {
  opacity: 0.8;
}

.company-table td p,
.company-table th p {
  margin: 0;
}

.company-table td p + p,
.company-table th p + p {
  margin-top: 1em;
}

.company-access-map {
  margin-top: 20px;
}

.company-access-map-frame {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.company-access-map-frame iframe {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  border: 0;
}

.company-access-map-frame img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

@media (max-width: 1023px) {
  .company-page .subpage-kv {
    margin-top: 80px;
    padding-top: 20px;
    padding-bottom: 80px;
    min-height: 180px;
  }

  .company-page .subpage-title-en {
    letter-spacing: 0;
  }

  .company-page .company-page-content {
    padding-top: 34px;
    padding-bottom: 80px;
  }

  .company-page .company-page-inner {
    max-width: none;
  }

  .company-intro {
    text-align: left;
    margin-bottom: 28px;
  }

  .company-intro p {
    font-size: 14px;
    line-height: 2;
  }

  .company-info-box {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 28px 22px;
    margin-bottom: 38px;
  }

  .company-info-label {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
  }

  .company-info-main {
    font-size: 22px;
  }

  .company-info-sub {
    font-size: 13px;
  }

  .company-table,
  .company-table tbody,
  .company-table tr,
  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
  }

  .company-table {
    border-left: none;
    border-top: none;
  }

  .company-table tr {
    margin-bottom: 14px;
    border: 1px solid #d9e3ee;
    background: #fff;
  }

  .company-table th,
  .company-table td {
    border: none;
    padding: 12px 14px;
    font-size: 13px;
    line-height: 1.8;
  }

  .company-table th {
    width: 100%;
    background: #f5f8fb;
    border-bottom: 1px solid #d9e3ee;
  }

  .company-access-map {
    margin-top: 14px;
  }

  .company-access-map-frame {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .company-access-map-frame iframe {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: 320px !important;
  }

}





/* ----------------------------------------
 Default Page Content
---------------------------------------- */

.default-page-content {
  padding-top: 56px;
  padding-bottom: 120px;
}

.default-page-content .sub-container-narrow {
  max-width: 980px;
}

.default-page-body {
  color: #333;
}

.default-page-body > *:first-child {
  margin-top: 0;
}

.default-page-body > *:last-child {
  margin-bottom: 0;
}

.default-page-body p {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: 0.06em;
  color: #333;
}

.default-page-body h1 {
  margin: 56px 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d9e3ee;
  font-size: 28px;
  line-height: 1.5;
  font-weight: 700;
  color: #0080D9;
}

.default-page-body h2 {
  margin: 48px 0 16px;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  color: #0080D9;
}

.default-page-body h3 {
  margin: 40px 0 14px;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
  color: #333;
}

.default-page-body a {
  color: #0080D9;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.default-page-body a:hover {
  opacity: 0.8;
}

.default-page-body strong {
  font-weight: 700;
}

.default-page-body ul,
.default-page-body ol {
  margin: 0 0 22px 1.5em;
  padding: 0;
}

.default-page-body li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 2;
}

.default-page-body hr {
  margin: 40px 0;
  border: 0;
  border-top: 1px solid #d9e3ee;
}

.default-page-body blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  background: #f5f8fb;
  border-left: 4px solid #0080D9;
}

.default-page-body blockquote p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .default-page-content {
    padding-top: 28px;
    padding-bottom: 80px;
  }

  .default-page-body p {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.04em;
  }

  .default-page-body h1 {
    margin: 40px 0 14px;
    padding-bottom: 10px;
    font-size: 22px;
    line-height: 1.5;
  }

  .default-page-body h2 {
    margin: 34px 0 12px;
    font-size: 20px;
  }

  .default-page-body h3 {
    margin: 28px 0 10px;
    font-size: 18px;
  }

  .default-page-body li {
    font-size: 14px;
    line-height: 1.9;
  }

  .default-page-body blockquote {
    padding: 18px 16px;
  }
}

.business-detail-summary-box p {
  word-break: normal;
  overflow-wrap: normal;
  line-break: strict;
}

