/* =========================================================
   宇治電器工業株式会社 TOPページ
   ========================================================= */

:root {
  --color-primary: #054831;
  --color-green: #006934;
  --color-accent: #45b035;
  --color-accent-light: #4fb54f;
  --color-text: #203424;
  --color-muted: #999999;
  --color-border: #dddddd;
  --color-bg: #fafafa;
  --color-white: #ffffff;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --header-h: 80px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  /* scroll-padding-top: 100px; */
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
  animation: fadein 3s forwards;
}

@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}

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

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

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ---------- Common ---------- */
.sec-heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sec-heading--center {
  align-items: center;
  text-align: center;
}

.sec-eyebrow {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 4px;
  line-height: 29.4px;
}

.sec-eyebrow--white {
  color: var(--color-white);
}

.sec-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-text);
  line-height: normal;
}

.sec-title--white {
  color: var(--color-white);
}

.text-link {
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 8px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.2s var(--ease);
}

.text-link:hover {
  color: var(--color-green);
  border-color: var(--color-green);
  transform: translateX(5px);

}

.text-link--right {
  align-self: flex-end;
  padding-bottom: 8px;
}

.text-link--white {
  color: var(--color-white);
  border-color: var(--color-white);
  padding-bottom: 5px;
}

.text-link--white:hover {
  color: #c8e6c9;
  border-color: #c8e6c9;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
  line-height: 1;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.15s var(--ease), box-shadow 0.3s var(--ease);
}

.btn--outline-dark {
  background: var(--color-white);
  border: 1px solid var(--color-green);
  color: var(--color-green);
}

.btn--outline-dark:hover {
  background: var(--color-green);
  color: var(--color-white);
}

.btn--outline-green {
  background: var(--color-white);
  border: 1px solid var(--color-accent-light);
  color: var(--color-accent-light);
}

.btn--outline-green:hover {
  background: var(--color-accent-light);
  color: var(--color-white);
}

.btn--solid {
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: #fafafa;
}

.btn--solid:hover {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-primary);
}

/* クリック時の一時クラス（script.js から付与） */
.is-clicked {
  transform: scale(0.96) !important;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  /* absolute でスクロールするとボタンのみ表示してトップ固定 */
  top: 35px;
  left: 40px;
  right: 40px;
  z-index: 1000;
  width: auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: var(--header-h);
  padding: 0 30px 0 60px;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 4px 3.5px rgba(0, 0, 0, 0.02);
}

.site-header__logo {
  flex-shrink: 0;
  width: 222px;
  height: 32px;
}

.site-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header__nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 10px;
}

/* ナビゲーションホバー：下線スライドイン */
.nav-link {
  position: relative;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--color-text);
  white-space: nowrap;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color-green);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s var(--ease);
}

.nav-link:hover {
  color: var(--color-green);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.site-header__btns {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/*
  --desktop: flex内で実ボタンと同じ幅を確保
  --pin: 画面右上に固定表示
*/
.site-header__btns--desktop {
  position: relative;
  flex-shrink: 0;
}

.site-header__btns-sizer {
  visibility: hidden;
  pointer-events: none;
}

.site-header__btns--pin {
  position: fixed;
  top: 35px;
  right: 40px;
  z-index: 1001;
  display: flex;
  align-items: center;
  gap: 10px;
  height: var(--header-h);
  padding: 0 30px 0 0;
  border-radius: 10px;
  background: transparent;
  transition: top 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header__btns--pin.is-header-hidden {
  top: 0;
}

.site-header__btns--mobile {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  z-index: 1001;
}

.hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

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

.hamburger.is-open .hamburger__line:nth-child(2) {
  opacity: 0;
}

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

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 999;
}

.nav-overlay[hidden] {
  display: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 800px;
  display: flex;
  align-items: center;
  padding: 0 120px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0.01%;
  max-width: none;
  object-fit: cover;
  object-position: 60%;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(269.924deg, rgba(102, 102, 102, 0) 0%, rgba(0, 0, 0, 0.28) 66.335%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 727px;
  max-width: 100%;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 72.8px;
  white-space: nowrap;
  text-shadow: 0 4px 2px rgba(0, 0, 0, 0.12);
}

.hero__desc {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 35px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}


.breadcrumbs {
  padding: 0;
  margin-top: -30px;
}
.breadcrumbs ul {
  text-align: right;
}
.breadcrumbs ul li {
  display: inline-block;
  vertical-align: middle;
  letter-spacing: 0.02em;
  margin-right: 30px;
  position: relative;
  font-size: 14px;
}
.breadcrumbs ul li:before {
  content: "";
  position: absolute;
  right: -21px;
  top: 2px;
  bottom: 0;
  width: 8px;
  height: 13px;
  background-image: url(../image/arrow.svg);
  background-size: 100% 100%;
  background-position: center;
  margin: auto;
}
.breadcrumbs ul li:last-child:before {
  content: none;
}
.bread_inner {
  max-width: 90%;
  margin: 0 auto;
}
.breadcrumbs ul li a {
  color: var(--color-primary);
  text-decoration: underline;
}
.breadcrumbs-back {
  background: #fff;
  padding-top: 20px;
}


/* ---------- About ---------- */
.about {
  width: 100%;
  padding: 200px 0 120px 9%;
}

.about__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 32%;
  flex-shrink: 0;
  align-items: flex-start;
}

.about__desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  color: var(--color-text);
}

.about__image {
  width: 58%;
  max-width: 100%;
  height: 453px;
  overflow: hidden;
  flex-shrink: 1;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ---------- Service ---------- */
.service {
  background: var(--color-white);
  width: 100%;
}

.service__inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: flex-end;
  width: 1200px;
  margin: 0 auto;
  padding: 100px 0;
}
.service__inner1 {
  display: flex;
  flex-direction: column;
  max-width: 1060px;
  margin: 0 auto;
}

.service__inner > .sec-heading {
  width: 100%;
}

.service__cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 250px;
  height: 330px;
  padding: 28px 30px;
  background: var(--color-bg);
  box-shadow: 0 4px 2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.service-card__thumb {
  position: absolute;
  top: 28px;
  right: 30px;
  z-index: 0;
  width: 100px;
  height: 100px;
  overflow: hidden;
  flex-shrink: 0;
  transition:
    top 0.45s var(--ease),
    right 0.45s var(--ease),
    bottom 0.45s var(--ease),
    left 0.45s var(--ease),
    width 0.45s var(--ease),
    height 0.45s var(--ease);
}

.service-card:hover .service-card__thumb {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
}

.service-card__thumb > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.service-card:hover .service-card__thumb > img {
  transform: scale(1.06);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
}

.service-card:hover .service-card__overlay {
  opacity: 1;
}

.service-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-end;
  width: 100%;
  margin-top: auto;
}

.service-card__desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 21.6px;
  color: var(--color-text);
  transition: color 0.35s var(--ease);
}

.service-card__footer {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

.service-card__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  line-height: normal;
  transition: color 0.35s var(--ease);
}

.service-card:hover .service-card__desc,
.service-card:hover .service-card__title {
  color: var(--color-white);
}

.service-card__arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s var(--ease);
}

.service-card__arrow--white {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
}

.service-card:hover .service-card__arrow--dark {
  opacity: 0;
}

.service-card:hover .service-card__arrow--white {
  opacity: 1;
}

.service-card:hover .service-card__arrow {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .service-card,
  .service-card__thumb,
  .service-card__thumb > img,
  .service-card__overlay,
  .service-card__desc,
  .service-card__title,
  .service-card__arrow {
    transition: none;
  }

  .service-card:hover .service-card__thumb > img {
    transform: none;
  }
}

.service__lead {
  width: 100%;
  font-size: 20px;
  font-weight: 400;
  line-height: 35px;
  color: var(--color-text);
  margin: 50px 0 30px;
}

/* ---------- Prototype ---------- */
.prototype {
  position: relative;
  width: 100%;
  padding: 100px 0 0;
  overflow: hidden;
}

.prototype__visual {
  position: absolute;
  top: 170px;
  right: 0;
  width: 790px;
  height: 453px;
  pointer-events: none;
}

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

