@charset "UTF-8";
/*--------------------------------------------------------------
# Base tokens
-------------------------------------------------------------- */
:root {
  --wrap: 100%;
  --h: 64px;
  --accent: #EA5520;
  --accent-2: #000;
  --bg: #fff;
  --fg: #222;
  --muted: #6b6b6b;
  --drawer-w: min(420px, 86vw);
  --g_grid: 3.55vw;
  /* マスのサイズ */
  --g_grid_sp: 12.5vw;
  /* スマホマスのサイズ */
  --g_line: rgba(0, 0, 0, .03);
  /* 細線 */
  --g_bold: rgba(0, 0, 0, .03);
  /* 太線(5マスごと) */
  --g_bg: #fff;
  /* 背景色 */
}

:root {
  --space-s: clamp(8px, 8px + strip-unit(8px) * (100vw - 360px) / strip-unit(1560), 16px);
  --space-m: clamp(12px, 12px + strip-unit(12px) * (100vw - 360px) / strip-unit(1560), 24px);
  --space-l: clamp(16px, 16px + strip-unit(24px) * (100vw - 360px) / strip-unit(1560), 40px);
  /* フォントの基準（rem）をvw連動に。全体の“ズーム”ノブ */
  --fs-root: clamp(14px, 14px + strip-unit(4px) * (100vw - 360px) / strip-unit(1560), 18px);
}

/* rem基準を流体化：これで rem 指定の文字/余白が一緒にスケール */
html {
  font-size: var(--fs-root);
  /* ベースを少しだけfluid化（全体のremが連動して拡縮） */
  font-size: clamp(14px, 1.2vw, 18px);
  -webkit-text-size-adjust: 100%;
}

/* 全幅のビジュアルはそのまま伸びる */
.full-bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.hero-visual {
  width: 100%;
  object-fit: cover;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--fg);
  background: var(--bg);
  font-family: -apple-system, "Segoe UI", Roboto, "Noto Sans JP", sans-serif;
  line-height: 1.65;
}

main {
  overflow: hidden;
}

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

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

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.orange-c {
  color: var(--accent);
}

.orange-b {
  background: var(--accent);
}

/*--------------------------------------------------------------
# Base Layout
-------------------------------------------------------------- */
.pc-only {
  display: none;
}

.sp-only {
  display: block;
}

@media (min-width: 768px) {
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
}
.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

section {
  padding: 2vw 0;
}

.grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.text-center {
  text-align: center;
}

.absolute {
  position: absolute;
}

section .section-inner {
  max-width: 71.48vw;
  margin: auto;
}
@media (max-width: 767px) {
  section .section-inner {
    max-width: 92vw;
  }
}
section .section-inner h2 {
  font-size: 1.15vw;
  padding-left: 1.5vw;
  position: relative;
}
@media (max-width: 767px) {
  section .section-inner h2 {
    font-size: 4vw;
    padding-left: 3vw;
    margin-bottom: 1vw;
  }
}
section .section-inner h2::before {
  content: "";
  display: inline-block;
  width: 1vw;
  height: 1vw;
  background: var(--accent);
  border-radius: 100%;
  position: absolute;
  left: 0.5vw;
  transform: translate(-50%, -50%);
  top: 50%;
}
@media (max-width: 767px) {
  section .section-inner h2::before {
    width: 2vw;
    height: 2vw;
  }
}
section .section-inner .introduction p {
  font-size: 2.86vw;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 767px) {
  section .section-inner .introduction p {
    font-size: 6.8vw;
  }
}

.page-link {
  gap: 1.5vw;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .page-link {
    gap: 3vw;
  }
}
.page-link a.button {
  color: #fff;
  background: var(--accent);
  padding: 0.3vw 1.5vw;
  border-radius: 5rem;
  font-size: 1.15vw;
  letter-spacing: 0.1vw;
  display: inline-flex;
  white-space: pre-line;
  border: solid 1px var(--accent);
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .page-link a.button {
    font-size: 4vw;
    padding: 0.3vw 5vw;
  }
}
.page-link a.button .dli-arrow-right {
  margin-top: 0.9vw;
  margin-left: 0.3vw;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  position: relative;
  width: 1em;
  height: 0.1em;
  background: #fff;
  transform: rotate(-45deg);
}
@media (max-width: 767px) {
  .page-link a.button .dli-arrow-right {
    margin-top: 3vw;
    margin-left: 1vw;
  }
}
.page-link a.button .dli-arrow-right::before {
  content: "";
  width: 0.7em;
  height: 0.7em;
  border: 0.1em solid #fff;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.05em;
  box-sizing: border-box;
}
@media (hover: hover) {
  .page-link a.button:hover {
    color: var(--accent);
    background: #fff;
  }
  .page-link a.button:hover .dli-arrow-right {
    color: var(--accent);
    background: var(--accent);
  }
  .page-link a.button:hover .dli-arrow-right::before {
    content: "";
    border-top: 0.1em solid var(--accent);
    border-right: 0.1em solid var(--accent);
  }
}
@media (hover: none) {
  .page-link a.button:active {
    color: var(--accent);
    background: #fff;
  }
  .page-link a.button:active .dli-arrow-right {
    color: var(--accent);
    background: var(--accent);
  }
  .page-link a.button:active .dli-arrow-right::before {
    content: "";
    border-top: 0.1em solid var(--accent);
    border-right: 0.1em solid var(--accent);
  }
}

/*--------------------------------------------------------------
# Header
-------------------------------------------------------------- */
.site-header {
  position: fixed;
  align-items: center;
  width: 100%;
  top: 0;
  z-index: 100;
  padding-left: 20px;
  background-color: transparent;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}
.site-header.scrollUp {
  background-color: rgba(255, 255, 255, 0.5);
  /* 半透明の白 */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  /* 影を追加するとより浮き出る */
  backdrop-filter: blur(6px);
  /* 対応ブラウザでぼかし効果 */
}
.site-header .header-inner {
  height: var(--h);
  display: flex;
  align-items: center;
  gap: 16px;
  height: 80px;
}
@media (max-width: 1200px) {
  .site-header .header-inner {
    height: 60px;
  }
}
@media (max-width: 990px) {
  .site-header .header-inner {
    height: 46px;
  }
}
.site-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  width: 280px;
  transition: 0.3s all;
}
@media (max-width: 767px) {
  .site-header .logo {
    width: 50vw;
  }
}
.site-header .logo img {
  width: auto;
  height: 36px;
}
@media (max-width: 767px) {
  .site-header .logo img {
    height: 5vw;
  }
}
.site-header .logo:hover {
  background: transparent;
  opacity: 0.8;
}
.site-header .nav-area {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
@media (max-width: 1200px) {
  .site-header .nav-area {
    gap: 5px;
  }
}
@media (max-width: 990px) {
  .site-header .nav-area {
    gap: 0;
    height: 46px;
  }
}
.site-header .visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#gnav {
  display: flex;
  gap: 5px;
  align-items: center;
  flex-wrap: nowrap;
  min-width: 0;
}
@media (max-width: 1200px) {
  #gnav {
    gap: 0;
  }
}
#gnav a {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 10px;
  white-space: nowrap;
  border: 1px solid transparent;
  height: 80px;
  display: flex;
  align-items: center;
}
@media (max-width: 1200px) {
  #gnav a {
    font-size: 12px;
    padding: 8px 5px;
    height: 60px;
  }
}

a .dli-arrow-header {
  margin-left: 3px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  position: relative;
  width: 13px;
  height: 2px;
  background: #000;
  transform: rotate(-45deg);
}
a .dli-arrow-header::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 2px solid #000;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.05em;
  box-sizing: border-box;
}
a:hover {
  background: #000;
  color: #fff;
}
a:hover .dli-arrow-header {
  background: #fff;
}
a:hover .dli-arrow-header::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

/*--------------------------------------------------------------
# CTA
-------------------------------------------------------------- */
.cta {
  padding: 20px;
  background: #FAE54D;
  color: #000;
  border: 1px solid #FAE54D;
  width: 130px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1200px) {
  .cta {
    width: 100px;
    height: 60px;
  }
}
@media (max-width: 990px) {
  .cta {
    padding: 10px;
    width: 93px;
    height: 46px;
  }
}
.cta:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: #fff;
}

#nav_hbg {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid #000;
  cursor: pointer;
  background: #000;
}
#nav_hbg:hover {
  opacity: 0.9;
}
#nav_hbg .bar,
#nav_hbg .bar::before,
#nav_hbg .bar::after {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 1px;
  background: #fff;
  content: "";
  transform: translateX(-50%);
}
#nav_hbg .bar {
  top: 50%;
  transform: translate(-50%, -50%);
}
#nav_hbg .bar::before {
  top: -6px;
}
#nav_hbg .bar::after {
  top: 6px;
}

body.nav-collapsed #gnav {
  display: none;
}
body.nav-collapsed #nav_hbg {
  display: block;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: block;
  /* ← ずっとblockのまま */
  pointer-events: none;
  /* ← 初期は触れない */
  visibility: hidden;
  /* ← 初期は見えない */
}
.drawer[aria-hidden=false] {
  pointer-events: auto;
  /* 操作可 */
  visibility: visible;
  /* 見える */
}
.drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.drawer[aria-hidden=false] .drawer__overlay {
  opacity: 1;
}
.drawer__panel {
  position: absolute;
  top: 0;
  right: -100%;
  width: auto;
  height: auto;
  background: #000;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}
.drawer__head {
  display: flex;
  justify-content: flex-end;
}
.drawer__close {
  border: none;
  background: #000;
  color: #fff;
  border-radius: 10px;
  padding: 0.5em 0.8em;
  font-size: 16px;
}
.drawer__close {
  position: relative;
  width: 50px;
  /* ボタンサイズ */
  height: 50px;
  border: none;
  background: none;
  cursor: pointer;
}
.drawer__close::before, .drawer__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  /* 線の長さ */
  height: 1px;
  /* ★ 線の太さ（ここを自由にpx指定できる） */
  background-color: #fff;
  /* 線の色 */
  transform-origin: center;
}
.drawer__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.drawer__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer__body {
  padding: 10px 16px 0;
}
.drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
}
.drawer__list a {
  display: block;
  padding: 12px;
  color: #fff;
}
.drawer__list a .dli-arrow-header {
  background: #fff;
}
.drawer__list a .dli-arrow-header::before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.drawer__list a:hover {
  color: #fae54d;
}
.drawer__list a:hover .dli-arrow-header {
  background: #fae54d;
}
.drawer__list a:hover .dli-arrow-header::before {
  border-top: 2px solid #fae54d;
  border-right: 2px solid #fae54d;
}
.drawer__cta {
  margin-top: auto;
  padding: 15px 28px 35px;
  width: 100%;
  font-size: 16px;
}
.drawer__cta a.cta {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  padding: 18px 0;
  height: auto;
}
.drawer__cta a.cta:hover {
  color: #000;
  background: #fff;
}
.drawer[aria-hidden=false] .drawer__overlay {
  opacity: 1;
}
.drawer[aria-hidden=false] .drawer__panel {
  transform: none;
}

