/* =========================================
   common.css
   Progressive cleanup base
   Order of consolidation:
   1. Header
   2. Top page
   3. Footer
   4. Responsive
   5. Mobile menu
   6. About page
   7. History page
   -----------------------------------------
   This version keeps existing cascade as much
   as possible and only consolidates obvious
   duplicates / late overrides that were already
   winning in the cascade.
========================================= */


:root {
  --blue: #005bac;
  --blue-deep: #0d5aa8;
  --green: #4DBBAA;
  --service-bg: #E3F0ED;
  --about-bg: #e0eef4;
  --sustain-bg: #ffffff;
  --recruit-bg: #62a9df;
  --news-bg: #ffffff;
  --text: #184a90;
  --paper: #4eaf5a;
  --teal: #26a7b8;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", serif;
  color: #3e3a39;
  background: #fff;
  line-height: 1.6;
}

@media (max-width: 767px) {
body {
  margin: 63px 0 0 0;
}
}

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

a {
  color: inherit;
  text-decoration: none;
}

.space {
  height: 28px;
}

.sp {
  display: none !important;
}

@media (max-width: 767px) {
.pc {
  display: none !important;
}
.sp {
  display: block !important;
}
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

mark.page-search-hit {
  background: #fff59e;
  color: inherit;
  padding: 0 0.05em;
}

/* =========================================
   Header
========================================= */

.site-header {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: #fff
}

.home .site-header {
  position:absolute !important;
  background: transparent !important;
}


.header-inner {
  box-sizing: border-box;
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 14px;
  padding-bottom: 12px;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 260px;
  align-items: start;
  gap: 18px;
}

.site-logo {
  margin: 0;
}

.site-logo img {
  width: 170px;
  height: auto;
}

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

.menu-toggle span {
  position: absolute;
  left: 9px;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

.menu-toggle span:nth-child(1) { top: 12px; }
.menu-toggle span:nth-child(2) { top: 20px; }
.menu-toggle span:nth-child(3) { top: 28px; }

.menu-toggle.is-open span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

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

.menu-toggle.is-open span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.global-nav {
  display: block;
}

.gnav {
  display: flex;
  justify-content: center;
  gap: 2.1vw;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-item {
  position: relative;
}

.menu-item > a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 2px;
  color: var(--blue);
  font-size: clamp(13px, 1.08vw, 18px);
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.menu-item.has-children > a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--green);
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  margin: 0;
  padding: 5px 0;
  list-style: none;
  background: rgb(64, 188, 170, 0.9);
  isolation: auto;
  border-radius: 15px 15px 0 0;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
  z-index: 60;
}

.sub-menu li a {
  display: block;
  padding:2px 15px;
  font-size: 13px;
  color: #fff;
  white-space: nowrap;
}

.menu-item:hover .sub-menu,
.menu-item:focus-within .sub-menu {
  opacity: 1;
  visibility: visible;
}

.header-tools {
  position: relative;
  justify-self: end;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 210px;
}

.header-search {
  display: flex;
  align-items: stretch;
  height: 28px;
  border: 1px solid var(--blue);
  border-radius: 14px 14px 0 14px;
  background: rgba(255, 255, 255, 0.96);
  overflow: hidden;
  margin: 8px 56px 0 0;
}

.header-search input {
  width: 96px;
  height: 28px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-size: 11px;
  outline: none;
}

.header-search button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 28px;
  padding: 4px 8px 4px 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
  box-sizing: border-box;
}

.header-search button img {
  width: auto;
  height: 18px;
}

.header-contact-button {
  position: absolute;
  top: -16px;
  right: -20px;
  display: inline-flex;
  align-items: stretch;
  justify-content: space-between;
  height: 30px;
  border-radius: 0 0 0 14px;
  background: #0d5aa8;
  color: #fff;
  overflow: hidden;
}

.header-contact-button__label {
  display: inline-flex;
  align-items: center;
  padding: 0 0 0 12px;
  font-size: clamp(13px, 1.08vw, 18px);
  font-weight: 700;
}

.header-contact-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  background: #0d5aa8;
}

.header-contact-button__icon img {
  width: auto;
  height: 15px;
}

/* =========================================
   Top page / Hero
========================================= */

.hero-section {
  padding: 0;
}

.hero-swiper {
  width: 100%;
  height: auto;
}

.hero-swiper .swiper-slide {
  position: relative;
}

.hero-slide-image,
.hero-slide-image img {
  width: 100%;
  height: auto;
}

.hero-slide-image img {
  object-fit: contain;
}


/* =========================================
   Top page / Shared section layout
========================================= */

.section {
  padding: 0;
}

.section-inner {
  box-sizing: border-box;
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 32px 58px;
}

.section-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.section-title-image img {
  height: 90px;
  width: auto;
}


.wave-band {
  width: 100%;
}

.wave-band img {
  width: 100%;
  height: auto;
}

.top-page .service-section { background: var(--service-bg); }
.top-page .about-section { background: var(--about-bg); }
.top-page .sustain-section { background: var(--sustain-bg); }
.top-page .recruit-section { background: var(--recruit-bg); }
.top-page .news-section { background: var(--news-bg); }

.service-title img,
.recruit-title img {
  height: 90px;
  width: auto;
}


/* Text blocks */

.section-copy {
  margin: 10px 0 22px;
  color: #184a90;
  font-size: 13px;
  line-height: 2;
}

.section-copy--service {
  max-width: 980px;
}

.section-copy--about {
  margin: 0 0 20px;
}

.section-copy--recruit {
  color: #fff;
}

/* Service */

.service-section .section-inner {
  padding-bottom: 0px;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 700px) minmax(240px, 30%);
  gap: 24px;
  align-items: start;
  padding-bottom: 42px;
}

.service-bubbles {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 350px));
  gap: 12px 30px;
  justify-content: center;
  overflow: visible;
}

.service-bubble {
  position: relative;
  display: block;
  overflow: visible;
  isolation: isolate;
  z-index: 1;
}

.service-bubble--1 { transform: translate(5%, 0); }
.service-bubble--2 { transform: translate(10%, 0); }
.service-bubble--3 { transform: translate(25%, -4px); }
.service-bubble--4 { transform: translate(30%, -4px); }

.service-bubble__image {
  position: relative;
  display: block;
  z-index: 1;
}

.service-bubble__image img {
  width: 100%;
  height: auto;
}

.service-desc {
  position: absolute;
  top: 65%;
  left: 50%;
  width: min(92%, 320px);
  display: none;
  transform: translate(-50%, 12px);
  z-index: 100;
  pointer-events: none;
  text-align: left;
}

.service-bubble:hover,
.service-bubble:focus,
.service-bubble:focus-within,
.service-bubble.is-active {
  z-index: 999;
}

.service-bubble:hover .service-desc,
.service-bubble:focus .service-desc,
.service-bubble:focus-within .service-desc,
.service-bubble.is-active .service-desc {
  display: block;
  animation: serviceDescFloat 0.3s ease forwards;
}

@keyframes serviceDescFloat {
  from {
    opacity: 0;
    transform: translate(-50%, 16px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.service-desc__text {
  display: block;
  padding: 14px 16px;
  background: #005BAC;
  color: #fff;
  font-size: 13px;
  line-height: 1.85;
  text-align: left;
  border-radius: 8px 8px 0 0;
  position: relative;
}

.service-desc__btn{
  display: inline-block;
  padding: 0px 5px;
  background: #fff;
  color: #005BAC;
  font-size: 11px;
  border-radius: 8px 0 0 0;
  position: absolute;
  bottom: 0;
  right: 0;
}

.service-image {
 transform: translate(20%, 0); 
}

.service-image img {
  width: 100%;
  height:auto;
  max-width: 400px;
}

@media (max-width: 767px) {
  .service-layout {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    overflow: hidden;
    padding-bottom: 24px;
  }

  .service-bubbles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    width: 100%;
    max-width: 360px;
    justify-content: center;
  }

  .service-bubble {
    width: 100%;
    max-width: 174px;
    transform: none !important;
  }

  .service-bubble__image img {
    width: 100%;
    height: auto;
  }

  .service-image {
    margin-top: 18px;
    transform: none !important;
    width: 100%;
    max-width: 300px;
  }

  .service-image img {
    width: 100%;
    height: auto;
  }

}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: 560px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.about-side {
  padding-top: 4px;
}

.about-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* すべてを右端に吸着させる */
  gap: 0;
  width: 100%;
}

.about-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 58px;
  padding: 0 54px 0 24px;
  border-bottom: 1px solid rgba(255,255,255,0.88);
  color: var(--blue);
  font-weight: 700;
  background: transparent;
  box-sizing: border-box; /* paddingを含めたサイズ計算にする */
  text-decoration: none;
}

/* 共通の疑似要素設定 */
.about-link::before,
.about-link::after {
  box-sizing: border-box;
}

/* 左側の半円パーツ：常に各要素の左端(left:0)に固定 */
.about-link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #2f66b8;
  transform: translateY(-50%);
  z-index: 2;
}

/* 右側のアイコン：常に各要素の右端(right:10px)に固定 */
.about-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  transform: translateY(-50%);
  background: transparent;
  box-sizing: border-box;
  z-index: 1;
}

/* --- 個別の幅設定でアーチを作る --- */
/* 数字が大きいほど左に長く伸びます */
.about-link--1 { width: 95%; } 
.about-link--2 { width: 90%; }
.about-link--3 { width: 85%; } 
.about-link--4 { width: 90%; }
.about-link--5 { width: 95%; }
.about-link--6 { width: 99%; } 

@media (max-width: 767px) {
.about-grid {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 6px;
  align-items: start;
}
.about-image img {
  padding-top: 100px;
}
}

/* Sustainability */

.sustain-section .section-inner {
  padding-top: 58px;
  padding-bottom: 56px;
}

.sustain-image img {
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
.sustain-section .section-title-row {
  gap: 0px;
  }
.sustain-section .service-link-btn {
  gap: 0px;
  padding: 0 5px;
    }
.sustain-section .section-title-image img{
    height: 46px !important;
  }
  }

/* Recruit */

.recruit-section .section-inner {
  padding-top: 58px;
  padding-bottom: 30px;
}

.recruit-topline img,
.recruit-bottomline img {
  width: 100%;
  height: auto;
}

.recruit-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 26px;
  align-items: start;
}

.recruit-text-block {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.recruit-buttons {
display: flex;
align-items: flex-start;
gap: 18px;
flex-wrap: nowrap;
grid-template-columns: repeat(2, 220px);
justify-content: start;
}

.recruit-btn--1 { transform: translateY(20px); }
.recruit-btn--2 { transform: translateY(0px); }
.recruit-btn--3 { transform: translateY(30px); }
.recruit-btn--4 { transform: translateY(-20px); }

.recruit-buttons a img {
  width: 220px;
  height: auto;
}

.recruit-main {
  grid-template-columns: 1fr;
}

.recruit-left {
  position: relative;
padding-right: 15%;
min-height: 900px;
}

@media (max-width: 960px) {
.recruit-left {
min-height: 90vw;
}
}

@media (max-width: 600px) {
.recruit-left {
min-height: 600px;
}
}

@media (max-width: 480px) {
.recruit-left {
min-height: 550px;
}
}

.recruit-text {
  position: absolute;
  top: 6px;
  right: 0;
  width: 10%;
}

.recruit-text img {
  max-width: 80px;
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
.recruit-buttons {
gap: 2px;
grid-template-columns: repeat(2, minmax(0, 1fr));
justify-content: start;
}
.recruit-buttons a img {
  width: 100px;
  height: auto;
}
}

.recruit-bottom-img {
padding-right: 15%;
  position: absolute;
  bottom: 0;
  display: block;
}
  
.recruit-bottom-img img {
  width: 100%;
  height: auto;
  display: block;
}

.wave-band--recruit-bottom {
transform: translate(0, -70px); 
  z-index: 100;
    margin-bottom: -70px;
}

.wave-band--recruit-bottom img{
transform: translate(0, 1px); 
}

@media (max-width: 767px) {
.wave-band--recruit-bottom {
transform: translate(0, -50px); 
  z-index: 100;
    margin-bottom: -50px;
}
}

/* News */

.news-section .section-inner {
  padding-top: 58px;
  padding-bottom: 68px;
}

.news-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 14px;
}

.news-card {
  background: #fff;
}