.prototype__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.prototype__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 80px;
  /* width: 1200px;
  margin: 0 auto; */
  padding: 130px 10% 100px;
}

.prototype__intro {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: flex-start;
}

.prototype__title {
  font-size: 70px;
  font-weight: 700;
  color: var(--color-text);
  line-height: normal;
}

.prototype__title span {
  color: var(--color-green);
}

.prototype__desc {
  font-size: 24px;
  font-weight: 500;
  line-height: 45px;
  color: var(--color-text);
}

.prototype__steps-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.prototype__steps-lead {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-green);
  line-height: 45px;
  text-align: center;
}

.prototype__steps {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.prototype__steps-line {
  position: absolute;
  left: 0;
  top: 95px;
  width: 100%;
  height: 2px;
  background: var(--color-green);
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 18%;
  padding: 10px 20px;
  background: var(--color-white);
  border: 1px solid var(--color-green);
}

.step-card__num {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-green);
  line-height: 45px;
  letter-spacing: 0.02em;
}

.step-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}

.step-card__label {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-green);
  line-height: 45px;
}

/* ---------- Topics ---------- */
.topics {
  background: var(--color-white);
  width: 100%;
}

.topics__inner {
  display: flex;
  flex-direction: column;
  gap: 66px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 100px 0;
}

.news-list {
  width: 100%;
  border-top: 1px solid var(--color-border);
}

.news-item {
  border-bottom: 1px solid var(--color-border);
}

.news-item__link {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 0 19px;
  transition: background-color 0.25s var(--ease), padding-left 0.25s var(--ease);
}

.news-item__link:hover {
  background-color: rgba(5, 72, 49, 0.04);
  padding-left: 5px;
}

.news-item__date {
  flex-shrink: 0;
  width: 90px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-muted);
}

.news-item__tag {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  padding: 4px 10px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 400;
  text-align: center;
}

.news-item__text {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 20.8px;
}

.topics__inner > .text-link {
  margin-top: -25px;
}

/* ---------- Recruit ---------- */
.recruit {
  position: relative;
  width: 100%;
  min-height: 700px;
  display: flex;
  overflow: hidden;
  flex-direction: row-reverse;
  height: 720px;
  justify-content: space-between;
}

.recruit__bg {
  /* position: absolute; */
  width: 50%;
  inset: 0;
}

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

.recruit__bg-tint {
  position: absolute;
  inset: 0;
}

.recruit__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 50%;
  max-width: 100%;
  padding: 6% 10% 8% 9%;
  background: rgba(5, 72, 49, 0.75);
}

.recruit__catch {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 50px;
  max-width: 416px;
}

.recruit__bottom {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-end;
}

.recruit__desc {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 35px;
  width: 100%;
}

/* ---------- Company ---------- */
.company {
  background: var(--color-white);
  width: 100%;
  padding: 200px 120px 200px 0;
}

.company__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 85px;
}

.company__image {
  /* width: 790px; */
  width: 60%;
  height: 453px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.company__text {
  display: flex;
  flex-direction: column;
  gap: 50px;
  /* width: 436px; */
  width: 33%;
  flex-shrink: 0;
  padding-right: 0;
}

.company__desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 35px;
  color: var(--color-text);
}

.company__text .text-link {
  align-self: flex-end;
}

/* ---------- CTA ---------- */
.cta {
  position: relative;
  width: 100%;
  padding: 96px 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  overflow: hidden;
}

.cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

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

.cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(250, 250, 250, 0.42);
}

.cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.cta__desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  text-align: center;
  line-height: 28px;
  padding-bottom: 24px;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 58px;
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-align: center;
  transition: background-color 0.3s var(--ease), transform 0.15s var(--ease), box-shadow 0.3s var(--ease);
  border-radius: 30px;
}

.cta__btn:hover {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-primary);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-primary);
  width: 100%;
  padding: 64px 120px 32px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  min-height: 202px;
  width: 100%;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__logo {
  width: 222px;
  height: 32px;
  object-fit: contain;
}

.footer__address,
.footer__tel {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-white);
  line-height: 20px;
}

.footer__address {
  padding-top: 10px;
}

.footer__nav-group {
  display: grid;
  gap: 0px;
  width: 780px;
  flex-shrink: 0;
  grid-template-columns: repeat(6, 1fr);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 24px;
}

