/* =========================
  loading
========================= */
.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color01);
  display: grid;
  place-items: center;
  overflow: hidden;
}

/* 非表示 */
.loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

/* 中央配置 */
.loading-inner {
  position: relative;
}

/* キャッチ */
.loading-catch {
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: var(--txt_white);
  font-weight: var(--fw-bold);
  font-size: clamp(2rem, 1.2rem + 2vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: 0.02em;

  opacity: 0;
  filter: blur(6px);
  animation: catchIn 1.6s ease forwards;
}

@keyframes catchIn {
  0% {
    opacity: 0;
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

/* ローディング全体の退場 */
.loading.is-leaving {
  animation: loadingOut 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes loadingOut {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-100%);
    opacity: 0.8;
  }
}

/* スクロールロック */
body.is-loading {
  overflow: hidden;
}

/* SP */
@media screen and (max-width: 830px) {
  .loading-catch {
    font-size: clamp(1.75rem, 1.3rem + 1.8vw, 2.5rem);
  }
}
:root {
  --header-height: 74px;
}

/* =========================
  Base
========================= */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  background-color: var(--color03);
}

section[id],
div[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

/* =========================
  Header
========================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  height: var(--header-height);
  background: rgb(255 255 255 / 80%);
  z-index: 1000;
  transform: translateY(0);
  will-change: transform;
}

.header-inner {
  width: var(--full-width);
  height: 100%;
  margin: 0 auto;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--color01);
  flex-shrink: 0;
  text-decoration: none;
}

.header-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}

.header-logo span {
  font-family: var(--font_base);
  font-weight: var(--fw-bold);
  line-height: 1;
  white-space: nowrap;
  font-size: clamp(0.875rem, 0.607rem + 1.02vw, 1.5rem);
  color: var(--color01);
}

.header-nav {
  height: 100%;
}

.header-nav-list {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav-list a {
  color: var(--color01);
  font-family: var(--font_base);
  font-weight: var(--fw-bold);
  line-height: 1;
  transition: opacity 0.3s ease;
  font-size: clamp(1rem, 0.893rem + 0.41vw, 1.25rem);
  text-decoration: none;
  font-weight: var(--fw-bold);
  letter-spacing: 0.1rem;
}

.header-nav-list a:hover {
  opacity: 0.7;
}

.header-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--color02);
  color: var(--txt_white) !important;
  font-family: var(--font_base);
  line-height: 1;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  text-decoration: none;
  font-weight: var(--fw-medium) !important;
}

.header-contact-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.header-sp-actions {
  align-items: center;
  gap: 8px;
}

.sp-contact-btn {
  min-height: 38px;
  padding: 0 14px;
}

.hamburger-btn {
  width: 38px;
  height: 38px;
  border: none;
  background: var(--color01);
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  border-radius: 3px;
  flex-shrink: 0;
}

.hamburger-btn span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--txt_white);
  margin: 2px 0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.hamburger-btn span.top {
  top: 5px;
  position: relative;
}
.hamburger-btn span.middle {
}
.hamburger-btn span.bottom {
  position: relative;
  bottom: 5px;
}

/* ハンバーガー open */
body.menu-open .hamburger-btn span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.menu-open .hamburger-btn span:nth-child(2) {
  opacity: 0;
}

body.menu-open .hamburger-btn span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* =========================
  SP Menu
========================= */
.sp-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
  z-index: 1090;
}

.sp-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(82vw, 320px);
  height: 100vh;
  background: var(--color01);
  color: var(--txt_white);
  padding: 98px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 1100;
  overflow-y: auto;
}

.sp-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 3px;
  background: #f4f2ec;
  color: var(--color01);
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}

.sp-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

/* 線 */
.sp-menu-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--txt_white);
  transform-origin: center;
}
.sp-menu-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.sp-menu-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.sp-menu-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.sp-menu-list a {
  color: var(--txt_white);
  font-family: var(--font_base);
  font-size: 20px;
  font-weight: var(--fw-regular);
  line-height: 1.4;
  display: inline-block;
  text-decoration: none;
}

.sp-menu-contact {
  margin-top: 48px;
  text-align: center;
}

.sp-menu-contact-lead,
.sp-menu-tel-note,
.sp-menu-time {
  text-align: center;
  color: var(--txt_white);
}

.sp-menu-contact-lead {
  margin-bottom: 5px;
  font-weight: var(--fw-regular);
  line-height: 1.8;
  font-size: 12.8px;
}

.sp-menu-contact-btn {
  width: 100%;
  max-width: 200px;
  min-height: 55px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: var(--txt_white);
  color: var(--color01);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font_base);
  font-weight: var(--fw-regular);
  line-height: 1;
  text-decoration: none;
  font-size: 20px;
}

.sp-menu-tel-note {
  margin-bottom: 5px;
  line-height: 1;
  font-size: 12.8px;
}

.sp-menu-tel {
  display: block;
  text-align: center;
  color: var(--txt_white);
  font-family: var(--font_sub01);
  font-weight: var(--fw-regular);
  letter-spacing: 2px;
  line-height: 1.2;
  text-decoration: none;
  font-size: 20px;
}

.sp-menu-time {
  margin-top: 5px;
  line-height: 1;
  font-size: 12.8px;
}

/* open state */
body.menu-open {
  overflow: hidden;
}

body.menu-open .sp-menu-overlay {
  opacity: 1;
  visibility: visible;
}

body.menu-open .sp-menu {
  transform: translateX(0);
}

/* =========================
  Utility
========================= */
.show-8 {
  display: none;
}

.hide-8 {
  display: block;
}

/* =========================
  Responsive
========================= */
@media screen and (max-width: 1280px) {
  .header-inner {
    width: calc(100% - 40px);
  }

  .header-nav-list {
    gap: 20px;
  }
}