.news-card__head {
  padding: 6px 12px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.news-card__body {
  min-height: 86px;
  padding: 10px 14px 14px;
  color: #171c61;
  font-size: 12px;
  line-height: 1.8;
}

.news-card__body time {
  display: block;
  margin-bottom: 6px;
  color: #171c61;
  font-weight: 700;
}

.news-card__body a,
.news-card__body span {
  display: block;
}

/* =========================================
   Footer
========================================= */

.site-footer {
  margin-top: 0;
  padding: 28px 0 18px;
  background: var(--blue-deep);
  color: #fff;
}

.footer-inner {
  box-sizing: border-box;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-inner--horizontal {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.footer-logo img {
  width: 250px;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 18px;
}

.footer-columns h2 {
  margin: 0 0 8px;
  font-size: 12px;
}

.footer-columns dl {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 10px;
}

.footer-columns dl {
  margin-top: 3px;
}

.footer-columns dl a {
  color: #fff;
}

.copyright {
  margin: 18px 0 0;
  font-size: 10px;
  opacity: 0.84;
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: 150px minmax(0, 1fr) auto;
  }

  .header-tools {
    min-width: 180px;
  }

  .news-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .section-inner {
    padding: 42px 16px 44px;
  }

  .section-title-image img,
  .service-title img,
  .recruit-title img {
    height: 56px !important;
  }

  .service-bubble {
    transform: none !important;
  }
}

/* =========================================
   CONSOLIDATED OVERRIDES
   (Integrated from v4-v10 adjustments)
========================================= */


.header-tools {
  position: relative;
  justify-self: end;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 260px;
}

.header-contact-button {
  position: fixed;
  top: 0;
  right: 0;
  padding: 5px;
  height: 40px;
  align-items: flex-start;
  border-radius: 0 0 0 14px;
  z-index: 1200;
}

.header-contact-button__label {
  align-items: flex-start;
  padding-top: 7px;
  box-sizing: border-box;
}

.header-contact-button__icon {
  align-items: flex-start;
  padding-top: 12px;
  box-sizing: border-box;
}

/* ABOUT header row */
.about-header-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 160px;
  align-items: start;
  gap: 24px;
  margin-bottom: 18px;
}

.section-copy--about-header {
  margin: 0;
}

.about-title-right img {
  height: 90px;
}

/* ABOUT side area */


.about-image img {
  width: 100%;
  max-width: 560px;
  height: auto;
}

.about-side {
  width: 100%;
  max-width: 430px;
  justify-self: end;
  margin-left: auto;
  padding-top: clamp(8px, 3vw, 36px);
}

.about-links {
  width: 100%;
  max-width: 430px;
  margin-left: auto;
}

/* ABOUT links: variable width, common right edge, text left, icon right */
.about-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 58px;
  margin-left: auto;
  margin-right: 0;
  padding: 0 58px 0 0;
  color: var(--blue);
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
  background: none !important;
  border-top: 1px solid rgba(255, 255, 255, 0.9);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
}

.about-link:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.9);
}


/* label stays left inside variable width */
.about-link > * {
  margin-left: 0;
  margin-right: auto;
  position: relative;
  z-index: 1;
}


/* SUSTAINABILITY copy */
.section-copy--sustain {
  max-width: 980px;
  margin-top: 8px;
}


/* NEWS: border on body, rounded top band */
.news-card {
  border: 0;
}