.footer__col-title a {
  display: inline-block;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.footer__col-title a:hover {
  color: var(--color-accent-light);
  transform: translateX(3px);
}

.footer__col-title--spaced {
  margin-top: 0;
}

.footer__col-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col-list a {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  color: #f5f5f5;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.footer__col-list a:hover {
  color: var(--color-accent-light);
  transform: translateX(3px);
}

.footer__bottom {
  margin-top: 48px;
  padding-top: 25px;
  border-top: 1px solid var(--color-white);
  text-align: center;
}

.footer__copy {
  font-size: 11px;
  font-weight: 400;
  color: var(--color-white);
}



/* =========================================================
   PC（1024px～）
   ========================================================= */

@media (max-width: 1280px) {
  .service__inner,
  .service__inner1 {
    width: 100%;
    margin: 0 auto;
  }
}


/* =========================================================
   Tablet（〜1024px）
   ========================================================= */
@media (max-width: 1024px) {
  .site-header {
    top: 20px;
    left: 20px;
    right: 20px;
  }

  .site-header__inner {
    padding: 0 20px 0 24px;
    height: 64px;
  }

  .site-header__btns--pin {
    top: 20px;
    right: 20px;
    height: 64px;
    padding: 0 20px 0 0;
  }

  .site-header__logo {
    width: 180px;
  }

  .site-header__nav-list {
    gap: 12px;
  }

  .nav-link {
    font-size: 12px;
  }

  .btn {
    padding: 0 16px;
    font-size: 12px;
  }

  /* .site-header__btns--desktop .btn--outline-dark {
    display: none;
  } */

  .hero {
    height: 560px;
    padding: 0 48px;
  }

  .hero__title {
    font-size: 36px;
    line-height: 1.4;
    white-space: normal;
  }

  .hero__desc {
    font-size: 16px;
    line-height: 1.8;
  }

  .hero__desc br {
    display: none;
  }

  .about {
    padding: 100px 48px 80px;
  }

  .about__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .about__text {
    width: 100%;
  }

  .about__image {
    width: 100%;
    height: 360px;
  }

  .about__image img {
    width: 100%;
    height: 100%;
    margin: 0;
  }

  .about__desc {
    font-size: 16px;
    line-height: 1.9;
  }

  .service {
    padding: 80px 48px;
  }

  .service__cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .service-card {
    width: calc(50% - 12px);
    max-width: 280px;
  }

  .service__lead {
    font-size: 16px;
    line-height: 1.9;
  }

  .service__lead br {
    display: none;
  }

  .prototype {
    padding: 120px 48px 80px;
  }

  .prototype__visual {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 320px;
    margin-bottom: 40px;
    order: -1;
  }

  .prototype {
    display: flex;
    flex-direction: column;
  }

  .prototype__visual {
    order: 0;
  }

  .prototype__inner {
    gap: 48px;
    padding: 50px 10% 100px;
  }


  .prototype__title {
    font-size: 48px;
  }

  .prototype__desc {
    font-size: 18px;
    line-height: 1.8;
  }

  .prototype__desc br {
    display: none;
  }

  .prototype__steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .prototype__steps-line {
    display: none;
  }

  .step-card {
    width: calc(33.333% - 12px);
    min-width: 160px;
  }

  .topics {
    padding: 80px 48px;
  }

  .recruit__panel {
    width: 100%;
    padding: 80px 48px;
  }

  .recruit__catch {
    font-size: 28px;
    line-height: 1.5;
    max-width: 100%;
  }

  .recruit__desc br {
    display: none;
  }

  .company {
    padding: 100px 48px;
  }

  .company__inner {
    flex-direction: column;
    gap: 20px;
  }

  .company__image {
    width: 100%;
    max-width: 100%;
    height: 360px;
  }

  .company__text {
    width: 100%;
  }

  .cta {
    padding: 80px 48px;
  }

  .footer {
    padding: 48px 48px 32px;
  }

  .footer__inner {
    flex-direction: column;
  }

  .footer__nav-group {
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
  }
}

/* =========================================================
   Smartphone（〜767px）＋ハンバーガーメニュー
   ========================================================= */
@media (max-width: 767px) {
  .site-header {
    top: 12px;
    left: 12px;
    right: 12px;
  }

  .site-header__inner {
    padding: 0 16px;
    height: 56px;
    gap: 8px;
  }

  .site-header__logo {
    width: 200px;
    height: 30px;
  }

  .site-header__btns--desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .site-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(375px, 100vw);
    height: 100vh;
    margin: 0;
    padding: 88px 28px 40px;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    overflow-y: auto;
    z-index: 1000;
    background: #fff;
  }

  .site-header__nav.is-open {
    transform: translateX(0);
  }

  .site-header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 0;
    align-items: center;
  }

  .nav-link {
    font-size: 16px;
  }

  .site-header__btns--mobile {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .site-header__btns--mobile .btn {
    width: 100%;
    height: 44px;
    justify-content: center;
  }

  .btn {
    font-size: 14px;
  }

  body.is-nav-open {
    overflow: hidden;
  }

  .hero {
    height: 520px;
    padding: 100px 17px 40px;
    align-items: flex-end;
  }

  .hero__content {
    gap: 20px;
  }

  .hero__title {
    font-size: 24px;
    line-height: 1.45;
  }

  .hero__desc {
    font-size: 14px;
    line-height: 1.8;
  }

  .about,
  .service,
  .prototype,
  .topics,
  .company,
  .cta {
    padding-left: 24px;
    padding-right: 24px;
  }

  .about {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .sec-title {
    font-size: 28px;
  }

  .sec-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .about__text {
    gap: 28px;
  }

  .about__desc {
    font-size: 15px;
  }

  .about__image {
    height: 240px;
  }

  .service {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .service__inner {
    gap: 32px;
    align-items: stretch;
    padding: 30px 0 20px;
  }

  .service__cards {
    flex-direction: column;
    align-items: stretch;
  }

  .service-card {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 220px;
  }

  .prototype {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .prototype__inner {
    padding: 0px 0% 30px;
  }
  .prototype__visual {
    height: 220px;
  }

  .prototype__title {
    font-size: 32px;
  }

  .prototype__desc {
    font-size: 15px;
  }

  .prototype__steps-lead {
    font-size: 15px;
    line-height: 1.6;
  }

  .prototype__steps {
    flex-direction: column;
    align-items: stretch;
  }

  .step-card {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    gap: 16px;
    padding: 16px 20px;
    min-width: 0;
  }

  .step-card__num {
    font-size: 14px;
    line-height: 1.4;
    min-width: 72px;
  }

  .step-card__icon {
    min-height: 40px;
    min-width: 48px;
  }

  .step-card__icon img {
    max-height: 40px;
    width: auto;
  }

  .step-card__label {
    font-size: 16px;
    line-height: 1.4;
  }

  .topics {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .topics__inner {
    gap: 40px;
    padding: 30px 0;
  }

  .news-item__link {
    flex-wrap: wrap;
    gap: 10px 16px;
    padding: 16px 0;
  }

  .news-item__date {
    width: auto;
  }

  .news-item__text {
    width: 100%;
    font-size: 14px;
  }

  .recruit__bg {
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .recruit {
    height: 500px;
    min-height: 500px;
    flex-direction: column;
  }

  .recruit__panel {
    padding: 60px 24px;
    gap: 28px;
    height: 100%;
  }

  .recruit__catch {
    font-size: 24px;
    line-height: 1.5;
  }

  .recruit__desc {
    font-size: 14px;
    line-height: 1.9;
  }

  .company {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .company__image {
    height: 240px;
  }

  .company__text {
    gap: 28px;
  }

  .company__desc {
    font-size: 15px;
  }

  .cta {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .cta__desc {
    padding-bottom: 8px;
  }

  .cta__btn {
    width: 100%;
    padding: 16px 24px;
  }

  .footer {
    padding: 48px 24px 28px;
  }

  .footer__nav-group {
    gap: 28px 24px;
  }

  .footer__col {
    min-width: calc(50% - 12px);
  }
}

@media (max-width: 480px) {
  .footer__nav-group {
    grid-template-columns: 1fr 1fr;
  }
}
/* スクロー

ル時のヘッダー強調（script.js の is-scrolled） */
.site-header.is-scrolled .site-header__inner {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* .site-header.is-scrolled .site-header__btns--pin {
  background: var(--color-white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
} */

.nav-link.is-hover {
  color: var(--color-green);
}

.nav-link.is-hover::after {
  transform: scaleX(1);
}


/* =========================================================
   ABOUT PAGE（about.html）
   ========================================================= */

/* セクション見出し＋緑ライン */
.sec-bar {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sec-bar__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  line-height: normal;
  white-space: nowrap;
}

.sec-bar__line {
  display: block;
  width: 50px;
  height: 2px;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* ---------- Page Hero ---------- */
.page-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 150px 0 50px 120px;
  min-height: 500px;
  background: var(--color-bg);
}

.page-hero__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}

.page-hero__eyebrow {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 4px;
  line-height: normal;
}

.page-hero__title {
  font-size: 45px;
  font-weight: 700;
  color: var(--color-text);
  line-height: normal;
}

.page-hero__image {
  /* width: 900px;
  max-width: 62.5%; */
  width: 68%;
  height: 401px;
  flex-shrink: 0;
  overflow: hidden;
}

.page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Intro ---------- */
.about-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 150px 0 100px;
  background: var(--color-bg);
}

.about-intro__lead {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  line-height: normal;
}

.about-intro__desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 30px;
  max-width: 958px;
}

/* ---------- Domains ---------- */
.about-domains {
  background: var(--color-white);
  padding: 60px 0 100px;
  scroll-margin-top: 80px;
}

.about-domains__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1060px;
  margin: 0 auto;
}

.about-domains__lead {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.9;
  max-width: 1011px;
}

.about-domains__body {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.about-domains__sub {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-primary);
  line-height: normal;
}

.about-domains__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-domains__col {
  display: grid;
  gap: 40px;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
}

.domain-item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.domain-item__head {
  display: flex;
  align-items: center;
  gap: 25px;
  min-height: 300px;
  padding: 30px 30px;
  background: #f5f5f5;
  flex-direction: column;
}

.domain-item__head img {
  flex-shrink: 0;
  width: auto;
  height: auto;
  max-height: 100px;
  object-fit: contain;
}

.domain-item__title {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  line-height: normal;
}

.domain-item__desc {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 24px;
  text-align: center;
}

/* ---------- Message ---------- */
.about-message {
  background: var(--color-bg);
  padding: 100px 0;
}

.about-message__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1060px;
  margin: 0 auto;
}

.about-message__body {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 46px;
}

.about-message__text {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 30px;
}

.about-message__text p + p {
  margin-top: 30px;
}

.about-message__sign {
  display: flex;
  align-items: center;
  gap: 30px;
}

.about-message__role {
  font-size: 15px;
  font-weight: 400;
  color: #5f5f5f;
  line-height: 30px;
}

.about-message__name {
  font-size: 20px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 30px;
}

/* ---------- Philosophy ---------- */
.about-philosophy {
  padding: 150px 0;
  background: var(--color-bg);
}

.about-philosophy__inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1060px;
  margin: 0 auto;
}

.about-philosophy__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 85px;
}

.about-philosophy__lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  width: 100%;
}

.about-philosophy__catch {
  font-size: 24px;
  font-weight: 700;
  color: #5f5f5f;
  line-height: 47.6px;
}

.about-philosophy__desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 30.8px;
}

.about-philosophy__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-size: 20px;
  font-weight: 500;
  color: #5f5f5f;
  line-height: normal;
}

/* ---------- Environment ---------- */
.about-env {
  background: #f5f5f5;
  padding: 100px 0 150px;
  scroll-margin-top: 50px;
}

.about-env__inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1060px;
  margin: 0 auto;
}

.about-env__top {
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-env__copy {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 520px;
  max-width: 100%;
  flex-shrink: 0;
}

.about-env__subtitle {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: normal;
}

.about-env__desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 30px;
}