@media screen and (max-width: 830px) {
  .hide-8 {
    display: none;
  }

  .show-8 {
    display: flex;
  }

  .header-sp-actions {
    display: flex !important;
    align-items: center;
    gap: 8px;
  }

  .header-inner {
    width: calc(100% - 10%);
    padding: 0;
    gap: 10px;
  }

  .header-logo {
    gap: 8px;
    min-width: 0;
    flex: 1;
  }

  .header-logo img {
    width: 28px;
    height: 28px;
  }

  .header-logo span {
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .sp-contact-btn {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.8125rem;
  }

  .hamburger-btn {
    width: 30px;
    height: 30px;
  }

  .hamburger-btn span {
    width: 14px;
  }

  body.menu-open .hamburger-btn span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  body.menu-open .hamburger-btn span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .sp-menu {
    width: min(78vw, 285px);
    padding: 100px 7% 0px;
  }

  .sp-menu-list {
    gap: 18px;
    width: 80%;
    margin: 0 auto;
  }

  .sp-menu-list a {
  }

  .sp-menu-contact {
    margin-top: 34px;
  }

  .sp-menu-contact-btn {
    min-height: 48px;
  }
}

/* =========================
  FV
========================= */
.fv {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-height));
  min-height: 720px;
  overflow: hidden;
  background: #ddd;
}
.fv-slider {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.fv-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1.2s ease,
    visibility 1.2s ease;
}

.fv-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.fv-slide picture,
.fv-slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.fv-slide img {
  object-fit: cover;
  object-position: center center;
}

.fv-copy-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.fv-copy {
  position: absolute;
  left: 50px;
  bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fv-copy-line {
  display: inline-block;
  width: fit-content;
  padding: 10px 16px 12px;
  background: var(--color01);
  color: var(--txt_white);
  font-family: var(--font_base);
  font-weight: var(--fw-bold);
  font-size: clamp(2rem, 1.309rem + 2.35vw, 4rem);
  line-height: 1.2;
  letter-spacing: 0.06em;
}

/* =========================
  FV Responsive
========================= */
@media screen and (max-width: 992px) {
  .fv {
    min-height: 620px;
  }

  .fv-copy {
    left: 24px;
    bottom: 28px;
  }
}

@media screen and (max-width: 830px) {
  .fv {
    height: 100svh;
    min-height: 560px;
    padding-top: var(--header-height);
  }

  .fv-slide img {
    object-position: center center;
  }

  .fv-copy {
    left: 5%;
    bottom: 5%;
    gap: 10px;
  }

  .fv-copy-line {
    padding: 8px 12px 10px;
    font-size: clamp(1.75rem, 1.44rem + 1.32vw, 2.5rem);
    line-height: 1.15;
    letter-spacing: 0.05em;
  }
}

@media screen and (max-width: 480px) {
  .fv {
    min-height: 520px;
  }

  .fv-copy {
    left: 5%;
    bottom: 18px;
  }

  .fv-copy-line {
    padding: 8px 10px 9px;
    font-size: clamp(1.625rem, 1.47rem + 0.66vw, 2rem);
  }
}

/* =========================
  intro
========================= */

.intro {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 900px;
  display: flex;
  align-items: center;
  color: var(--txt_white);
  overflow: hidden;
}

/* 背景 */
.intro-bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/intro_bg.webp");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* 黒マスク60% */
.intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

/* コンテンツ */
.intro-inner {
  position: relative;
  z-index: 3;
  width: var(--max-width);
  margin: 0 auto;
}

/* タイトル */
.intro-ttl {
  margin-bottom: 30px;
  font-family: var(--font_base);
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: 1px;
}

/* 本文 */
.intro-text p {
  margin-bottom: 28px;
  font-family: var(--font_base);
  font-weight: var(--fw-regular);
  line-height: 2;
  letter-spacing: 0.06em;
  opacity: 0.95;
}

/* =========================
  intro responsive
========================= */

@media screen and (max-width: 992px) {
  .intro {
    min-height: 800px;
  }

  .intro-inner {
    margin-left: 60px;
    max-width: 520px;
  }
}

@media screen and (max-width: 830px) {
  .intro {
    height: auto;
    min-height: auto;
    align-items: stretch;
    overflow: hidden;
    padding: 60px 0;
  }

  .intro-bg {
    position: absolute;
    inset: 0;
    background-image: url("../img/intro_bg.webp");
    background-size: cover;
    background-position: center;
    z-index: 1;
  }

  .intro-inner {
    position: relative;
    z-index: 3;
    width: calc(100% - 10%);
    margin: 0 auto;
    max-width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .intro-inner::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }

  .intro-ttl {
    font-size: clamp(1.8rem, 1.44rem + 1.32vw, 2.4rem);
    margin-bottom: 24px;
  }

  .intro-text p {
    margin-bottom: 24px;
    line-height: 1.9;
  }
}

/* =========================
  company
========================= */
.company {
  background: var(--color03);
  overflow: hidden;
  padding-top: var(--space-base);
}

.company-top {
  display: grid;
  grid-template-columns: 400px 1fr;
  align-items: start;
  gap: clamp(40px, 6vw, 90px);
}

.company-en {
  color: var(--color01);
  margin-bottom: 10px;
  line-height: 1;
}

.company-sub {
  color: var(--color01);
  font-family: var(--font_base);
  font-weight: var(--fw-medium);
  line-height: 1;
  margin-bottom: 31px;
}

.company-ttl {
  color: #2f2f2f;
  font-family: var(--font_base);
  line-height: 1.7;
  letter-spacing: 0px;
  margin-bottom: 30px;
  font-weight: var(--fw-regular);
}

.company-text p {
  color: #2f2f2f;
  font-family: var(--font_base);
  line-height: 2;
  letter-spacing: 0.04em;
}

.company-text p + p {
  margin-top: 28px;
}

.company-main-image {
  width: calc(50vw + 180px);
  max-width: none;
  margin-right: calc(50% - 50vw);
}

.company-main-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* PC下部4枚 */
/* =========================
  work image box
========================= */
.work-imgbox {
  width: 100%;
}

/* =========================
  PC下部4枚
========================= */
.company-gallery {
  position: relative;
  margin-top: var(--space-base);
  width: 100%;
  aspect-ratio: 19/5;
}
.company-gallery-item {
  position: absolute;
}

.company-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-gallery-item01 {
  left: 1.8%;
  top: 0;
  width: 25.5%;
  z-index: 1;
}

.company-gallery-item02 {
  left: 28.8%;
  top: 36%;
  width: 20.5%;
  z-index: 2;
}

.company-gallery-item03 {
  left: 51.2%;
  top: 8%;
  width: 30.8%;
  z-index: 3;
}

.company-gallery-item04 {
  right: 2.2%;
  top: 30%;
  width: 20.5%;
  z-index: 1;
}

/* =========================
  SP / tablet
========================= */
.company-gallery-sp {
  position: relative;
  margin-top: 28px;
  width: 100%;
  aspect-ratio: 3/2;
}

.company-gallery-sp-item {
  position: absolute;
}

.company-gallery-sp-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-gallery-sp-item01 {
  left: 5%;
  top: 0;
  width: 50%;
  z-index: 1;
}

.company-gallery-sp-item02 {
  right: 5%;
  top: 16%;
  width: 37%;
  z-index: 2;
}

.company-gallery-sp-item03 {
  right: 7%;
  bottom: 0%;
  width: 58%;
  z-index: 3;
}
@media screen and (max-width: 830px) {
  .company-top {
    display: flex;
    flex-direction: column-reverse;
    gap: 0;
  }
  .company {
    padding-top: 0;
  }
  .company .container {
    width: 100%;
  }
  .company-main-image {
    max-width: 100%;
    margin: 0;
    width: 100%;
  }
  .company-main-image img {
    aspect-ratio: 3/2;
  }

  .company-copy {
    width: calc(100% - 10%);
    margin: 30px auto;
  }

  .company-sub {
    margin-bottom: 30px;
  }

  .company-ttl {
    margin-bottom: 30px;
    line-height: 1.5;
  }

  .company-text p {
    line-height: 1.9;
  }

  .company-text p + p {
    margin-top: 25px;
  }
}
/* =========================
  ワークスタイル部分
========================= */
.work-style {
  background: var(--color03);
  padding-top: var(--space-base);
}

.work-style-inner {
  max-width: 1040px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 60px;
}
.section-head-line {
  display: block;
  width: min(18vw, 170px);
  height: 1px;
  background: rgba(30, 77, 67, 0.45);
}

.section-head-ttl {
  color: var(--color01);
  font-family: var(--font_base);
  font-weight: var(--fw-bold);
  line-height: 1.4;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.work-style-head-second {
  margin-top: 72px;
}

.work-style-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* accordion */
.accordion-item {
  background: transparent;
}

.accordion-trigger {
  width: 100%;
  min-height: 56px;
  border: none;
  background: transparent;
  color: var(--color01);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  font-family: var(--font_base);
  cursor: pointer;
  border: 2px solid rgba(30, 77, 67, 0.35);
}
.accordion-trigger span {
}
.accordion-trigger span:first-child {
  text-align: center;
  width: 100%;
  font-weight: var(--fw-medium);
}
.accordion-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.accordion-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.accordion-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color01);
  border-bottom: 2px solid var(--color01);
  transform: translate(-50%, -50%) rotate(45deg); /* ▼ */
  transition: transform 0.3s ease;
}