.news-card__head {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.news-card--notice .news-card__body { border-color: var(--blue); }
.news-card--paper .news-card__body { border-color: var(--paper); }
.news-card--product .news-card__body { border-color: var(--teal); }

/* Footer: intrinsic column widths with tighter spacing */
.footer-inner--horizontal {
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 10px;
}

.footer-columns {
  margin-top: 7px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6px;
}

.footer-columns dl {
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  margin: 0;
  padding-right: 0;
}

.footer-columns dt {
  min-height: 1.6em;
  margin-bottom: 4px;
  font-weight: bold;
  white-space: nowrap;
}

.footer-columns dd {
  margin: 0;
  white-space: nowrap;
}

.footer-columns dt a,
.footer-columns dd a {
  white-space: nowrap;
}

/* =========================================
   Responsive overrides
========================================= */

@media (max-width: 1120px) {

  .header-tools {
    min-width: 230px;
  }

  .header-search {
    margin-right: 44px;
  }

  .footer-inner--horizontal {
    grid-template-columns: 1fr;
  }




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

  .footer-columns dt,
  .footer-columns dd,
  .footer-columns dt a,
  .footer-columns dd a {
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .header-search {
    margin-right: 0;
  }

  .header-contact-button {
    top: 0;
    right: 0;
    padding-top: 10px;
    height: 34px;
  }

  .header-contact-button__label,
  .header-contact-button__icon {
    padding-top: 10px;
  }

  .about-header-row {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "title button"
      "copy copy";
    align-items: center;
    gap: 12px 16px;
  }

  .about-title-right {
    grid-area: title;
  }

  .section-list-btn {
    grid-area: button;
  }

  .section-copy--about-header {
    grid-area: copy;
    margin: 0;
  }

.footer-logo img {
  margin: auto;
}

.footer-logo,.copyright {
text-align:center; 
}

  .footer-columns {
    display: none;
  }
}


/* Page top button */
.page-top-button {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 5000;
  width: 60px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.page-top-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-top-button img {
  display: block;
  width: 100%;
  height: auto;
}

/* News banners */

.related-links {
  margin:72px 0 72px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.related-links span {
  flex: 1;
  height: 1px;
  background: #00a8c6;
}

.related-links__title {
  color: #005bac;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.news-banners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 90px;
  margin:0 0 72px 0 ;
}

.news-banner img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
}


@media (max-width: 767px) {
  .page-top-button {
    width: 44px;
  right: 30px;
  bottom: 60px;
  }
}


/* =========================================
   Top page / late size refinements
========================================= */
.page-top-button {
  width: 30px;
}


/* =========================================
   Mobile menu
========================================= */
.sp-nav-utility,
.sp-nav-search,
.sp-nav-footer,
.sp-menu-layout,
.sp-menu-columns,
.sp-menu-col,
.sp-menu-group,
.sp-menu-links,
.sp-menu-bottom {
  display: none;
}

@media (max-width: 767px) {
  .site-header,  .home .site-header {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    z-index: 3000 !important;
    background: #fff !important;
    backdrop-filter: none !important;
  }
  
  .header-inner {
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 10px 14px 10px 0;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 8px;
  }

  .site-logo {
    margin: 0;
    line-height: 0;
  }

  .site-logo img {
    width: 270px;
    height: auto;
    margin:auto;
  }

  .menu-toggle {
    display: inline-block;
    justify-self: end;
  }

  .menu-toggle span {
    background: var(--blue);
  }

  .header-tools,
  .gnav {
    display: none !important;
  }

  .global-nav {
    display: none;
    position: fixed;
    top: 53px;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 2900;
    box-sizing: border-box;
    padding: 24px 20px 20px;
    overflow-x: hidden;
    overflow-y: auto;
    background: #005bac;
  }

  .global-nav.is-open {
    display: block;
  }

  .gnav {
    display: block;
    padding: 10px 20px 16px;
  }

    .sub-menu {
    position: static;
    min-width: 0;
    margin: 0;
    padding: 0 0 8px 12px;
    border: 0;
    border-radius: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
  }

  .header-tools {
    min-width: 0;
    gap: 8px;
  }

  .header-search {
    width: 82px;
    height: 24px;
  }

  .header-search input {
    width: 50px;
    height: 24px;
    font-size: 10px;
  }

  .header-search button {
    width: 28px;
    height: 24px;
    padding: 3px 5px 3px 3px;
  }

  .header-contact-button {
    top: -10px;
    right: -14px;
    height: 24px;
  }

  .header-contact-button__label {
    padding: 0 8px 0 10px;
    font-size: 10px;
  }

  .header-contact-button__icon {
    width: 28px;
  }
  
  .menu-item > a {
    width: 100%;
    padding: 12px 0;
    color: var(--blue);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .sp-menu-layout {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 52px);
  }

  .sp-menu-columns {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 24px;
    row-gap: 0;
    align-items: start;
  }

  .sp-menu-col {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .sp-menu-group {
    display: block;
    margin: 0 0 18px;
  }

  .sp-menu-title {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #fff;
  }

  .sp-menu-title a {
    color: #fff;
    text-decoration: none;
  }

  .sp-menu-links {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .sp-menu-links li {
    margin: 0 0 4px;
  }

  .sp-menu-links a {
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    text-decoration: none;
  }

  .sp-menu-utility {
    margin-top: 0;
    padding-top: 0;
  }

  .sp-nav-contact {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
  }

  .sp-nav-contact img {
    width: 20px;
    height: auto;
    flex: 0 0 auto;
  }

  .sp-nav-privacy {
    display: block;
    margin-top: 28px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
  }

  .sp-nav-search {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-top: 28px;
    box-sizing: border-box;
  }

  .sp-nav-search form {
    display: flex;
    width: 100%;
    max-width: 100%;
    height: 34px;
    border-radius: 17px 17px 0 17px;
    overflow: hidden;
    background: #fff;
    box-sizing: border-box;
  }

  .sp-nav-search input {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding: 0 12px;
    border: 0;
    font-size: 14px;
    outline: none;
    background: #fff;
    box-sizing: border-box;
  }

  .sp-nav-search button {
    width: 40px;
    min-width: 40px;
    flex: 0 0 40px;
    border: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sp-nav-search button img {
    width: 20px;
    height: auto;
  }

  .sp-menu-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 5px;
    margin-top: auto;
  }

  .sp-nav-footer-logo {
    flex: 0 0 auto;
    width: 30%;
  }

  .sp-nav-footer-logo img {
    width: 100%;
    height: auto;
    display: block;
  }

  .sp-nav-footer-copy {
    width:70%;
    margin-left: auto;
    color: #fff;
    font-size: 9px;
    line-height: 1;
    white-space: normal;
    text-align: right;
  }
}




/* =========================================================
   Lower Pages: Common Layout Utilities
   ========================================================= */
.wrap{width:min(1100px, calc(100% - 48px)); margin-inline:auto;}
.narrow{width:min(900px, calc(100% - 48px));}
.naigai-page{background:#ebf6f3; padding-bottom:80px;}
.naigai-page--dark{background:#000; color:#fff;}
.page-heading{font-size:56px; line-height:1.1; color:#0059af; margin:0 0 32px; font-weight:700;}
.entry-content{font-size:16px; line-height:2; color:#222;}
.entry-content--dark{color:#fff;}
.history-content,.sustainability-content,.recruit-top-content,.voice-content,.number-content,.job-content{padding-top:64px;}

/* =========================================================
   Lower Pages: Hero Sections
   ========================================================= */
.subpage-hero{position:relative; overflow:hidden;}
.subpage-hero--company{background:#abd8ee; padding:48px 0 40px;}
.subpage-hero--sustainability{background:#000; padding:28px 0 0;}
.subpage-hero--recruit{background:#69a8dd; padding:28px 0 0;}
.subpage-hero__pattern img{width:100%; display:block;}
.subpage-hero__inner{display:flex; align-items:center; justify-content:space-between; gap:40px;}
.subpage-hero__inner--single{display:block; position:relative;}
.subpage-hero__titleblock{max-width:420px;}
.subpage-hero__titleimage{display:block; max-width:420px; width:100%; height:auto;}
.subpage-hero__title{font-size:42px; color:#0059af; margin:16px 0 12px;}
.subpage-hero__lead{font-size:16px; line-height:1.9; margin:0;}
.subpage-hero__visual img{display:block; max-width:100%; height:auto;}
.subpage-hero__people img{display:block; width:min(100%,860px); margin:0 auto; height:auto;}

/* =========================================================
   Lower Pages: Recruit / Voice / Number / Job Shared Parts
   ========================================================= */
.history-note{background:#fff; border:1px solid #cfe3da; padding:24px; border-radius:12px;}
.recruit-grid-links{display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin:40px 0 32px;}
.recruit-grid-links__item{background:#fff; border:2px solid #4dbbaa; border-radius:20px; padding:16px; text-align:center; color:#0059af; font-weight:700;}
.recruit-grid-links__item img{display:block; width:100%; height:180px; object-fit:contain; margin-bottom:12px;}
.recruit-day-gallery{display:grid; grid-template-columns:repeat(4,1fr); gap:20px;}
.recruit-day-gallery img{width:100%; display:block;}
.voice-questions{display:grid; grid-template-columns:1fr 1fr; gap:28px; margin:32px 0;}
.voice-question img{display:block; width:100%; height:auto;}
.voice-list{display:flex; flex-direction:column; gap:24px;}
.voice-item{display:flex; align-items:center; gap:24px; background:#fff; border:4px solid #4dbbaa; border-radius:999px; padding:20px 28px;}
.voice-item img{width:54px; flex:0 0 54px;}
.voice-item p{margin:0; font-size:20px; font-weight:700;}
.number-card-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:32px;}
.number-card{padding:12px;}
.number-card img{width:100%; display:block;}
.job-cards{margin-top:32px;}
.job-card{display:grid; grid-template-columns:1.2fr .9fr; gap:0; background:#fff; border:4px solid #4dbbaa; border-radius:20px; overflow:hidden;}
.job-card__body{padding:32px;}
.job-card__body h2{margin:0 0 16px; color:#0059af; font-size:44px; line-height:1.1;}
.job-card__body ul{list-style:none; padding:0; margin:0; display:grid; gap:16px;}
.job-card__body li{display:flex; align-items:center; gap:12px;}
.job-card__body li img{width:28px; height:28px; object-fit:contain;}
.job-card__image img{display:block; width:100%; height:100%; object-fit:cover;}

/* =========================================================
   Lower Pages: White Header Override
   ========================================================= */

.page-template-page-company .gnav > li > a,
.page-template-page-history .gnav > li > a,
.page-template-page-sustainability .gnav > li > a,
.page-template-page-recruit .gnav > li > a,
.page-template-page-voice .gnav > li > a,
.page-template-page-number .gnav > li > a,
.page-template-page-job .gnav > li > a {
  color: var(--blue);
}

.page-template-page-company .header-search,
.page-template-page-history .header-search,
.page-template-page-sustainability .header-search,
.page-template-page-recruit .header-search,
.page-template-page-voice .header-search,
.page-template-page-number .header-search,
.page-template-page-job .header-search {
  border-color: var(--blue);
  background: #fff;
}

.page-template-page-company .header-search input,
.page-template-page-history .header-search input,
.page-template-page-sustainability .header-search input,
.page-template-page-recruit .header-search input,
.page-template-page-voice .header-search input,
.page-template-page-number .header-search input,
.page-template-page-job .header-search input {
  color: var(--blue);
}

.page-template-page-company .menu-toggle span,
.page-template-page-history .menu-toggle span,
.page-template-page-sustainability .menu-toggle span,
.page-template-page-recruit .menu-toggle span,
.page-template-page-voice .menu-toggle span,
.page-template-page-number .menu-toggle span,
.page-template-page-job .menu-toggle span {
  background: var(--blue);
}

/* =========================================================
   Page Hero 
   ========================================================= */
   
.page-hero {
  position: relative;
  background: #fff;
  overflow: hidden;
}

.page-hero__pattern img {
  display: block;
  width: 100%;
  height: auto;
}

.page-hero__inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.page-hero__title img {
  width:auto;
  height: 72px;
}

@media (max-width: 767px) {
.page-hero__title img {
  width:auto;
  height: 45px;
}
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 22px auto;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.breadcrumb,.breadcrumb a,.breadcrumb span {
  color: var(--blue);
}

/* =========================================================
   History Page: Background / Hero / Header Area
   ========================================================= */
body.page-template-page-history,
body.page-template-page-history .site-main,
body.page-template-page-history .page-history,
/* =========================================
   History page
========================================= */

body.page-template-page-history .history-page-head,
body.page-template-page-history .history-timeline-section,
.page-history--timeline {
  background: #add0dc !important;
}

.history-top-wave {
  position: relative;
  z-index: 1;
  background: #fff;
}

.history-top-wave img {
  display: block;
  width: 100%;
}

.history-page-head {
  padding: 24px 0 34px;
}

.history-page-head__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.history-page-head__copy,
.history-page-head__visual {
  min-width: 0;
}

.history-page-head__about {
  width: 300px;
  margin-bottom: 10px;
}

.history-page-head__title {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(34px, 4.2vw, 47px);
  line-height: 1.05;
  letter-spacing: 0.08em;
}

.history-page-head__lead {
  max-width: 100%;
  margin: 0;
  color: #173a55;
  font-size: 15px;
  line-height: 2;
}

.history-page-head__visual img {
  display: block;
  width: 100%;
  border-radius: 0;
}

.history-timeline-section {
  padding: 8px 0 90px;
}

/* =========================================================
   History Page: Timeline Layout / Side Navigation
   ========================================================= */
.history-timeline-layout {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.history-year-nav {
  position: sticky;
  top: 24px;
  align-self: start;
}

.history-year-nav ul {
  list-style: none;
  margin: 0;
  padding: 14px 0 0;
}

.history-year-nav li + li {
  margin-top: 18px;
}

.history-year-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.history-year-nav a.is-active {
  color: var(--blue);
}

.history-year-nav__triangle {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--blue);
  opacity: 0;
  transition: opacity .2s ease;
}

.history-year-nav a:hover .history-year-nav__triangle,
.history-year-nav a:focus .history-year-nav__triangle,
.history-year-nav a.is-active .history-year-nav__triangle,
.history-year-nav a[aria-current="true"] .history-year-nav__triangle {
  opacity: 1;
}

/* =========================================================
   History Page: Timeline Table
   ========================================================= */
.history-timeline-table {
  background: transparent;
  border: 0;
}

.history-timeline-table__head,
.history-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1.4fr) minmax(0, .95fr);
}

.history-timeline-table__head {
  gap: 0;
  margin-bottom: 4px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.history-timeline-table__head > div {
  padding: 14px 16px;
  margin-right: 2px;
  background: #0d5aa8;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  text-align: center;
}

.history-timeline-table__body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.history-row {
  gap: 0;
  align-items: stretch;
}

.history-row__year,
.history-row__naigai,
.history-row__world {
  background: #fff;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 18px;
  padding-right: 18px;
  vertical-align: top;
  margin-right: 2px;
}

.history-row__year {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.history-row__year-main {
  display: inline-block;
  color: var(--blue);
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
}

.history-row__year-sub {
  display: block;
  margin-top: 4px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.history-row__naigai-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.history-row__title {
  position: relative;
  margin: 0 0 14px 0;
  font-size: 14px;
  font-weight: 400;
}

.history-row__title::before {
  content: "";
  position: absolute;
  top: 0.9em;
  left: -18px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--blue);
  transform: translateY(-50%);
}

.history-row__naigai,.history-row__naigai p,
.history-row__world,.history-row__world li {
  color: #23384a;
  font-size: 14px;
  line-height: 1.9;
}

.history-row__naigai p {
  margin: 0;
}

.history-row__world ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.history-row__world li {
  position: relative;
  padding-left: 1em;
}

.history-row__world li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.history-row__world li + li {
  margin-top: 4px;
}

.history-row__gallery {
  display: grid;
  gap: 12px;
}

.history-row__gallery--single {
  grid-template-columns: 1fr;
}

.history-row__gallery--multi {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.history-row__gallery-item {
  margin: 0;
}

.history-row__gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
  border: 1px solid #b8d3df;
}

/* =========================================================
   History Page: Detail Panels / Toggle Content
   ========================================================= */
.history-extra-panels {
  margin-top: 18px;
  display: grid;
  gap: 16px;
}

.history-detail-card {
  background: #dcebf4;
  border-radius: 24px;
  padding: 18px 20px 20px;
}

.history-detail-card__head {
    text-align: center;
  margin-bottom: 10px;
}

.history-detail-card__head h3 {
  margin: 0;
  color: var(--blue);
  font-size: 20px;
  line-height: 1.4;
    text-align: center;
}

.history-detail-card__text,
.history-detail-card__list {
  margin: 0;
  color: #173a55;
  font-size: 14px;
  line-height: 1.85;
}

.history-detail-card__list {
  padding-left: 1.2em;
}

.history-detail-card__list li + li {
  margin-top: 6px;
}

.history-detail-toggle {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px;
  border: 1px solid var(--blue);
  border-bottom: 1px solid var(--blue);
  border-radius: 9px 9px 0 0;
  background: #fff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.history-detail-toggle--person {
  margin-top: 8px;
}

.history-detail-toggle__arrow {
  width: 0;
  height: 0;
  border-left: 7px solid var(--blue);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transition: transform .2s ease;
}

.history-detail-toggle[aria-expanded="true"] .history-detail-toggle__arrow {
  transform: rotate(90deg);
}

.history-detail-panel {
  margin-top: 14px;
  display: grid;
  gap: 14px;
}

.history-person {
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.history-person__summary {
  display: grid;
  grid-template-columns: 135px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.history-person__summary-media {
  min-width: 0;
}

.history-person__summary-media img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
  border: 1px solid #b8d3df;
  border-radius: 0;
}

.history-person__title,
.history-person__name,
.history-person__years,
.history-person__text,
.history-person__detail {
  margin: 0;
}

.history-person__title {
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.history-person__name {
  margin-top: 4px;
  color: #173a55;
  font-size: 15px;
  font-weight: 700;
}

.history-person__years {
  margin-top: 2px;
  color: #4b6b84;
  font-size: 12px;
  font-weight: 700;
}

.history-person__text,
.history-person__detail {
  margin-top: 8px;
  color: #173a55;
  font-size: 13px;
  line-height: 1.9;
}

.history-person__detail {
  display: block;
}

.history-person__detail[hidden] {
  display: none !important;
}

.history-mark-gallery {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.history-mark-gallery__item {
  margin: 0;
}

.history-mark-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
  border: 1px solid #b8d3df;
}

/* =========================================================
   Lower Pages: Responsive Adjustments
   ========================================================= */
@media (max-width: 960px) {
  .page-heading { font-size: 40px; }
  .recruit-grid-links { grid-template-columns: repeat(2, 1fr); }
  .recruit-day-gallery { grid-template-columns: repeat(2, 1fr); }
  .number-card-grid { grid-template-columns: repeat(2, 1fr); }
  .job-card { grid-template-columns: 1fr; }

  .history-page-head__main,
  .history-timeline-layout {
    grid-template-columns: 1fr;
  }

  .history-year-nav {
    position: static;
  }

  .history-year-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    padding-top: 0;
  }

  .history-year-nav li + li {
    margin-top: 0;
  }

  .history-mark-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .wrap,
  .narrow { width: min(100% - 24px, 100% - 24px); }

  .subpage-hero__inner { display: block; }
  .page-heading { font-size: 30px; }
  .recruit-grid-links,
  .recruit-day-gallery,
  .number-card-grid,
  .voice-questions { grid-template-columns: 1fr; }

  .voice-item { border-radius: 28px; align-items: flex-start; }
  .voice-item p { font-size: 17px; }
  .job-card__body h2 { font-size: 32px; }

.history-person__summary {
  display: block;
  gap: 0px;
}
}




/* =========================================================
   About Page (about.pdf based)
   ========================================================= */

.page-template-page-about .gnav > li > a,
.page-template-page-company .gnav > li > a {
  color: var(--blue);
}

.page-template-page-about .header-search,
.page-template-page-company .header-search {
  border-color: var(--blue);
  background: #fff;
}

.page-template-page-about .header-search input,
.page-template-page-company .header-search input {
  color: var(--blue);
}

.page-template-page-about .menu-toggle span,
.page-template-page-company .menu-toggle span {
  background: var(--blue);
}

.about-page--pdf {
  background: #fff;
  color: #16343f;
  padding-bottom: 100px;
}

body.page-template-page-about,
body.page-template-page-about .wrap,
body.page-template-page-about .about-page {
  background-color: #fff;
}

.about-hero__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  align-items: stretch;
  gap: 0;
  padding: 0 0 36px;
  max-width: none;
  width: 100%;
}

.about-hero .wrap {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.about-hero__copy {
  display: flex;
  align-items: center;
  padding: 42px 28px;
}

.about-hero__title img {
  width: min(100%, 260px);
  display: block;
}

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

.about-section {
  padding: 0 0 36px;
        overflow: hidden;
}

.about-section__title {
  margin: 0 0 26px;
  color: #00a8c6;
  font-size: 36px;
  letter-spacing: 0.1em;
  line-height: 1.05;
  font-weight: 800;
}

.about-section__title--dark {
  color: #fff;
}

.about-message__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: center;
}

.about-message__lead {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: clamp(24px, 2.3vw, 38px);
  line-height: 1.35;
  font-weight: 800;
  text-align: center;
}

.about-message__body p,
.about-policy__text p,
.about-offices__head p,
.about-history-strip__head p {
  margin: 0 0 1em;
  color: #24424c;
  font-size: 15px;
  line-height: 2;
}

.about-message__signature {
  margin-top: 28px !important;
  text-align: right;
}

.about-message__figure {
  margin: 0;
    transform: translate(5%, 0);
}

.about-message__figure img {
  display: block;
  width: 125%!important;
  max-width: 125%!important;
}

.about-divider {
  height: 12px;
  background: url('../images/section-wave-teal-thin.png') 100% auto;
  opacity: 0.95;
}

.about-profile__grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 42px;
  align-items: start;
}

.about-profile__figure {
      transform: translate(-57%, 50px);
}

.about-profile__figure img {
  display: block;
  width: 145%!important;
  max-width: 145%!important;
}

.about-company-table dl,
.about-license dl {
  margin: 0;
}

.about-company-table dl > div{
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-top: 2px solid #00a8c6;
}

.about-company-table dt{
  color: #00a8c6;
  font-weight: 700;
}

.about-company-table dd{
  margin: 0;
  color: #24424c;
  line-height: 1.8;
  position: relative; 
}

.about-license {
  margin-top: 24px;
}

.about-license h3 {
  margin: 0 0 12px;
  padding: 7px 18px;
  border: 2px solid #00a8c6;
  border-radius: 50px 0 0 50px;
  color: #00a8c6;
  font-size: 14px;
}

.about-license dl > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 6px;
  padding: 2px 0;
}

.about-license dd {
  margin: 0;
  line-height: 1.8;
}

.about-map-btn,.about-omap-btn,
.about-history-strip__button,
.about-papers__button,
.about-policy__buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border: 2px solid #00a8c6;
  border-radius: 50px 50px 50px 0;
  color: #00a8c6;
  text-decoration: none;
  font-weight: 700;
  background: transparent;
}

.about-map-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 12px;
}

.about-policy__head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: start;
}

.about-policy__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 26px 0 18px;
}

.about-policy__logo img {
  display: block;
  width: 100%;
  height:auto;
  margin: 0 auto;
}

.about-offices__head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: start;
}

.about-offices__grid {
  display: grid;
  align-items: start;
}

.about-office-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  border: 1px solid rgba(70, 210, 216, 0.7);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.about-office-card > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-office-card__body {
  padding: 16px 16px 16px 0;
    position: relative;
}

.about-office-card__body h3,
.about-paper-card__label,
.about-map__labels li {
  color: #00a8c6;
}

.about-office-card__body p {
  margin: 0 0 0.7em;
  font-size: 13px;
  line-height: 1.75;
}

.about-omap-btn {
  position: absolute;
  top: 20px;
  right: 16px;
  font-size: 12px;
}

@media (max-width: 767px) {
.about-omap-btn {
  position: absolute;
  top: 20px;
  right: 16px;
  font-size: 12px;
}
}

.about-map img {
  display: block;
  width: 100%;
}

.about-map__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  font-size: 13px;
}

.about-history-strip {
  margin-top: 0;
  padding: 34px 0 40px;
  background: #add0dc;
}

.about-history-strip__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 30px;
  align-items: start;
}

.about-history-strip__head p {
  color: #24424c;
}

.about-history-strip__photos {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.7fr;
  gap: 20px;
  width: 100%;
  align-items: stretch;
  margin-top:20px;
}

.about-history-strip__photos img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.about-history-strip__button {
  border-color: #0d70a6;
  color: #0d70a6;
}

.about-papers__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.about-papers__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-paper-card {
  background: #d4f7ef;
  border-radius: 14px 14px 0 0;
  padding: 18px 18px 22px;
  color: #1c2e35;
}

.about-paper-card time {
  display: block;
  margin: 10px 0 10px;
  color: #3b6b79;
  font-size: 13px;
}

.about-paper-card p {
  margin: 0;
  color: #1c2e35;
  line-height: 1.75;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .about-hero__inner,
  .about-message__grid,
  .about-profile__grid,
  .about-offices__grid,
  .about-policy__head,
  .about-offices__head {
    grid-template-columns: 1fr;
  }

.about-hero__copy {
    min-height: 180px;
  }
  
.about-message__figure {
  margin: auto;
    transform: translate(20%, 0);
    text-align:center;
}

.about-message__figure img {
  margin: auto;
  width: 80%!important;
  max-width: 80%!important;
}

.about-profile__figure {
      transform: translate(-15%, 20px);
}

.about-profile__figure img {
  width: 75%!important;
  max-width: 75%!important;
}

.about-company-table dl > div{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 6px;
}
  .about-page--pdf {
    padding-bottom: 70px;
  }

  .about-hero__wave {
    height: 28px;
    -webkit-mask: radial-gradient(24px at 24px 24px,#0000 98%,#000) calc(50% - 24px) 0/48px 100%;
    mask: radial-gradient(24px at 24px 24px,#0000 98%,#000) calc(50% - 24px) 0/48px 100%;
  }

  .about-hero__copy,
  .about-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .about-section__title {
    margin-bottom: 18px;
    font-size: 34px;
  }


  .about-license dl > div,
  .about-office-card {
    grid-template-columns: 1fr;
  }

  .about-office-card__body {
    padding: 0 16px 16px;
  }

  .about-history-strip__photos,
  .about-papers__cards {
    grid-template-columns: 1fr;
  }

  .about-history-strip__photos img {
    height: auto;
  }
  .about-history-strip__inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    grid-template-areas:
      "title button"
      "text text" !important;
    align-items: center !important;
    gap: 12px 10px !important;
  }

  .about-history-strip__top {
    display: contents !important;
  }

  .about-history-strip__top .about-section__title {
    grid-area: title;
    margin: 0 !important;
    min-width: 0;
    white-space: nowrap;
  }

  .about-history-strip__button {
    grid-area: button;
    justify-self: end;
    white-space: nowrap;
    min-width: max-content;
    font-size: 12px;
    padding: 0 12px;
  }

  .about-history-strip__top p {
    grid-area: text;
    margin: 0 !important;
    min-width: 0;
  }
}


.about-wave{
  padding: 30px 0;
}

.about-wave.about-history-wave{
  padding: 0;
}

.about-wave img {
  display: block;
  width: 100%;
  height: auto;
}

.about-policy__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 2px 12px;
  border: 2px solid #005bac;
  border-radius: 999px;
  color: #005bac;
  text-decoration: none;
  font-size: 180%;
  font-weight: 700;
  background: #fff;
  cursor: pointer;
}

.about-policy__tab.is-active {
  background: #005bac;
  border-color: #005bac;
  color: #fff;
}

.about-policy__panels {
  margin-top: 12px;
}

.about-policy__panel[hidden] {
  display: none !important;
}

.about-policy__panel {
  min-height: 240px;
}

.about-policy__card {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 32px;
  border: 1px solid rgba(70, 210, 216, 0.7);
  border-radius: 24px;
  background: #f3fbfd;
}

.about-policy__card h3 {
  margin: 0 0 16px;
  color: #1386d4;
  font-size: 28px;
}

.about-policy__card p,
.about-policy__card li {
  color: #24424c;
  line-height: 1.9;
}

.about-policy__card ul {
  margin: 12px 0 0;
  padding-left: 1.2em;
}

.about-section__title--dark {
  color: #00a8c6;
}

@media (max-width: 767px) {
  .about-hero .wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .about-policy__card {
    padding: 20px;
  }
}


/* =========================================
   About page
========================================= */

/* about 040503 adjustments */

.about-hero { position: relative; overflow: hidden; min-height: 360px; }
.about-hero__bg { position: absolute; inset: 0; z-index: 0; }
.about-hero__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-hero__inner { position: relative; z-index: 1; display: flex; align-items: center; min-height: 360px; }
.about-hero__copy { padding: 48px 4vw; }
.about-hero__title img { width: min(100%, 360px); }
.about-policy__logo--wide img { width: min(100%, 980px); }
.about-offices__grid { grid-template-columns: 420px 1fr; }
.about-office-card[hidden] { display:none !important; }
.about-map__image-wrap { position: relative; }
.about-map__pin { position:absolute; width:18px; height:18px; border-radius:50%; border:2px solid #fff; background:#00a8c6; box-shadow:0 0 0 2px #1386d4; cursor:pointer; transform:translate(-50%,-50%); }
.about-map__pin.is-active { background:#ffe500; box-shadow:0 0 0 2px #0d70a6; }
.about-map__pin.pin-sapporo { left: 86%; top: 15%; }
.about-map__pin.pin-obihiro { left: 89%; top: 21%; }
.about-map__pin.pin-sendai { left: 78%; top: 45%; }
.about-map__pin.pin-hq { left: 79%; top: 57%; }
.about-map__pin.pin-nagoya { left: 72%; top: 62%; }
.about-map__pin.pin-osaka { left: 67%; top: 65%; }
.about-map__pin.pin-nagaoka { left: 73%; top: 52%; }
.about-map__pin.pin-wakamatsu { left: 56%; top: 78%; }
.about-map__pin.pin-southkyushu { left: 52%; top: 87%; }
.about-history-strip { margin-top:0; padding: 34px 0 40px; background:#add0dc; }
.about-history-strip .about-section__title--dark { color:#fff; margin-bottom:0; }
@media (max-width: 767px) {
  .about-hero, .about-hero__inner { min-height: 220px; }
  .about-hero__title img { width:min(100%,240px); }
  .about-map__pin { width:14px; height:14px; }
}


/* about 040503 button/map refinements */
.about-page,
.about-page.about-page--pdf {
  background: #fff;
}

.about-hero {
  min-height: clamp(180px, 28vw, 420px);
}
.about-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero__inner {
  position: relative;
  z-index: 1;
}
.about-hero__title {
  margin: 0;
  padding: clamp(60px, 9vw, 120px) 0 clamp(24px, 4vw, 48px);
}
.about-hero__title img {
  width: min(100%, 400px);
}

.about-policy__buttons {
  gap: 0;
  justify-content: center;
}
.about-policy__tab {
  min-width: 148px;
  border-radius: 0;
}
.about-policy__tab--company {
  border-radius: 18px 0 0 18px;
}
.about-policy__tab--style {
  border-radius: 0 18px 18px 0;
  border-left-width: 0;
}
.about-policy__tab.is-active {
  position: relative;
  z-index: 1;
}
.about-policy__logo--wide img {
  width: min(100%, 1100px);
}

.about-office-card {
  display: grid;
}
.about-office-card[hidden] {
  display: none !important;
}

.about-map__image-wrap {
  position: relative;
}
.about-map__pin {
  position: absolute;
  width: 34px;
  height: 34px;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
}
.about-map__pin:hover,
.about-map__pin:focus-visible,
.about-map__pin.is-active {
  outline: 2px solid rgba(255,255,255,0.95);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px #0d5aa8;
}
.about-map__pin.pin-sapporo { left: 86.2%; top: 14.8%; }
.about-map__pin.pin-obihiro { left: 89.4%; top: 21.1%; }
.about-map__pin.pin-sendai { left: 78.0%; top: 45.2%; }
.about-map__pin.pin-hq { left: 78.7%; top: 57.5%; }
.about-map__pin.pin-nagoya { left: 72.0%; top: 62.2%; }
.about-map__pin.pin-osaka { left: 67.1%; top: 65.1%; }
.about-map__pin.pin-nagaoka { left: 73.3%; top: 52.1%; }
.about-map__pin.pin-wakamatsu { left: 56.0%; top: 78.0%; }
.about-map__pin.pin-southkyushu { left: 52.0%; top: 87.0%; }

.about-history-strip {
  position: relative;
}
.about-history-strip .about-section__title--dark {
  color: #fff;
  letter-spacing: 0;
}
.about-history-strip__top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}
.about-history-strip__top p {
  margin: 0;
}

.about-history-strip__button,
.about-papers__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 34px;
  padding: 0 15px 0 18px;
  border: 2px solid #005bac;
  border-radius: 18px 0 0 18px;
  background: #fff;
  color: #005bac;
  font-weight: 700;
  font-size: 14px;
}
.about-history-strip__button i,
.about-papers__button i {
  display: block;
  width: 0;
  height: 0;
  border-left: 7px solid #005bac;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.about-history-strip__button span,
.about-papers__button span {
  display: block;
}

@media (max-width: 767px) {
  .about-policy__tab {
    min-width: 0;
    flex: 1 1 auto;
    padding-left: 12px;
    padding-right: 12px;
  }
  .about-history-strip__button,
  .about-papers__button {
  min-height: 30px;
        padding: 0px 10px;
        font-size: 12px;
    gap: 5px;
  }
}


/* about offices overlap layout 2026-04-08 */
.about-offices__grid {
  position: relative;
  display: block;
  min-height: clamp(540px, 54vw, 860px);
}

.about-office-panels {
  position: absolute;
  top: clamp(18px, 2.4vw, 34px);
  left: 0;
  width: min(55%, 800px);
  z-index: 3;
}

.about-office-card {
  width: 100%;
  max-width: none;
}

.about-map {
  position: relative;
  width: min(78%, 1080px);
  margin-left: auto;
  z-index: 1;
}

.about-map__image-wrap {
  width: 100%;
}

.about-map__image {
  width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .about-offices__grid {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 24px;
  }

  .about-office-panels {
    position: static;
    width: 100%;
  }

  .about-map {
    width: 100%;
    margin-left: 0;
  }
}

.about-map area {
  cursor: pointer;
}

.about-map__image {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

/* =========================================================
   Sustainability Page
   ========================================================= */
.naigai-page--sustainability{background:#fff; color:#222; padding-bottom:80px;}
.sustainability-page{background:#fff; color:#2a2a2a;}
.sustainability-intro{max-width:920px; margin:16px auto 34px; text-align:center; font-size:15px; line-height:1.9; color:#3e3a39;font-weight:700;}
.sustainability-layout{display:grid; grid-template-columns:220px minmax(0,1fr); gap:36px; align-items:start;}
.sustainability-nav{position:sticky; top:120px;}
.sustainability-nav ul{list-style:none; margin:0; padding:0;}
.sustainability-nav li + li{margin-top:8px;}
.sustainability-nav a{position:relative; display:inline-flex; align-items:center; gap:10px; padding:2px 0 2px 18px; color:#4dbbaa; font-size:14px; font-weight:700;}
.sustainability-nav a::before{content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); width:0; height:0; border-top:6px solid transparent; border-bottom:6px solid transparent; border-left:9px solid #4dbbaa; opacity:0; transition:opacity .2s ease;}
.sustainability-nav a:hover::before,.sustainability-nav a.is-active::before{opacity:1;}
.sustainability-main{min-width:0;}
.sustainability-section{padding:0 0 8px;}
.sustainability-section--with-image{display:grid; grid-template-columns:minmax(0,1fr) 270px; gap:36px; align-items:start;}
.sustainability-section__body h2{margin:0 0 18px; color:#4dbbaa; font-size:36px; line-height:1.1; letter-spacing:.08em; font-weight:700;}
.sustainability-section__body p{margin:0 0 16px; font-size:15px; line-height:1.95; color:#333;}
.sustainability-subhead{color:#4dbbaa !important; font-weight:700;}
.sustainability-section__image img{width:100%; height:auto; display:block;}
.sustainability-wave{margin:24px 0 28px;}
.sustainability-wave img{width:100%; height:auto; display:block;}
.sustainability-number-list{list-style:none; margin:0 0 16px; padding:0; counter-reset:sus-num;}
.sustainability-number-list li{position:relative; margin:0 0 10px; padding-left:1.8em; line-height:1.95; color:#333;}
.sustainability-number-list li::before{counter-increment:sus-num; content:counter(sus-num); position:absolute; left:0; top:0; color:#333; font-weight:400;}
.sustainability-section__body--full{max-width:860px;}
.sustainability-action-links{display:flex; flex-direction:column; gap:10px; margin-top:8px;}
.sustainability-action-links a{position:relative; display:inline-block; width:fit-content; padding-right:20px; color:#333; line-height:1.9;}
.sustainability-action-links a::after{content:''; position:absolute; right:0; top:50%; transform:translateY(-50%); width:0; height:0; border-top:5px solid transparent; border-bottom:5px solid transparent; border-left:8px solid #000;}
@media (max-width: 900px){
  .sustainability-layout{grid-template-columns:1fr;}
  .sustainability-nav{position:static;}
  .sustainability-section--with-image{grid-template-columns:1fr;}
  .sustainability-section__body h2{font-size:36px;}
}


/* =========================================================
   Recruit Top Page
   ========================================================= */
.page-recruit .page-hero {
  position: relative;
  background: #65aadd;
  overflow: hidden;
}
.page-recruit .page-hero__pattern {
  position: relative;
  z-index: 2;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
}

.page-recruit .page-hero__pattern img {
  display: block;
  width: calc(100% + 4px);
  max-width: none;
  margin: -1px -2px -1px -1px;
  height: auto;
}

.page-recruit .page-hero__inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 165px;
  z-index: 1; /* タイトル画像を背面 */
  pointer-events: none;
}

@media (max-width: 767px) {
.page-recruit .page-hero__inner {
  padding-top: 25px;
}
}

@media (max-width: 767px) {
.page-recruit .page-hero__title img {
  width:auto;
  height: 30px;
}
}

.naigai-page--recruit-top{background:#ebf6f3;}
.recruit-hero__inner{padding-top:18px;}
.recruit-hero__titleimage{position:absolute; left:0; top:34px; z-index:2; max-width:420px;}
.recruit-hero__people{padding-top:26px;}
.recruit-top-intro{padding:8px 0 22px; text-align:center;}
.recruit-top-intro__title{font-family: "Shippori Mincho B1", serif; margin:0 0 26px; color:var(--blue); font-size:clamp(38px,4.8vw,64px); line-height:1.2; font-weight:500; letter-spacing:.08em;}
.recruit-top-intro__copy{max-width:920px; margin:0 auto; color:#2c3f52; font-size:15px; line-height:2.1;}
.recruit-top-intro__copy p{margin:0 0 12px;}
.recruit-feature-grid{display:grid; grid-template-columns:1fr 1fr; gap:48px; margin-top:26px;}
.recruit-feature__head{display:flex; align-items:flex-start; justify-content:space-between; gap:16px; margin-bottom:24px;}
.recruit-feature__head h2,.recruit-teaser h2,.recruit-day-section__head h2,.recruit-job-cta__text h2{margin:0; color:var(--blue); font-size:36px; line-height:1.1; font-weight:700;}
.recruit-feature__body--thumb{display:grid; grid-template-columns:minmax(210px, 0.95fr) minmax(0, 1fr); gap:18px; align-items:flex-start;}
.recruit-feature__body--reverse{grid-template-columns:minmax(0,1fr) minmax(210px,.95fr);}
.recruit-feature__text{font-size:15px; line-height:2; color:#2c3f52;}
.recruit-feature__text p{margin:0;}
.recruit-feature__thumb--oval-left{
		width:150%; 
	transform: translate(-35%, 0);
	margin:0; }
@media (max-width: 980px) {
.recruit-feature__thumb--oval-left{
		width:100%; 
	transform: translate(0, 0);
	margin:0; }
 }
.recruit-feature__thumb--oval-left img{
	width:100%; 
	height: auto;}
.recruit-feature__thumb--oval-right{
		width:150%; 
	transform: translate(0, 0);
	margin:0; }
@media (max-width: 980px) {
.recruit-feature__thumb--oval-right{
		width:100%; 
	transform: translate(0, 0);
	margin:0; }
 }
.recruit-feature__thumb--oval-right img{
	width:100%; 
	height: auto;}
.recruit-arrow-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 34px;
  padding: 0 15px 0 18px;
  border: 2px solid #005bac;
  border-radius: 18px 0 0 18px;
  background: #fff;
  color: #005bac;
  font-weight: 700;
  font-size: 14px;
}
.recruit-arrow-btn i {
  display: block;
  width: 0;
  height: 0;
  border-left: 7px solid #005bac;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.recruit-arrow-btn span {
  display: block;
}

.recruit-arrow-btn--large{
font-size:24px; 
padding:12px 28px 12px 28px; 
justify-content:center; 
border: 2px solid  #005bac;
border-radius: 28px 28px 0 28px;
background:#fff;
color: #005bac;
}

.recruit-voice-heading {
  margin: 0 0 32px;
}

.recruit-voice-heading__bubble {
  position: relative;
  display: flex;
  align-items: center;
  gap: 42px;
  padding: 24px 36px 24px 48px;
  border: 16px solid #4dbbaa;
  border-radius: 999px;
  background: #fff;
  color: #4dbbaa;
}

.recruit-voice-heading__bubble::before {
  content: "";
  position: absolute;
  left: 100px;
  bottom: -40px;
  width: 0;
  height: 0;
  border-top: 30px solid #4dbbaa;
  border-right: 30px solid transparent;
}

.recruit-voice-heading__icon {
  flex: 0 0 auto;
  width: 65px;
}

.recruit-voice-heading__icon img {
  display: block;
  width: 100%;
  height: auto;
}

.recruit-voice-heading__text {
  font-size: 20px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #4dbbaa;
}

@media (max-width: 767px) {
  .recruit-voice-heading__bubble {
    gap: 20px;
    padding: 28px 28px 34px;
    border-width: 8px;
    border-radius: 48px;
  }

  .recruit-voice-heading__bubble::before {
    left: 110px;
    bottom: -24px;
    border-top-width: 24px;
    border-right-width: 24px;
  }

  .recruit-voice-heading__bubble::after {
    left: 115px;
    bottom: -11px;
    border-top-width: 16px;
    border-right-width: 16px;
  }

  .recruit-voice-heading__icon {
    width: 60px;
  }

  .recruit-voice-heading__text {
    font-size: 24px;
  }
}
.recruit-teasers{display:grid; grid-template-columns:1fr 1fr; gap:48px; margin-top:48px; align-items:start;}
.recruit-teasers p{margin:0 0 16px; font-size:15px; line-height:2; color:#2c3f52;}
.recruit-number-thumbs{display:grid; grid-template-columns:repeat(3,1fr); gap:14px;}
.recruit-number-thumbs img{display:block; width:100%;}
.recruit-voice-thumb img{display:block; width:100%; max-width:430px;}
.recruit-day-section{margin-top:34px;}
.recruit-day-slider {
  position: relative;
  margin-top: 40px;
  padding: 0 72px;
}

.recruit-day-slider__track {
  display: flex;
  gap: 24px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.recruit-day-slider__track::-webkit-scrollbar {
  display: none;
}

.recruit-day-card {
  flex: 0 0 calc((100% - 72px) / 4);
}

.recruit-day-card__image {
  margin-bottom: 14px;
}

.recruit-day-card__image img {
  width: 100%;
  height: auto;
  display: block;
}

.recruit-day-card__meta {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
  line-height: 1.6;
}

.recruit-day-card__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
}

.recruit-day-slider__arrow {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  z-index: 5;
  padding: 0;
}

.recruit-day-slider__arrow--prev {
  left: 0;
}

.recruit-day-slider__arrow--next {
  right: 0;
}

.recruit-day-slider__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: none;
}

.recruit-day-slider__arrow--prev::before {
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 12px solid #005bac;
  margin-left: -2px;
}

.recruit-day-slider__arrow--next::before {
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #005bac;
  margin-left: 2px;
}

.recruit-job-cta{display:grid; grid-template-columns:minmax(0,1fr) auto; gap:36px; align-items:center; margin-top:38px;}
.recruit-job-cta__text p{max-width:700px; margin:12px 0 0; font-size:15px; line-height:2; color:#2c3f52;}

@media (max-width: 980px){
  .recruit-feature-grid,.recruit-teasers,.recruit-job-cta{grid-template-columns:1fr;}
  .recruit-day-gallery--top{grid-template-columns:repeat(2,1fr);}
  .recruit-feature__body--thumb,.recruit-feature__body--reverse{grid-template-columns:1fr;}
}

@media (max-width: 767px){
  .recruit-hero__titleimage{position:relative; left:auto; top:auto; max-width:280px; margin:0 auto 12px;}
  .recruit-hero__people{padding-top:0;}
  .recruit-top-intro__copy{font-size:14px; line-height:1.9;}
  .recruit-feature__head h2,.recruit-teaser h2,.recruit-day-section__head h2,.recruit-job-cta__text h2{font-size:26px;}
  .recruit-day-section__head{grid-template-columns:1fr; gap:6px;}
  .recruit-day-gallery--top{grid-template-columns:1fr 1fr; gap:16px;}
  .recruit-number-thumbs{grid-template-columns:1fr;}
  .recruit-day-slider {
    padding: 0 40px;
  }
  .recruit-day-card {
    flex: 0 0 220px;
  }
  .recruit-day-card__title {
    font-size: 18px;
  }
.recruit-arrow-btn--large{
font-size:16px; 
padding:6px 14px; 
justify-content:center; 
border: 2px solid  #005bac;
border-radius: 14px 14px 0 14px;
background:#fff;
color: #005bac;
}
}

/* =========================================================
   Recruit Voice Page
   ========================================================= */

.page-voice--recruit {
  background: #ECF4F2;
}

.voice-page {
  padding-top: 40px;
  padding-bottom: 80px;
}

.voice-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 44px;
  margin: 26px 0 38px;
}

.voice-tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  min-height: 96px;
  padding: 18px 30px 20px;
  border: 0;
  border-radius: 999px;
  background: #a3d6cb;
  border: 16px solid #a3d6cb;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.voice-tab::before {
  content: "";
  position: absolute;
  left: 100px;
  bottom: -40px;
  width: 0;
  height: 0;
  border-top: 30px solid #a3d6cb;
  border-right: 30px solid transparent;
  transition: opacity .2s ease;
}

.voice-tab.is-active {
  background: #fff;
  color: #4dbbaa;
  border: 16px solid #4dbbaa;
}

.voice-tab.is-active::before {
  content: "";
  position: absolute;
  left: 100px;
  bottom: -40px;
  width: 0;
  height: 0;
  border-top: 30px solid #4dbbaa;
  border-right: 30px solid transparent;
  transition: opacity .2s ease;
}

.voice-tab__icon {
  flex: 0 0 auto;
  width: 65px;
}

.voice-tab__icon img {
  width: 100%;
  height: auto;
}

.voice-tab__label {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.voice-panels {
  position: relative;
  margin-top: 56px;
}

.voice-panel {
  display: none;
}

.voice-panel.is-active {
  display: block;
}

.voice-answer-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.voice-answer-pill {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 4px solid #4dbbaa;
  border-radius: 999px;
  padding: 18px 36px;
}

.voice-answer-pill__icon {
  flex: 0 0 auto;
  width: 86px;
}

.voice-answer-pill__icon img {
  width: 100%;
  height: auto;
}

.voice-answer-pill__body {
  flex: 1 1 auto;
  min-width: 0;
  text-align: center;
}

.voice-answer-pill__title {
  margin: 0;
  color: #3e3a39;
  font-size: 19px;
  line-height: 1.7;
  font-weight: 500;
}

.voice-answer-pill__sub {
  margin: 4px 0 0;
  color: #3e3a39;
  font-size: 80%;
  line-height: 1.6;
}

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

.voice-license-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.voice-license-note {
  margin: 26px 0 0;
  text-align: center;
  color: #3a5580;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .voice-page {
    padding-top: 28px;
    padding-bottom: 56px;
  }

.voice-tab {
  gap: 9px;
  min-height: 96px;
  padding: 9px 15px 10px;
  border: 2px solid #a3d6cb;
}

.voice-tab.is-active {
  border: 4px solid #4dbbaa;
}

.voice-tab.is-active::before {
  bottom: -20px;
  border-top: 20px solid #4dbbaa;
  border-right: 20px solid transparent;
}

  .voice-tab__icon {
    width: 28px;
  }

  .voice-tab__label {
    font-size: 16px;
  }

  .voice-answer-pill {
    gap: 14px;
    padding: 14px 18px;
    border-width: 3px;
  }

  .voice-answer-pill__icon {
    width: 32px;
  }

  .voice-answer-pill__title {
    font-size: 15px;
    line-height: 1.65;
    text-align: left;
  }
  
  .voice-license-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .voice-license-column {
    gap: 14px;
  }

  .voice-license-note {
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.7;
  }
.voice-tab::before {
  bottom: -20px;
}
}


/* =========================================
   Voice page adjustments (match recruit)
========================================= */

.page-voice .voice-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin: 28px 0 36px;
}

.page-voice .voice-tabs__button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  width: 100%;
  min-height: 96px;
  padding: 20px 30px 20px 34px;
  border: 0;
  border-radius: 999px;
  background: #9fd9cf;
  color: #fff;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
}

.page-voice .voice-tabs__button::after {
  content: "";
  position: absolute;
  left: 36px;
  bottom: -18px;
  width: 0;
  height: 0;
  border-top: 22px solid #9fd9cf;
  border-right: 22px solid transparent;
}

.page-voice .voice-tabs__button.is-active {
  background: #fff;
  color: #4dbbaa;
  border: 8px solid #4dbbaa;
  padding: 12px 22px 12px 26px;
}

.page-voice .voice-tabs__button.is-active::after {
  left: 36px;
  bottom: -18px;
  border-top: 22px solid #4dbbaa;
  border-right: 22px solid transparent;
}

.page-voice .voice-tabs__button.is-active::before {
  content: "";
  position: absolute;
  left: 41px;
  bottom: -8px;
  width: 0;
  height: 0;
  border-top: 14px solid #fff;
  border-right: 14px solid transparent;
  z-index: 1;
}

.page-voice .voice-tabs__q {
  flex: 0 0 auto;
  width: 46px;
}

.page-voice .voice-tabs__q img {
  display: block;
  width: 100%;
  height: auto;
}

.page-voice .voice-tabs__label {
  font-size: 25px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0.02em;
}

@media (max-width: 767px) {
  .page-voice .page-hero__inner {
    padding-top: 68px;
  }

  .page-voice .page-hero__title img {
    height: 44px;
  }

  .page-voice .voice-tabs {
  grid-template-columns: 1fr 1fr;
    gap: 26px 6px;
  }

  .page-voice .voice-tabs__button {
  min-height: 58px;
  padding: 10px 15px 10px 17px;
    gap: 11px;
  }

  .page-voice .voice-tabs__button.is-active {
    border-width: 2px;
  padding: 6px 11px 6px 13px;
  }

  .page-voice .voice-tabs__button::after,
  .page-voice .voice-tabs__button.is-active::after {
    left: 22px;
    bottom: -12px;
    border-top-width: 14px;
    border-right-width: 14px;
  }

  .page-voice .voice-tabs__button.is-active::before {
    left: 25px;
    bottom: -5px;
    border-top-width: 9px;
    border-right-width: 9px;
  }

  .page-voice .voice-tabs__q {
    width: 32px;
  }

  .page-voice .voice-tabs__label {
    font-size: 18px;
  }
}

/* =========================================================
   Recruit Number Page
   ========================================================= */

.number-page {
  padding-top: 40px;
  padding-bottom: 80px;
}

.number-intro{margin:16px auto 34px; font-size:15px; line-height:1.9; color:#3e3a39;}

/* =========================================================
   Recruit Requirements Page
   ========================================================= */

.page-requirements {
  background: #ebf6f3;
}

.requirements-page {
  padding-top: 40px;
  padding-bottom: 80px;
}

.requirements-intro {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.9;
  color: #3e3a39;
}

.requirements-cards {
  display: grid;
  gap: 44px;
}

.requirements-card {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 1fr);
  background: #fff;
  border: 4px solid #4dbbaa;
  border-radius: 18px;
  overflow: hidden;
}

.requirements-card__body {
  padding: 28px 28px 28px 28px;
}

.requirements-card__title {
  margin: 0 0 8px;
  color: #005bac;
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: .05em;
}

.requirements-card__lead {
  margin: 0 0 10px;
  color: #3e3a39;
  font-size: 20px;
  line-height: 1.7;
}

.requirements-card__lead p {
  margin: 0;
}

.requirements-card__sub {
  margin: 0 0 18px;
  color: #3e3a39;
  font-size: 16px;
  line-height: 1.8;
}

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

.requirements-card__info li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.requirements-card__info img {
  width: 30px;
  height: auto;
  margin-top: 1px;
}

.requirements-card__info strong {
  display: block;
  color: #005bac;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
}

.requirements-card__info span {
  display: block;
  color: #3e3a39;
  font-size: 15px;
  line-height: 1.55;
}

.recruit-arrow-btn--requirements {
  text-align: center;
    padding-top: 12px;
}


.requirements-card__image {
  min-height: 100%;
}

.requirements-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



@media (max-width: 767px) {
  .requirements-page {
    padding-top: 28px;
    padding-bottom: 52px;
  }

  .requirements-intro {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .requirements-card {
    grid-template-columns: 1fr;
    gap: 0;
    border-width: 3px;
    border-radius: 14px;
  }

  .requirements-card__body {
    padding: 20px 18px 22px;
  }

  .requirements-card__title {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .requirements-card__lead,
  .requirements-card__sub,
  .requirements-card__info span {
    font-size: 14px;
  }
}

/* =========================================
   News archive / category
========================================= */

.news-page {
  padding-top: 40px;
  padding-bottom: 80px;
}

.news-wave {
  padding-top: 15px;
  padding-bottom: 15px;
}

.news-wave img {
  width: 100%;
  height: auto;
  display: block;
}

.news-page-head {
  padding: 54px 0 14px;
  background: #fff;
}

.news-page-head__inner {
  display: flex;
  align-items: flex-start;
}

.news-page-head__about {
  display: block;
  width: min(295px, 62vw);
  height: auto;
}

.news-page-head__sub {
  margin: 10px 0 0;
  color: var(--blue);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.news-archive-section {
  padding: 10px 0 90px;
}

.news-archive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 52px;
  align-items: start;
}

.news-archive-main {
  min-width: 0;
}

.news-archive-description {
  margin-bottom: 24px;
  color: #171c61;
  font-size: 14px;
  line-height: 2;
}

.news-archive-item {
  padding: 20px 24px 24px;
  border-top: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  margin-bottom: 22px;
}

.news-archive-item__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 14px;
}

.news-archive-item__cat,
.news-side-post__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 4px 12px;
  border-radius: 18px 18px 0 18px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.news-archive-item__meta time,
.news-side-post time {
  color: #171c61;
  font-size: 15px;
  padding: 5px 0 0 0;
  margin: 0;
}
.news-side-post time {
  display: block;
}

.news-archive-item__title {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.55;
  color: #171c61;
}

.news-archive-item__title a {
  color: inherit;
}

.news-archive-item__body {
  display: block;
}

.news-archive-item__body.has-thumbnail {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.news-archive-item__thumb {
  margin: 0;
}

.news-archive-item__thumb img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.news-archive-item__text {
  color: #171c61;
  font-size: 15px;
  line-height: 2;
}

.news-archive-item__text p {
  margin: 0;
}

.news-archive-item__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  margin-top: 18px;
  padding: 10px 18px;
  border: 1.5px solid var(--blue);
  border-radius: 18px 18px 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  background: #fff;
}

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

.news-archive-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-archive-pagination .page-numbers li {
  margin: 0;
}

.news-archive-pagination .page-numbers a,
.news-archive-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #9fd8e4;
  border-radius: 999px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  background: #fff;
}

.news-archive-pagination .page-numbers .current {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.news-archive-empty {
  padding: 40px 24px;
  border: 1px solid #c4e5ec;
  color: #171c61;
  text-align: center;
}

.news-archive-sidebar {
  min-width: 0;
}

.news-side-block + .news-side-block {
  margin-top: 36px;
}

.news-side-block__title {
  margin: 0 0 16px;
  padding: 4px 14px 5px;
  border-radius: 999px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.18em;
  background: #4dbbaa;
}

.news-side-categories {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.news-side-categories__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border: 1.5px solid var(--cat-color, var(--blue));
  border-radius: 18px 18px 0 18px;
  color: var(--cat-color, var(--blue));
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  background: #fff;
}

.news-side-categories__item.is-current {
  color: var(--cat-color, var(--blue));
  background: color-mix(in srgb, var(--cat-color, var(--blue)) 10%, #fff 90%);
}

.news-side-post + .news-side-post {
  margin-top: 18px;
}

.news-side-post h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 700;
}

.news-side-post h3 a {
  color: #171c61;
}

.news-side-archives {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-side-archives li + li {
  margin-top: 10px;
}

.news-side-archives a {
  color: #171c61;
  font-size: 15px;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .news-archive-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 767px) {
  .news-page-head {
    padding-top: 34px;
  }

  .news-page-head__sub {
    font-size: 18px;
  }

  .news-archive-section {
    padding-bottom: 58px;
  }

  .news-archive-item {
    padding: 16px 16px 18px;
  }

  .news-archive-item__title {
    font-size: 22px;
  }

  .news-archive-item__body.has-thumbnail {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .news-archive-item__text {
    font-size: 14px;
    line-height: 1.9;
  }

  .news-side-block__title {
    font-size: 15px;
    letter-spacing: 0.12em;
  }
}


/* =========================================
   News category archive adjustments
========================================= */
.news-archive-list {
  display: grid;
  gap: 22px;
}

.news-archive-item {
  padding: 20px 0 24px;
  border-top: 0;
  border-bottom: 2px solid #00a8c6;
  margin-bottom: 0;
  background: transparent !important;
}

.news-archive-item__cat,
.news-side-post__cat {
  min-width: 0;
  border: 1.5px solid var(--cat-color, var(--blue));
  color: var(--cat-color, var(--blue));
  background: transparent !important;
}

.news-side-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.news-side-categories__item {
  display: inline-flex;
  width: auto;
  flex: 0 0 auto;
}

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

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

.news-archive-item__text p {
  margin: 0 0 1em;
}

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

.news-archive-loadmore__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  padding: 10px 18px;
  border: 1.5px solid var(--blue);
  border-radius: 18px 18px 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  background: #fff;
  cursor: pointer;
}

.news-archive-loadmore__button.is-loading {
  pointer-events: none;
  opacity: 0.7;
}


/* =========================================================
   Recruit Day Detail / Archive
   ========================================================= */

.page-day-detail--recruit,
.page-day-archive--recruit {
  background: #ecf4f2;
}

.page-day-detail__content,
.page-day-archive__content {
  padding: 40px 0 88px;
}

.day-detail-headline {
  margin-top: 22px;
}

.day-detail-headline__main {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.day-detail-title {
  margin: 0;
  color: var(--blue);
  font-size: 56px;
  line-height: 1;
  font-weight: 700;
  display: inline-block;
}

.day-detail-meta {
  display: inline-flex;
  align-self: flex-start; 
  align-items: center;
  padding: 8px 22px;
  border: 1.5px solid var(--blue);
  border-radius: 999px 999px 0 999px;
  color: var(--blue);
  background: #fff;
    font-size: 15px;
  font-weight: 700;
  margin-top: 6px;
}

.day-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: stretch;
  margin-top: 26px;
}

.day-detail-hero__image {
  height: 100%;
}

.day-detail-hero__image img {
  display: block;
  width: 100%;
  height: auto;
}

.day-detail-hero__copy {
  display: flex;
  align-items: stretch;
  justify-self: center;
  height: 100%;
}

.day-detail-hero__copy h2 {
  font-family: "Shippori Mincho B1", serif;
  margin: 0;
  height: 100%;
  display: flex;
  align-items: center;
  color: var(--blue);
  font-size: 46px;
  line-height: 1.25;
  font-weight: 500;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: .08em;
  white-space: nowrap;
}

.day-detail-section-title {
  margin: 0 0 24px;
  color: #4dbbaa;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
}


.day-detail-others h2 {
  margin: 0 0 24px;
  color: var(--blue);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.day-detail-schedule {
  margin-top: 46px;
}

.day-detail-schedule__card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 38px;
  padding: 28px 34px;
  background: #fff;
  border-radius: 20px;
}

.day-detail-schedule__col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.day-schedule-item {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  column-gap: 28px;
  padding: 0;
  align-items: start;
}

.day-schedule-item__time {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: #4dbbaa;
  border-radius: 999px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  z-index: 2;
}

/* 点線 */
.day-schedule-item__time::after {
  content: "";
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: calc(100% + 36px);
  z-index: 1;
  background-image:
    radial-gradient(circle, #4dbbaa 2px, transparent 2.5px);
  background-size: 4px 16px;
  background-repeat: repeat-y;
  background-position: center top;
}

.day-schedule-item:last-child .day-schedule-item__time::after {
  display: none;
}

.day-schedule-item__body h3 {
  margin: 2px 0 6px;
  color: #4dbbaa;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
}

.day-schedule-item__body p {
  margin: 0;
  color: #3e3a39;
  font-size: 15px;
  line-height: 1.8;
}

.day-detail-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
  margin-top: 52px;
}

.day-detail-story__left,
.day-detail-story__right {
  display: flex;
  flex-direction: column;
}

.day-detail-story__left {
  gap: 24px;
}

.day-detail-story__right {
  gap: 24px;
}

.day-detail-story__lead {
font-family: "Shippori Mincho B1", serif;
  margin: 0;
  color: var(--blue);
  font-size: 40px;
  line-height: 1.15;
  font-weight: 500;
}

.day-detail-story__visual img {
  display: block;
  width: 100%;
  height: auto;
}

.day-detail-story__visual--small {
  width: 300px;
  margin: 0 auto;
}

.day-detail-story__visual--large,
.day-detail-story__visual--medium {
  width: 100%;
}

.day-detail-story__right h2 {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
}

.day-detail-story__right p {
  margin: 0 0 1.1em;
  color: #3e3a39;
  font-size: 15px;
  line-height: 1.95;
}

.day-detail-message {
  margin-top: 58px;
  background: #6aaedf;
  color: #fff;
}

.day-detail-message__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 25px;
  padding-bottom: 35px;
}

.day-detail-message__label {
  padding-top: 10px;
}
  
.day-detail-message__label img {
  width:auto;
  height: 72px;
}

@media (max-width: 767px) {
.day-detail-message__label img {
  width:auto;
  height: 45px;
}
}

.day-detail-message__head h2 {
  margin: 18px 0 0;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
}

.day-detail-message__body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.95;
  font-weight: 700;
}

.day-detail-profile {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 450px;
  gap: 36px;
  align-items: center;
  margin-top: 44px;
  padding: 28px 34px;
  background: #fff;
  border-radius: 40px 220px 220px 40px;
  overflow: hidden;
}

.day-detail-profile__meta {
  display: inline-flex;
  align-items: center;
  padding: 5px 15px;
  border: 1.5px solid var(--blue);
  border-radius: 999px 999px 0 999px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
}

.day-detail-profile h2 {
  margin: 18px 0 12px;
  color: var(--blue);
  font-size: 25px;
  line-height: 1.4;
  font-weight: 700;
}

.day-detail-profile__lead {
  margin: 0 0 18px;
  color: #3e3a39;
  font-size: 15px;
  line-height: 1.9;
}

.day-detail-profile__body p{
  font-weight: 700;
}

.day-detail-profile__list {
  margin: 0;
  padding: 0;
  border-top: 1.5px solid var(--blue);
}

.day-detail-profile__list div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1.5px solid var(--blue);
}

.day-detail-profile__list dt {
  margin: 0;
  color: var(--blue);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 700;
}

.day-detail-profile__list dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

.day-detail-profile__image {
  height: 100%;
  display: flex;
  align-items: stretch;
}

.day-detail-profile__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0 180px 180px 0;
}

.day-detail-others {
  margin-top: 42px;
}

.day-detail-others__grid,
.day-archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.day-detail-other-card,
.day-archive-card {
  min-width: 0;
}

.day-detail-other-card__thumb,
.day-archive-card__thumb {
  display: block;
}

.day-detail-other-card__thumb img,
.day-archive-card__thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.day-detail-other-card h3,
.day-archive-card h2 {
  margin: 12px 0 0;
  color: var(--blue);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
}

.day-detail-other-card h3 a,
.day-archive-card h2 a {
  color: inherit;
  text-decoration: none;
}

.day-archive-card__excerpt {
  margin-top: 10px;
  color: #3e3a39;
  font-size: 14px;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .day-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: stretch;
  margin-top: 26px;
  }

  .day-detail-hero__copy h2 {
    font-size: 30px;
  }

  .day-detail-schedule__card,
  .day-detail-message__inner{
    grid-template-columns: 1fr;
  }

  .day-detail-story {
    display: grid;
    grid-template-columns: 1fr;
  }

  /* 親をフラット化（これが重要） */
  .day-detail-story__left,
  .day-detail-story__right {
    display: contents;
  }

  /* 並び順指定 */
  .day-detail-story__lead {
    order: 1;
  }

  .day-detail-story__visual:nth-of-type(1) {
    order: 2;
  }

  .day-detail-story__right h2,
  .day-detail-story__right p {
    order: 3;
  }

  .day-detail-story__visual:nth-of-type(2) {
    order: 4;
  }

  .day-detail-story__visual:nth-of-type(3) {
    order: 5;
  }
  
  .day-detail-others__grid,
  .day-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .page-day-detail__content,
  .page-day-archive__content {
    padding: 28px 0 64px;
  }

.day-detail-headline__main {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}


.day-detail-meta {
  padding: 4px 11px;
    font-size: 12px;
  font-weight: 700;
  margin-top: 0px;
}

  .day-detail-title {
    font-size: 24px;
  }

  .day-detail-profile__meta {
  padding: 4px 11px;
    font-size: 12px;
  }

  .day-detail-section-title,
  .day-detail-others h2 {
    font-size: 24px;
  }

  .day-detail-schedule__card {
    padding: 20px 18px;
    gap: 18px;
  }
  
.day-detail-profile {
  position: relative;
  display: grid;
    grid-template-columns: 1fr;
  gap: 9px;
  align-items: center;
  margin-top: 44px;
  padding: 30px;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
}

.day-detail-profile__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}


  .day-schedule-item {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 12px;
  }

  .day-schedule-item__time {
    min-height: 30px;
    padding: 0 12px;
    font-size: 14px;
  }

.day-detail-schedule__card .day-detail-schedule__col:first-child .day-schedule-item:last-child .day-schedule-item__time::after {
  display: block;
}

  .day-schedule-item__body h3 {
    font-size: 16px;
  }

  .day-schedule-item__body p,
  .day-detail-story__right p,
  .day-detail-message__body p,
  .day-detail-profile__lead,
  .day-detail-profile__list dt,
  .day-detail-profile__list dd,
  .day-archive-card__excerpt {
    font-size: 14px;
  }

  .day-detail-story {
    margin-top: 40px;
  }

  .day-detail-story__lead {
    font-size: 34px;
    margin-bottom: 20px;
  }

  .day-detail-story__right h2,
  .day-detail-message__head h2,
  .day-detail-profile h2 {
    font-size: 20px;
  }

  .day-detail-message {
    margin-top: 44px;
  }

  .day-detail-message__inner {
    gap: 18px;
    padding-top: 22px;
    padding-bottom: 24px;
  }

  .day-detail-message__label {
    font-size: 38px;
  }

  .day-detail-message__sub {
    font-size: 14px;
  }

  .day-detail-profile__list div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 4px 0;
  }

  .day-detail-others__grid,
  .day-archive-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}


/* =========================================================
   Service Page
   ========================================================= */
   
    .service-page {
      background: #ffffff;
    }

    .service-page__section {
      padding: 0;
    }

    .service-page__head {
      display: grid;
      grid-template-columns: 330px 1fr;
      gap: 22px;
      align-items: start;
      margin-bottom: 22px;
    }

    .service-page__title {
      margin: 10px 0;
      font-size: 36px;
      line-height: 1.05;
      letter-spacing: 0.12em;
      font-weight: 700;
      color: #4dbbaa;
    }

    .service-page__lead,
    .service-page__desc {
      margin: 0;
      font-size: 14px;
      line-height: 2;
    }

.service-situation-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  gap: 20px; 
}

.service-situation-card {
  width: calc((100% - (20px * 3)) / 4);
  min-width: 150px; /* スマホ等で小さくなりすぎないよう調整 */
  text-align: center;
}

.service-situation-card a{
      color: #005bac;
}


.service-situation-card a:hover{
      color: #fff;
      background: #4dbbaa;
}

.service-situation-card a:hover .service-situation-card__thumb{
      color: #fff;
      background: #4dbbaa;
}

.service-situation-card a:hover .service-situation-card__title{
      color: #fff;
      background: #4dbbaa;
}

    .service-situation-card__thumb {
      margin: 0;
      border: 2px solid #005bac;
      border-bottom: 0;
      border-radius: 999px 999px 0 0;
      background: #fff;
    }

    .service-situation-card__thumb img {
      width: 100%;
      height: 100%;
      display: block;
    }

    .service-situation-card__title {
  display: flex;           /* Flexboxを適用 */
  align-items: center;     /* 垂直方向の中央揃え */
  justify-content: center; /* 水平方向の中央揃え */
      min-height: 54px;
      padding: 10px 8px;
      border: 2px solid #005bac;
      border-top: 0;
      text-align: center;
      font-size: 18px;
      line-height: 1.35;
      letter-spacing: 0.08em;
      color: #005bac;
    }

    .service-analytical {
      margin-top: 50px;
      padding-bottom: 50px;
    }

    .service-analytical__head {
      display: grid;
      grid-template-columns: 200px 1fr auto;
      gap: 20px;
      align-items: center;
      margin-bottom: 30px;
    }

    .service-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 30px;
  padding: 0 10px 0 15px;
  border: 2px solid #005bac;
  border-radius: 18px 0 0 18px;
  background: #fff;
  color: #005bac;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
    }

    .service-link-btn i {
  display: block;
  width: 0;
  height: 0;
  border-left: 7px solid #005bac;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
      margin-top: 2px;
}
    .service-link-btn span {
  display: block;
}

    .service-link-btn br{
  display: none;
}

    .service-analytical__visual {
      background: #4dbbaa;
      border-radius: 999px 0 999px 999px;
      padding: 34px 44px 30px;
      overflow: hidden;
    }

    .service-analytical__visual img {
      width: 100%;
      display: block;
      height: auto;
    }

    .service-wave {
      display: block;
      width: 100%;
      margin: 0;
      line-height: 0;
    }

    .service-wave img {
      width: 100%;
      display: block;
      height: auto;
    }

    .service-wave-head img {
      margin-bottom: -1.5px; 
    }
    
    .service-wave-foot img {
      margin-top: -1.5px; 
    }
    
    .service-solution {
      padding: 28px 0 18px;
    }

    .service-solution__intro {
      margin-bottom: 36px;
    }

    .service-solution-list {
      display: grid;
      gap: 36px;
    }

    .service-solution-card a{
      display: grid;
      grid-template-columns: 150px 1fr;
      gap: 0;
      border: 2px solid #005bac;
      border-radius: 999px;
      overflow: hidden;
      background: #fff;
    }

    .service-solution-card a:hover{
      color: #fff;
      background: #4dbbaa;
    }
    
    .service-solution-card a:hover .service-solution-card__title,.service-solution-card a:hover .service-solution-card__text{
      color: #fff;
    }
    
    .service-solution-card__thumb {
      margin: 0;
      height: 100%;
      min-height: 94px;
      overflow: hidden;
      background: #fff;
    }

    .service-solution-card__thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .service-solution-card__body {
      min-width: 0;
      padding: 0;
    }

    .service-solution-card__meta {
      display: grid;
      grid-template-columns: 150px 1fr;
      gap: 12px;
    }

    .service-solution-card__label {
      padding: 10px 18px;
      background: #005bac;
      color: #fff;
      font-size: 18px;
      line-height: 1;
      letter-spacing: 0.06em;
      border-radius: 0 0 999px 0;
      margin-right: 14px;
      flex-shrink: 0;
    }

    .service-solution-card__title {
      color: #005bac;
      font-size: 20px;
      line-height: 1.4;
      letter-spacing: 0.06em;
      font-weight: 500;
      min-width: 0;
      padding-top:8px;
    }

    .service-solution-card__text {
      padding: 5px 15px;
      font-size: 15px;
      line-height: 1.8;
      color: #3e3a39;
    }

    .service-works-section {
      position: relative;
      background: #dee4f3;
      padding: 34px 0 46px;
    }

    .service-works__head {
      display: grid;
      grid-template-columns: 500px 1fr;
      gap: 24px;
      align-items: start;
      margin-bottom: 22px;
    }

    .service-works__title {
      margin: 0;
      font-size: 36px;
      line-height: 1.15;
      letter-spacing: 0.1em;
      color: #0856a0;
      font-weight: 700;
    }

    .service-works__copy {
      margin: 0;
      font-size: 14px;
      line-height: 1.95;
    }

    .service-works__grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
      align-items: start;
    }

    .service-works__item {
      text-align: center;
    }

    .service-works__item h3 {
      margin: 0 0 10px;
      color: #0856a0;
      font-size: 24px;
      line-height: 1.2;
      letter-spacing: 0.04em;
      font-weight: 400;
    }

    .service-works__thumb {
      margin: 0;
    }

    .service-works__thumb img {
      width: 100%;
      height: 100%;
      display: block;
    }

    .service-page__spacer {
      height: 28px;
    }

    @media (max-width: 767px) {
      .service-page__head,
      .service-works__head {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .service-situation-grid,
      .service-works__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

.service-situation-card {
  width: calc((100% - (20px * 3)) / 2);
  min-width: 150px; /* スマホ等で小さくなりすぎないよう調整 */
  text-align: center;
}


 .service-analytical__head {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "title button"
      "desc desc";
    gap: 12px 16px;
    align-items: center;
  }

 .service-analytical__head　.service-page__title {
    grid-area: title;
    margin: 0;
  }

 .service-analytical__head　.service-link-btn {
    grid-area: button;
    justify-self: end;
    white-space: nowrap;
  }

 .service-analytical__head .service-page__desc {
    grid-area: desc;
    margin: 0;
  }
  

      .service-solution-card__meta {
      grid-template-columns: 1fr;
        gap: 8px;
      }

      .service-works-section::before,
      .service-works-section::after {
        background-size: 88px 34px;
        height: 34px;
      }

      .service-works-section::before { top: -33px; }
      .service-works-section::after { bottom: -33px; }

      .service-page .wrap {
        width: min(100%, calc(100% - 24px));
      }

      .service-page .page-hero__title {
        max-width: 210px;
        margin-left: 4%;
      }

      .service-page__title,
      .service-works__title {
        font-size: 30px;
        letter-spacing: 0.08em;
      }

      .service-page__lead,
      .service-page__desc,
      .service-works__copy,
      .service-solution-card__text {
        font-size: 13px;
        line-height: 1.8;
      }

    .service-solution-card__text {
      padding: 0px 15px  5px 15px;
      margin:0;
    }
    
      .service-situation-card__title {
        font-size: 16px;
      }


      .service-link-btn {
        padding: 0px 10px;
        font-size: 12px;
      }

      .service-solution-list {
        gap: 24px;
      }

      .service-solution-card__thumb {
        min-height: 160px;
      }

      .service-solution-card__title {
        padding: 5px 0 5px 14px;
        font-size: 16px;
        margin: 0px;
      }

      .service-solution-card__label {
      display: inline-block;
      width: 100px;
        padding: 8px 14px;
        font-size: 14px;
      margin-right: 0px;
      }

      .service-works-section {
        padding: 28px 0 34px;
      }

      .service-works__item h3 {
        font-size: 19px;
      }

      .service-page__spacer {
        height: 20px;
      }
    }
    

/* =========================================================
   Service Situation
   ========================================================= */


.service-situation-detail__main {
  padding: 8px 0 36px 0;
  display: grid;
  grid-template-columns: 3fr 7fr;
  gap: 38px;
  align-items: start;
}

.service-situation__meta {
  display: inline-flex;
  align-items: center;
  padding: 2.5px 15px;
  border: 1.5px solid var(--blue);
  border-radius: 999px 999px 0 999px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
  background: #fff;
}

.service-situation-detail__left {
    font-size: 18px;
    line-height: 2.0;
}

.service-situation-detail__right {
  min-width: 0;
}

.service-situation-detail__right img {
  max-width: 100%;
}

.service-detail-pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 70px 0 40px;
}

.service-detail-pager__prev {
  justify-self: start;
}

.service-detail-pager__next {
  justify-self: end;
}

.service-detail-pager a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 30px;
  padding: 0 10px 0 15px;
  border: 2px solid #005bac;
  background: #fff;
  color: #005bac;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.service-detail-pager__prev a {
  border-radius: 18px 0 0 18px;
}

.service-detail-pager__next a {
  border-radius: 0 18px 18px 0;
}

.service-detail-pager__prev a i {
  display: block;
  width: 0;
  height: 0;
  border-right: 7px solid #005bac;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
      margin-top: 2px;
}

.service-detail-pager__next a i {
  display: block;
  width: 0;
  height: 0;
  border-left: 7px solid #005bac;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
      margin-top: 2px;
}

.service-detail-pager__next a span {
  display: block;
}

@media (max-width: 767px) {
  .service-detail-pager {
    gap: 12px;
    margin: 40px 0 24px;
  }
}

.gallery-sub {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  width:calc(100% + 15px);
  justify-content: space-between;
}

.gallery-sub figure {
  margin: 0;
  flex: 1 1 auto; 
  display: flex;
}

.gallery-sub img {
  width: 100%;
  height: auto; 
  display: block;
  object-fit: contain; 
}

.service-situation-products__table-wrap {
  overflow-x: auto;
}

.service-situation-products__table {
  width: 100%;
  border-collapse: separate; 
  border-spacing: 0;
  table-layout: fixed;
  background: #fff;
}

.service-situation-products__table thead th {
  padding: 12px 0;
  background: #4dbbaa;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff; 
}

.service-situation-products__table thead th:first-child {
  width: 25%;
  border-radius: 999px 0 0 999px;
}
.service-situation-products__table thead th:nth-child(2) {
  width: 25%;
}
.service-situation-products__table thead th:last-child {
  border-right: none;
  border-radius: 0 999px 999px 0;
}

.service-situation-products__table tbody th,
.service-situation-products__table tbody td {
  padding: 15px 5px;
  border-bottom: 1.5px solid #4dbbaa;
  vertical-align: middle; 
  color: #3e3a39;
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
}

.service-situation-products__table tbody th {
  font-weight: 400;
  text-align: left;
}

@media (max-width: 900px) {
.service-situation-detail__main {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .service-situation-detail__left {
    font-size: 14px;
    line-height: 1.9;
  }

  .service-situation-detail__gallery-sub {
    gap: 12px;
  }

.service-situation-products__table thead th {
  padding: 6px 0;
  font-size: 13px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff; 
}

.service-situation-products__table tbody th,
.service-situation-products__table tbody td {
  padding: 5px 0px;
  border-bottom: 1px solid #4dbbaa;
  font-size: 13px;
}
}


/* =========================================================
      Service Analytical Page 
   ========================================================= */
.service-analytical__main {
  padding: 0px 0 36px 0;
    font-size: 18px;
    line-height: 2.0;
}


.analytical-cards {
  padding: 0 0 28px;
}

.analytical-cards__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 56px;
  row-gap: 58px;
  align-items: start;
}

.analytical-card {
  text-align: center;
}

.analytical-card__figure {
  margin: 0 auto 22px;
  width: 100%;
  height: 300px; 
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.analytical-card__figure img {
  width: auto;
  height: 100%; 
  object-fit: contain;
  display: block;
}

.analytical-card__title {
  margin: 0 0 10px;
  color: #4dbbaa;
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: 0.12em;
  font-weight: 400;
}

.analytical-card__desc {
  margin: 0 auto;
  max-width: 470px;
  font-size: 15px;
  line-height: 1.85;
  text-align: left;
}


@media (max-width: 767px) {
.service-analytical__main {
    font-size: 14px;
}
.analytical-cards__grid {
    grid-template-columns: 1fr;
    row-gap: 28px;
}

  .analytical-card__figure {
    width: min(100%, 360px);
    margin-bottom: 16px;
  }

  .analytical-card__title {
    margin-bottom: 8px;
    font-size: 18px;
    letter-spacing: 0em;
  }
}

/* =========================================================
   Service Solution page
   ========================================================= */

.service-page__title span{
  display: inline-block;
  margin-right: 5px;
  color: #005bac;
    font-size: 80%;
}

.service-solution-detail__main{
  padding: 24px 0 36px 0;
    font-size: 18px;
    line-height: 2.0;
}


.solution-panel {
  padding: 30px 60px 60px 60px ;
  border: 2px solid #005bac;
  border-radius: 60px;
}

.solution-lead {
  margin-bottom: 30px;
  text-align: center;
  font-size: 20px;
  line-height: 1.8;
}

.solution-flow{
  text-align: center;
    margin-bottom: 30px;
}

.solution-flow img {
  width: 70%;
  margin:auto;
}

.solution-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
    font-size: 16px
}

.solution-gallery figure img {
  display: block;
  width: 100%;
  height: auto;
}

.solution-gallery figure {
  margin: 0;
  padding: 0;
}

.solution-gallery figure p{
  margin: 0;
  padding: 0;
}

.solution-gallery figure div {
  margin-top: 5px;
}


.solution-gallery-single {
  width: 50%;
  margin:auto;
    font-size: 16px
}

.solution-gallery-single p{
  margin: 0;
  padding: 0;
}

.solution-gallery-single div {
  margin-top: 5px;
}

.solution-gallery-single img {
  display: block;
  width: 100%;
  height: auto;
}

.solution-img {
  max-width: 760px;
  margin: 0 auto;
}

.solution-img img {
  width: 100%;
  height:auto;
  margin: 0 auto;
}


.solution-block__result {
  margin: 36px 0;
  padding: 36px;
  background: #005bac;
  border-radius: 999px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  line-height: 1.7;
}

.solution-achievement {
  margin: 80px auto;
}

.solution-achievement h2 {
  margin: 12px 0;
  padding: 6px;
  background: #005bac;
  border-radius: 999px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
}

.solution-achievement__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  margin-top: 40px;
}

.solution-achievement__grid h3 {
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #005bac;
  color: #005bac;
  font-size: 16px;
  font-weight: 700;
}

.solution-achievement__grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-achievement__grid li {
  margin-bottom: 28px;
  position: relative;
  font-size: 16px;
}

.solution-achievement__grid li:last-child {
  margin-bottom: 0;
}

.solution-achievement__grid li::before {
  content: "●";
  width: 12px;
  height: 12px;
  color: #005bac;
}


@media (max-width: 767px) {
  .solution-block__panel {
    padding: 20px 18px 22px;
    border-radius: 24px;
  }

.service-solution-detail__main{
    font-size: 14px;
}

.solution-lead {
  font-size: 16px;
}

  .solution-block__lead {
    font-size: 12px;
  }

  .solution-gallery {
    gap: 14px;
    font-size: 12px;
  }

  .solution-block__catch {
    font-size: 36px;
    letter-spacing: 0.12em;
  }

.solution-gallery-single {
  width: 50%;
  margin:auto;
    font-size: 12px;
}

  .solution-block__result {
    padding: 36px;
    font-size: 14px;
    line-height: 1.65;
  }

  .solution-gallery {
    grid-template-columns: 1fr;
  }

.solution-gallery-single {
  width: 100%;
  margin:auto;
}

  .solution-block__figure figcaption,
  .solution-block__flow-title {
    font-size: 13px;
  }

  .solution-block__catch {
    font-size: 28px;
  }
  .solution-achievement {
    margin-top: 60px;
  }

  .solution-achievement__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 24px;
  }
}

/* =========================================================
      Service Works Page 
   ========================================================= */
.service-works__main {
  padding: 0 0 36px 0;
    font-size: 18px;
    line-height: 2.0;
}

h1.service-page-works__title {
  font-size: 36px;
  line-height: 1;
  color: #005bac;
  margin: 10px 0;
}

.works-section {
  margin: 24px 0;
  padding: 36px;
  background: #dee4f3;
  border-radius: 36px;
  font-size: 18px;
  line-height: 1.7;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 40px;
}

.works-section h2{
  color: #005bac;
  font-size: 28px;
  line-height: 1.7;
}

.works-section__images{
  font-size: 16px;
}

.works-section__images img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
h1.service-page-works__title {
  font-size: 30px;
}
.service-works__main {
    font-size: 14px;
}
  .works-section {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
    padding: 24px;
    border-radius: 20px;
  font-size: 14px;
  }
  }
  
/* =========================================================
      Sitepolicy Page 
   ========================================================= */
.page-sitepolicy h2{
  color: #00a8c6;
  font-size: 36px;
  }
  
.page-sitepolicy h3{
  color: #005bac;
  font-size: 18px;
  }

/* =========================================================
      Contact Page 
   ========================================================= */
.grecaptcha-badge { visibility: hidden; }
.contact-page {
  padding-top: 40px;
  padding-bottom: 80px;
}

.contact-page .entry-content{
  width: 65%;
  margin: 0 auto;
}

.wpcf7 {
margin:30px auto 0 auto;
letter-spacing: 3px;
color: #005bac;
}

.wpcf7 label {
color: #005bac;
  font-weight: 700;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea
{
color: #005bac;
width: -webkit-calc(100% - 20px) ;
width: calc(100% - 20px) ;
font-size: 1.0rem;
border: 1px solid #00a8c6;
padding:10px;
background-color: #fff;
border-radius: 25px;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
margin:5px auto 10px auto;
}

.wpcf7 input[type="submit"] {
display: block;
width: 150px;
text-align: center;
text-decoration: none;
outline: none;
position: relative;
z-index: 2;
border: 1px solid #005bac;
background-color: #fff;
color: #005bac;
line-height:200%;
overflow: hidden;
border-radius: 20px 20px 0 20px;
font-size: 125%;
  font-weight: 700;
cursor: pointer; 
margin:20px auto 0 auto;
}

.wpcf7 input[type="submit"]:hover {
background-color: #005bac;
color: #fff;
}

span.wpcf7-list-item {
display: block !important;
}

@media only screen and (max-width: 767px) {
.contact-page .entry-content{
  width: 100%;
  margin: 0 auto;
}
}