.about-env__photo {
  width: 460px;
  max-width: 100%;
  height: 284px;
  flex-shrink: 0;
  overflow: hidden;
}

.about-env__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.env-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.env-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 107px;
  padding: 28px 10px 28px 15px;
  background: var(--color-white);
}

.env-item__num {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #6fae8f;
  line-height: 24px;
  flex-shrink: 0;
}

.env-item__body {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

.env-item__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: normal;
}

.env-item__desc {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 22.8px;
}

/* ABOUT PAGE — Tablet */
@media (max-width: 1024px) {
  .page-hero {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
    padding: 120px 45px 40px;
    min-height: 0;
  }

  .page-hero__image {
    width: 100%;
    max-width: none;
    height: 320px;
  }

  .page-hero__title {
    font-size: 36px;
  }

  .about-intro {
    padding: 80px 48px;
  }

  .about-intro__lead {
    font-size: 20px;
  }

  .about-domains,
  .about-message,
  .about-philosophy,
  .about-env {
    padding-left: 48px;
    padding-right: 48px;
  }

  .about-domains__row {
    flex-direction: column;
    align-items: stretch;
  }

  .about-domains__col {
    width: 100%;
  }

  .about-env__top {
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

  .about-env__copy,
  .about-env__photo {
    width: 100%;
  }

  .about-philosophy__catch {
    font-size: 20px;
    line-height: 1.6;
  }

  .about-philosophy__list {
    font-size: 16px;
  }
}

/* ABOUT PAGE — Smartphone */
@media (max-width: 767px) {
  .page-hero {
    padding: 100px 25px 30px;
  }

  .page-hero__eyebrow {
    font-size: 14px;
    letter-spacing: 3px;
  }

  .page-hero__title {
    font-size: 28px;
  }

  .page-hero__image {
    height: 220px;
  }

  .about-intro {
    padding: 60px 24px;
    gap: 20px;
  }

  .about-intro__lead {
    font-size: 18px;
    text-align: left;
  }

  .about-intro__desc {
    font-size: 14px;
    line-height: 1.9;
    text-align: left;
  }

  .about-intro__desc br {
    display: none;
  }

  .about-domains,
  .about-message,
  .about-philosophy,
  .about-env {
    padding-left: 24px;
    padding-right: 24px;
  }

  .about-domains {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .about-domains__inner,
  .about-message__inner,
  .about-philosophy__inner,
  .about-env__inner {
    gap: 36px;
  }

  .about-domains__body {
    gap: 48px;
  }

  .about-domains__sub {
    font-size: 16px;
  }
  .about-domains__col {
    grid-template-columns: none;
  }

  .domain-item__head {
    padding: 10px 16px;
  }

  .domain-item__title {
    font-size: 15px;
  }

  .domain-item__desc {
    font-size: 14px;
  }

  .sec-bar__title {
    font-size: 20px;
  }

  .about-message {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .about-message__text {
    font-size: 14px;
    line-height: 1.9;
  }

  .about-message__text br {
    display: none;
  }

  .about-message__sign {
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }

  .about-message__name {
    font-size: 18px;
  }

  .about-philosophy {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .about-philosophy__content {
    gap: 48px;
    align-items: flex-start;
  }

  .about-philosophy__lead {
    align-items: flex-start;
    text-align: left;
  }

  .about-philosophy__catch {
    font-size: 18px;
    line-height: 1.6;
  }

  .about-philosophy__desc br {
    display: none;
  }

  .about-philosophy__list {
    font-size: 15px;
    gap: 20px;
  }

  .about-env {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .about-env__desc br {
    display: none;
  }

  .about-env__photo {
    height: 220px;
  }

  .env-items {
    grid-template-columns: 1fr;
  }

  .env-item {
    min-height: 0;
  }
}

/* =========================================================
   SERVICE PAGE（service.html）
   ========================================================= */

.sec-bar--primary .sec-bar__title--primary {
  color: var(--color-primary);
  font-size: 28px;
}

.svc-intro {
  display: flex;
  justify-content: center;
  padding: 100px 190px;
  background: var(--color-bg);
}

.svc-intro__desc {
  max-width: 912px;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
  line-height: 2;
}

.svc-overview {
  background: var(--color-white);
  padding: 50px 0 50px;
}

.svc-overview__grid {
  display: flex;
  gap: 20px;
  max-width: 1060px;
  margin: 0 auto;
}

.svc-ov-card {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  background: #f5f5f5;
  color: #222;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease)!important;
}

.svc-ov-card:hover,
.svc-ov-card.is-active {
  background: #6fae8f;
  color: var(--color-white);
}

.svc-detail {
  background: var(--color-white);
  padding: 100px 0;
  scroll-margin-top: 50px;
}

.svc-detail--gray {
  background: var(--color-bg);
  padding-top: 100px;
  padding-bottom: 100px;
}

.svc-detail__inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1060px;
  margin: 0 auto;
}

.svc-detail__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.svc-detail__copy {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 591px;
  max-width: 100%;
}

.svc-detail__desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 30px;
}

.svc-detail-list {
  width: 100%;
}

.svc-detail-list li {
  display: flex;
  gap: 12px;
  padding: 8px 0 9px;
  border-bottom: 1px solid #d9d9d9;
  font-size: 15px;
  color: var(--color-primary);
  line-height: normal;
}

.svc-detail-list li::before {
  content: "—";
  color: #d9d9d9;
  font-size: 13px;
  flex-shrink: 0;
}

.svc-detail__photo {
  width: 440px;
  max-width: 100%;
  height: 256px;
  flex-shrink: 0;
  overflow: hidden;
}

.svc-detail__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-detail__photo--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8e8e8;
  color: #999;
  font-size: 14px;
  letter-spacing: 2px;
}

.svc-video {
  display: flex;
  align-items: center;
  gap: 31px;
}

.svc-video__thumb {
  width: 321px;
  height: 198px;
  flex-shrink: 0;
  overflow: hidden;
}

.svc-video__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-video__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  flex: 1;
  min-width: 0;
}

.svc-video__title,
.svc-video__desc {
  font-size: 16px;
  color: var(--color-text);
  line-height: 30px;
}

.svc-video__title {
  font-weight: 500;
}

.svc-video__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d9d9d9;
  font-size: 15px;
  color: var(--color-text);
  line-height: 30px;
  align-self: flex-start;
}

.svc-flow {
  padding: 0 0 100px;
  background: var(--color-white);
}

.svc-flow--embedded {
  padding: 0;
  background: transparent;
}

.svc-flow__inner {
  max-width: 1060px;
  margin: 0 auto;
}

.svc-flow__heading {
  display: flex;
  align-items: center;
  min-height: 90px;
  padding: 0 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 30px;
}

.svc-flow__heading--left {
  min-height: 50px;
  padding: 10px 0;
  font-weight: 700;
  color: var(--color-primary);
}

.flow-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  list-style: none;
}

.flow-step {
  width: 100%;
  display: inline-block;
  gap: 20px;
  padding: 20px;
  background: #f5f5f5;
}
.flow-step-1 {
  width: 100%;
  display: inline-block;
  gap: 20px;
  padding: 20px;
  background: #eaeaea;
}

.flow-step--simple {
  padding: 20px 60px 0;
}

.flow-step--org {
  align-items: center;
  padding: 17px 20px;
  height: 60px;
  text-align: center;
}

.flow-step__label {
  display: inline-block;
  align-items: center;
  gap: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 20px;
}

.flow-step--org .flow-step__label,
.flow-step--org {
  border-bottom: none;
  padding-bottom: 0;
}
.flow-step__num {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 4px;
    line-height: normal;
    white-space: nowrap;
    margin-right: 15px;
}

.flow-step__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  line-height: normal;
}

.flow-step__desc {
  font-size: 16px;
  color: var(--color-text);
  line-height: 30px;
}

.flow-arrow {
  display: flex;
  justify-content: center;
  list-style: none;
}

.svc-table-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.svc-table-wrap__title {
  width: 100%;
  padding: 0 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 30px;
}

.svc-table {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  max-width: 980px;
}

.svc-table__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
}