.accordion-item.is-open .accordion-icon::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.accordion-item.is-open .accordion-content {
  grid-template-rows: 1fr;
}

.accordion-body {
  overflow: hidden;
  padding: 0 18px;
}

.accordion-item.is-open .accordion-body {
  padding: 35px 0;
}

.accordion-body p,
.accordion-body li {
  font-family: var(--font_base);
  font-weight: var(--fw-regular);
  line-height: 2;
  letter-spacing: 0.03em;
}

.accordion-body p + p {
  margin-top: 20px;
}

/* schedule */
.schedule-lead {
  margin-bottom: 22px;
}

.schedule-area {
  text-align: center;
  margin-bottom: 8px;
}

.schedule-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--color02);
  color: var(--txt_white);
  font-family: var(--font_base);
  font-weight: var(--fw-regular);
  line-height: 1;
}

.schedule-area-text {
  text-align: center;
  margin-bottom: 24px;
}

.schedule-timeline {
  position: relative;
  margin-top: 10px;
}

.schedule-timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(30, 77, 67, 0.5);
}

.schedule-row {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: start;
  padding-bottom: 18px;
}
.schedule-row:last-child {
  padding-bottom: 0;
}
.schedule-time {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color01);
  color: var(--txt_white);
  display: grid;
  place-items: center;
  font-family: var(--font_sub01);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}

.schedule-detail h3 {
  color: var(--color01);
  font-family: var(--font_base);
  font-weight: var(--fw-medium);
  line-height: 1.8;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--color01);
}
.schedule-detail .border-none {
  border: none;
}
.schedule-row.center {
  align-items: center;
}
.schedule-detail p {
  margin-top: 0;
  line-height: 1.9;
  font-size: 12.8px;
}

.schedule-note {
  margin-top: 8px;
  font-size: 10.24px;
  text-align: right;
  font-weight: var(--fw-base) !important;
}

/* salary */
.salary-note {
  font-size: 12.8px;
}

.salary-block {
  margin-top: 20px;
}

.salary-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--color01);
  color: var(--txt_white);
  font-family: var(--font_base);
  font-weight: var(--fw-regular);
  line-height: 1;
  margin-bottom: 10px;
}

/* benefit */
.benefit-list {
  margin-top: 14px;
  padding-left: 0;
}

.benefit-list li {
  position: relative;
  padding-left: 1em;
  list-style: none;
  color: var(--color01);
}

.benefit-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color01);
}

/* responsive */
@media screen and (max-width: 830px) {
  .work-style {
    padding-top: 50px;
  }
  .section-head {
    justify-content: space-between;
  }

  .work-style-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section-head {
    gap: 12px;
    margin-bottom: 20px;
  }

  .section-head-line {
    width: min(20vw, 90px);
  }

  .work-style-head-second {
    margin-top: 40px;
  }

  .accordion-trigger {
    min-height: 52px;
    padding: 13px 14px;
  }

  .accordion-body {
    padding: 0 14px;
  }

  .accordion-item.is-open .accordion-body {
    padding: 20px 0;
  }

  .schedule-row {
    grid-template-columns: 60px 1fr;
    gap: 14px;
  }

  .schedule-timeline::before {
    left: 22px;
  }

  .schedule-time {
    width: 44px;
    height: 44px;
  }

  .schedule-detail h3 {
    line-height: 1.7;
  }
}

/* =========================
  company-profile
========================= */
.company-profile {
  background: var(--color03);
  padding-top: var(--space-base);
}

.company-profile-inner {
  width: var(--max-width);
  max-width: var(--max-width);
}