.drawer[aria-hidden=false] .drawer__panel {
  right: 0;
  /* 開いた状態 */
}

.hero {
  position: relative;
  padding: 0;
}
.hero .flow-text {
  transform: translate(-50%, -50%);
  top: 22.2vw;
  left: 52.5vw;
}
@media (max-width: 767px) {
  .hero .flow-text {
    transform: none;
    top: 19vw;
    left: 0;
  }
}
.hero .flow-text .flow-text-div {
  transition-delay: 0.2s;
  transition: 1.8s all ease 0s;
}
.hero .flow-text img {
  width: 39vw;
  margin: auto;
}
@media (max-width: 767px) {
  .hero .flow-text img {
    width: 73vw;
    margin: 0 0 0 2vw;
  }
}
.hero .imae1 {
  bottom: 0;
}
.hero .imae1 img {
  width: 26vw;
  position: absolute;
  left: 4vw;
  bottom: 0;
}
@media (max-width: 767px) {
  .hero .imae1 img {
    width: 54vw;
    left: 12vw;
  }
}
.hero .imae1 p {
  position: absolute;
  bottom: 23vw;
  left: 2vw;
  font-size: 1vw;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .hero .imae1 p {
    bottom: 75vw;
    font-size: 3vw;
  }
}
.hero .imae1 p span {
  font-size: 1.3vw;
  display: block;
  font-weight: 800;
}
@media (max-width: 767px) {
  .hero .imae1 p span {
    font-size: 4vw;
  }
}
.hero .imae2 {
  bottom: 0;
  right: 0;
}
.hero .imae2 img {
  width: 22vw;
  position: absolute;
  bottom: 0;
  right: 2vw;
}
@media (max-width: 767px) {
  .hero .imae2 img {
    width: 45vw;
    right: -2vw;
  }
}
.hero .touasu-work {
  bottom: -15px;
}
@media (max-width: 767px) {
  .hero .touasu-work {
    bottom: auto;
    top: 41vw;
  }
}
@media (max-width: 767px) {
  .hero .touasu-work picture.top img {
    width: 100%;
  }
  .hero .touasu-work picture.bottom img {
    width: 85%;
    margin: 0.5vw 4vw 0 auto;
  }
}

/*--------------------------------------------------------------
#動画エリア
-------------------------------------------------------------- */
section#movie-area {
  background-color: #F5F5F5;
}
section#movie-area .notice {
  text-align: center;
}
section#movie-area .notice p {
  font-size: 2.3vw;
  display: inline-block;
  position: relative;
  padding: 0 1vw;
  font-weight: 600;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  section#movie-area .notice p {
    font-size: 5vw;
    margin: 12vw auto 6vw;
  }
}
section#movie-area .notice p::before, section#movie-area .notice p::after {
  content: "";
  width: 2px;
  height: 50%;
  display: inline-block;
  position: absolute;
  background-color: #000;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 767px) {
  section#movie-area .notice p::before, section#movie-area .notice p::after {
    width: 1vw;
    bottom: -60px;
  }
}
section#movie-area .notice p::before {
  transform: rotate(-20deg);
  left: 0;
}
@media (max-width: 767px) {
  section#movie-area .notice p::before {
    left: -3vw;
  }
}
section#movie-area .notice p::after {
  transform: rotate(20deg);
  right: 0;
}
@media (max-width: 767px) {
  section#movie-area .notice p::after {
    right: -3vw;
  }
}

/* 覗かせる */
.slider-wrap,
.yt-gallery {
  overflow: visible;
}

.slider-wrap {
  position: relative;
}
.slider-wrap::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/about2.svg);
  background-size: 100%;
  width: 9.5vw;
  height: 18vw;
  right: 0;
  bottom: -10vw;
}
@media (max-width: 767px) {
  .slider-wrap::before {
    width: 17.5vw;
    height: 32vw;
    bottom: -16vw;
  }
}
.slider-wrap::after {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/about1.svg);
  background-size: 100%;
  width: 9.5vw;
  height: 14vw;
  left: 0;
  bottom: -15vw;
}
@media (max-width: 767px) {
  .slider-wrap::after {
    width: 14.5vw;
    height: 25vw;
    bottom: -28vw;
  }
}

.slick-list {
  overflow: visible;
}

/* variableWidth用：各スライドの実寸幅を指定（ここが重要） */
.yt-gallery .slick-slide {
  width: clamp(260px, 40vw, 40vw);
  /* 好みで調整 */
  padding: 0 12px;
  /* スライド間の隙間 */
}

/* 見た目の縮小演出：左右を小さく、中央は等倍 */
.yt-gallery .slick-slide {
  transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
  transform: scale(0.9);
  /* ← 両サイド 80〜90%で調整してOK */
  filter: saturate(0.9);
  will-change: transform;
}
@media (max-width: 767px) {
  .yt-gallery .slick-slide {
    transform: scale(0.96);
  }
}

.yt-gallery .slick-center {
  transform: scale(0.9);
  /* ← 中央は100%にする（ここ直す） */
  opacity: 1;
  filter: none;
  z-index: 2;
}
@media (max-width: 767px) {
  .yt-gallery .slick-center {
    transform: scale(0.96);
  }
}

/* カードはこれまで通りでOK */
.yt-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.yt-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.yt-card:hover img {
  transform: scale(1.06);
}

.yt-card::before,
.yt-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.yt-card::before {
  inset: 0;
  display: grid;
  place-items: center;
  width: 4vw;
  height: 4vw;
  margin: auto;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1;
}

.yt-card::after {
  left: 50%;
  top: 50%;
  transform: translate(-40%, -50%);
  border-left: 1.5vw solid #fff;
  border-top: 1.1vw solid transparent;
  border-bottom: 1.1vw solid transparent;
  z-index: 2;
}

.yt-card.is-playing::before,
.yt-card.is-playing::after {
  display: none;
}

@media (max-width: 767px) {
  /* スマホ時：1.2枚くらい見せたい */
  .yt-gallery .slick-slide {
    width: 78vw;
    /* ← 画面幅の78%くらいに設定 */
    padding: 0 6px;
  }
  .yt-card::before {
    width: 60px;
    height: 60px;
  }
  .yt-card::after {
    border-left-width: 18px;
    border-top-width: 12px;
    border-bottom-width: 12px;
  }
}
.slick-dots {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .slick-dots {
    bottom: -7vw;
  }
}
.slick-dots li {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .slick-dots li {
    width: 4vw;
    height: 4vw;
    margin: 0 1vw;
  }
}
.slick-dots li button {
  border-radius: 100%;
  border: solid 2px #000;
  width: 15px;
  height: 15px;
  background: #000;
}
@media (max-width: 767px) {
  .slick-dots li button {
    width: 4vw;
    height: 4vw;
  }
}
.slick-dots li button::before {
  content: none;
}
.slick-dots li.slick-active button {
  background: #fff;
}

/* モーダルの土台 */
.yt-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 9999;
  /* slickの上に */
}

.yt-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* 背景クリック用の当たり判定（ダイアログの外側） */
.yt-modal__backdrop {
  position: absolute;
  inset: 0;
}

/* ダイアログ本体（中央寄せ） */
.yt-modal__dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(90vw, 960px);
  background: transparent;
}

/* 16:9 プレイヤー枠 */
.yt-modal__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  /* 古いブラウザなら padding-top:56.25% ハックでもOK */
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.yt-modal__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* 閉じるボタン */
.yt-modal__close {
  position: absolute;
  right: -8px;
  top: -44px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: 0;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .yt-modal__close {
    right: 0;
    top: -44px;
  }
}
/* 背景スクロール抑止 */
body.modal-open {
  overflow: hidden;
}

/*--------------------------------------------------------------
#テキスト左から出現
-------------------------------------------------------------- */
.bg {
  position: relative;
  z-index: 1;
}
.bg .bg-wrap {
  position: relative;
  display: inline-block;
  margin-top: 5px;
}

.reveal-text {
  position: relative;
  display: inline-block;
  font-size: 3.43vw;
  font-weight: bold;
  color: transparent;
  /* ← 最初は見えない */
  overflow: hidden;
  /* 擬似要素のはみ出し防止 */
  margin: 0.2vw 0;
  padding: 0 0.5vw;
  line-height: 1.2;
  white-space: nowrap;
  /* 背景アニメ用の黒いブロック */
  /* 白文字を上に */
  /* アニメーション開始時の文字スタイル */
  /* 表示領域に入ったら発火 */
}
@media (max-width: 767px) {
  .reveal-text {
    font-size: 7vw;
    margin: 0.2vw 0 0.8vw;
  }
}
.reveal-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}
.reveal-text::after {
  content: attr(data-text);
}
.reveal-text span {
  position: relative;
  z-index: 1;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease 0.5s;
  /* 背景伸びてから遅れて表示 */
}
.reveal-text.is-inview::before {
  transform: scaleX(1);
}
.reveal-text.is-inview span {
  opacity: 1;
}