.svc-table__cell {
  padding-bottom: 10px;
  border-bottom: 1px solid #d9d9d9;
  font-size: 15px;
  color: #000;
  line-height: 30px;
  text-align: center;
  height: 100%;
}
.svc-table__cell-1 {
  padding-bottom: 10px;
  border-bottom: 1px solid #d9d9d9;
  font-size: 15px;
  color: #000;
  line-height: 30px;
  height: 100%;
}

.svc-table__row--head .svc-table__cell {
  background: #6fae8f;
  border-bottom: none;
  padding: 0;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
}

.svc-table__cell--bold {
  font-weight: 500;
  font-size: 16px;
}


/* .svc-table__note {
  font-weight: 400;
  di */

.svc-cards-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.svc-cards-block__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 30px;
}

.svc-feature-cards {
  display: flex;
  gap: 50px;
  margin-bottom: 30px;
}

.svc-feature-card {
  width: 300px;
  max-width: 100%;
}

.svc-feature-card__head {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  background: #6fae8f;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 700;
}

.svc-feature-card__body {
  min-height: 140px;
  padding: 15px 20px;
  border: 1px solid #6fae8f;
  border-top: none;
  font-size: 15px;
  color: var(--color-text);
  line-height: 30px;
}

.svc-contract {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 998px;
  width: 100%;
  margin: 0 auto;
}

.svc-contract__lead {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.svc-contract__title {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-green);
  line-height: 30px;
}

.svc-contract__desc {
  font-size: 16px;
  color: var(--color-text);
  line-height: 30px;
}

.svc-contract__cols {
  display: flex;
  justify-content: center;
  gap: 149px;
}

.svc-contract__flow {
  width: 554px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.svc-contract__col-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 30px;
}

.flow-list--compact,
.flow-list--org {
  width: 100%;
}

.svc-org {
  width: 295px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.svc-support {
  background: rgba(223, 242, 232, 0.5);
  padding: 20px 60px 30px;
  text-align: center;
}

.svc-support__label {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.svc-support__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
}

.svc-note {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.svc-note__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 30px;
}

.svc-note__desc {
  font-size: 16px;
  color: var(--color-text);
  line-height: 30px;
}

.svc-jig {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.svc-jig__title {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 30px;
}

.svc-jig__desc {
  font-size: 16px;
  color: var(--color-text);
  line-height: 30px;
  margin-top: -30px;
}

.svc-jig__photos {
  display: flex;
  justify-content: center;
  gap: 35px;
}

.svc-jig__photos img {
  width: 440px;
  max-width: 100%;
  height: 256px;
  object-fit: cover;
}

.svc-external {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  align-self: center;
  width: fit-content;
  max-width: 100%;
  padding: 20px 40px;
  background: var(--color-primary);
  border-radius: 50px;
  color: var(--color-white);
  transition: background 0.3s var(--ease), transform 0.15s var(--ease), box-shadow 0.3s var(--ease);
}

.svc-external__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  white-space: nowrap;
  color: var(--color-white);
}

.svc-external__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}

.svc-external:hover {
  background: #076a45;
  box-shadow: 0 6px 16px rgba(5, 72, 49, 0.3);
}

@media (max-width: 1024px) {
  .svc-intro,
  .svc-overview,
  .svc-detail,
  .svc-detail--gray,
  .svc-flow {
    padding-left: 48px;
    padding-right: 48px;
  }

  .svc-overview__grid {
    flex-wrap: wrap;
  }

  .svc-ov-card {
    flex: 1 1 calc(50% - 10px);
    min-height: 72px;
  }

  .svc-detail__top--reverse,
  .svc-video,
  .svc-contract__cols,
  .svc-feature-cards,
  .svc-jig__photos {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .svc-detail__top {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 24px;
  }

  .svc-detail__copy,
  .svc-detail__photo,
  .svc-video__thumb,
  .svc-contract__flow,
  .svc-org,
  .svc-feature-card {
    width: 100%;
  }

  .svc-table__row {
    gap: 12px;
  }

  .svc-table__cell {
    /* font-size: 12px; */
    line-height: 1.6;
  }

  .sec-bar--primary .sec-bar__title--primary {
    font-size: 21px;
    white-space: normal;
  }

  .svc-external {
    min-width: 0;
    width: 100%;
    padding: 16px 24px;
  }

  .svc-external__text {
    white-space: normal;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .svc-intro,
  .svc-overview,
  .svc-detail,
  .svc-detail--gray,
  .svc-flow {
    padding-left: 24px;
    padding-right: 24px;
  }

  .svc-intro {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .svc-intro__desc {
    font-size: 16px;
    text-align: left;
  }

  .svc-intro__desc br {
    display: none;
  }

  .svc-ov-card {
    flex: 1 1 100%;
  }

  .svc-detail,
  .svc-detail--gray {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .svc-detail__inner {
    gap: 36px;
  }

  .svc-detail__desc br {
    display: none;
  }

  .svc-detail__photo,
  .svc-video__thumb,
  .svc-jig__photos img {
    height: 200px;
  }

  .flow-step--simple,
  .flow-step--org,
  .svc-support {
    padding-left: 20px;
    padding-right: 20px;
  }

  .flow-step__label {
    flex-wrap: wrap;
    gap: 8px;
  }

  .flow-step__num {
    font-size: 18px;
  }

  /* .flow-step__title {
    font-size: 15px;
  } */

  .svc-table__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .svc-table__row--head {
    display: none;
  }

  .svc-table__cell {
    text-align: left;
    padding: 8px 0;
  }

  .svc-table__cell::before {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #6fae8f;
    margin-bottom: 4px;
  }

  .svc-table__row .svc-table__cell:nth-child(1)::before { content: "対象製品"; }
  .svc-table__row .svc-table__cell:nth-child(2)::before { content: "検査方法"; }
  .svc-table__row .svc-table__cell:nth-child(3)::before { content: "主な検査項目"; }

}

/* =========================================================
   SHISAKU PAGE（shisaku.html / 開発試作サービス）
   ========================================================= */

.page-hero__title--shisaku {
  font-size: 45px;
}

.shisaku-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 100px 190px 50px;
  text-align: center;
  background: var(--color-bg);
}

.shisaku-intro__lead {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 40px;
}

.shisaku-intro__desc {
  max-width: 1060px;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 40px;
}

.shisaku-support {
  padding: 50px 190px 100px;
  background: var(--color-bg);
}

.shisaku-support__inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1060px;
  margin: 0 auto;
}

.shisaku-support__lead,
.shisaku-support__closing {
  font-size: 16px;
  color: var(--color-text);
  line-height: 30px;
}

.shisaku-support__lead {
  line-height: normal;
}

.shisaku-cases {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.shisaku-cases__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
}

.shisaku-cases__grid {
  display: flex;
  gap: 40px;
  width: 100%;
  max-width: 920px;
}

.shisaku-case {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: #f5f5f5;
}

.shisaku-case__label {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: normal;
}

.shisaku-case__desc {
  font-size: 16px;
  color: var(--color-text);
  line-height: 30px;
}

.shisaku-axes {
  background: var(--color-bg);
  padding: 100px 190px;
}

.shisaku-axes__inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1060px;
  margin: 0 auto;
}

.shisaku-axes__header {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.shisaku-axes__lead {
  font-size: 16px;
  color: var(--color-text);
  line-height: 30px;
}

.shisaku-axes__tabs {
  display: flex;
  gap: 60px;
}

.shisaku-axes__tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 50px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  transition: background 0.3s var(--ease);
}

.shisaku-panel {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 50px 30px;
  background: var(--color-white);
}

.shisaku-panel--reverse {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.shisaku-panel__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.shisaku-panel__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 500px;
  max-width: 100%;
}

.shisaku-panel__title {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 30px;
}

.shisaku-panel__catch {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 30px;
}

.shisaku-panel__desc {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 30px;
}

.shisaku-panel__photo {
  width: 440px;
  max-width: 100%;
  height: 256px;
  flex-shrink: 0;
  overflow: hidden;
}

.shisaku-panel__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shisaku-tags {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 25px;
  list-style: none;
}

.shisaku-tags li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 10px 20px;
  background: rgba(223, 242, 232, 0.5);
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  text-align: center;
}