.company-profile-box {
  width: 100%;
  margin: 0 auto;
  background: var(--color01);
  color: var(--txt_white);
  border-radius: 4px;
  padding: 60px;
}

.company-profile-ttl {
  color: var(--txt_white);
  font-family: var(--font_base);
  font-weight: var(--fw-regular);
  line-height: 1.4;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  width: var(--sub-width);
  margin: 0 auto;
  padding-bottom: 30px;
}
.company-profile-list {
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  width: var(--sub-width);
  margin: 0 auto;
  width: 100%;
}

.company-profile-row {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.company-profile-row dt,
.company-profile-row dd {
  color: var(--txt_white);
  font-family: var(--font_base);
  font-weight: var(--fw-base);
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.company-profile-row dt {
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
}

.company-profile-row dd {
  margin: 0;
}

/* responsive */
@media screen and (max-width: 830px) {
  .company-profile {
    padding-top: 50px;
  }

  .company-profile-inner.container {
    width: min(94%, var(--max-width));
  }

  .company-profile-box {
    width: 100%;
    padding: 18px 16px 24px;
  }

  .company-profile-ttl {
    margin-bottom: 10px;
    padding: 10px 5px;
    width: 100%;
  }

  .company-profile-row {
    grid-template-columns: 190px 1fr;
    gap: 12px;
    padding: 14px 0;
  }

  .company-profile-row dt,
  .company-profile-row dd {
    line-height: 1.8;
    font-size: 12.8px;
  }
}

@media screen and (max-width: 480px) {
  .company-profile-row {
    grid-template-columns: 130px 1fr;
    gap: 10px;
  }
  .company-profile-ttl {
    width: 100%;
  }
  .company-profile-list {
    width: auto;
  }
}
/* =========================
  access
========================= */
.access-map {
  padding-top: 50px;
}
.access-map-inner {
}
.access-map-ttl {
  color: var(--color01);
  font-family: var(--font_base);
  font-weight: var(--fw-regular);
  line-height: 1.4;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  margin: 0 auto;
  padding-bottom: 30px;
}
.accent-imgbox {
  padding-top: var(--space-base);
}
.accent-gallery {
}
.accent-gallery-item img {
  height: 450px;
}
.access-map-box iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  display: block;
}
@media screen and (max-width: 480px) {
  .access-map-ttl {
    padding-bottom: 15px;
  }
  .accent-gallery-item img {
    height: 200px;
  }
}
/* =========================
  interview
========================= */
.interview {
  background: var(--color03);
  padding-top: var(--space-base);
}

.interview-head {
  margin: 0 auto;
}

.interview-en {
  color: var(--color01);
  margin-bottom: 10px;
  line-height: 1;
}

.interview-sub {
  color: var(--color01);
  font-family: var(--font_base);
  font-weight: var(--fw-medium);
  line-height: 1;
  margin-bottom: 28px;
}

.interview-ttl {
  color: #2b2b2b;
  font-family: var(--font_base);
  font-weight: var(--fw-regular);
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.interview-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin: 34px auto 0;
}
.interview-cards .interview-card {
  position: relative;
}
.interview-card img {
  display: block;
  width: 100%;
  aspect-ratio: 47/25;
  object-fit: cover;
}

.interview-card-caption {
  min-height: 42px;
  display: flex;
  text-align: center;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  color: var(--txt_white);
  font-family: var(--font_base);
  font-weight: var(--fw-bold);
  position: absolute;
  bottom: 0px;
  padding-bottom: 8px;
  width: 100%;
}
.interview-card-caption-green {
  background: var(--color01);
}

.interview-card-caption-orange {
  background: var(--color02);
}

.interview-role {
  font-size: clamp(0.8rem, 0.714rem + 0.33vw, 1rem);
}

.interview-name {
  line-height: 1;
  font-size: clamp(0.8rem, 0.473rem + 1.24vw, 1.563rem);
}

.interview-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.interview-toggle {
  min-width: 160px;
  min-height: 38px;
  padding: 0 20px;
  border: 1px solid var(--color01);
  border-radius: 999px;
  background: transparent;
  color: var(--color01);
  font-family: var(--font_base);
  font-weight: var(--fw-medium);
  cursor: pointer;
  transition: all 0.3s ease;
}

.interview-toggle:hover {
  background: var(--color01);
  color: var(--txt_white);
}

.interview-accordion {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
  margin-top: 28px;
}

.interview.is-open .interview-accordion {
  grid-template-rows: 1fr;
}

/* =========================
  interview talk layout
========================= */
.interview-accordion-inner {
  overflow: hidden;
}

.interview-talk-list {
  margin-top: 12px;
  width: var(--sub-width);
  margin: 0 auto;
}
.interview-talk-row:nth-child(odd) {
  border-bottom: 1px solid var(--color01);
}
.interview-talk-row:nth-child(even) {
  border-bottom: 1px solid var(--color02);
}
.interview-talk-row:nth-child(4) {
  border-bottom: none;
}
.interview-talk-list-second .interview-talk-row:nth-child(2) {
  border-bottom: none;
}
.interview-talk-row {
  padding: 60px 0 10px;
}

.interview-question {
  color: #2b2b2b;
  font-family: var(--font_base);
  font-weight: var(--fw-regular);
  line-height: 1.9;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}

.interview-answer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.interview-answer-col {
  padding: 0 0 22px;
}

.interview-answer-name {
  font-family: var(--font_base);
  font-weight: var(--fw-regular);
  line-height: 1.7;
  margin-bottom: 6px;
}

.interview-answer-name-green {
  color: var(--color01);
}

.interview-answer-name-orange {
  color: var(--color02);
}

.interview-answer {
  color: #2b2b2b;
  font-family: var(--font_base);
  font-weight: var(--fw-base);
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.interview-bottom-image {
  margin: 25px 0;
}

.interview-bottom-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* responsive */
@media screen and (max-width: 830px) {
  .interview {
    padding-bottom: 0px;
  }

  .interview-hero {
    margin-bottom: 34px;
  }

  .interview-hero img {
    height: 150px;
  }

  .interview-head {
    max-width: 100%;
  }

  .interview-sub {
    margin-bottom: 18px;
  }

  .interview-ttl {
    line-height: 1.8;
  }

  .interview-cards {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 24px;
  }

  .interview-card img {
    aspect-ratio: 1;
  }

  .interview-card-caption {
    min-height: 25px;
    gap: 8px;
    padding: 0 8px;
  }
  .interview-card-caption {
    min-height: 30px;
    align-items: center;
  }

  .interview-role {
  }

  .interview-name {
  }

  .interview-toggle-wrap {
    margin-top: 22px;
  }

  .interview-qa-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 10px;
  }

  .interview-qa-block {
    padding: 14px 0 16px;
  }

  .interview-question {
    line-height: 1.75;
    margin-bottom: 10px;
  }

  .interview-answer {
    line-height: 1.85;
  }

  .interview-bottom-image {
    margin-top: 18px;
  }
  .interview-talk-list {
    margin-top: 10px;
    width: 100%;
  }

  .interview-talk-row {
    padding: 16px 0 0;
  }

  .interview-question {
    line-height: 1.75;
    margin-bottom: 12px;
  }

  .interview-answer-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .interview-answer-col {
    padding: 0 0 16px;
  }

  .interview-answer {
    line-height: 1.85;
  }

  .interview-bottom-image {
    margin-top: 18px;
  }
}
@media screen and (max-width: 600px) {
  .interview-qa-grid {
    gap: 12px;
  }
  .interview-accordion {
    margin-top: 0px;
  }
  .interview-answer {
    line-height: 1.6;
    font-size: 14px;
  }
}

/* =========================
  works
========================= */
.works {
  background: var(--color03);
  padding-top: var(--space-base);
  padding-bottom: var(--space-base);
}

.works-inner {
}

.works-head {
  margin: 0 auto 26px;
}

.works-en {
  color: var(--color01);
  margin-bottom: 10px;
  line-height: 1;
}

.works-sub {
  color: var(--color01);
  font-family: var(--font_base);
  font-weight: var(--fw-medium);
  line-height: 1;
}

.works-list {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.works-item {
  position: relative;
  width: 100%;
  min-height: 176px;
  border: none;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  background: transparent;
  background-size: cover;
  aspect-ratio: 10/3;
}
.works-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--works-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.45s ease;
}

.works-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: background 0.3s ease;
}