/*--------------------------------------------------------------
#防水とは？
-------------------------------------------------------------- */
section#about-waterproof {
  background-color: #F5F5F5;
  position: relative;
  padding-top: 6vw;
  padding-bottom: 10vw;
  z-index: -1;
}
@media (max-width: 767px) {
  section#about-waterproof {
    padding-top: 12vw;
    padding-bottom: 16vw;
  }
}
section#about-waterproof .merit_area {
  background: #fff;
  border-radius: 0.5vw;
  margin-top: 3vw;
  box-shadow: 0 0 2vw rgba(0, 0, 0, 0.1);
  position: relative;
}
@media (max-width: 767px) {
  section#about-waterproof .merit_area {
    border-radius: 2vw;
  }
}
section#about-waterproof .merit_area::before, section#about-waterproof .merit_area::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
section#about-waterproof .merit_area::before {
  background: url(../img/about3.svg);
  background-size: 100%;
  width: 27vw;
  height: 28vw;
  right: -8.2vw;
  top: -30.8vw;
}
@media (max-width: 767px) {
  section#about-waterproof .merit_area::before {
    width: 40vw;
    height: 42vw;
    right: -0.2vw;
    top: -44.8vw;
  }
}
section#about-waterproof .merit_area::after {
  background: url(../img/about4.svg);
  background-size: 100%;
  width: 14.5vw;
  height: 14vw;
  left: -11vw;
  bottom: -5.5vw;
}
@media (max-width: 767px) {
  section#about-waterproof .merit_area::after {
    width: 25vw;
    height: 23vw;
    left: -12vw;
    bottom: -22.5vw;
  }
}
section#about-waterproof .merit_area .merit_title,
section#about-waterproof .merit_area .merit_block {
  position: relative;
  z-index: 1;
}
section#about-waterproof .merit_area .merit_title {
  padding: 2.5vw 5vw 0;
  display: flex;
  align-items: baseline;
  gap: 1vw;
  background: #fff;
  border-radius: 0.5vw 0.5vw 0 0;
}
@media (max-width: 767px) {
  section#about-waterproof .merit_area .merit_title {
    border-radius: 3vw 3vw 0 0;
    padding: 8vw 6vw 0;
  }
}
section#about-waterproof .merit_area .merit_title img {
  width: 5.5vw;
}
@media (max-width: 767px) {
  section#about-waterproof .merit_area .merit_title img {
    width: 16vw;
  }
}
section#about-waterproof .merit_area .merit_title p {
  font-size: 1.2vw;
}
@media (max-width: 767px) {
  section#about-waterproof .merit_area .merit_title p {
    font-size: 4vw;
    margin: 0 0 0 2vw;
  }
}
section#about-waterproof .merit_area .merit_block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: center;
  background: #fff;
  border-radius: 0 0 0.5vw 0.5vw;
}
@media (max-width: 767px) {
  section#about-waterproof .merit_area .merit_block {
    border-radius: 0 0 2vw 2vw;
    flex-wrap: wrap;
  }
}
section#about-waterproof .merit_area .merit_block .merit {
  width: 25%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
@media (max-width: 767px) {
  section#about-waterproof .merit_area .merit_block .merit {
    width: 100%;
    gap: 8vw;
    margin: 0 10vw;
    padding: 4vw 0;
  }
}
section#about-waterproof .merit_area .merit_block .merit img {
  padding: 1vw;
  height: 7vw;
}
@media (max-width: 767px) {
  section#about-waterproof .merit_area .merit_block .merit img {
    height: auto;
    width: 15vw;
  }
}
section#about-waterproof .merit_area .merit_block .merit p {
  width: 100%;
  font-size: 1.2vw;
  margin-bottom: 2vw;
}
@media (max-width: 767px) {
  section#about-waterproof .merit_area .merit_block .merit p {
    margin-bottom: 4vw;
    width: 40vw;
    font-size: 4vw;
    line-height: 1.5;
    text-align: left;
  }
}
section#about-waterproof .merit_area .merit_block .merit:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 7vw;
  background: #ddd;
  display: inline-block;
  top: -1px;
  right: 0;
  position: absolute;
}
@media (max-width: 767px) {
  section#about-waterproof .merit_area .merit_block .merit:not(:last-child)::after {
    right: auto;
    width: 100%;
    height: 1px;
    top: auto;
    bottom: 0;
  }
}
section#about-waterproof .merit_area .merit_block.stagger .merit:nth-child(1) {
  transition-delay: 0s;
}
section#about-waterproof .merit_area .merit_block.stagger .merit:nth-child(2) {
  transition-delay: 0.2s;
}
section#about-waterproof .merit_area .merit_block.stagger .merit:nth-child(3) {
  transition-delay: 0.4s;
}
section#about-waterproof .merit_area .merit_block.stagger .merit:nth-child(4) {
  transition-delay: 0.6s;
}
@media (max-width: 767px) {
  section#about-waterproof .merit_area .merit_block.stagger .merit {
    transition-delay: 0s !important;
  }
}

/*--------------------------------------------------------------
#東西アスとは？
-------------------------------------------------------------- */
section#about-company {
  position: relative;
  background-image: url(../img/about-company.webp);
  background-size: 100%;
  padding: 7vw 0 17vw;
  z-index: 1;
}
@media (max-width: 767px) {
  section#about-company {
    background-image: url(../img/about-company_sp.webp);
    padding: 10vw 0 0vw;
  }
}
section#about-company .section-inner {
  position: relative;
}
section#about-company h2 {
  color: #fff;
}
section#about-company .company-messages {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
@media (max-width: 767px) {
  section#about-company .company-messages {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  section#about-company .company-messages .bg {
    margin-bottom: 5vw;
  }
}
section#about-company .about-company_box {
  position: absolute;
  display: flex;
  justify-content: space-between;
  bottom: -22vw;
  width: 100%;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  section#about-company .about-company_box {
    position: relative;
    bottom: -9vw;
    gap: 3vw;
  }
}
section#about-company .about-company_box .box {
  background: #fff;
  width: 35vw;
  border-radius: 0.5vw;
  padding: 2vw 5vw;
  box-shadow: 0 0 2vw rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  section#about-company .about-company_box .box {
    width: 92vw;
    padding: 7vw 4vw;
  }
}
section#about-company .about-company_box .box .box_title span.icon {
  margin: 0;
}
section#about-company .about-company_box .box .box_title span.icon img {
  height: 2.36vw;
}
@media (max-width: 767px) {
  section#about-company .about-company_box .box .box_title span.icon img {
    height: 7vw;
  }
}
section#about-company .about-company_box .box .box_title h3 {
  font-size: 2.5vw;
  margin: 0.5vw 0;
}
@media (max-width: 767px) {
  section#about-company .about-company_box .box .box_title h3 {
    font-size: 7vw;
    margin: 0.5vw 0;
  }
}
section#about-company .about-company_box .box .box_title p {
  font-size: 1.144vw;
}
@media (max-width: 767px) {
  section#about-company .about-company_box .box .box_title p {
    font-size: 4vw;
    margin: 0;
  }
}
section#about-company .about-company_box.stagger > div:nth-child(1) {
  transition-delay: 0s;
}
section#about-company .about-company_box.stagger > div:nth-child(2) {
  transition-delay: 0.2s;
}
@media (max-width: 767px) {
  section#about-company .about-company_box.stagger > div {
    transition-delay: 0s !important;
  }
}

/*--------------------------------------------------------------
#東西アスの強み
-------------------------------------------------------------- */
section#strengths {
  position: relative;
  padding: 10vw 0 22vw;
}
@media (max-width: 767px) {
  section#strengths {
    padding: 22vw 0 22vw;
  }
}
section#strengths.paper-graph {
  background-color: var(--g_bg);
  background-image: linear-gradient(to bottom, var(--g_bold) 1px, transparent 1px), linear-gradient(to right, var(--g_bold) 1px, transparent 1px), linear-gradient(to bottom, var(--g_line) 1px, transparent 1px), linear-gradient(to right, var(--g_line) 1px, transparent 1px);
  background-size: var(--g_grid) var(--g_grid), var(--g_grid) var(--g_grid);
}
@media (max-width: 767px) {
  section#strengths.paper-graph {
    background-size: var(--g_grid_sp) var(--g_grid_sp), var(--g_grid_sp) var(--g_grid_sp);
  }
}
section#strengths .strengths {
  display: flex;
  align-items: anchor-center;
  flex-wrap: wrap;
  margin-bottom: 2vw;
}
section#strengths .strengths h3 {
  font-size: 2.28vw;
  letter-spacing: 0.2vw;
  margin: 0.8vw 0;
  line-height: 1.5;
}
@media (max-width: 767px) {
  section#strengths .strengths h3 {
    font-size: 5.6vw;
    margin: 3vw 0;
  }
}
section#strengths .strengths h3 span {
  font-size: 1.14vw;
  display: block;
}
@media (max-width: 767px) {
  section#strengths .strengths h3 span {
    font-size: 3.8vw;
  }
}
section#strengths .strengths.box1 {
  margin-bottom: 0;
}
section#strengths .strengths.box1 .right_block {
  display: flex;
  justify-content: center;
}
section#strengths .strengths.box1 .right_block span {
  width: 33vw;
  display: flex;
  justify-content: center;
  padding-left: 2vw;
}
@media (max-width: 767px) {
  section#strengths .strengths.box1 .right_block span {
    width: 83vw;
    padding-left: 0;
    margin-top: 5vw;
  }
}
section#strengths .strengths.box2, section#strengths .strengths.box3 {
  background-color: #000;
  color: #fff;
  border-radius: 0.5vw;
}
@media (max-width: 767px) {
  section#strengths .strengths.box2, section#strengths .strengths.box3 {
    border-radius: 2vw;
  }
}
section#strengths .strengths.box2 .left_block {
  position: relative;
  padding: 3vw 5vw;
}
@media (max-width: 767px) {
  section#strengths .strengths.box2 .left_block {
    padding: 8vw 5vw 5vw;
  }
}
section#strengths .strengths.box2 .left_block span {
  width: 5.1vw;
  display: block;
}
@media (max-width: 767px) {
  section#strengths .strengths.box2 .left_block span {
    width: 15vw;
  }
}
section#strengths .strengths.box2 .left_block span img {
  width: 100%;
}
section#strengths .strengths.box2 .left_block p {
  margin: 0;
  font-size: 1.14vw;
  letter-spacing: 0.09vw;
}
@media (max-width: 767px) {
  section#strengths .strengths.box2 .left_block p {
    font-size: 3.8vw;
  }
}
section#strengths .strengths.box2 .left_block::after {
  content: "";
  width: 1px;
  height: 14vw;
  background: #fff;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 767px) {
  section#strengths .strengths.box2 .left_block::after {
    width: 77vw;
    height: 1px;
    left: 0;
    top: auto;
  }
}
section#strengths .strengths.box2 .right_block {
  padding: 3vw 5vw;
}
@media (max-width: 767px) {
  section#strengths .strengths.box2 .right_block {
    padding: 10vw 5vw;
  }
}
section#strengths .strengths.box2 .right_block .effects {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 横に2つ */
  grid-gap: 0.5vw;
  /* 隙間調整 */
  margin: 0 auto;
  /* 中央寄せ */
  text-align: center;
}
@media (max-width: 767px) {
  section#strengths .strengths.box2 .right_block .effects {
    grid-gap: 2vw;
  }
}
section#strengths .strengths.box2 .right_block .effects .effect {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: end;
}
section#strengths .strengths.box2 .right_block .effects .effect span {
  width: 6vw;
}
@media (max-width: 767px) {
  section#strengths .strengths.box2 .right_block .effects .effect span {
    width: 25vw;
  }
}
section#strengths .strengths.box2 .right_block .effects .effect span img {
  width: 100%;
}
section#strengths .strengths.box2 .right_block .effects .effect p {
  font-size: 1vw;
  margin: 0.7vw 0;
}
@media (max-width: 767px) {
  section#strengths .strengths.box2 .right_block .effects .effect p {
    font-size: 3.5vw;
    margin: 4vw 0;
  }
}
section#strengths .strengths.box2 .right_block .effects .effect.stagger:nth-child(1) {
  transition-delay: 0s;
}
section#strengths .strengths.box2 .right_block .effects .effect.stagger:nth-child(2) {
  transition-delay: 0.2s;
}
section#strengths .strengths.box2 .right_block .effects .effect.stagger:nth-child(3) {
  transition-delay: 0.4s;
}
section#strengths .strengths.box2 .right_block .effects .effect.stagger:nth-child(4) {
  transition-delay: 0.6s;
}
@media (max-width: 767px) {
  section#strengths .strengths.box2 .right_block .effects .effect.stagge {
    transition-delay: 0s !important;
  }
}
@media (max-width: 767px) {
  section#strengths .strengths.box3 .left_block {
    order: 2;
  }
}
section#strengths .strengths.box3 .right_block {
  padding: 3vw 5vw;
}
@media (max-width: 767px) {
  section#strengths .strengths.box3 .right_block {
    order: 1;
    padding: 8vw 5vw;
  }
}
section#strengths .strengths.box3 .right_block span.icon {
  width: 5.1vw;
  display: block;
}
@media (max-width: 767px) {
  section#strengths .strengths.box3 .right_block span.icon {
    width: 15vw;
  }
}
section#strengths .strengths.box3 .right_block span.icon img {
  width: 100%;
}
section#strengths .strengths.box3 .right_block p {
  margin: 0;
  font-size: 1.14vw;
  letter-spacing: 0.09vw;
  margin-bottom: 1vw;
}
@media (max-width: 767px) {
  section#strengths .strengths.box3 .right_block p {
    font-size: 3.8vw;
    margin-bottom: 3vw;
  }
}
section#strengths.stagger .strengths:nth-child(1) {
  transition-delay: 0s;
}
section#strengths.stagger .strengths:nth-child(2) {
  transition-delay: 0.2s;
}
section#strengths.stagger .strengths:nth-child(3) {
  transition-delay: 0.4s;
}
@media (max-width: 767px) {
  section#strengths.stagger .strengths {
    transition-delay: 0s !important;
  }
}
section#strengths .left_block,
section#strengths .right_block {
  width: 50%;
}
@media (max-width: 767px) {
  section#strengths .left_block,
  section#strengths .right_block {
    width: 100%;
  }
}