@media (max-width: 1024px) {
  .shisaku-intro,
  .shisaku-support,
  .shisaku-axes {
    padding-left: 48px;
    padding-right: 48px;
  }

  .page-hero__title--shisaku {
    font-size: 36px;
  }

  .shisaku-cases__grid,
  .shisaku-axes__tabs,
  .shisaku-panel__top,
  .shisaku-panel--reverse {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .shisaku-panel__copy,
  .shisaku-panel__photo {
    width: 100%;
  }

  .shisaku-tags {
    grid-template-columns: repeat(2, 1fr);
  }

  .shisaku-axes__tab {
    font-size: 16px;
    padding: 16px 24px;
  }
}

@media (max-width: 767px) {
  .shisaku-intro,
  .shisaku-support,
  .shisaku-axes {
    padding-left: 24px;
    padding-right: 24px;
  }

  .shisaku-intro {
    padding-top: 60px;
    align-items: flex-start;
    text-align: left;
  }

  .shisaku-intro__lead {
    font-size: 18px;
    line-height: 1.6;
  }

  .shisaku-intro__desc {
    font-size: 14px;
    line-height: 1.9;
  }

  .shisaku-intro__desc br,
  .shisaku-support__closing br {
    display: none;
  }

  .shisaku-support,
  .shisaku-axes {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .shisaku-support__inner,
  .shisaku-axes__inner,
  .shisaku-axes__header {
    gap: 36px;
  }

  .shisaku-panel {
    padding: 32px 20px;
    gap: 32px;
  }

  .shisaku-panel__photo {
    height: 200px;
  }

  .shisaku-tags {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .shisaku-tags li {
    font-size: 14px;
  }

  .sec-bar--primary .sec-bar__title--primary {
    white-space: normal;
  }
}

/* =========================================================
   COMPANY PAGE（company.html / 会社情報）
   ========================================================= */

.company-overview {
  background: var(--color-white);
  padding: 100px 190px;
}

.company-overview__inner {
  display: flex;
  flex-direction: column;
  gap: 74px;
  max-width: 1060px;
  margin: 0 auto;
}

.company-table {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.company-table__row {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.company-table__th {
  width: 200px;
  flex-shrink: 0;
  padding: 16px 20px;
  background: var(--color-bg);
  border-bottom: 2px solid var(--color-white);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.2;
}

.company-table__td {
  flex: 1;
  min-width: 0;
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 26.6px;
}
.company-table__td:first-child {
  border-top: 1px solid #eee;
}

.company-access {
  background: var(--color-bg);
  padding: 100px 190px;
  scroll-margin-top: 50px;
}

.company-access__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1060px;
  margin: 0 auto;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.office-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
}

.office-card__map {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.office-card__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.office-card__body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 28px;
  min-height: 222px;
}

.office-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  line-height: normal;
}

.office-card__address,
.office-card__desc {
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 22.8px;
}

.office-card__address {
  margin-bottom: 13px;
}

.company-history {
  background: var(--color-white);
  padding: 100px 190px;
  scroll-margin-top: 50px;
}

.company-history__inner {
  display: flex;
  flex-direction: column;
  gap: 74px;
  max-width: 1060px;
  margin: 0 auto;
}

.history-list {
  display: flex;
  flex-direction: column;
  width: 760px;
  max-width: 100%;
  margin: 0 auto;
  list-style: none;
  gap: 30px;
}

.history-item {
  display: flex;
  align-items: flex-end;
  gap: 60px;
}

.history-item__date {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100px;
  flex-shrink: 0;
  padding: 10px 0;
  border-bottom: 1px solid #d9d9d9;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #6fae8f;
  line-height: 30px;
  white-space: nowrap;
}

.history-item__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 50px;
  border-bottom: 1px solid #d9d9d9;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 30px;
}

@media (max-width: 1024px) {
  .company-overview,
  .company-access,
  .company-history {
    padding-left: 48px;
    padding-right: 48px;
  }

  .company-overview__inner,
  .company-history__inner {
    gap: 48px;
  }

  .company-table__th {
    width: 160px;
  }

  .office-grid {
    gap: 24px;
  }

  .history-item {
    gap: 24px;
  }

  .history-item__body {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 767px) {
  .company-overview,
  .company-access,
  .company-history {
    padding: 60px 24px;
  }

  .company-overview__inner,
  .company-access__inner,
  .company-history__inner {
    gap: 36px;
  }

  .company-table__row {
    flex-direction: column;
  }

  .company-table__th {
    width: 100%;
    padding-bottom: 8px;
    border-bottom: none;
  }
  .company-table__th:first-child {
    border-top: 1px solid #eee;
  }

  .company-table__td {
    padding-top: 0;
    border-bottom: none;
  }

  .office-grid {
    grid-template-columns: 1fr;
  }

  .office-card__map {
    height: 180px;
  }

  .office-card__body {
    min-height: 0;
  }

  .history-item {
    flex-direction: column;
    gap: 0;
  }

  .history-item__date {
    width: 100%;
    justify-content: flex-start;
    border-bottom: none;
    padding-bottom: 0;
  }

  .history-item__body {
    width: 100%;
    padding: 8px 0 16px;
  }
}

/* =========================================================
   RECRUIT PAGE（recruit.html / 採用情報）
   ========================================================= */

.recruit-section__inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 1060px;
  max-width: 100%;
  margin: 0 auto;
}

.page-menu {
  display: flex;
  gap: 50px;
  justify-content: center;
  padding: 50px 0;
}
.page-menu-text {
  font-size: 20px;
  font-weight: bold;
  margin: 20px;
}
.page-link {
  position: relative;
  display: inline-block;
  color: var(--color-text);
  white-space: nowrap;
  transition: color 0.3s var(--ease);
  padding: 5px 0;
}
.page-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: var(--color-green);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s var(--ease);
}
.page-link:hover {
  color: var(--color-green);
}
.page-link:hover::after,
.page-link.is-active::after {
  transform: scaleX(1);
}

.recruit-talent {
  padding: 100px 190px;
  background: var(--color-white);
  scroll-margin-top: 80px;
}

.recruit-talent__intro {
  display: flex;
  align-items: center;
  gap: 70px;
}

.recruit-talent__copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 30px;
  min-width: 0;
}

.recruit-talent__lead {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}

.recruit-talent__copy p {
  font-size: 14px;
  font-weight: 400;
  line-height: 30.8px;
  color: var(--color-text);
}

.recruit-image-placeholder {
  width: 440px;
  height: 256px;
  flex-shrink: 0;
  border: 2px dashed #ccc;
  background: #e0e0e0;
}

.recruit-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.recruit-value {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  min-height: 130px;
  padding: 28px;
  background: rgba(223, 242, 232, 0.5);
}

.recruit-value__title {
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  color: var(--color-primary);
}

.recruit-value p {
  font-size: 12px;
  font-weight: 400;
  line-height: 22.8px;
  color: var(--color-text);
}

.recruit-voices {
  padding: 200px 190px;
  background: var(--color-bg);
  scroll-margin-top: 80px;
}

.recruit-voice-list {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.recruit-voice {
  width: 100%;
  min-height: 256px;
  background: #f5f5f5;
}

.recruit-voice--reverse {
  flex-direction: row-reverse;
}

.recruit-voice__image {
  /* min-height: 460px; */
  align-self: stretch;
  flex-shrink: 0;
}

.recruit-voice__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 15px;
  min-width: 0;
  padding: 40px 40px;
}

.recruit-voice--reverse .recruit-voice__body {
  padding-right: 80px;
  padding-left: 30px;
}

.recruit-voice__name {
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  color: var(--color-text);
}
.recruit-voice__name span {
  font-size: 16px;
  font-weight: 400;
  margin-left: 20px;
}

.recruit-voice__q {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  color: var(--color-text);
  margin-top: 20px;
}

.recruit-voice__a {
  margin-top: 2px;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: var(--color-text);
  text-align: justify;
}

.recruit-jobs {
  padding: 80px 190px;
  background: var(--color-white);
  scroll-margin-top: 80px;
}

.recruit-job-list {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
}