.works-item:hover::before {
  transform: scale(1.04);
}

.works-item:hover::after {
  background: rgba(0, 0, 0, 0.42);
}

.works-item + .works-item {
  margin-top: 1px;
}

.works-item-label {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: var(--txt_white);
  font-family: var(--font_base);
  font-weight: var(--fw-regular);
  line-height: 1.4;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* =========================
  works modal
========================= */
.works-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.works-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.works-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.works-modal-dialog {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, var(--max-width));
  max-height: 90vh;
  background: var(--color03);
  overflow-y: auto;
  padding: 34px 34px 30px;
  border-radius: 12px;
}

.works-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}

.works-modal-close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 2px;
  background: var(--color01);
}

.works-modal-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.works-modal-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.works-modal-image {
  width: var(--sub-width);
  margin: 0 auto 20px;
}

.works-modal-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.works-modal-body {
  color: #222;
  width: var(--sub-width);
  margin: 0 auto;
}

.works-modal-title {
  color: var(--color01);
  font-family: var(--font_base);
  font-weight: var(--fw-regular);
  line-height: 1.7;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  font-size: 20px;
}

.works-modal-text,
.works-modal-note {
  font-family: var(--font_base);
  font-weight: var(--fw-base);
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.works-modal-note {
  margin-top: 18px;
}

body.modal-open {
  overflow: hidden;
}

/* responsive */
@media screen and (max-width: 830px) {
  .works {
    padding: var(--space-base) 0 var(--space-base);
  }

  .works-head {
    margin-bottom: 18px;
  }

  .works-list {
    max-width: 100%;
  }

  .works-item {
    min-height: 120px;
  }

  .works-item-label {
  }

  .works-modal-dialog {
    width: calc(100% - 10%);
    padding: 50px 28px;
  }

  .works-modal-close {
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
  }

  .works-modal-close span {
    width: 20px;
  }

  .works-modal-image {
    margin-bottom: 14px;
    width: 100%;
  }

  .works-modal-title {
    margin-bottom: 8px;
  }

  .works-modal-note {
    margin-top: 14px;
  }
  .works-modal-body {
    width: 100%;
  }
}

/* =========================
  product
========================= */
.product {
  background: var(--color01);
  padding: clamp(80px, 8vw, 120px) 0;
  overflow: hidden;
}

.product-inner {
  max-width: var(--full-width);
}

.product-head {
  margin: 0px auto 25px;
  color: var(--txt_white);
}

.product-en {
  color: var(--txt_white);
  margin-bottom: 10px;
  line-height: 1;
}

.product-sub {
  color: var(--txt_white);
  font-family: var(--font_base);
  font-weight: var(--fw-medium);
  line-height: 1;
  margin-bottom: 30px;
}

.product-lead {
  color: var(--txt_white);
  font-family: var(--font_base);
  font-weight: var(--fw-base);
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.product-slider-wrap {
  position: relative;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
}

.product-swiper {
  overflow: visible;
}

.product-slider-wrap {
  position: relative;
  overflow: hidden;
}

/* グラデーションレイヤー */
.product-slider-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(30, 77, 67, 1) 0%,
    rgba(30, 77, 67, 0.3) 5%,
    rgba(30, 77, 67, 0.1) 10%,
    rgba(30, 77, 67, 0) 40%,
    rgba(30, 77, 67, 0) 60%,
    rgba(30, 77, 67, 0.1) 90%,
    rgba(30, 77, 67, 0.3) 95%,
    rgba(30, 77, 67, 1) 100%
  );
}

.product-swiper .swiper-slide {
  width: min(100%, 700px);
  opacity: 0.4;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  pointer-events: none;
}

.product-swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
  pointer-events: auto;
}

.product-swiper .swiper-slide.swiper-slide-prev,
.product-swiper .swiper-slide.swiper-slide-next {
  opacity: 0.65;
  pointer-events: auto;
}