/*--------------------------------------------------------------
#東西アスで働こう！
-------------------------------------------------------------- */
/* 基本は何も起こさない（スマホはOKとのことなので放置） */
.anchor {
  display: block;
  /* 重要：インラインだと margin/padding が効きづらい */
  height: 0;
  /* 余計な空白を出さない */
  line-height: 0;
  /* 念のため */
  visibility: hidden;
  /* フォーカス枠が出ないようにするなら */
  pointer-events: none;
  /* クリック対象にしない（任意） */
}

/* PCだけ“手前で止める” */
@media (min-width: 768px) {
  #work2 {
    padding-top: 100px;
    /* 止めたいオフセット量 */
    margin-top: -100px;
    /* 見た目のレイアウトは変えない */
  }
}
section#work {
  position: relative;
  padding: 0;
}
section#work .work-panel {
  background: var(--accent);
  padding: 7vw 7vw 40vw;
  position: absolute;
  width: 93vw;
  top: -18vw;
  right: 0;
  border-radius: 0.5vw 0 0 0.5vw;
}
@media (max-width: 767px) {
  section#work .work-panel {
    width: 100vw;
    padding: 10vw 4vw 222vw;
    top: -10vw;
  }
}
section#work .work-panel h2 {
  color: #fff;
  z-index: 1;
}
section#work .work-panel h2::before {
  background: #fff;
}
section#work .work-panel p {
  margin: 2vw 0;
  color: #fff;
  z-index: 1;
  position: relative;
}
section#work .work-panel span.text-img {
  position: absolute;
  top: 7.5vw;
  width: 82vw;
  display: block;
  right: 0;
}
@media (max-width: 767px) {
  section#work .work-panel span.text-img {
    width: 96vw;
    margin: auto;
    left: 0;
    top: 3.5vw;
  }
}
section#work .job-box.stagger {
  z-index: 1;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
  width: 86vw;
}
@media (max-width: 767px) {
  section#work .job-box.stagger {
    gap: 4vw;
    width: 92vw;
    margin: auto;
  }
}
section#work .job-box.stagger span.wrap {
  flex: 1;
  border-radius: 0.58vw;
  overflow: hidden;
}
@media (max-width: 767px) {
  section#work .job-box.stagger span.wrap {
    flex: auto;
    border-radius: 1.5vw;
  }
}
section#work .job-box.stagger span.wrap .job {
  padding: 7.5vw 8vw 5.5vw;
}
@media (max-width: 767px) {
  section#work .job-box.stagger span.wrap .job {
    padding: 10.5vw 5vw 5.5vw;
  }
}
section#work .job-box.stagger span.wrap .job label {
  background-color: #fff;
  font-size: 2.3vw;
  padding: 0.1vw 0.2vw;
  font-weight: 600;
}
@media (max-width: 767px) {
  section#work .job-box.stagger span.wrap .job label {
    font-size: 6.3vw;
    padding: 0.2vw 0.4vw;
  }
}
section#work .job-box.stagger span.wrap .job p {
  color: #fff;
  font-size: 1.144vw;
  margin-bottom: 1.5vw;
}
@media (max-width: 767px) {
  section#work .job-box.stagger span.wrap .job p {
    font-size: 3.9vw;
    margin-bottom: 4vw;
  }
}
section#work .job-box.stagger.top {
  margin-left: calc(50% - 50vw);
  margin-bottom: 2vw;
}
@media (max-width: 767px) {
  section#work .job-box.stagger.top {
    margin: 0 auto 4vw;
    padding-top: 35vw;
  }
}
section#work .job-box.stagger.top span.wrap:nth-child(1) {
  transition-delay: 0s;
  background: url(../img/work2.webp);
  background-size: 100%;
  border-radius: 0 0.58vw 0.58vw 0;
}
@media (max-width: 767px) {
  section#work .job-box.stagger.top span.wrap:nth-child(1) {
    border-radius: 2vw;
  }
  section#work .job-box.stagger.top span.wrap:nth-child(1) .job {
    padding: 17.5vw 5vw 5.5vw;
  }
}
section#work .job-box.stagger.top span.wrap:nth-child(2) {
  transition-delay: 0.2s;
  background: url(../img/work3.webp);
  background-size: 100%;
}
@media (max-width: 767px) {
  section#work .job-box.stagger.top span.wrap {
    transition-delay: 0s !important;
  }
}
section#work .job-box.stagger.bottom {
  margin-left: calc(46% - 33vw);
}
@media (max-width: 767px) {
  section#work .job-box.stagger.bottom {
    margin: 0 auto 4vw;
  }
}
section#work .job-box.stagger.bottom span.wrap:nth-child(1) {
  transition-delay: 0s;
  background: url(../img/work4.webp);
  background-size: 100%;
}
section#work .job-box.stagger.bottom span.wrap:nth-child(2) {
  transition-delay: 0.2s;
  background: url(../img/work5.webp);
  background-size: 100%;
  border-radius: 0.58vw 0 0 0.58vw;
}
@media (max-width: 767px) {
  section#work .job-box.stagger.bottom span.wrap:nth-child(2) {
    border-radius: 2vw;
  }
  section#work .job-box.stagger.bottom span.wrap:nth-child(2) .job {
    padding: 18.5vw 5vw 5.5vw;
  }
}
@media (max-width: 767px) {
  section#work .job-box.stagger.bottom span.wrap {
    transition-delay: 0s !important;
  }
}
section#work .job-box.stagger.bottom::after {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/work6.svg);
  background-size: 100%;
  width: 9.5vw;
  height: 17vw;
  right: 0;
  bottom: -10vw;
  z-index: -1;
}
@media (max-width: 767px) {
  section#work .job-box.stagger.bottom::after {
    width: 23.5vw;
    height: 43vw;
    right: -4vw;
    bottom: -38vw;
  }
}