.recruit-job-list li {
  border-bottom: 1px solid var(--color-border);
}

.recruit-job-link {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 59px;
  padding: 18px 100px 19px 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20.8px;
  color: var(--color-text);
  transition: background-color 0.25s var(--ease), padding-left 0.25s var(--ease)!important;
}

.recruit-job-link:hover {
  /* color: var(--color-green); */
  background: rgba(5, 72, 49, 0.04);
  padding-left: 35px;
}

.recruit-job-link__arrow {
  width: 0;
  height: 0;
  flex-shrink: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--color-primary);
}

@media (max-width: 1024px) {
  .recruit-talent,
  .recruit-voices,
  .recruit-jobs {
    padding-right: 48px;
    padding-left: 48px;
  }

  .recruit-voices {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .recruit-talent__intro {
    gap: 40px;
  }

  .recruit-image-placeholder {
    width: 40%;
  }

  .recruit-voice-list {
    gap: 60px;
  }

  .recruit-voice__body,
  .recruit-voice--reverse .recruit-voice__body {
    padding: 30px 36px;
  }
}

@media (max-width: 767px) {
  .recruit-section__inner {
    gap: 36px;
  }

  .recruit-talent,
  .recruit-voices,
  .recruit-jobs {
    padding: 60px 24px;
  }

  .recruit-talent__intro {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .recruit-talent__copy {
    gap: 20px;
  }

  .recruit-talent__lead {
    font-size: 20px;
  }

  .recruit-talent__copy p {
    line-height: 2;
  }

  .recruit-image-placeholder {
    width: 100%;
    height: auto;
    aspect-ratio: 440 / 256;
  }

  .recruit-values {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .recruit-value {
    min-height: 0;
    padding: 24px;
  }

  .recruit-voice-list {
    gap: 32px;
  }

  .recruit-voice,
  .recruit-voice--reverse {
    flex-direction: column;
    align-items: stretch;
  }

  .recruit-voice__image {
    width: 100%;
    min-height: 0;
    aspect-ratio: 440 / 256;
  }

  .recruit-voice__body,
  .recruit-voice--reverse .recruit-voice__body {
    padding: 28px 24px;
  }

  .recruit-voice__a {
    font-size: 14px;
    line-height: 2;
  }
  .recruit-voice__q {
    font-size: 16px;
    line-height: 25px;
}

  .recruit-job-link {
    gap: 20px;
    min-height: 56px;
    padding: 16px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .recruit-voice__name span {
    display: block;
    margin-left: 0;
  }
  .page-menu {
    display: flex;
    gap: 0px;
    justify-content: center;
    padding: 50px 0;
    flex-direction: column;
    text-align: center;
  }
}


/* =========================================================
   RECRUIT JOB PAGE（募集要項）
   ========================================================= */

.page-hero__title--job {
  font-size: 40px;
  line-height: 1.4;
}

.job-description {
  padding: 100px 190px;
  background: var(--color-white);
}

.job-description__inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 1060px;
  max-width: 100%;
  margin: 0 auto;
}

.job-table {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px;
  background: var(--color-white);
}

.job-table__row {
  display: flex;
  align-items: stretch;
  min-height: 80px;
}

.job-table__term {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  flex-shrink: 0;
  padding: 10px 20px 11px;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  color: #888;
}

.job-table__detail {
  display: flex;
  flex: 1;
  align-items: center;
  min-width: 0;
  padding: 15px 20px 17px;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  font-weight: 400;
  line-height: 24.7px;
  color: var(--color-text);
}

.cta__btn-0 {
  text-align: center;
  padding: 30px 10px;
}

.cta__btn-1 {
    padding: 12px 45px;
    background: var(--color-white);
    border: 2px solid var(--color-green);
    color: var(--color-green);
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    transition: background-color 0.3s var(--ease), transform 0.15s var(--ease), box-shadow 0.3s var(--ease);
    border-radius: 30px;
}
.cta__btn-1:hover {
  background: var(--color-green);
  color: var(--color-white);
}


.description-hero {
  min-height: 350px;
  background: var(--color-bg);
}

@media (max-width: 1024px) {
  .job-description {
    padding-right: 48px;
    padding-left: 48px;
  }

  .job-description__inner {
    gap: 48px;
  }
}

@media (max-width: 767px) {
  .page-hero__title--job {
    font-size: 28px;
  }

  .job-description {
    padding: 60px 24px;
  }

  .job-description__inner {
    gap: 36px;
  }

  .job-table {
    padding: 0;
  }

  .job-table__row {
    flex-direction: column;
    min-height: 0;
  }

  .job-table__term {
    justify-content: flex-start;
    width: 100%;
    padding: 18px 16px 8px;
    border-bottom: none;
    text-align: left;
  }

  .job-table__detail {
    width: 100%;
    padding: 0 16px 18px;
    font-size: 14px;
  }

  .job-table__detail br {
    display: none;
  }
}

/* =========================================================
   INFORMATION PAGE（トピックス一覧）
   ========================================================= */

.information-hero {
  min-height: 350px;
  background: var(--color-bg);
}

.information-list-section {
  padding: 60px 190px 100px;
  background: var(--color-white);
}

.information-list-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  width: 1060px;
  max-width: 100%;
  margin: 0 auto;
}

.information-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.information-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  min-height: 33px;
  padding: 5px 16px;
  border: 1px solid var(--color-green);
  border-radius: 0;
  background: var(--color-white);
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
  color: var(--color-primary);
  transition: color 0.3s var(--ease), background-color 0.3s var(--ease);
}

.information-filter:hover,
.information-filter.is-active {
  background: var(--color-green);
  color: var(--color-white);
}

.information-news-list {
  width: 100%;
  border-top: 1px solid var(--color-border);
}

.information-news-item {
  min-height: 100px;
  border-bottom: 1px solid var(--color-border);
}

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

.information-news-link {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 99px;
  padding: 18px 0 19px;
  transition: background-color 0.25s var(--ease), padding-left 0.25s var(--ease);
}

.information-news-link:hover {
  color: var(--color-green);
  background: rgba(5, 72, 49, 0.04);
  padding-left: 5px;
}

.information-news-date {
  width: 90px;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  color: var(--color-muted);
}

.information-news-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  flex-shrink: 0;
  padding: 2px 10px;
  border: 1px solid var(--color-primary);
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
  color: var(--color-primary);
  text-align: center;
}

.information-news-text {
  min-width: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  color: var(--color-text);
}

.information-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.information-pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12px;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  color: var(--color-text);
  transition: color 0.3s var(--ease), transform 0.2s var(--ease);
}

.information-pagination__link:hover,
.information-pagination__link.is-current {
  color: var(--color-green);
  transform: translatex(5px);
}

.information-pagination__link.is-current {
  font-weight: 700;
}

.information-pagination__next {
  font-family: var(--font-sans);
  font-size: 20px;
}

@media (max-width: 1024px) {
  .information-list-section {
    padding-right: 48px;
    padding-left: 48px;
  }

  .information-list-section__inner {
    gap: 60px;
  }

  .information-filter {
    width: 130px;
  }
}

@media (max-width: 767px) {
  .information-hero {
    min-height: 250px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .information-list-section {
    padding: 48px 24px 60px;
  }

  .information-list-section__inner {
    gap: 44px;
  }

  .information-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 10px;
  }

  .information-filter {
    width: 100%;
    min-height: 30px;
    font-size: 13px;
  }

  .information-news-link {
    flex-wrap: wrap;
    gap: 10px 16px;
    min-height: 0;
    padding: 20px 0;
  }

  .information-news-date {
    width: auto;
  }

  .information-news-text {
    width: 100%;
    font-size: 14px;
    line-height: 1.7;
  }

  .information-pagination {
    gap: 32px;
  }
}

/* =========================================================
   INFORMATION DETAIL PAGE（投稿ページ）
   ========================================================= */

.information-detail-main {
  padding-top: 120px;
  background: var(--color-white);
}

.information-article {
  padding: 60px 190px 100px;
  background: var(--color-white);
}

.information-article__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 1060px;
  max-width: 100%;
  margin: 0 auto;
}