.product-card {
  position: relative;
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.product-card-media {
  position: relative;
  overflow: visible;
}

.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.product-card-info {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
  color: var(--txt_white);
}
.product-card-date {
  font-family: var(--font_base);
  font-weight: var(--fw-regular);
  line-height: 1.6;
  margin-bottom: 0px;
  font-size: clamp(0.8rem, 0.714rem + 0.33vw, 1rem);
}
.product-card-title {
  font-family: var(--font_base);
  font-weight: var(--fw-regular);
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-size: clamp(1rem, 0.893rem + 0.41vw, 1.25rem);
}
.product-card-tags {
  position: absolute;
  left: 0px;
  bottom: -60px;
  z-index: 1;
  display: flex;
  gap: 8px;
}
.product-modal-header .product-tag {
  font-size: 12.8px;
}
.product-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--color02);
  color: var(--txt_white);
  font-family: var(--font_base);
  font-weight: var(--fw-base);
  line-height: 1;
  white-space: nowrap;
  font-size: 16px;
}

.product-pagination {
  position: static;
  margin-top: 50px;
  text-align: center;
}

.product-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 5px !important;
  background: rgba(255, 255, 255, 0.65);
  opacity: 1;
}

.product-pagination .swiper-pagination-bullet-active {
  background: var(--color02);
}

.product-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 14px;
}

.product-nav-btn {
  position: relative;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: rgba(244, 242, 236, 0.95);
  cursor: pointer;
  padding: 0;
}

/* 画像グラデーション */
.product-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.4) 25%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.product-card-info {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  color: var(--txt_white);
}

/* 共通線 */
.product-nav-btn span {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 1.5px;
  background: var(--color01);
  transform-origin: center;
}

/* ← 前へ */
.product-prev span:first-child {
  top: 17px;
  left: 9px;
  transform: translateY(-50%) rotate(45deg);
}

.product-prev span:last-child {
  top: 11px;
  left: 8px;
  transform: translateY(-50%) rotate(-45deg);
}
/* → 次へ */
.product-next span:first-child {
  top: 17px;
  right: 9px;
  transform: translateY(-50%) rotate(-45deg);
}

.product-next span:last-child {
  top: 11px;
  right: 8px;
  transform: translateY(-50%) rotate(45deg);
}
/* =========================
  product modal
========================= */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.product-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.product-modal-overlay {
  position: absolute;
  inset: 0;
  background: hsl(0deg 0% 0% / 50%);
}

.product-modal-dialog {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, var(--max-width));
  height: min(90vh, 900px);
  background: #f4f2ec;
  border-radius: 12px;
  padding: 35px 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.product-modal-header {
  width: var(--sub-width);
  margin: 0 auto 10px;
  flex-shrink: 0;
}

.product-modal-gallery {
  width: var(--sub-width);
  margin: 0 auto;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.product-modal-main {
  flex: 1;
  min-height: 0;
  margin-bottom: 4px;
  overflow: hidden;
  background: transparent;
}

.product-modal-main img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-modal-thumbs {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  align-items: stretch;
}

.product-modal-thumb {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  overflow: hidden;
  opacity: 0.7;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.product-modal-thumb.is-active {
  opacity: 1;
}

.product-modal-thumb:hover {
  opacity: 1;
}

.product-modal-thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 17 / 12;
  object-fit: cover;
}

.product-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 2;
  appearance: none;
  -webkit-appearance: none;
}

.product-modal-close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 2px;
  background: var(--color01);
}

.product-modal-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.product-modal-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.product-modal-date {
  color: var(--color01);
  font-family: var(--font_base);
  font-weight: var(--fw-regular);
  line-height: 1.6;
  margin-bottom: 2px;
  font-size: clamp(0.8rem, 0.714rem + 0.33vw, 1rem);
  display: inline;
}

.product-modal-title {
  color: var(--color01);
  font-family: var(--font_base);
  font-weight: var(--fw-regular);
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  font-size: clamp(1rem, 0.893rem + 0.41vw, 1.25rem);
}

.product-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.product-modal-desc {
  color: #222;
  font-family: var(--font_base);
  font-weight: var(--fw-medium);
  line-height: 1.9;
  letter-spacing: 0.03em;
}

/* =========================
  responsive
========================= */
@media screen and (max-width: 1024px) {
  .product-modal-dialog {
    width: min(94vw, var(--max-width));
    height: min(92vh, 900px);
    padding: 28px 0;
  }

  .product-modal-header,
  .product-modal-gallery {
    width: min(88%, var(--sub-width));
  }
}

@media screen and (max-width: 767px) {
  .product-modal-dialog {
    width: 94vw;
    height: 92vh;
    padding: 22px 0 18px;
    border-radius: 10px;
  }

  .product-modal-header,
  .product-modal-gallery {
    width: 90%;
  }

  .product-modal-header {
    margin: 0 auto 8px;
  }

  .product-modal-title {
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .product-modal-tags {
    gap: 6px;
    margin-bottom: 8px;
  }

  .product-modal-main {
    margin-bottom: 4px;
  }

  .product-modal-thumbs {
    gap: 3px;
  }

  .product-modal-close {
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
  }

  .product-modal-close span {
    width: 20px;
  }
  .product-modal-dialog {
    width: calc(100% - 10%);
    padding: 50px 28px;
  }

  .product-modal-close {
    top: 10px;
    right: 10px;
  }

  .product-modal-close span {
    width: 20px;
  }

  .product-modal-thumbs {
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
  }
  .product-modal-gallery {
    width: 100%;
    margin: 0 auto;
  }
  .product-modal-header {
    width: 100%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 830px) {
  .product {
    padding: var(--space-base) 0 var(--space-base);
  }

  .product-inner {
    max-width: min(90%, var(--max-width));
  }

  .product-head {
    margin-bottom: 20px;
  }

  .product-lead {
    line-height: 1.8;
  }

  .product-slider-wrap {
    width: 100%;
    max-width: 100%;
    padding-top: 8px;
  }

  .product-slider-wrap::before {
    display: none;
  }

  .product-swiper {
    overflow: hidden;
  }

  .product-swiper .swiper-wrapper {
    align-items: stretch;
  }

  .product-swiper .swiper-slide {
    width: 100% !important;
    height: auto !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
  }

  .product-swiper .swiper-slide.swiper-slide-prev,
  .product-swiper .swiper-slide.swiper-slide-next,
  .product-swiper .swiper-slide.swiper-slide-active {
    opacity: 1;
    transform: none;
  }

  .product-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    padding-bottom: 35px;
  }

  .product-card,
  .product-card-sp {
    width: 100%;
  }

  .product-card img,
  .product-card-sp img {
    aspect-ratio: 16 / 8.5;
  }

  .product-card-info,
  .product-card-sp .product-card-info {
    left: 12px;
    right: 12px;
    bottom: -27px;
  }

  .product-card-date {
    margin-bottom: 2px;
  }

  .product-card-title,
  .product-card-sp .product-card-title {
    margin-bottom: 8px;
    line-height: 1.45;
  }

  .product-card-media::before,
  .product-card-sp .product-card-media::before {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.32) 100%
    ) !important;
  }

  .product-card-tags {
    position: static;
    margin-top: 8px;
    gap: 6px;
  }

  .product-card-sp .product-card-tags {
    gap: 6px;
    position: relative;
    top: 8px;
  }

  .product-tag {
    min-height: 26px;
    padding: 0 10px;
    font-size: 0.75rem;
  }

  .product-pagination {
    display: none;
  }

  .product-nav {
    margin-top: 18px;
  }
}
/* =========================
  information
========================= */
.information {
  background: var(--color03);
  padding: clamp(70px, 7vw, 120px) 0;
}