/*--------------------------------------------------------------
#働く現場の裏側
-------------------------------------------------------------- */
section#behind {
  position: relative;
  padding: 6vw 0;
  /* サムネ箱（16:9） */
  /* 実サムネ（JSでimgを挿入する） */
  /* 再生ボタン（黒） */
  /* hoverズーム */
  /* COMING SOON の見た目 */
  /* タイトル＆本文 */
  /* ULの素のマーカー無効化＆間隔 */
}
@media (max-width: 767px) {
  section#behind {
    padding: 6vw 0 18vw;
  }
}
section#behind .stories {
  display: flex;
  align-items: end;
}
@media (max-width: 767px) {
  section#behind .stories {
    width: 100vw;
    margin-top: 7vw;
  }
}
section#behind .stories-inner {
  background: #000;
  width: 136vw;
  position: relative;
}
@media (max-width: 767px) {
  section#behind .stories-inner {
    width: 100vw;
  }
}
section#behind .stories-inner::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/behind5.svg);
  background-size: 100%;
  width: 8.5vw;
  height: 15vw;
  left: 0vw;
  top: -4.8vw;
  z-index: 0;
}
@media (max-width: 767px) {
  section#behind .stories-inner::before {
    content: none;
  }
}
section#behind .stories-inner::after {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/behind3.svg);
  background-size: 100%;
  width: 15.5vw;
  height: 15vw;
  right: -0.3vw;
  bottom: -6vw;
  z-index: -1;
}
@media (max-width: 767px) {
  section#behind .stories-inner::after {
    width: 38vw;
    height: 37vw;
    right: -24vw;
    bottom: -18vw;
  }
}
section#behind .stories-inner .orange-line::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/behind4.svg);
  background-size: 100%;
  width: 9.5vw;
  height: 9vw;
  right: 2vw;
  bottom: -4vw;
}
@media (max-width: 767px) {
  section#behind .stories-inner .orange-line::before {
    width: 22vw;
    height: 21vw;
    right: -15vw;
    bottom: -16vw;
  }
}
section#behind span.stories-text-img {
  width: 13vw;
}
@media (max-width: 767px) {
  section#behind span.stories-text-img {
    width: 27vw;
    position: absolute;
    right: 0;
    top: 41vw;
  }
}
section#behind .yt-behind {
  padding: 5.5vw 5.5vw 5.5vw 14.4vw;
  height: 41vw;
  gap: min(2.4vw, 24px);
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  /* スライド内の余白（必要に応じて） */
  /* サムネ画像フィット */
  /* ドット位置（お好みで） */
  /* ボタン共通 */
  /* 左矢印 */
  /* 右矢印 */
}
@media (max-width: 1024px) {
  section#behind .yt-behind {
    height: 47vw;
  }
}
@media (max-width: 767px) {
  section#behind .yt-behind {
    grid-template-columns: repeat(1, 1fr);
    z-index: 1;
    position: relative;
    padding: 12vw 4vw;
    height: auto;
  }
}
section#behind .yt-behind.slick-slider .slick-list {
  overflow: hidden;
  width: 71.3vw;
}
@media (max-width: 767px) {
  section#behind .yt-behind.slick-slider .slick-list {
    overflow: visible;
    width: 100%;
  }
}
section#behind .yt-behind .behind {
  box-sizing: border-box;
  padding: 0 12px;
  max-width: 840px;
  margin: 0 auto;
}
section#behind .yt-behind .yt-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
section#behind .yt-behind.slick-slider .slick-dots {
  bottom: 0;
  width: 71.3vw;
}
@media (max-width: 767px) {
  section#behind .yt-behind.slick-slider .slick-dots {
    width: 100%;
  }
}
section#behind .yt-behind.slick-slider .slick-dots li button {
  border: solid 2px #ffffff;
}
section#behind .yt-behind .slick-prev,
section#behind .yt-behind .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 3vw;
  height: 5vw;
  background: none;
  border: none;
  cursor: pointer;
  color: transparent;
  outline: none;
  padding: 0;
  /* くの字を作る */
}
section#behind .yt-behind .slick-prev::before,
section#behind .yt-behind .slick-next::before {
  content: "";
  display: block;
  width: 3vw;
  height: 3vw;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  margin: auto;
  position: relative;
}
section#behind .yt-behind .slick-prev:hover::before,
section#behind .yt-behind .slick-next:hover::before {
  opacity: 0.8;
  border-color: #fff;
}
section#behind .yt-behind .slick-prev {
  left: 10vw;
  /* スライダーの外に出す */
}
section#behind .yt-behind .slick-prev::before {
  transform: rotate(-135deg);
  position: relative;
  top: 0;
  left: 1vw;
}
section#behind .yt-behind .slick-next {
  right: 2vw;
}
section#behind .yt-behind .slick-next::before {
  transform: rotate(45deg);
  position: relative;
  top: 0;
  right: 1vw;
}
@media (max-width: 767px) {
  section#behind .yt-behind {
    /* 左矢印 */
    /* 右矢印 */
  }
  section#behind .yt-behind .slick-prev,
  section#behind .yt-behind .slick-next {
    width: 6vw;
    height: 12vw;
    top: 42vw;
  }
  section#behind .yt-behind .slick-prev::before,
  section#behind .yt-behind .slick-next::before {
    width: 8vw;
    height: 8vw;
    border-width: 0.4vw;
  }
  section#behind .yt-behind .slick-prev {
    left: 2vw;
    /* スライダーの外に出す */
  }
  section#behind .yt-behind .slick-next::before {
    right: 4vw;
  }
}
section#behind .behind {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: min(1.2vw, 12px);
}
section#behind .behind:nth-child(1) {
  transition-delay: 0s;
}
section#behind .behind:nth-child(2) {
  transition-delay: 0.2s;
}
section#behind .behind:nth-child(3) {
  transition-delay: 0.4s;
}
section#behind .behind:nth-child(4) {
  transition-delay: 0s;
}
section#behind .behind:nth-child(5) {
  transition-delay: 0.2s;
}
section#behind .behind:nth-child(6) {
  transition-delay: 0.4s;
}
section#behind .yt-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/11;
  background: #f3f4f6;
  /* プレースホルダー背景 */
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  section#behind .yt-card {
    border-radius: 1vw;
  }
}
section#behind .yt-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
  aspect-ratio: 16/11;
}
section#behind .yt-card.has-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  /* ▶ 三角形 */
  clip-path: polygon(30% 22%, 30% 78%, 78% 50%);
  transition: transform 0.25s ease, background 0.25s ease, opacity 0.25s ease;
  opacity: 0.9;
}
section#behind .yt-card.has-thumb:hover::after {
  transform: scale(1.05);
  background: rgba(0, 0, 0, 0.8);
}
@media (max-width: 767px) {
  section#behind .yt-card.has-thumb::after {
    width: 48px;
    height: 48px;
  }
}
section#behind .behind:hover .yt-card.has-thumb img {
  transform: scale(1.06);
}
section#behind .yt-card.coming:hover img {
  transform: scale(1);
}
section#behind .yt-card.coming {
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 600;
  cursor: default;
  background: #5F5F5F;
}
@media (max-width: 767px) {
  section#behind .yt-card.coming img {
    width: 40vw !important;
  }
}
section#behind .yt-card.coming::before {
  content: none;
}
section#behind .yt-card.coming::after {
  content: none;
}
section#behind .behind .title {
  font-weight: 700;
  font-size: 1.15vw;
  margin: 0.35em 0 0.6em;
  background: #e9561f;
  display: inline-block;
  color: #fff;
  padding: 0.1vw 0.4vw;
}
@media (max-width: 767px) {
  section#behind .behind .title {
    font-size: 4vw;
    padding: 0.5vw 2vw;
    margin: 4vw 0;
  }
}
section#behind .behind .text {
  color: #fff;
  line-height: 1.8;
  font-size: 1.15vw;
}
@media (max-width: 767px) {
  section#behind .behind .text {
    line-height: 1.5;
    font-size: 3.8vw;
  }
}
section#behind .yt-behind .behind > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------
#採用情報
-------------------------------------------------------------- */
section#jobs {
  position: relative;
  padding: 1vw 0 10vw;
}
section#jobs .jobs-title {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  section#jobs .jobs-title .introduction {
    width: 100%;
    margin-bottom: 8vw;
  }
}
section#jobs .jobs-title span.jobs-text-img {
  display: block;
  width: 27vw;
}
@media (max-width: 767px) {
  section#jobs .jobs-title span.jobs-text-img {
    margin-left: 5vw;
    width: 46vw;
  }
}
section#jobs a.jobs-list {
  display: flex;
  align-items: center;
  border: solid 1px #f9e54d;
  border-radius: 1vw;
  margin-top: 1vw;
  background: #f9e54d;
  box-shadow: 0 0 2vw rgba(0, 0, 0, 0.2);
  position: relative;
  justify-content: end;
  padding: 3vw 5vw;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  section#jobs a.jobs-list {
    margin: 0;
    padding: 8vw 5vw;
    justify-content: flex-start;
    position: initial;
  }
}
section#jobs a.jobs-list > div {
  width: 32%;
  height: 100%;
  position: absolute;
  left: 0;
}
@media (max-width: 767px) {
  section#jobs a.jobs-list > div {
    left: auto;
    top: 0;
    right: 8vw;
    z-index: -1;
    width: 34vw;
  }
}
section#jobs a.jobs-list span.jobs-img {
  display: block;
  position: absolute;
  width: 15vw;
  bottom: -1px;
  left: 5vw;
}
@media (max-width: 767px) {
  section#jobs a.jobs-list span.jobs-img {
    width: 100%;
    bottom: auto;
    top: 7vw;
    left: auto;
  }
}
section#jobs a.jobs-list span.jobs-img img {
  width: 100%;
}
section#jobs a.jobs-list ul.jobs {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 68%;
}
@media (max-width: 767px) {
  section#jobs a.jobs-list ul.jobs {
    width: 100%;
  }
}
section#jobs a.jobs-list ul.jobs li.list_label {
  margin-bottom: 1.5vw;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  section#jobs a.jobs-list ul.jobs li.list_label {
    margin-bottom: 3.5vw;
  }
}
section#jobs a.jobs-list ul.jobs li.list_label p {
  display: inline-block;
  margin: 0;
  font-size: 3.58vw;
  font-weight: 800;
  background: #000;
  color: #fff;
  line-height: 1;
  padding: 0.3vw 0.5vw;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  section#jobs a.jobs-list ul.jobs li.list_label p {
    font-size: 12vw;
    padding: 1.5vw 2vw;
  }
}
section#jobs a.jobs-list ul.jobs li.list_label .dli-arrow-right2 {
  margin-left: 1.5vw;
  display: inline-block;
  vertical-align: middle;
  color: #000;
  line-height: 1;
  position: relative;
  width: 2.4vw;
  height: 0.25vw;
  background: #000;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  section#jobs a.jobs-list ul.jobs li.list_label .dli-arrow-right2 {
    margin-left: 5vw;
    width: 7.4vw;
    height: 0.8vw;
  }
}
section#jobs a.jobs-list ul.jobs li.list_label .dli-arrow-right2::before {
  content: "";
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  box-sizing: border-box;
  width: 1.6vw;
  height: 1.6vw;
  border-top: 0.25vw solid #000;
  border-right: 0.25vw solid #000;
  right: -0.1vw;
}
@media (max-width: 767px) {
  section#jobs a.jobs-list ul.jobs li.list_label .dli-arrow-right2::before {
    width: 5vw;
    height: 5vw;
    border-top: 0.8vw solid #000;
    border-right: 0.8vw solid #000;
  }
}
section#jobs a.jobs-list ul.jobs li.list_text {
  color: #000;
}
section#jobs a.jobs-list ul.jobs li.list_text p.title {
  font-size: 1.715vw;
  font-weight: 600;
  margin: 0 0 0.5vw;
}
@media (max-width: 767px) {
  section#jobs a.jobs-list ul.jobs li.list_text p.title {
    font-size: 5vw;
    line-height: 1.5;
    margin-bottom: 3vw;
  }
}
section#jobs a.jobs-list ul.jobs li.list_text p.text {
  font-size: 1.14vw;
  margin: 0;
}
@media (max-width: 767px) {
  section#jobs a.jobs-list ul.jobs li.list_text p.text {
    font-size: 3.8vw;
  }
}
section#jobs a.jobs-list:hover {
  border: solid 1px #000;
  background: #fff;
}
section#jobs a.jobs-list:hover ul.jobs li.list_label p {
  color: #f9e54d;
}
section#jobs a.jobs-list:hover ul.jobs li.list_label .dli-arrow-right2 {
  margin-left: 2.5vw;
}
@media (max-width: 767px) {
  section#jobs a.jobs-list:hover ul.jobs li.list_label .dli-arrow-right2 {
    margin-left: 8vw;
  }
}