.information-article__meta {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  color: var(--color-text);
}

.information-article__divider {
  width: 100%;
  height: 1px;
  background: var(--color-border);
}

.information-article__header {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 30px 0;
}

.information-article__header h1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
}

.information-article__body {
  width: 100%;
  min-height: 300px;
  line-height: 36px;
  color: #000;
}

.information-article__back {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 20px 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  color: var(--color-primary);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.2s var(--ease);
}

.information-article__back:hover {
  color: var(--color-green);
  transform: translateX(3px);
}

.information-article__back-arrow {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-text);
}

@media (max-width: 1024px) {
  .information-detail-main {
    padding-top: 150px;
  }

  .information-article {
    padding-right: 48px;
    padding-left: 48px;
  }

  .information-article__body {
    min-height: 400px;
  }
}

@media (max-width: 767px) {
  .information-detail-main {
    padding-top: 96px;
  }

  .information-article {
    padding: 48px 24px 60px;
  }

  .information-article__inner {
    gap: 24px;
  }

  .information-article__meta {
    gap: 20px;
    font-size: 14px;
  }

  .information-article__header {
    padding: 24px 0;
  }

  .information-article__header h1 {
    font-size: 24px;
    line-height: 1.6;
  }

  .information-article__body {
    min-height: 320px;
    font-size: 14px;
    line-height: 2.2;
  }

  .information-article__body p + p {
    margin-top: 16px;
  }

  .information-article__back {
    gap: 20px;
    font-size: 16px;
  }
}


/* =========================================================
   CONTACT
   ========================================================= */
.contact-hero {
    min-height: 250px;
    background: var(--color-bg);
}
.contact {
    padding: 100px 190px;
    background: var(--color-white);
}
.contact__inner {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1060px;
    margin: 0 auto;
}
.contact p {
  line-height: 32px;
}

/* 入力テーブル */
.contact-table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}
.contact-table th{
    width: 30%;
    padding: 20px;
    font-weight: normal;
    text-align: left;
    border: none;
    border-bottom: 2px solid var(--color-white);
    background: var(--color-bg);
}
.contact-table th span{
    color: #c40404;
    font-size: 80%;
    margin-left: 10px;
}
.contact-table th small {
  font-size: 80%;
}
.contact-table td{
    border: none;
    border-bottom: 1px solid #eee;
    padding: 15px;
    border-top: 1px solid #eee;
}
.contact-table p {
    margin-bottom: 0;
}
input, textarea{
	width: 100%;
	color: #333;
    padding: 12px;
    border: 1px solid #eee;
    font-size: 16px;
    line-height: 20px;
}
input[type="file"] {
    border: none;
}
input[type="checkbox"] {
    margin-right: 15px;
}
input[type="submit"]{
	width: 30%;
    margin: 30px;
    border: 1px solid #666;
    /* background: #fff; */
}
input[type="submit"]:hover{
    background: #666;
    color: #fff;
}

/* ラジオボタンの体裁 */
input[type="radio"] {
  width: auto!important;
  margin-left: 0px;
}
.wpcf7-list-item-label {
  margin-right: 20px;
}
.wpcf7-radio label{
  display: inline-block;
}

.submit_btn {
    text-align: center;
}
.ckinput{
	font-size:16px;
}
.wpcf7-spinner{
    display: none!important;
}
::placeholder{
    color: #aaa;
}

/* プライバシーポリシー */
.privacy_text{
    border: 1px solid #ccc;
    overflow-y: scroll;
    margin: 80px auto 50px;
    padding: 20px 50px;
    height: 270px;
    background: #fff;
}
.privacy_text h3{
    text-align: left;
    position: relative;
    color: #333;
    padding: 10px;
    font-size: 15px;
    border-left: 4px solid #aaa;
    border-bottom: 1px solid #aaa;
}
.privacy_text h4{
    border-bottom: 1px solid #aaa;
    border-left: 10px solid #aaa;
    padding: 5px 10px;
    font-size: 18px;
    font-weight: 400;
}
.privacy_text p{
    font-size: 14px;
    margin: 10px 10px;
    line-height: 22px;
}
.privacy_chk{
    text-align: center;
    margin: 0 10px;
}

/* レスポンシヴ */
@media (max-width: 768px) {
  .contact {
    padding: 60px 24px;
  }
    .privacy_text {
        margin: 50px auto 50px;
        padding: 30px 30px;
    }
}

@media (max-width: 480px) {
    .contact-table th {
        display: block;
        width: 100%;
        border-bottom: none;
        padding: 0 10px;
    }
    .contact-table th:first-child {
      border-top: 1px solid #eee;
    }
    .contact-table td {
        display: block;
        padding: 0 0 20px;
        border-top: none;
    }
    input[type="submit"] {
        width: 50%;
    }
    .contact-table {
        margin: 20px 0;
    }
    .privacy_text {
        padding: 20px 10px;
        margin: 50px auto 40px;
    }
    .privacy_chk {
        text-align: left;
    }
}



/* =========================================================
   PRIVACY POLICY / SITEMAP
   ========================================================= */
.policy-section {
  padding: 80px 190px 120px;
  background: var(--color-white);
  scroll-padding-top: 80px;
}
.policy-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 1060px;
  max-width: 100%;
  margin: 0 auto;
}
.policy-item {
    font-size: 14px;
    line-height: 25px;
    padding-top: 40px;
}
.policy-top h4,
.policy-item h4 {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 35px;
}
.policy-item h5 {
  font-size: 16px;
  margin: 40px 0 0px;
  line-height: 30px;
}
.policy-item p {
  font-size: 15px;
  margin: 10px 0;
  line-height: 30px;
}
.policy-item ul {
    margin: 15px 20px;
}
.policy-item ul li {
    margin-bottom: 5px;
    list-style-type: disc;
}
.policy-top ul {
    margin: 30px 30px;
}
.policy-top ul li {
    margin-bottom: 20px;
    list-style-type: disc;
    font-weight: 500;
}
.policy-border {
    border-bottom: 1px solid #ccc;
    margin: 80px 0;
}
.policy-link {
  display: inline-flex;
  letter-spacing: 1px;
  color: var(--color-text);
  padding-bottom: 8px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.2s var(--ease);
}
.policy-link:hover {
  color: var(--color-green);
  transform: translateX(5px);
}

.wrapper-sitemap h4,
.wrapper-sitemap li{
  color: var(--color-text);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.2s var(--ease);
}
.wrapper-sitemap h4:hover,
.wrapper-sitemap li:hover {
  color: var(--color-green);
  transform: translateX(5px);
}
.wrapper-sitemap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}


.sitemap-item {
    font-size: 14px;
    line-height: 25px;
    padding-top: 40px;
}
.sitemap-item h4 {
    font-size: 18px;
    line-height: 35px;
}
.sitemap-item h5 {
  font-size: 16px;
  margin: 40px 0 0px;
  line-height: 30px;
}
.sitemap-item ul {
    margin: 20px 0px;
}
.sitemap-item ul li {
    margin-bottom: 13px;
    list-style-type: none;
}
.sitemap-item ul li span img {
  max-width: none;
}
.sitemap-item ul li a {
  display: flex;
  align-items: center;
}
.sitemap-item ul li span {
  margin: 0 15px 0 0;
}
.sitemap-item .item-header {
  display:flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1024px) {
  .policy-section {
    padding-right: 48px;
    padding-left: 48px;
  }
}

@media (max-width: 767px) {
  .policy-section {
    padding: 48px 24px 60px;
  }
}

@media (max-width: 480px) {
  .wrapper-sitemap {
    grid-template-columns: none;
  }
  .sitemap-item {
    padding-top: 10px;
}
}

/* =========================================================
   Scroll fade-up
   ========================================================= */
.js-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
  will-change: opacity, transform;
}

.js-fade-up.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.js-fade-up[data-delay="1"] { transition-delay: 0.1s; }
.js-fade-up[data-delay="2"] { transition-delay: 0.2s; }
.js-fade-up[data-delay="3"] { transition-delay: 0.3s; }
.js-fade-up[data-delay="4"] { transition-delay: 0.4s; }
.js-fade-up[data-delay="5"] { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .js-fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