.information-inner {
  max-width: 1040px;
}

.information-head {
  margin-bottom: 34px;
}

.information-en {
  color: var(--color01);
  margin-bottom: 10px;
  line-height: 1;
}

.information-sub {
  color: var(--color01);
  font-family: var(--font_base);
  font-weight: var(--fw-medium);
  line-height: 1;
}
.information-body {
  background-color: #fff;
  border: 1px solid var(--color01);
}
.information-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  width: var(--sub-width);
  margin: 0 auto;
  padding: 60px 0;
}

.information-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.information-block {
  padding-top: 8px;
}

.information-label {
  font-family: var(--font_base);
  font-weight: var(--fw-regular);
  line-height: 1.7;
  letter-spacing: 0.04em;
  padding-bottom: 1px;
  margin-bottom: 8px;
  border-bottom: 2px solid rgb(43 43 43 / 78%);
}

.information-content,
.information-content p,
.information-content li {
  color: #2b2b2b;
  font-family: var(--font_base);
  font-weight: var(--fw-base);
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.information-content ul {
  margin: 0;
  padding: 0;
}

.information-content li {
  list-style: none;
  position: relative;
  padding-left: 1em;
}

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

.information-content p + p {
  margin-top: 2px;
}

/* responsive */
@media screen and (max-width: 830px) {
  .information {
    padding-top: var(--space-base);
  }

  .information-head {
    margin-bottom: 22px;
  }

  .information-col {
    gap: 18px;
  }

  .information-block {
    padding-top: 0;
  }

  .information-label {
    margin-bottom: 8px;
    padding-bottom: 5px;
  }

  .information-content,
  .information-content p,
  .information-content li {
    line-height: 1.8;
  }
  .information-grid {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    padding: 30px;
  }
}

/* =========================
  contact
========================= */
.contact {
  background: var(--color03);
  padding: clamp(70px, 7vw, 120px) 0 0;
}

.contact-inner {
  max-width: 760px;
}

.contact-head {
  text-align: center;
  margin-bottom: 34px;
}

.contact-head p,
.contact-head h2 {
  text-align: center;
}

.contact-en {
  color: var(--color01);
  margin-bottom: 10px;
  line-height: 1;
}

.contact-sub {
  color: var(--color01);
  font-family: var(--font_base);
  font-weight: var(--fw-regular);
  line-height: 1;
  margin-bottom: 30px;
}

.contact-lead {
  color: #222;
  font-family: var(--font_base);
  font-weight: var(--fw-base);
  line-height: 1.9;
  letter-spacing: 0.03em;
}

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

.contact-form-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: start;
  margin-bottom: 30px;
}

.contact-form-row-textarea {
  align-items: start;
}

.contact-label {
  color: var(--color01);
  font-family: var(--font_base);
  font-weight: var(--fw-regular);
  line-height: 1.8;
  padding-top: 7px;
  white-space: nowrap;
}
.required {
  color: var(--color02);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(30, 77, 67, 0.45);
  background: transparent;
  color: #222;
  font-family: var(--font_base);
  padding: 10px 12px;
  outline: none;
}

.contact-field input {
  height: auto;
}

.contact-field textarea {
  min-height: 160px;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--color01);
}

.contact-radio-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  column-gap: 32px;
  row-gap: 14px;
  padding-top: 4px;
  align-items: start;
  justify-content: start;
}

.contact-radio-list label {
  display: grid;
  grid-template-columns: 24px auto;
  align-items: center;
  column-gap: 8px;
  margin: 0;
  cursor: pointer;
  color: var(--color01);
  font-family: var(--font_base);
  font-weight: var(--fw-base);
  font-size: 16px;
  line-height: 1.4;
  white-space: nowrap;
}

.contact-radio-list input[type="radio"] {
  -webkit-appearance: radio;
  appearance: auto;
  accent-color: var(--color01);
  width: 20px;
  height: 20px;
  margin: 0;
  flex: none;
  vertical-align: middle;
  position: relative;
  top: 0;
}

.contact-radio-list span {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1.4;
  white-space: nowrap;
  font-weight: var(--fw-base);
}

@media screen and (max-width: 830px) {
  .contact-radio-list {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 12px;
  }

  .contact-radio-list label {
    grid-template-columns: 22px auto;
    column-gap: 8px;
    font-size: 15px;
    line-height: 1.4;
    white-space: normal;
  }

  .contact-radio-list input[type="radio"] {
    width: 18px;
    height: 18px;
  }

  .contact-radio-list span {
    white-space: normal;
  }
}
.contact-turnstile {
  margin: 26px 0 18px;
  display: flex;
  justify-content: center;
}

.contact-policy-check {
  margin-top: 8px;
  text-align: center;
}

.contact-policy-check label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #222;
  font-family: var(--font_base);
  font-weight: var(--fw-regular);
  line-height: 1.8;
  text-align: left;
}

.contact-policy-check input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--color01);
}

.contact-policy-check a {
  color: var(--color02);
  font-weight: var(--fw-regular);
}

.contact-submit-wrap {
  display: flex;
  justify-content: center;
  margin-top: 18px;
  padding-bottom: 60px;
}