/*--------------------------------------------------------------
#プロフィール
-------------------------------------------------------------- */
section#profile {
  position: relative;
  background-color: #EDEDED;
  padding: 5vw;
}
@media (max-width: 767px) {
  section#profile {
    padding: 10vw 5vw;
  }
}
section#profile .profile-box {
  max-width: 46.5vw;
  margin: auto;
}
@media (max-width: 767px) {
  section#profile .profile-box {
    max-width: 100%;
  }
}
section#profile .profile-box .profile-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: solid 1px;
  padding-bottom: 1vw;
}
@media (max-width: 767px) {
  section#profile .profile-box .profile-title {
    position: relative;
    padding-bottom: 5vw;
  }
}
section#profile .profile-box .profile-title > div {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  section#profile .profile-box .profile-title > div {
    align-items: flex-end;
  }
}
section#profile .profile-box .profile-title span.profile-img-icon {
  height: auto;
  width: 4.1vw;
}
@media (max-width: 767px) {
  section#profile .profile-box .profile-title span.profile-img-icon {
    width: 16vw;
  }
}
section#profile .profile-box .profile-title span.profile-text-icon {
  width: 5.9vw;
}
@media (max-width: 767px) {
  section#profile .profile-box .profile-title span.profile-text-icon {
    width: 11vw;
    position: absolute;
    left: 21vw;
    top: -1vw;
  }
}
section#profile .profile-box .profile-title p {
  margin: 0 1vw;
  font-size: 2.3vw;
  font-weight: 600;
}
@media (max-width: 767px) {
  section#profile .profile-box .profile-title p {
    font-size: 6vw;
    margin: 0 0 0 5vw;
  }
}
section#profile .profile-box .profile-title p span {
  font-size: 1.14vw;
  font-weight: normal;
}
@media (max-width: 767px) {
  section#profile .profile-box .profile-title p span {
    font-size: 3.8vw;
  }
}
section#profile .profile-box .profile-text p {
  font-size: 1.14vw;
}
@media (max-width: 767px) {
  section#profile .profile-box .profile-text p {
    font-size: 3.8vw;
    margin: 6vw 0;
  }
}
section#profile::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/profile3.svg);
  background-size: 100%;
  width: 11vw;
  height: 13vw;
  left: 0vw;
  top: -2.8vw;
  z-index: 0;
}
@media (max-width: 767px) {
  section#profile::before {
    content: none;
  }
}
section#profile::after {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/profile4.svg);
  background-size: 100%;
  width: 8vw;
  height: 15vw;
  right: 0;
  bottom: -2.8vw;
  z-index: 0;
}
@media (max-width: 767px) {
  section#profile::after {
    content: none;
  }
}

/*--------------------------------------------------------------
#総合サイト
-------------------------------------------------------------- */
footer#general {
  position: relative;
  background: url(../img/general_bk.svg);
  padding: 4vw 14vw 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 767px) {
  footer#general {
    flex-wrap: wrap;
    padding: 8vw 4vw 4vw;
  }
}
@media (max-width: 767px) {
  footer#general .logo {
    width: 100%;
  }
}
footer#general .logo .general-icon {
  margin-top: 1.65vw;
}
@media (max-width: 767px) {
  footer#general .logo .general-icon {
    margin-top: 0;
    width: 10vw;
    display: block;
  }
}
footer#general .logo .general-icon img {
  width: 100%;
}
@media (max-width: 767px) {
  footer#general .tozai-as {
    width: 100%;
    position: relative;
  }
}
footer#general .tozai-as span.general-weare {
  margin-right: 6vw;
  width: 35.72vw;
  display: block;
}
@media (max-width: 767px) {
  footer#general .tozai-as span.general-weare {
    margin-right: 0;
    width: 100%;
    display: flex;
    justify-content: end;
  }
}
footer#general .tozai-as span.general-weare img {
  width: 100%;
}
@media (max-width: 767px) {
  footer#general .tozai-as span.general-weare img {
    width: 88vw;
    margin: 0 0 0 auto;
  }
}
footer#general .tozai-as span.general-image {
  display: block;
  position: absolute;
  bottom: 0;
  right: 10vw;
  width: 16.12vw;
}
@media (max-width: 767px) {
  footer#general .tozai-as span.general-image {
    bottom: 0vw;
    right: -1vw;
    width: 36vw;
  }
}
footer#general .tozai-as span.general-image img {
  width: 100%;
}
footer#general .copyright {
  position: absolute;
  bottom: 1.5vw;
  left: 14vw;
}
@media (max-width: 767px) {
  footer#general .copyright {
    padding-top: 20vw;
    position: relative;
    width: 100%;
    left: auto;
  }
}
footer#general .copyright .page-link a.button.bk {
  margin-bottom: 1vw;
  background: #000;
  border: solid 1px #000;
}
@media (max-width: 767px) {
  footer#general .copyright .page-link a.button.bk {
    margin-bottom: 2vw;
  }
}
footer#general .copyright .general-copy {
  display: block;
  width: 17.6vw;
}
@media (max-width: 767px) {
  footer#general .copyright .general-copy {
    width: 100%;
  }
}
footer#general .copyright .general-copy img {
  width: 100%;
}

/*--------------------------------------------------------------
# 採用情報モーダル
-------------------------------------------------------------- */
/* ============ Regions Modal ============ */
body.is-modal-open {
  overflow: hidden;
}

.regions-modal {
  position: fixed;
  inset: 0;
  /* top:0; right:0; bottom:0; left:0 と同じ */
  transform: translateY(100%);
  /* 画面下に隠す */
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  /* 固定の×（上辺に張り付く） */
  /* 横スクロールのタブ/都道府県 */
  /* 縦スクロール領域（中身） */
  /* カード */
  /* --- テーブル（県ごと） --- */
  /* 会社名 */
  /* 所在地 */
  /* 電話番号 */
  /* 採用担当 */
  /* 募集職種 */
  /* お問い合わせ */
  /* Webサイト */
  /* モーダル中身の最大幅は既存どおり */
  /* ===== スマホで1社カード表示（<=767px） ===== */
}
.regions-modal .modal-inner {
  max-width: 1200px;
  margin: auto;
  flex: 1;
}
.regions-modal .modal-inner .modal_head {
  padding: 50px 63px 20px;
}
@media (max-width: 767px) {
  .regions-modal .modal-inner .modal_head {
    padding: 50px 0 20px;
    width: 94vw;
  }
}
.regions-modal .modal-inner .modal_head .description {
  margin-bottom: 20px;
}
.regions-modal .modal-inner .modal_head h2 {
  font-size: 16px;
  padding-left: 19px;
  position: relative;
}
.regions-modal .modal-inner .modal_head h2::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  left: 0.7px;
  background: var(--accent);
  border-radius: 100%;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
}
.regions-modal .modal-inner .modal_head .introduction p {
  font-size: 40px;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 767px) {
  .regions-modal .modal-inner .modal_head .introduction p {
    font-size: 7vw;
  }
}
.regions-modal .modal-inner .modal_head p.note {
  font-size: 16px;
}
.regions-modal .modal-inner .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  margin-top: -20px;
}
@media (max-width: 991px) {
  .regions-modal .modal-inner .wrap {
    margin-top: 0;
  }
}
.regions-modal .modal-inner .wrap > .note {
  width: 49%;
  margin: 0;
}
@media (max-width: 767px) {
  .regions-modal .modal-inner .wrap > .note {
    width: 100%;
  }
}
.regions-modal .modal-inner .job_type {
  width: 49%;
}
@media (max-width: 767px) {
  .regions-modal .modal-inner .job_type {
    width: 100%;
    max-width: 500px;
    margin: 20px auto 0;
  }
}
.regions-modal .modal-inner .job_type p.note {
  font-size: 14px;
  margin: 5px 12px;
}
@media (max-width: 767px) {
  .regions-modal .modal-inner .job_type p.note {
    margin: 5px 0;
  }
}
.regions-modal .modal-inner .job_type .job_description {
  background: #EDEDED;
  padding: 10px;
}
.regions-modal .modal-inner .job_type .job_description ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: min(15px, 1vw);
}
.regions-modal .modal-inner .job_type .job_description ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}
.regions-modal .modal-inner .job_type .job_description ul li span.label {
  color: #fff;
  background: var(--accent);
  font-size: 16px;
  width: 28px;
  height: 28px;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.regions-modal .modal-inner .job_type .job_description ul li span.ja {
  font-family: sans-serif;
}
.regions-modal .modal-inner .job_type .job_description ul li p {
  margin: 0;
  font-size: 14px;
}
@media (max-width: 1100px) {
  .regions-modal .modal-inner .job_type .job_description ul li {
    width: 48.5%;
  }
}
.regions-modal .modal-inner .results-box {
  border-radius: 5px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  width: min(1200px, 94vw);
  margin: auto;
}
.regions-modal .modal-inner .operation {
  padding: 50px;
  background: #E4E4E4;
  border-radius: 5px 5px 0 0;
  width: min(1200px, 94vw);
  margin: auto;
  overflow-x: auto;
}
@media (max-width: 767px) {
  .regions-modal .modal-inner .operation {
    padding: 30px 20px;
  }
}
.regions-modal[aria-hidden=false] {
  transform: translateY(0);
  opacity: 1;
}
.regions-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.regions-modal__dialog {
  position: relative;
  /* 全画面で中央コンテンツは最大1200px */
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: #F5F5F5;
  overflow-x: hidden;
}
.regions-modal__close {
  position: fixed;
  width: 40px;
  /* ボタンのサイズ */
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  right: 20px;
  top: 20px;
  transition: transform 0.4s ease;
}
.regions-modal__close::before, .regions-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  /* 線の長さ */
  height: 2px;
  /* 線の太さ */
  background: #333;
  /* 色（好みで変更） */
  transform-origin: center;
}
.regions-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.regions-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.regions-modal__close:hover {
  transform: rotate(360deg);
}
.regions-modal__title {
  margin: 4px auto 8px;
  width: min(1200px, 94vw);
  padding: 0 8px;
}
.regions-modal .regions-tabs,
.regions-modal .pref-group {
  width: 100%;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}
.regions-modal .regions-tabs {
  display: flex;
}
.regions-modal .regions-tabs .regions-tab {
  position: relative;
  display: inline-block;
  padding: 1em 0.2em;
  cursor: pointer;
  transition: 0.3s all;
  border: none;
  background: none;
  font-weight: 600;
  font-size: 20px;
  margin: 0;
  width: 13%;
  min-width: 120px;
}
@media (max-width: 767px) {
  .regions-modal .regions-tabs .regions-tab {
    padding: 8px 0;
  }
}
.regions-modal .regions-tabs .regions-tab.is-active {
  background: var(--accent);
  color: #fff;
}
.regions-modal .regions-tabs .regions-tab.is-active::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 15px solid var(--accent);
}
@media (hover: hover) {
  .regions-modal .regions-tabs .regions-tab:hover {
    background: var(--accent);
    color: #fff;
  }
}
@media (hover: none) {
  .regions-modal .regions-tabs .regions-tab:active {
    background: var(--accent);
    color: #fff;
  }
}
.regions-modal .pref-buttons {
  width: min(1100px, 94vw);
  margin: 8px auto;
}
@media (max-width: 767px) {
  .regions-modal .pref-buttons {
    margin: 20px auto 0;
  }
}
.regions-modal .pref-group {
  padding-top: 6px;
  display: flex;
}
.regions-modal .pref {
  display: inline-block;
  padding: 20px 0;
  border: none;
  cursor: pointer;
  transition: 0.3s all;
  font-size: 16px;
  width: 9.1%;
  min-width: 90px;
}
@media (max-width: 767px) {
  .regions-modal .pref {
    padding: 8px 0;
  }
}
.regions-modal .pref.is-active {
  background: var(--accent);
  color: #fff;
}
@media (hover: hover) {
  .regions-modal .pref:hover {
    background: var(--accent);
    color: #fff;
  }
}
@media (hover: none) {
  .regions-modal .pref:active {
    background: var(--accent);
    color: #fff;
  }
}
.regions-modal .is-hidden {
  display: none;
}
.regions-modal .pref-results {
  width: min(1200px, 94vw);
  margin: auto;
  padding: 50px;
  overflow-y: auto;
  background: #fff;
  border-radius: 0 0 5px 5px;
}
@media (max-width: 767px) {
  .regions-modal .pref-results {
    padding: 50px 15px;
  }
}
.regions-modal .pref-block {
  display: none;
  padding: 0 0 10px;
}
.regions-modal .pref-block.is-show {
  display: block;
}
.regions-modal .pref-block h3 {
  margin: 0 0 8px;
  font-size: clamp(18px, 2.2vw, 22px);
  border-left: solid 5px #E9561D;
  padding-left: 10px;
  line-height: 1;
  font-size: 32px;
}
@media (max-width: 767px) {
  .regions-modal .pref-block h3 {
    margin-bottom: 30px;
    font-size: 7vw;
  }
}
.regions-modal .pref-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .regions-modal .pref-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.regions-modal .card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.regions-modal .card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.regions-modal .card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.regions-modal .card__title {
  margin: 0;
  font-size: clamp(16px, 2vw, 18px);
}
.regions-modal .card__icons {
  display: flex;
  gap: 6px;
}
.regions-modal .card .role {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  font-size: 12px;
  color: #999;
  background: #f3f3f3;
  /* 必要なら色分け */
}
.regions-modal .card .role.is-on {
  color: #fff;
  background: var(--accent);
}
.regions-modal .card__meta {
  display: grid;
  gap: 4px;
  grid-template-columns: 1fr;
  margin: 10px 0 8px;
}
.regions-modal .card__meta dt {
  font-weight: 600;
  color: #666;
}
.regions-modal .card__meta dd {
  margin: 0;
}
@media (min-width: 600px) {
  .regions-modal .card__meta {
    grid-template-columns: 120px 1fr;
  }
  .regions-modal .card__meta > div {
    display: contents;
  }
}
.regions-modal .card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.regions-modal .card__btn {
  place-items: center;
  transition: background-color 0.3s, border-color 0.3s;
}
.regions-modal .card__btn:hover {
  background: #f7f7f7;
}
.regions-modal__footer {
  position: relative;
  width: min(1200px, 94vw);
  margin: 0 auto;
  padding: 130px 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.regions-modal__footer .button {
  padding: 0.6em 1.1em;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  transition: 0.3s ease;
}
@media (max-width: 767px) {
  .regions-modal__footer .button {
    padding: 5px 25px;
  }
}
@media (hover: hover) {
  .regions-modal__footer .button:hover {
    color: var(--accent);
    background: #fff;
  }
}
@media (hover: none) {
  .regions-modal__footer .button:active {
    color: var(--accent);
    background: #fff;
  }
}
.regions-modal__footer .is-secondary {
  background: var(--accent);
}
.regions-modal__footer::before {
  content: "";
  background-image: url(../img/modal_footer_1.webp);
  background-size: 100%;
  height: 235px;
  width: 370px;
  position: absolute;
  left: 50px;
  bottom: 0;
}
@media (max-width: 1100px) {
  .regions-modal__footer::before {
    left: -13vw;
  }
}
@media (max-width: 767px) {
  .regions-modal__footer::before {
    height: 29.5vw;
    width: 45vw;
  }
}
.regions-modal__footer::after {
  content: "";
  background-image: url(../img/modal_footer_2.webp);
  background-size: 100%;
  height: 205px;
  width: 370px;
  position: absolute;
  right: 50px;
  bottom: 0;
}
@media (max-width: 1100px) {
  .regions-modal__footer::after {
    right: -6vw;
  }
}
@media (max-width: 767px) {
  .regions-modal__footer::after {
    height: 27vw;
    width: 34vw;
  }
}
.regions-modal .table-wrap {
  width: 100%;
  /* 幅が溢れると横スクロール */
}
.regions-modal .pref-table {
  width: 100%;
  min-width: 960px;
  /* スマホ時は横スクロール */
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  table-layout: fixed;
  /* 行の縞模様 */
  /* 会社名（行見出し）を少し強調 */
  /* 役職バッジ */
  /* アクションボタン */
}
.regions-modal .pref-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #fff;
  font-weight: 700;
  text-align: left;
  padding: 10px 20px;
  font-size: clamp(13px, 1.6vw, 14px);
  white-space: nowrap;
  text-align: center;
}
.regions-modal .pref-table tbody td,
.regions-modal .pref-table tbody th {
  padding: 20px 12px;
  vertical-align: middle;
  font-size: clamp(13px, 1.6vw, 14px);
}
@media (max-width: 767px) {
  .regions-modal .pref-table tbody td,
  .regions-modal .pref-table tbody th {
    font-size: 16px;
    padding: 8px 0;
  }
}
.regions-modal .pref-table tbody tr:nth-child(odd) {
  background: #EDEDED;
}
@media (max-width: 767px) {
  .regions-modal .pref-table tbody tr:nth-child(odd) {
    background: #fff;
  }
}
.regions-modal .pref-table .co-name {
  font-weight: 700;
  position: relative;
}
.regions-modal .pref-table .co-name::after {
  content: "";
  display: block;
  height: 50px;
  width: 1px;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-left: dotted 2px #dbdbdb;
}
.regions-modal .pref-table .roles {
  white-space: nowrap;
}
.regions-modal .pref-table .role {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 6px;
  border-radius: 3px;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  background: #D5D5D5;
}
.regions-modal .pref-table .role.is-on {
  color: #fff;
  background: var(--accent);
}
.regions-modal .pref-table .card__btn {
  display: flex;
  place-items: center;
  width: 60px;
  height: 40px;
  justify-content: center;
  margin: auto;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.regions-modal .pref-table .card__btn:hover {
  background: #f7f7f7;
}
.regions-modal .pref-table .card__btn img {
  width: 30px;
}
.regions-modal .pref-table th:nth-child(1),
.regions-modal .pref-table td:nth-child(1) {
  width: 24%;
  text-align: left;
  padding: 10px 40px 10px 20px;
}
@media (max-width: 767px) {
  .regions-modal .pref-table th:nth-child(1),
  .regions-modal .pref-table td:nth-child(1) {
    width: auto;
  }
}
.regions-modal .pref-table th:nth-child(2),
.regions-modal .pref-table td:nth-child(2) {
  width: 21%;
  width: 27%;
}
.regions-modal .pref-table th:nth-child(3),
.regions-modal .pref-table td:nth-child(3) {
  width: 12%;
}
.regions-modal .pref-table th:nth-child(4),
.regions-modal .pref-table td:nth-child(4) {
  width: 11%;
}
.regions-modal .pref-table th:nth-child(5),
.regions-modal .pref-table td:nth-child(5) {
  width: 11%;
}
.regions-modal .pref-table th:nth-child(6),
.regions-modal .pref-table td:nth-child(6) {
  width: 11%;
}
.regions-modal .pref-table th:nth-child(7),
.regions-modal .pref-table td:nth-child(7) {
  width: 10%;
}
@media (max-width: 767px) {
  .regions-modal .pref-table th:nth-child(1),
  .regions-modal .pref-table td:nth-child(1),
  .regions-modal .pref-table th:nth-child(2),
  .regions-modal .pref-table td:nth-child(2),
  .regions-modal .pref-table th:nth-child(3),
  .regions-modal .pref-table td:nth-child(3),
  .regions-modal .pref-table th:nth-child(4),
  .regions-modal .pref-table td:nth-child(4),
  .regions-modal .pref-table th:nth-child(5),
  .regions-modal .pref-table td:nth-child(5),
  .regions-modal .pref-table th:nth-child(6),
  .regions-modal .pref-table td:nth-child(6),
  .regions-modal .pref-table th:nth-child(7),
  .regions-modal .pref-table td:nth-child(7) {
    width: auto;
  }
}
.regions-modal .regions-modal .pref-results {
  width: min(1200px, 94vw);
}
.regions-modal .regions-modal .pref-buttons {
  width: min(1100px, 94vw);
}
.regions-modal .regions-modal__title {
  width: min(1200px, 94vw);
}
@media (max-width: 767px) {
  .regions-modal {
    /* 行の見出し（会社名）をカードのヘッダー風に */
    /* セルをラベル＋内容の2カラムにする（ラベルは擬似要素） */
    /* 役職バッジは折り返し許可で詰める */
    /* 交互色（カードの背景で表現） */
  }
  .regions-modal .pref-table {
    border: 0;
    min-width: 0;
    /* 横スクロール不要に */
  }
  .regions-modal .pref-table thead {
    display: none;
  }
  .regions-modal .pref-table tbody {
    display: grid;
    gap: 12px;
  }
  .regions-modal .pref-table tr {
    display: grid;
    grid-template-columns: 1fr;
    /* 1列カード */
    overflow: hidden;
    padding: 15px;
  }
  .regions-modal .pref-table tr > .co-name {
    display: block;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 0;
  }
  .regions-modal .pref-table tr > .co-name::after {
    content: none;
  }
  .regions-modal .pref-table td {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 8px;
    align-items: start;
    padding: 10px 12px;
    position: relative;
    padding-left: 15px !important;
  }
  .regions-modal .pref-table td::after {
    display: block;
    content: "";
    border-left: dotted 2px #0C0C0C;
    width: 2px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 120px;
    bottom: 0;
    margin: auto;
  }
  .regions-modal .pref-table td:last-child {
    border-bottom: 0;
  }
  .regions-modal .pref-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: #666;
    white-space: nowrap;
    left: -15px;
    position: relative;
    align-self: center;
  }
  .regions-modal .pref-table .roles {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 6px;
    align-items: center;
  }
  .regions-modal .pref-table .card__btn {
    display: inline-grid;
    place-items: flex-start;
    width: 28px;
    height: auto;
    align-self: center;
    margin: inherit;
  }
  .regions-modal .pref-table tbody tr:nth-child(even) {
    background: #EDEDED;
  }
}