.contact-submit {
  min-width: 114px;
  min-height: 48px;
  padding: 0 24px;
  border: none;
  background: var(--color01);
  color: var(--txt_white);
  font-family: var(--font_base);
  font-weight: var(--fw-regular);
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.contact-submit:hover {
  opacity: 0.9;
}

.contact-tel-box {
  margin-top: 0;
  background: var(--color01);
  color: var(--txt_white);
  text-align: center;
  padding: 32px 20px 28px;
  margin-bottom: 60px;
}

.contact-tel-box * {
  text-align: center;
}

.contact-tel-icon {
  line-height: 1;
  margin-bottom: 12px;
}
.contact-tel-icon img {
  height: clamp(1.563rem, 1.161rem + 1.53vw, 2.5rem);
  width: auto;
}
.contact-tel-lead {
  font-family: var(--font_base);
  font-weight: var(--fw-regular);
  line-height: 1.8;
  margin-bottom: 6px;
  font-size: clamp(1rem, 0.893rem + 0.41vw, 1.25rem);
}

.contact-tel-number {
  font-size: clamp(1.953rem, 1.744rem + 0.8vw, 2.441rem);
  display: inline-block;
  color: var(--txt_white);
  font-family: var(--font_sub01);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.contact-tel-time {
  font-family: var(--font_base);
  font-weight: var(--fw-regular);
  line-height: 1.8;
}

/* =========================
  privacy modal
========================= */
.privacy-modal {
  position: fixed;
  inset: 0;
  z-index: 2200;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.privacy-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.privacy-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.privacy-modal-dialog {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 820px);
  max-height: 88vh;
  overflow-y: auto;
  background: #fff;
  padding: 26px 22px 24px;
  border-radius: 4px;
}

.privacy-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.privacy-modal-close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 2px;
  background: var(--color01);
}

.privacy-modal-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.privacy-modal-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.privacy-modal-body {
  color: #222;
}

.privacy-modal-title {
  color: var(--color01);
  font-family: var(--font_base);
  font-weight: var(--fw-bold);
  line-height: 1.6;
  margin-bottom: 18px;
  padding-right: 32px;
}

.privacy-modal-body h3 {
  color: var(--color01);
  font-family: var(--font_base);
  font-weight: var(--fw-medium);
  line-height: 1.8;
  margin: 18px 0 6px;
}

.privacy-modal-body p,
.privacy-modal-body li {
  font-family: var(--font_base);
  font-weight: var(--fw-regular);
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.privacy-modal-body ul {
  margin: 0;
  padding: 0;
}

.privacy-modal-body li {
  list-style: none;
  position: relative;
  padding-left: 1em;
}

.privacy-modal-body li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color01);
}

/* responsive */
@media screen and (max-width: 830px) {
  .contact {
    padding-top: 0;
  }

  .contact-head {
    margin-bottom: 24px;
    text-align: left;
  }

  .contact-head p,
  .contact-head h2 {
    text-align: left;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 12px;
  }

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

  .contact-field textarea {
    min-height: 140px;
  }
  .contact-turnstile {
    margin: 20px 0 14px;
    justify-content: center;
  }
  .contact-policy-check span {
    font-size: 12.8px;
  }
  .contact-submit-wrap {
    padding-bottom: 28px;
  }
  .contact-submit {
    min-width: 136px;
    min-height: 42px;
  }

  .contact-tel-box {
    padding: 28px 16px 24px;
  }

  .privacy-modal-dialog {
    width: min(94vw, 620px);
    padding: 20px 16px 18px;
  }

  .privacy-modal-title {
    margin-bottom: 14px;
  }
}

/* =========================
  thanks
========================= */
.thanks-page {
  min-height: 100vh;
  background: var(--color03);
  display: grid;
  place-items: center;
  padding: 40px 0;
}

.thanks-inner {
  max-width: 720px;
  text-align: center;
}

.thanks-inner * {
  text-align: center;
}

.thanks-ttl {
  color: var(--color01);
  font-family: var(--font_base);
  font-weight: var(--fw-medium);
  line-height: 1.6;
  margin-bottom: 18px;
}

.thanks-text {
  color: #222;
  font-family: var(--font_base);
  font-weight: var(--fw-regular);
  line-height: 1.9;
}

.thanks-text + .thanks-text {
  margin-top: 10px;
}

.thanks-btn-wrap {
  margin-top: 28px;
}

.thanks-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 48px;
  padding: 0 24px;
  background: var(--color01);
  color: var(--txt_white);
  font-family: var(--font_base);
  font-weight: var(--fw-medium);
}

/* =========================
  footer
========================= */
.site-footer {
  padding: 10px 0px 10px;
}

.site-footer-copy {
  color: #222;
  font-family: var(--font_base);
  font-weight: var(--fw-regular);
  line-height: 1.8;
  text-align: center;
  font-size: 12.8px;
}

/* =========================
  その他メディアクエリ
========================= */
/* =========================================================
  Large Desktop
  1601px〜
========================================================= */
@media screen and (min-width: 1601px) {
}

/* =========================================================
  Desktop / Large Laptop
  1401px〜1600px
========================================================= */
@media screen and (min-width: 1401px) and (max-width: 1600px) {
}

/* =========================================================
  Note PC / Small Desktop
  1201px〜1400px
========================================================= */
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  .product-modal-main img {
    aspect-ratio: 16/9;
  }
}

/* =========================================================
  Laptop / Tablet Landscape Large
  1025px〜1200px
========================================================= */
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .company-gallery {
    height: 340px;
  }
  .header-nav-list a {
    font-size: 16px;
  }
}

/* =========================================================
  Tablet Landscape
  831px〜1024px
========================================================= */
@media screen and (min-width: 831px) and (max-width: 1024px) {
  .header-nav-list a {
    font-size: 16px;
  }
  .company-gallery {
    height: 300px;
  }
}

/* =========================================================
  Tablet Portrait
  601px〜830px
========================================================= */
@media screen and (min-width: 601px) and (max-width: 830px) {
}

/* =========================================================
  Large Smartphone
  481px〜600px
========================================================= */
@media screen and (min-width: 481px) and (max-width: 600px) {
}

/* =========================================================
  Smartphone
  376px〜480px
========================================================= */
@media screen and (min-width: 376px) and (max-width: 480px) {
}

/* =========================================================
  Small Smartphone
  〜375px
========================================================= */
@media screen and (max-width: 375px) {
}