/* （任意）スクロールバーの太さ微調整 */
.regions-modal .operation::-webkit-scrollbar,
.regions-modal .pref-results::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}

.regions-modal .operation::-webkit-scrollbar-thumb,
.regions-modal .pref-results::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 6px;
}

.regions-modal .operation::-webkit-scrollbar-track,
.regions-modal .pref-results::-webkit-scrollbar-track {
  background: #eee;
}

/* Firefox */
.regions-modal .operation,
.regions-modal .pref-results {
  scrollbar-width: thin;
  scrollbar-color: #bbb #eee;
}

/*--------------------------------------------------------------
# フォームポップアップ
-------------------------------------------------------------- */
.c-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1400;
}

.c-modal[aria-hidden=false] {
  display: block;
}

.c-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.c-modal__dialog {
  position: absolute;
  left: 50%;
  bottom: -10%;
  transform: translateX(-50%);
  width: min(720px, 92vw);
  max-height: 85vh;
  overflow: auto;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.3s ease, bottom 0.3s ease;
}

.c-modal[aria-hidden=false] .c-modal__dialog {
  bottom: auto;
  top: 5%;
  transform: translateX(-50%);
}

.hp {
  position: absolute;
  left: -9999px;
}

/* ===== お問い合わせフォーム: デザインだけ変更（HTML/JSは現状維持） ===== */
:root {
  --bg: #f7f7f9;
  --card: #fff;
  --txt: #222;
  --muted: #666;
  --brand: #EA5520;
  --danger: #b00020;
  --bd: #acacac;
}

/* モーダルの中身をカード調に（他モーダルへ影響しないよう #contactModal で限定） */
#contactModal .c-modal__dialog {
  width: min(888px, 92vw);
  background: var(--card);
  color: var(--txt);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  padding: 22px 20px;
}

/* タイトル・サブ */
#contactModal #contactTitle {
  font-size: 1.25rem;
  margin: 0 0 6px;
}

#contactModal .c-modal__target {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* フォーム共通 */
#contactModal form {
  display: grid;
  gap: 14px;
}

#contactModal label {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 6px;
  width: 100%;
}

#contactModal .req {
  color: var(--brand);
  margin-left: 0.3em;
  font-size: 0.9em;
}

#contactModal input[type=text],
#contactModal input[type=email],
#contactModal textarea,
#contactModal select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--bd);
  border-radius: 10px;
  font-size: 16px;
  background: #fff;
}

#contactModal textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.5;
}

#contactModal .muted {
  color: var(--muted);
  font-size: 0.85rem;
}

/* 注意ボックス */
#contactModal .note {
  background: #ffe9e2;
  border: 2px solid #e8ad9a;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.9rem;
  margin: 0.3rem 0 0.2rem;
}

/* PC時のみ「メール」「お名前」を2カラムに見せる（HTMLはそのまま） */
@media (min-width: 640px) {
  #contactModal #contactForm {
    grid-template-columns: 1fr 1fr;
  }
  /* 1,2個目のlabelを左右に・3つ目以降は全幅 */
  #contactModal #contactForm > label:nth-of-type(1),
  #contactModal #contactForm > label:nth-of-type(2) {
    grid-column: span 1;
  }
  #contactModal #contactForm > *:nth-of-type(n+3) {
    grid-column: 1/-1;
  }
}
/* 同意・アクション */
#contactModal .consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  grid-column: 1/-1;
}

#contactModal .consent input {
  margin-top: 4px;
}

#contactModal .actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

/* 送信ボタン */
#contactModal .button {
  appearance: none;
  border: none;
  background: var(--brand);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(43, 124, 255, 0.2);
  grid-column: 1;
  width: 100%;
  max-width: 250px;
}
@media (max-width: 639px) {
  #contactModal .button {
    margin: auto;
  }
}

#contactModal .button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ステータス文言 */
#contactModal #contactStatus {
  color: var(--muted);
  font-size: 0.9rem;
  width: 100%;
}
@media (max-width: 639px) {
  #contactModal #contactStatus {
    text-align: center;
  }
}

/* honeypot 非表示（HTMLそのまま） */
#contactModal .hp {
  position: absolute;
  left: -9999px;
}

/* 閉じるボタンの見た目微調整（位置は既存のまま） */
#contactModal .c-modal__close {
  position: absolute;
  right: 6px;
  top: 6px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--bd);
  color: #333;
  line-height: 1;
  font-size: 33px;
}

/* Contact Modal: Validation UI */
#contactModal .is-invalid {
  border-color: #b00020 !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(176, 0, 32, 0.08);
}

#contactModal .field-error {
  color: #b00020;
  font-size: 0.85rem;
  margin-top: 6px;
}

#contactModal .req-badge {
  color: #b00020;
  margin-left: 0.3em;
  font-size: 0.9em;
}

/* Contact consent: custom styled big checkbox */
#contactModal .consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

#contactModal .consent label {
  cursor: pointer;
}

/* 素材は自前で描画（他ブラウザと見た目差が出ない） */
#contactModal #consent {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  inline-size: 28px;
  block-size: 28px;
  border: 2px solid var(--brand);
  border-radius: 8px;
  background: #fff;
  display: inline-grid;
  place-content: center;
  margin-top: 2px;
  /* テキストとのベースライン調整 */
  box-shadow: 0 0 0 0 rgba(43, 124, 255, 0);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

/* ホバー */
#contactModal #consent:hover {
  box-shadow: 0 0 0 4px rgba(43, 124, 255, 0.08);
}

/* フォーカス（キーボード操作の視認性向上） */
#contactModal #consent:focus-visible {
  box-shadow: 0 0 0 3px rgba(43, 124, 255, 0.35);
  outline: none;
}

/* チェック状態（白いチェックをSVGで） */
#contactModal #consent:checked {
  background-color: var(--brand);
  border-color: var(--brand);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'><path d='M7.8 14.3a1 1 0 0 1-1.5 0l-3-3a1 1 0 1 1 1.4-1.4l2.3 2.3 6.3-6.3a1 1 0 1 1 1.4 1.4l-7 7z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}

/* 無効化 */
#contactModal #consent:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.regions-modal .pref-table .card__btn {
  position: relative;
}

.sent-icon {
  display: inline-flex;
  margin-right: 0.4em;
  vertical-align: -1px;
  opacity: 0.85;
  position: absolute;
  left: 23px;
  top: -8px;
  color: #EA5520;
}

.is-contacted .sent-icon {
  opacity: 1;
}

.is-contacted { /* 視覚補助（任意） */
  /* outline: 1px dashed #8a133a; */
}

/*--------------------------------------------------------------
# コンテンツに動きをつける
-------------------------------------------------------------- */
.off {
  opacity: 0;
  transform: translate(0, 0);
  transition: 0.5s all ease;
}

.off.up {
  opacity: 0;
  transform: translate(0, 30px);
  transition: 0.5s all ease;
}

.off.down {
  opacity: 0;
  transform: translate(0, -30px);
  transition: 0.5s all ease;
}

.off.left {
  opacity: 0;
  transform: translate(-30px, 0);
  transition: 0.5s all ease;
}

.off.right {
  opacity: 0;
  transform: translate(30px, 0);
  transition: 0.5 all ease;
}

.off.on {
  opacity: 1;
  transform: translate(0, 0);
}/*# sourceMappingURL=style.css.map */