@charset "UTF-8";

/* -- @important set -- */
@import "reset.css";
@import "common.css";

/* ---------------------------------------------
	common Styles
--------------------------------------------- */

:root {

  /* -- fontSet -- */
  --fsG: 'Noto Sans JP',sans-serif;
  --fsM: 'Noto Serif JP',serif;
  --fsE: 'Montserrat',sans-serif;

  /* -- fontWeight -- */
  --lh0: 1.00;
  --lhS: 1.42;
  --lhM: 1.68;
  --lhL: 2.00;

  /* -- colorSet -- */
  --colOran: #FE6D01;
  --colYell: #FFD83F;
  --colGren: #00A142;
  --colLime: #80D621;
  --colBlue: #19ADC3;
  --colGraB: #6A7692;
  --colGraK: #333333;
  --colGraS: #BBBBBB;

  --colBlk: #000;
  --colWht: #fff;


  /* -- blankSpace -- */
  --blkSS: 30px;
  --blkS: 40px;
  --blkM: 75px;
  --blkL: 100px;
  --blkLL: 120px;
}


/* ------------------------------------------------------------------------------------------
	HOME Styles '/'
------------------------------------------------------------------------------------------ */

/* ---------------------------------------------
	#firstView Styles ‐ HOME
--------------------------------------------- */
body#home,
body#contents,
body#contents.careers {
	background: #f8f8f8;
}
/* ヘッダー白グラデーション — Mac Firefox/Safari で目立つため調整 */
#globalHeader {
	background: linear-gradient(to bottom, rgba(255,255,255,.5) 0%, rgba(255,255,255,.3) 50%, rgba(255,255,255,0) 100%) !important;
}
/* 背景画像を疑似要素で固定表示（iOS Safari対応） */
body#home::after,
body#contents::after {
	content: '';
	position: fixed;
	top: 67px;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
	background: url(../img/fv_bkg.png) no-repeat right bottom / 100% auto;
	pointer-events: none;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	will-change: transform;
	opacity: 0;
	transition: opacity 1s ease;
}
body#home.bg-ready::after,
body#contents.bg-ready::after {
	opacity: 1;
}
body#contents.careers::after {
	background-image: url(../img/bkg_careers.png);
}
@media screen and (max-width: 800px) {
	html {
		overflow-x: hidden;
		overscroll-behavior-x: none;
	}
	body#home,
	body#contents,
	body#contents.careers {
		overflow-x: clip;
		overscroll-behavior-x: none;
	}
	#novitra-liquid-bg.is-ready {
		opacity: 0.7;
	}
	body#home::after,
	body#contents::after {
		background-image: url(../img/fv_bkg_sp.png);
		top: 0;
		background-position: right top;
		background-size: 100% auto;
	}
	body#contents.careers::after {
		background-image: url(../img/bkg_careers_sp.png);
	}
}
body#home #firstView {
	position: relative;
	height: 100vh;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
	overflow: hidden;
	padding-top: 100px;
	box-sizing: border-box;
}
/* WebGL 液体キャンバス — 全ページ固定背景 */
#novitra-liquid-bg {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
	opacity: 0;
	transition: opacity 1s ease;
}
#novitra-liquid-bg.is-ready {
	opacity: 0.7;
}
/* コンテンツを液体キャンバスより上に配置 */
#firstView,
#globalBody,
#cta,
#globalFooter,
#globalNav {
	position: relative;
	z-index: 2;
}
body#contents #firstView {
	position: relative;
	height: 20vh;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
	pointer-events: none;
}
body#contents #firstView a {
	pointer-events: auto;
}
body#contents.careers #firstView {
	position: relative;
	height: 100vh;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
	overflow: visible;
	z-index: 3;
	padding-top: 100px;
	box-sizing: border-box;
}
body#contents.careers #firstView .inner > header h2 span,
body#contents.careers #firstView .inner > header h2 + p span {
	background: none;
}
/* 採用 Hero — recruite.svg 準拠デザイン */
.careers-hero-label {
	display: none;
}
@media screen and (max-width: 800px) {
	.careers-hero-label {
		display: block;
		font: 700 clamp(50px, 8vw, 50px)/150% var(--fsE) !important;
		letter-spacing: 0.05em;
		color: #222;
		margin-bottom: 40px;
		background: none !important;
	}
	.careers-hero-label--en {
		display: block;
		font: 700 50px/150% var(--fsE) !important;
		letter-spacing: 0.05em;
		color: #222;
		margin-bottom: 40px;
		background: none !important;
		padding-left: 10px;
	}
}
.careers-hero-heading {
	margin-bottom: 40px !important;
}
.careers-hero-heading span {
	display: block !important;
	font: 700 60px/150% var(--fsG) !important;
	letter-spacing: 0.05em;
	background: none !important;
	color: #222;
	padding: 0 !important;
}
@media screen and (max-width: 800px) {
	.careers-hero-heading {
		padding-left: 24px;
	}
	.careers-hero-heading span {
		font: 700 32px/150% var(--fsG) !important;
		letter-spacing: 0.05em;
		color: #222;
	}
	.careers-hero-heading em {
		font-style: normal !important;
		font-size: 48px !important;
		font-weight: 900 !important;
		line-height: 150% !important;
		letter-spacing: 0.05em;
		color: #FE6D01 !important;
		background: #fff !important;
		padding: 5px 15px 5px 25px;
	}
}
.careers-hero-heading em {
	font-style: normal;
	font-size: 70px;
	font-weight: 900;
	letter-spacing: 0.05em;
	background: none;
	color: #FE6D01;
	padding: 0;
}
/* 英語版 Hero */
.careers-hero-heading--en span {
	font: 700 60px/130% var(--fsG) !important;
	color: #222;
}
.careers-hero-heading--en em {
	font-weight: 900 !important;
	font-size: 60px !important;
	color: #FE6D01;
}
body.is-english .careers-hero-sub {
	letter-spacing: 0.05em;
}
@media screen and (max-width: 800px) {
	.careers-hero-heading--en span {
		font: 700 clamp(20px, 7vw, 32px)/150% var(--fsG) !important;
		color: #222;
	}
	.careers-hero-heading--en em {
		font: 700 clamp(20px, 7vw, 32px)/150% var(--fsG) !important;
		color: #FE6D01;
		background: #fff;
		padding: 5px 15px 5px 8px;
		margin-left: -8px;
	}
	body.is-english .careers-hero-sub {
		font: 400 18px/160% var(--fsG) !important;
		color: #222;
		letter-spacing: 0;
		padding-left: 10px;
	}
}
.careers-hero-sub {
	font: 400 24px/160% var(--fsG) !important;
	letter-spacing: 0.1em;
	color: #222;
	background: none !important;
}
br.sp-only, span.sp-only {
	display: none !important;
}
.pc-only {
	display: inline;
}
@media screen and (max-width: 800px) {
	br.sp-only, span.sp-only {
		display: inline !important;
	}
	.pc-only {
		display: none !important;
	}
	.careers-hero-sub {
		font: 400 16px/160% var(--fsG) !important;
		letter-spacing: 0.1em;
		color: #222;
	}
}
#firstView .inner {
	max-width: 1100px;
	width: calc(100% - 60px);
	margin: 0 auto;
}
#firstView .inner > header p.sholder {
	font: 400 16px/var(--lhS) var(--fsE);
	margin-bottom: 10px;
}
#firstView .inner > header h2 {
	margin-bottom: var(--blkSS);
}
#firstView .inner > header h2 span {
	display: inline-block;
	font: 700 clamp(32px, calc(3.3vw + 17.14px), 60px)/150% var(--fsG);
	letter-spacing: 0.05em;
	color: #000000;
	padding: 2px 8px;
	background: #fff;
}
#firstView .inner > header h2 span:first-child {
	display: block;
	width: fit-content;
}
#firstView .inner > header h2 + p {
	margin-bottom: var(--blkS);
}
#firstView .inner > header h2 + p {
	margin-bottom: var(--blkS);
}
#firstView .inner > header h2 + p span {
	display: inline;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	font: 400 clamp(14px, 1.75vw, 16px)/170% var(--fsG);
	letter-spacing: 0.1em;
	color: #000000;
	background: #fff;
	padding: 5px 6px;
}
body#contents #firstView .inner > header h2 + p span {
	display: inline;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	font: 400 clamp(14px, 1.75vw, 16px)/170% var(--fsG);
	letter-spacing: 0.1em;
	color: #000000;
	background: #fff;
	padding: 5px 6px;
}
#firstView .inner > header p.button {
	display: block;
}
#firstView .inner > header p.button a {
	box-shadow: 0 4px 4px rgba(0,0,0,0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-width: 300px;
	white-space: nowrap;
	max-width: 100%;
	height: 60px;
	background: #242424;
	color: #fff;
	font: 400 20px/var(--lhS) var(--fsG);
	border-radius: 10px;
	border: 3px solid #fff;
	padding: .6em 2em;

}
#firstView .inner > header p.button a:hover {
	background: linear-gradient(to right, #FF7700 10%,#F50000 90%);
}
#firstView .inner > div p {
	display: none;
}
body#contents #firstView .inner > div p {
	display: none;
}
body#contents #firstView {
	z-index: 2;
}
#firstView .inner > div p a {
	position: relative;
	display: block;
	margin-right: 5px;
	margin-bottom: 5px;
	background: #000;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 120px;
	height: 120px;
	border: 3px solid #fff;
	border-radius: 50%;
	font: 600 16px/var(--lhS) var(--fsG);
}
#firstView .inner > div p a:hover {
	width: 130px;
	height: 130px;
	margin-right: 0px;
	margin-bottom: 0px;
	background: linear-gradient(to right, #FF7700 10%,#F50000 90%);
}
#firstView .inner > div p a:after {
	position: absolute;
	right: 0px;
	bottom: 0px;
	content: '';
	width: 33px;
	height: 33px;
	background: var(--colYell) url(../img/icon_blank.svg) no-repeat center center / 13px;
	border-radius: 50%;
	box-shadow: 2px 2px 2px rgba(0,0,0,.3);

}


/* 文字を閉じ込める外側の箱（壁） */


#firstView h2 > span {
  padding-top: 0;
  display: inline-block; /* 塊ごとに横並び */
  white-space: nowrap;  /* 塊の途中で意図せず改行されないように */
}

.char-box {
  display: inline-block; /* ★ここを inline-block にすることで横に並びます */
  overflow: hidden;
  vertical-align: middle; /* 文字のベースラインを揃える */
  margin: 0 0 10px 0;
  line-height: 1.15;
}

/* 実際に動く内側の箱 */
.char-inner {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  animation: slideUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideUp {
  0% { transform: translateY(110%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* 特定の文字を強調したい場合（任意） */
.is-emphasis {
  color: #000;
  font-weight: bold;
}
body.is-english .is-emphasis {
  color: #ff3300;
}
.pc-bold {
  font-weight: bold;
}

@media screen and (max-width: 800px) {
  .pc-bold {
    font-weight: normal;
  }
  body#home #firstView,
  body#contents.careers #firstView {
    min-height: 100svh;
    height: auto;
    overflow: visible;
    align-items: flex-start !important;
    padding-top: 160px !important;
    padding-bottom: 40px;
  }
  #firstView .inner > header p.sholder {
    margin-bottom: 24px;
  }
  #firstView .inner > header h2 {
    margin-bottom: 40px !important;
  }
  #firstView .inner > header h2 span {
    display: inline !important;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    margin-left: -30px;
    padding-left: 30px !important;
    padding-right: 8px;
    padding-top: 6px;
    padding-bottom: 6px;
    line-height: 1.8;
  }
  #firstView .inner > header h2 + p span:not(.sp-only):not(.pc-only),
  #firstView .inner > header h2 + p span.sp-only {
    display: inline !important;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    margin-left: -30px;
    padding-left: 30px !important;
    padding-right: 6px;
    padding-top: 4px;
    padding-bottom: 4px;
    line-height: 2.0;
    white-space: normal !important;
  }
  #firstView .inner > header h2 + p span.pc-only {
    display: none !important;
  }
  #firstView .inner > header h2 .char-box {
    overflow: visible;
  }
  #firstView .inner > div p {
    display: none;
  }
}



/* ---------------------------------------------
	#news Styles ‐ HOME
--------------------------------------------- */
#news {
  border-radius: 20px;
  padding: 50px 0 80px 0;
  overflow: hidden;
}

body#contents #news {
  overflow: visible;
  border-radius: 0;
  padding-bottom: 80px;
}
body#contents #cta {
  position: relative;
  z-index: 10;
}
body#contents #news article {
  position: relative;
}
body#contents #news article::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(102.58deg, rgba(255, 255, 255, 0.8) 1.21%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  z-index: -1;
}
body#contents #news article > header hgroup {
  background: transparent;
}
body#contents #news article > div {
  background: transparent;
}

#news article > header hgroup {
  position: relative;
  width: fit-content;
  z-index: 10;
  border-radius: 20px 20px 0px 0px;
  background: #fff;
  padding: 0px 50px 0px 50px;
  margin-bottom: -1px;
}
#news article > header h2 {
  font: 400 80px/var(--lhS) var(--fsE);
  color: var(--colOran);
}
#news article > header p {
  font: 400 16px/var(--lhS) var(--fsG);
  color: var(--colOran);
}
#news article > div {
  margin-top: 0;
  padding: 50px 0;
  border-radius:0px 20px 20px 20px;
  background: #fff;
}
#news article > div div.more {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  padding: 0 50px;
}
#news article > div .more a {
  margin-left: auto;
  padding: 8px 44px 8px 20px;
  border-radius: 2em;
  border: 1px solid #999;
  background: url(../img/icon_right_arr.svg) no-repeat right 16px center / 12px;
  font: 400 14px/var(--lh0) var(--fsG);
  display: flex;
  align-items: center;
}


#news article > div .newsList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px 0;
}
#news article > div .newsList a.postBox {
  display: block;
  flex-shrink: 0;
  width: 33.33% ;
  padding: 0 50px 50px 50px;
  transition: all 0.3s ease;
}
button.prev-btn img,
button.next-btn img {
  width: 16px;
}

#news article > div .newsList a.postBox figure {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

#news article > div .newsList a.postBox figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 12px;
}

#news article > div .newsList a.postBox:hover figure img {
  transform: scale(1.04) translate(5px, 5px);
}
#news article > div .newsList a.postBox:hover {
  color: var(--colOran);
}

#news article > div .newsList a.postBox:nth-of-type(3n - 2) {
  border-right: 1px solid #ccc;
}
#news article > div .newsList a.postBox:nth-of-type(3n) {
  border-left: 1px solid #ccc;
}
#news article > div .newsList a.postBox figure {
  margin-bottom: 10px;
}
#news article > div .newsList a.postBox p.news-title {
  font: 700 16px/var(--lhS) var(--fsG);
  margin-bottom: 8px;
}
#news article > div .newsList a.postBox p {
  font: 400 16px/var(--lhS) var(--fsG);
}
#news article > div .newsList a.postBox p time {
  margin-top: 20px;
  display: block;
  text-align: right;
}

#news article > div .newsPaging {
  margin-top: 50px;
}
#news article > div .newsPaging ul {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
#news article > div .newsPaging ul li a {
  display: block;
  padding: 5px;
  font: 500 18px/var(--lhS) var(--fsE);
}
#news article > div .newsPaging ul li a:hover {
  border-bottom: 1px solid #000;
}
#news article > div .newsPaging ul li.is-active a {
  color: var(--colOran);
  border-bottom: 1px solid var(--colOran);
}
#news article > div .newsPaging ul li.prev {
  display: none !important;
}
#news article > div .newsPaging ul li.prev,
#news article > div .newsPaging ul li.next {
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#news article > div .newsPaging ul li.prev img,
#news article > div .newsPaging ul li.next img {
  width: 16px;
}

#news article > header {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

/* resp-newsList set */
.news-nav-btns {
  display: none;
  gap: 10px;
}
.news-nav-btns button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}

@media (max-width: 800px) {
  .news-nav-btns {
    display: flex;
  }
  #news article > div .more {
    padding: 0 30px !important;
  }
  #news article > div .more a {
    margin-left: 0;
  }
  
  body#home #news article > div .newsList {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 10vw 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  /* SP — articles ページ全体レイアウト */
  body#contents #firstView {
    height: auto;
    min-height: 100px;
  }
  body#contents #news {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  body#contents #news article > header hgroup {
    position: relative;
    z-index: 5;
    padding: 20px 25px;
    border-radius: 20px 20px 0px 0px !important;
    width: fit-content !important;
  }
  body#contents #news article > header hgroup p {
    text-align: left;
  }
  body#contents #news article > div .newsList {
    flex-direction: column;
  }
  body#contents #news article > div .newsList a {
    width: 100%;
    padding: 10px 25px 25px 25px;
    border: none !important;
  }
  body#contents #news article > div .newsList a.postBox p time {
    margin-top: 10px;
    display: block;
    text-align: right;
  }
  
  body#home #news article > div .newsList::-webkit-scrollbar {
    display: none;
  }

  body#home #news article > div .newsList a.postBox {
    width: 85%; 
    padding: 0 15px;
    scroll-snap-align: center;
    border: none !important;
  }

  #news article > div .newsList a.postBox:nth-of-type(1),
  #news article > div .newsList a.postBox:nth-of-type(3) {
    border: none;
  }
}

/* ---------------------------------------------
	#service Styles ‐ HOME
--------------------------------------------- */
:root {
  --headerWidth: 350px;
  --sidePadding: 50px;
  --cardGap: 50px;
  --peekWidth: 30px;
}

.scroll-wrapper {
  position: relative;
  height: 900vh;
}

#service {
  position: -webkit-sticky;
  position: sticky;
  top: calc((100vh - 85vh) / 2);
  width: 90%;
  margin: 0 auto;
  height: 85vh;
  border-radius: 50px;
  background: var(--colOran);
  display: flex;
  align-items: center;
  overflow: hidden;
}

#service article {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  padding: 0 0 0 var(--sidePadding);
  box-sizing: border-box;
  align-items: center;
}

#service article > header {
  flex-shrink: 0;
  width: var(--headerWidth);
  color: #fff;
  z-index: 10;
}
#service article > header h2 { color: #fff; }
#service article > header p { color: #fff; margin-bottom: 40px; }
#service article > header ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  gap: 20px;
}
#service article > header ul li a {
  text-decoration: none;
  color: #fff;
  display: block;
  padding: 0;
  margin: 0;
  transition: opacity 0.3s;
}
#service-menu li a.is-active {
  color: #fff;
  opacity: 1;
}
#service-menu li a.is-active:before {
  content: '●';
  color: #fff;
  width: 20px;
  display: inline-block;
  margin-left: -20px;
}

.service-viewport {
  flex-grow: 1;
  overflow: hidden;
  display: flex;
}

.serviceSet {
  display: flex;
  gap: var(--cardGap);
  flex-wrap: nowrap;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.serviceSet > div {
  position: relative;
  flex-shrink: 0;
  width: calc((100vw - var(--headerWidth) - var(--sidePadding) - var(--cardGap) - var(--peekWidth)) * 0.75);
  aspect-ratio: 16 / 10;
  box-sizing: border-box;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.serviceSet figure img {
  display: block;
  width: 100%;
  border-radius: 20px 20px 0 0;
  aspect-ratio: 828 / 320;
  object-fit: cover;
  object-position: center top;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.serviceSet h3 {
  position: relative;
  z-index: 5;
  width: fit-content;
  background: #fff;
  border-radius: 0 12px 0 0;
  padding: 20px 40px;
  margin-top: -50px;
  font: 700 32px/var(--lhS) var(--fsG);
}
.serviceSet p {
  white-space: normal;
  width: 100%;
  padding: 0 40px 40px 40px;
}
.serviceSet p a {
  position: absolute;
  z-index: 5;
  right: 20px;
  bottom: 20px;
  display: block;
  margin-left: auto;
  background: #000;
  color: #fff;
  border-radius: 2em;
  width: fit-content;
  padding: 3px 24px 3px 12px;
  margin-top: 12px;
  font: 400 14px/var(--lhS) var(--fsE);
}

/* --- スマホ表示（800px以下） --- */
@media screen and (max-width: 800px) {
  #service {
    background: var(--colOran) !important;
    height: auto !important;
    border-radius: 20px !important;
  }
  #service article {
    flex-direction: column;
    padding: 30px 0 20px 0 !important;
    align-items: flex-start;
  }
  #service article > header {
    width: 100%;
    margin-bottom: 10px;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
  }
  #service article > header h2 {
    position: static;
    width: auto;
    height: auto;
    display: block;
    order: 1;
    margin-bottom: 4px;
    font: 500 60px/120% var(--fsE) !important;
    color: #fff !important;
  }
  #service article > header p {
    margin-top: 0;
    margin-bottom: 16px;
    order: 2;
    color: #fff !important;
  }
  #service article header ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    margin: 0 0 16px 0;
    order: 3;
  }
  #service article header ul li {
    list-style: none;
  }
  #service article header ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font: 400 14px/1.4 var(--fsG);
    color: #fff;
    text-decoration: none;
    padding: 4px 0;
  }
  #service article header ul li a::before,
  #service-menu li a.is-active::before {
    content: '' !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: transparent !important;
    border: 1px solid #fff !important;
    flex-shrink: 0;
    display: inline-block !important;
    margin-left: 0 !important;
  }
  #service article header ul li a.is-active::before {
    background: #fff !important;
  }
  #service .service-nav-btns {
    order: 4;
  }
  #service article > .service-viewport {
    width: 100%;
    overflow: visible;
    flex: 1;
    min-height: 0;
  }
  .serviceSet {
    display: flex !important;
    gap: 15px !important;
    padding-left: 20px !important;
    padding-right: 40px !important;
    width: max-content !important;
    box-sizing: border-box;
    align-items: stretch;
  }
  .serviceSet > div {
    width: 75vw !important;
    flex-shrink: 0 !important;
    box-sizing: border-box;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .serviceSet > div > figure {
    flex-shrink: 0;
  }
  .serviceSet h3 {
    font: 700 20px/var(--lhS) var(--fsG) !important;
    border: none;
    padding: 10px 16px !important;
    margin-top: -30px !important;
  }
  .serviceSet p {
    border: none;
    padding: 0 16px 50px 16px !important;
    font: 400 13px/var(--lhM) var(--fsG);
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .serviceSet p a {
    bottom: 10px;
    right: 10px;
  }
  .serviceSet figure img {
    aspect-ratio: 400 / 200 !important;
    object-fit: cover;
  }
}

/* ---------------------------------------------
	.policy Styles ‐ HOME
--------------------------------------------- */
.policy {
  margin-bottom: 50px;
}
#philosophy {
  margin-top: 80px;
}
.policy article {
  max-width: 1080px;
  width: calc(100% - 80px);
  margin: 0 auto 50px auto;
}
.policy article > header {
  position: relative;
  z-index: 5;
  width: 55%;
  height: 100px;
  border-radius: 10px;
  background: var(--colOran);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.policy article > header h2 {
  font: 600 40px/var(--lhS) var(--fsE);
  color: #fff;
  letter-spacing: .08em;
}
.policy article > header p {
  border-left: 1px solid #fff;
  padding-left: 20px;
  margin-left: 20px;
  font: 400 20px/var(--lhS) var(--fsG);
  color: #fff;
}
.policy article > div {
  margin-top: -50px;
  border-radius: 0 20px 20px 20px;
  padding: 80px 60px 50px 60px;
  background: #fff;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 50px;
}
.policy article > div figure {
  flex-shrink: 0;
  width: 45%;
  overflow: hidden;
  border-radius: 15px;
}
.policy article > div figure img {
  border-radius: 15px;
  display: block;
  width: 100%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
}
.policy article > div div {
  flex: 1;
}
.policy article > div h3 {
  font: 700 32px/var(--lhS) var(--fsG);
  letter-spacing: .1em;
  margin-bottom: 20px;
}
body.is-english .policy article > div h3 {
  font: 700 24px/140% var(--fsG);
  color: #222;
}
.policy article > div p {
  font: 400 16px/2 var(--fsG);
}
.policy article > div p strong {
  font-size: 1.15em;
}


.policy:nth-of-type(odd) article > header {
  margin-left: auto;
}
.policy:nth-of-type(odd) article > div {
  border-radius: 20px 0px 20px 20px !important;
}
.policy:nth-of-type(even) article > div {
  flex-direction: row-reverse;
}
.policy#value article > div div p.value-heading {
  font: 700 32px/150% var(--fsG);
  letter-spacing: 0.05em;
  color: #222;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font: 400 16px/180% var(--fsG);
  letter-spacing: 0.05em;
  color: #222;
}
.value-item em {
  flex-shrink: 0;
  font-style: normal;
  font: 400 16px/180% var(--fsE);
  color: #222;
}
.value-item p {
  flex: 1;
  margin: 0;
}
.policy#value article > div div h3 {
  font: 700 24px/var(--lhS) var(--fsG);
  margin-bottom: 0;
  letter-spacing: 0.00em;
}
.policy#value article > div div h3 em {
  font: 400 14px/var(--lhS) var(--fsE);
  margin-right: 0.5em;
}
.policy#value article > div div p {
  font: 400 16px/var(--lhS) var(--fsG);
  margin-top: -2px;
  margin-bottom: 20px;
}
@media screen and (max-width: 800px) {
  
  .policy article {
    width: 100%
  }
  .policy article > header {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  .policy article > header h2 {
    font: 600 36px/var(--lhS) var(--fsE);
    letter-spacing: 0;
  }
  .policy article > header h2 + p  {
    border-left: 1px solid #fff;
    padding-left: 12px;
    margin-left: 12px;
    font: 500 16px/var(--lhS) var(--fsG);
  }
  .policy article > div {
    margin-top: -50px;
    border-radius: 20px 20px 20px 20px !important;
    padding: 80px 20px 20px 20px;
    gap: 40px;
    flex-direction: column-reverse !important;
    overflow: hidden;
  }
  .policy article > div figure {
    flex-shrink: 0;
    width: 100%;
  }
  .policy#value article > div > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    width: 100%;
  }
  .policy#value article > div div h3 em {
    display: block;
    font: 400 16px/150% var(--fsE);
    letter-spacing: 0.13em;
    color: #222;
    margin-bottom: 8px;
  }
  .policy#value article > div div h3 em:first-child {
    letter-spacing: 0.2em;
  }
  .policy#value article > div div h3 {
    font: 700 24px/140% var(--fsG);
    letter-spacing: 0.05em;
    color: #222;
    margin-bottom: 2px;
  }
  .policy#value article > div div p {
    font: 400 16px/150% var(--fsG);
    letter-spacing: 0.05em;
    color: #222;
    margin-top: -22px;
    margin-bottom: 0;
  }
}



/* ---------------------------------------------
	#clients Styles ‐ HOME
--------------------------------------------- */
#clients {
  margin-top: 200px;
  margin-bottom: 100px;
  border-radius: 20px;
  padding: 50px 0 80px 0;
  background: var(--colYell);
}
#clients article {
  max-width: 1280px;
  width: calc(100% - 80px);
  margin: 0 auto;
}
#clients article > header {
  border-radius: 20px 20px 0px 0px;
  padding: 20px 50px;
  background: var(--colYell);
  margin-top: -150px;
}
#clients article > header h2 {
  text-align: center;
  color: #000;
}
#clients article > header p {
  text-align: center;
  font: 400 16px/var(--lhS) var(--fsG);
  text-align: center;
}
#clients article > div .clientList {
  max-width: 1180px;
  width: calc(100% - 40px);
  margin: 0 auto 100px auto;
  padding: 40px;
  border-radius: 15px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
#clients article > div .clientList figure {
  background: #fff;
  border-radius: 12px;
  flex-shrink: 0;
  width: 28%;
}
#clients article > div .clientList figure img {
  width: 100%;
  height: auto;
  display: block;
}
#clients article > div .voiceList {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}
#clients article > div .voiceList > a,
#clients article > div .voiceList > div {
  background: #fff;
  padding: 20px 20px 50px 20px;
  border-radius: 10px;
  display: block;
  flex-shrink: 0;
  width: calc(33.33% - (40px * 2 / 3));
}
#clients article > div .voiceList > a figure,
#clients article > div .voiceList > div figure {
  margin-bottom: 10px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
}
#clients article > div .voiceList > a figure img,
#clients article > div .voiceList > div figure img {
  border-radius: 8px;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
#clients article > div .voiceList > a h3,
#clients article > div .voiceList > div h3 {
  margin-bottom: 10px;
}

#clients article > div .voiceList {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
}

@media screen and (max-width: 800px) {
  #clients {
    margin-top: 200px;
    margin-bottom: 0px;
    border-radius: 20px;
    padding: 50px 0 80px 0;
    background: var(--colYell);
  }
  #clients article {
    width: 100%;
    margin: 0 auto;
  }
  #clients article > header {
    border-radius: 20px 20px 0px 0px;
    padding: 20px 20px;
    margin-top: 0;
  }
  #clients article > header h2 {
    font: 500 clamp(56px, 16vw, 80px)/140% var(--fsE);
    letter-spacing: -0.01em;
    color: #222;
    white-space: nowrap;
  }
  #clients article > div .clientList {
    max-width: 1180px;
    width: calc(100% - 40px);
    margin: 0 auto 0px auto;
    padding: 20px;
    border-radius: 15px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
  }
  #clients article > div .clientList figure {
    background: #fff;
    border-radius: 12px;
    flex-shrink: 0;
    width: 40%;
  }
}



/* client-scroll */
@media screen and (max-width: 800px) {
  #clients {
    overflow: hidden !important;
    position: relative;
  }
  #voice-sticky-wrapper {
    height: 300vh;
    position: relative;
    width: 100%;
  }
  #clients article > div #voice-sticky-content .voiceList {
    display: flex !important;
    padding-left: 20px !important; 
    padding-right: 40px !important;
    width: max-content !important;
  }

  #voice-sticky-content {
    position: -webkit-sticky;
    position: sticky;
    top: 0 !important;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100vw !important;
    margin-left: calc(50% - 50vw);
    left: 0;
    background: var(--colYell);
  }
  #clients article > div .voiceList > a,
  #clients article > div .voiceList > div {
    width: 80vw !important;
    flex-shrink: 0 !important;
    display: block;
    box-sizing: border-box;
    scroll-snap-align: center;
  }
 
  #voice-sticky-content .voiceList {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 20px !important;
    padding: 0 10vw !important;
    margin: 0 !important;
    width: max-content !important;
    will-change: transform;
  }

  #clients, #clients article, #clients article > div {
    overflow: visible !important;
  }
  #clients article > div #voice-sticky-content .voiceList {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: max-content !important;
    gap: 20px !important;
    margin: 0 !important;
    padding: 0 10vw !important;
  }
  #clients article > div #voice-sticky-content .voiceList > a,
  #clients article > div #voice-sticky-content .voiceList > div {
    width: 80vw !important;
    flex-shrink: 0 !important;
  }
  #voice-sticky-wrapper {
    margin: 0 !important;
    padding: 0 !important;
  }

  #voice-sticky-content {
    height: auto !important; 
    min-height: initial !important; 
    
    padding-top: 40px !important;
    padding-bottom: 20px !important;
    
    display: flex !important;
    align-items: flex-start !important; 
    
    top: 60px !important; 
  }

  #clients article > div #voice-sticky-content .voiceList {
    margin: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}


/* ---------------------------------------------
	#recruit Styles ‐ HOME
--------------------------------------------- */
#recruit {
  position: relative;
  z-index: 10;
  border-radius: 20px;
  padding:0;
  margin-top: -30px;
  margin-bottom: -30px;
  background:
  url(../img/recruit_bkg_s.svg) no-repeat right -100px top -100px / 400px,
  url(../img/recruit_bkg_l.svg) no-repeat left -0px bottom -100px / 400px #6A7692;
}
#recruit article {
  max-width: 1280px;
  width: calc(100% - 80px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 450px;
  grid-template-rows: auto 1fr;
  align-items: start;
  gap: 0 50px;
}
#recruit article > header {
  grid-column: 2;
  grid-row: 1;
  padding: 50px 0 0 0;
}
#recruit article > .recruit-body {
  grid-column: 2;
  grid-row: 2;
  padding: 0 0 80px 0;
}
#recruit article > div.galleryList {
  grid-column: 1;
  grid-row: 1 / 3;
}
#recruit article > header h2 {
  color: var(--colYell);
}
#recruit article > header h2 + p {
  color: var(--colYell);
  margin-bottom: 40px;
}
#recruit article > .recruit-body h3 {
  font: 700 24px/var(--lhS) var(--fsG);
  color: #fff;
  margin-bottom: 20px;
}
#recruit article > .recruit-body h3 + p {
  font: 400 16px/var(--lhM) var(--fsG);
  color: #fff;
  margin-bottom: 20px;
}
#recruit article > .recruit-body p.button a {
  display: block;
  width: 250px;
  padding: 10px 10px 10px 50px;
  border:2px solid #fff;
  border-radius: 3em;
  background: #000 url(../img/arr_button.svg) no-repeat right 30px center / 24px;
  color: #fff;
  font: 400 16px/var(--lhS) var(--fsG);
}
#recruit article > .recruit-body p.button a:hover {
  background: 
    url(../img/arr_button.svg) no-repeat right 27px center / 24px, 
    linear-gradient(to right, #FF7700 10%, #F50000 90%);
}

#recruit article > div.galleryList {
  height: 720px;
  overflow: hidden;
  position: relative;
}
#recruit article > div.galleryList > div {
  padding: 10px 0;
  position: relative;
}
#recruit article > div.galleryList > div figure {
  margin: 0 0 15px 0;
  padding: 10px 0;
  position: relative;
}
#recruit article > div.galleryList > div figure:nth-of-type(2) img {
  margin-left: auto;
}
#recruit article > div.galleryList div figure img {
  border-radius: 10px;
  width: 70%;
  height: auto;
  display: block;
}

.galleryList .galleryList-inner {
  display: flex;
  flex-direction: column;
  animation: scroll-vertical 60s linear infinite;
}
/* hover での停止を無効化 */



/* --- animation setting --- */
@keyframes scroll-vertical {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes scroll-horizontal {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

#recruit {
  position: relative;
  z-index: 10;
  border-radius: 20px;
  background: #6A7692;
  overflow: hidden;
}

/* (PC grid は上で定義済み — 重複削除) */

.galleryList .galleryList-inner {
  display: flex;
  flex-direction: column;
  animation: scroll-vertical 60s linear infinite;
}

@media screen and (max-width: 800px) {
  #recruit {
    position: relative;
    z-index: 10;
    background: #505f82;
    margin-top: 40px;
    margin-bottom: -30px;
  }
  #recruit article {
    width: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
    flex-direction: column;
    gap: 30px;
  }

  /* SP — Recruit: grid解除 → flex column + order で並び替え */
  #recruit article {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  #recruit article > header {
    width: 100%;
    order: 1;
  }
  #recruit article > header h2 + p {
    margin-bottom: 0;
  }
  #recruit article > div.galleryList {
    order: 2;
    position: relative;
    width: 100vw;
    margin-left: -20px;
    height: 200px;
    overflow: hidden;
  }
  #recruit article > .recruit-body {
    order: 3;
    width: 100%;
    padding: 0;
  }
  #recruit article > .recruit-body p.button {
    text-align: right;
  }
  #recruit article > .recruit-body p.button a {
    margin-left: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    gap: 14px;
    width: 250px;
    height: 43px;
    background: #222;
    border: 1.28px solid #fff;
    border-radius: 1274px;
  }
  /* SP — ギャラリー内の列を非表示にしない */
  #recruit article > div.galleryList > div {
    grid-column: auto;
    grid-row: auto;
  }

  /* SP — Gallery 横スクロール無限ループ */
  .galleryList .galleryList-inner {
    flex-direction: row !important;
    animation: scroll-horizontal 15s linear infinite !important;
  }

  .galleryList-inner > div {
    padding: 0 5px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-shrink: 0;
  }

  .galleryList-inner figure {
    margin: 0 !important;
    padding: 0;
    flex-shrink: 0;
  }

  .galleryList-inner > div figure:nth-of-type(2) img {
    margin-left: 0;
  }

  .galleryList-inner img {
    width: 200px !important;
    height: 150px !important;
    object-fit: cover;
    display: block;
    border-radius: 10px;
  }

  .galleryList-inner figure:nth-child(even) {
    transform: translateY(20px);
  }
}





/* ---------------------------------------------
	#company Styles ‐ HOME
--------------------------------------------- */
#company {
  position: relative;
  padding: 50px 0 80px 0;
  background: #e9e9e9;
}
#company article {
  max-width: 1280px;
  width: calc(100% - 80px);
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 100px;
}
#company article > header {
  flex-shrink: 0;
  width: 400px;
}
#company article > header h2 {
  display: none;
  color: #000;
}
#company article > header p {
  display: none;
}
#company article > header h3 {
  margin-bottom: 40px;
}
#company article > header h3 img {
  width: 100%;
}
#company article > header figure {
  margin: 0 auto;
  width: fit-content;
}
#company article > div {
  flex: 1;
}
#company article > div table tr th {
  width: 160px;
  padding: 20px 0;
  font: 500 14px/var(--lhS) var(--fsG);
  text-align: left;
}
#company article > div table tr td {
  padding: 20px 0;
  font: 400 14px/var(--lhS) var(--fsG);
}


@media screen and (max-width: 800px) {
  #company {
    padding: 80px 0 350px 0;
    background: #e9e9e9;
    margin-top: -30px;
  }
  #company article {
    max-width: 1280px;
    width: calc(100% - 40px);
    gap: 30px;
  }
  #company article > header {
    flex-shrink: 0;
    width: 100%;
  }
  #company article > header h2 {
    display: block;
    color: #000;
    font: 400 72px/var(--lhS) var(--fsE);
    text-align: center;
  }
  #company article > header p {
    display: block;
    text-align: center;
  }
  #company article > header h3  {
    margin-top: 30px;
    margin-bottom: 0;
  }
  #company article > header figure {
    position: absolute;
    content: '';
    z-index: 5;
    width: calc(100% - 50px);
    right: 20px;
    bottom: 70px;
    left: 20px;
    margin: 0 !important;
  }
  #company article > header figure iframe {
    width: 100% !important;
    height: 240px;
  }
  #company article > div table tr th {
    width: 120px;
  }
  #company article > div table tr th,
  #company article > div table tr td {
    border-bottom: 1px solid #BABABA;
  }
}



/* ---------------------------------------------
	#cta Styles
--------------------------------------------- */

#cta {
  border-radius: 20px;
  margin-top: -20px;
  padding: 50px 0 80px 0;
  background: var(--colGraK);
}
#cta article {
  max-width: 1280px;
  width: calc(100% - 80px);
  margin: 0 auto;
}
#cta article > header {
  display: none;
}
#cta article > div {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}
#cta article > div > div {
  flex-shrink: 0;
  width: calc(33.33% - (80px / 3));
  border-radius: 10px;
  padding: 40px 35px 40px 35px;
  transition: all .3s;
}
#cta article > div > div.download {background: var(--colYell) url(../img/icon_dl.svg) no-repeat right -2px top 105px / 130px;}
#cta article > div > div.form     {background: var(--colOran) url(../img/icon_form.svg) no-repeat right -2px top 100px / 120px;}
#cta article > div > div.line     {background: var(--colGren) url(../img/icon_line.svg) no-repeat right -2px top 95px / 132px;}

#cta article > div > div.download:hover {background: var(--colYell) url(../img/icon_dl_hover.svg) no-repeat right -2px top 105px / 130px;}
#cta article > div > div.form:hover     {background: var(--colOran) url(../img/icon_form_hover.svg) no-repeat right -2px top 100px / 120px;}
#cta article > div > div.line:hover     {background: var(--colGren) url(../img/icon_line_hover.svg) no-repeat right -2px top 95px / 132px;}

#cta article > div > div h3 {
  transition: all .3s;
  margin-bottom: 80px;
  color: #fff;
  font: 500 32px/var(--lhS) var(--fsE);
  padding: 0 5px 10px 5px;
  background: url(../img/icon_cta_arr.svg) no-repeat right 4px top / 50px;
}
#cta article > div > div:hover h3 {
  background: url(../img/icon_cta_arr.svg) no-repeat right 0px top / 50px;
}
#cta article > div > div h3 em {
  display: block;
  font: 400 16px/var(--lhS) var(--fsG);
}
#cta article > div > div p {
  color: #fff;
  font: 400 15px/var(--lhS) var(--fsG);
}
#cta article > div > div.download p,
#cta article > div > div.download h3 {
  color: #000;
}

@media screen and (max-width: 1000px) {
  #cta {
    padding: 50px 0 70px 0;
  }
  #cta article {
    max-width: 1280px;
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  #cta article > div {
    flex-direction: column;
    gap: 20px;
  }
  #cta article > div > div {
    flex-shrink: 0;
    width: 100%;
    border-radius: 10px;
    padding: 30px 20px 30px 20px;
    transition: all .3s;
  }
}



/* ---------------------------------------------
	#globalFooter Styles
--------------------------------------------- */

#globalFooter {
  border-radius: 10px;
  margin-top: -20px;
  padding: 50px 0;
  background: #575757;
  position: relative;
  z-index: 11;
}
#globalFooter article {
  max-width: 1280px;
  width: calc(100% - 80px);
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0px;
}
#globalFooter article > header {
  background: #fff;
  border-radius: 10px;
  margin: -80px 0 0 0;
  padding: 20px 70px 40px 70px;
  flex-shrink: 0;
  width: 328px;
  position: relative;
  z-index: 11;
}
#globalFooter article > header address {
  font-style: normal;
  font: 400 14px/var(--lhS) var(--fsG);
  margin-bottom: 30px;
}
#globalFooter article > header div {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}
#globalFooter article > header div dl {
  flex-shrink: 0;
  width: calc(50% - 20px);
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}
#globalFooter article > header div dl dt {
  flex-shrink: 0;
  width: 100%;
  color: #BBB;
  font: 600 12px/var(--lhS) var(--fsE);
  border-bottom: 1px solid #bbb;
}
#globalFooter article > header div dl dd {
  flex-shrink: 0;
  width: calc(50% - 6px);
}
#globalFooter article > nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
#globalFooter article > nav ul {
  display: flex;
  gap: 50px;
  flex-direction: column;
  flex-wrap: wrap;
  height: 300px;
  width: 490px;
  gap: 10px;
}
#globalFooter article > nav li {
  flex-shrink: 0;
  width: 200px;
  margin-top: 30px;
}
#globalFooter article > nav li a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #fff;
  background: url(../img/icon_foot_arr.svg) no-repeat right center / 25px;
  font: 600 18px/var(--lhS) var(--fsE);
  color: #fff;
  letter-spacing: .08em;
}
#globalFooter article > nav li a:hover {
  background: url(../img/icon_foot_arr_hover.svg) no-repeat right center / 25px;
}
#globalFooter article > nav li a em {
  font: 400 11px/var(--lhS) var(--fsG);
  margin-left: .5em;
}

@media screen and (max-width: 800px) {

  #globalFooter {
    padding: 0 0 30px 0;
    background: #575757;
  }
  #globalFooter article {
    max-width: 1280px;
    width: calc(100% - 40px);
    margin: 0 auto;

    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0px;
  }
  #globalFooter article > header {
    margin: 50px 0 0 0;
    padding: 20px 50px 40px 50px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
  }
  #globalFooter article > header h2 {
    flex-shrink: 0;
    width: 80px;
  }
  #globalFooter article > header h2 img {
    width: 60px;
  }
  #globalFooter article > header address {
    padding-top: 10px;
    flex-shrink: 0;
    flex: 1;
  }

  #globalFooter article > nav ul {
    height: auto;
    width: 100%;
  }
  #globalFooter article > nav li {
    flex-shrink: 0;
    width: 100%;
    margin-top: 15px !important;
  }
}



/* ---------------------------------------------
	#post Styles ‐ POST
--------------------------------------------- */

#post article {
}
#post article > header {
  border-radius: 20px 20px 0 0;
  max-width: 1000px;
  width: calc(100% - 200px);
  margin: 0 auto;
  background: #fff;
  padding: 50px 100px;
}
#post article > header h1 {
  font: 700 32px/1.5 var(--fsG);
  color: #222;
}
#post article > div {
  background: #fff;
}
#post article > div .postBody {
  max-width: 1000px;
  width: calc(100% - 200px);
  margin: 0 auto;
  padding: 50px 75px;
}
#post article > div .postBody figure {
  margin-bottom: 40px;
}
#post article > div .postBody figure img {
  margin-bottom: 0px;
  border-radius: 12px;
}
#post article > div .postBody img {
  border-radius: 12px;
}
#post article > div .postBody h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  background: #FE6D01;
  border-radius: 10px;
  margin-bottom: 40px;
  font: 700 24px/150% var(--fsG);
  color: #fff;
}
#post article > div .postBody h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  font: 700 20px/149% var(--fsG);
  letter-spacing: 0.05em;
  color: #000;
}
#post article > div .postBody h3::before {
  content: '';
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: #FE6D01;
  border-radius: 50%;
}
#post article > div .postBody h4 {
  margin-bottom: 20px;
}
#post article > div .postBody p {
  font: 400 18px/200% var(--fsG);
  letter-spacing: 0.05em;
  color: #000;
  margin-bottom: 80px;
}

/* 関連記事（postBody 内） */
#post article > div .postBody hr.relatedDivider {
  border: none;
  border-top: 1px solid #333;
  margin: 0 0 40px 0;
}
#post article > div .postBody h2.relatedTitle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  height: 40px;
  margin-bottom: 40px;
  padding: 0;
  background: none;
  border-radius: 0;
  text-align: left;
}
#post article > div .postBody h2.relatedTitle::before {
  content: "";
  width: 5px;
  height: 26px;
  background: #FE6D01;
  flex: none;
}
#post article > div .postBody h2.relatedTitle span {
  font: 700 20px/200% var(--fsG);
  letter-spacing: 0.05em;
  color: #000;
}
#post article > div .postBody .relatedNewsList {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 0;
}
#post article > div .postBody .relatedNewsList a.postBox {
  display: block;
  width: 33.33%;
  padding: 0 15px;
  transition: all 0.3s ease;
}
#post article > div .postBody .relatedNewsList a.postBox:hover {
  color: var(--colOran);
}
#post article > div .postBody .relatedNewsList a.postBox figure {
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
}
#post article > div .postBody .relatedNewsList a.postBox figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
#post article > div .postBody .relatedNewsList a.postBox:hover figure img {
  transform: scale(1.04);
}
#post article > div .postBody .relatedNewsList a.postBox p {
  font: 400 14px/var(--lhS) var(--fsG);
  margin-bottom: 0;
}
#post article > div .postBody .relatedNewsList a.postBox p time {
  margin-top: 10px;
  display: block;
  text-align: right;
  font: 400 12px/var(--lhS) var(--fsE);
}

@media screen and (max-width: 800px) {
  #post article {
    position: relative;
  }
  #post article::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(102.58deg, rgba(255, 255, 255, 0.8) 1.21%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    z-index: -1;
    border-radius: 20px;
  }
  #post article > div .postBody .relatedNewsList {
    flex-direction: column;
  }
  #post article > div .postBody .relatedNewsList a.postBox {
    width: 100%;
    padding: 10px 0;
  }
  #post article > header {
    border-radius: 0px 20px 0px 0px;
    width: 92%;
    margin: 0 0 0 0;
    background: transparent;
    padding: 50px 20px !important;
  }
  #post article > header h1 {
    font: 600 32px/var(--lhS) var(--fsG);;
  }
  #post article > div {
    background: transparent;
  }
  #post article > div .postBody  {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 20px 50px 20px !important;
  }
}

/* ---------------------------------------------
	Pagination — 記事一覧ページネーション
--------------------------------------------- */

.navigation.pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
}
.navigation.pagination .nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.navigation.pagination .nav-links a,
.navigation.pagination .nav-links span {
  font: 500 18px/22px var(--fsE);
  color: #222;
  text-decoration: none;
  transition: color 0.3s ease;
}
.navigation.pagination .nav-links .current {
  color: #FE6D01;
  position: relative;
}
.navigation.pagination .nav-links .current::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #FE6D01;
}
.navigation.pagination .nav-links a:hover {
  color: #FE6D01;
}
.navigation.pagination .nav-links .dots {
  font-family: var(--fsG);
}
.navigation.pagination .nav-links .prev,
.navigation.pagination .nav-links .next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border: 1px solid #222;
  border-radius: 50%;
  font-size: 0;
  position: relative;
}
.navigation.pagination .nav-links .prev::after,
.navigation.pagination .nav-links .next::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #222;
  border-right: 2px solid #222;
}
.navigation.pagination .nav-links .prev::after {
  transform: rotate(-135deg);
  margin-left: 3px;
}
.navigation.pagination .nav-links .next::after {
  transform: rotate(45deg);
  margin-right: 3px;
}
.navigation.pagination .nav-links .prev:hover,
.navigation.pagination .nav-links .next:hover {
  border-color: #FE6D01;
}
.navigation.pagination .nav-links .prev:hover::after,
.navigation.pagination .nav-links .next:hover::after {
  border-color: #FE6D01;
}

/* ---------------------------------------------
	#relatedList Styles ‐ POST
--------------------------------------------- */

#relatedList {
  background: #fff;
}
#relatedList article {
  border-radius: 20px 20px 0px 0px;
  max-width: 1000px;
  width: calc(100% - 200px);
  margin: 0 auto;
  background: #fff;
  padding: 50px 50px;
}
#relatedList article > header {
  border-top: 1px solid #333;
  padding-top: 40px;
  margin: 0 25px;
}
#relatedList article > header h2 {
  border-left: 5px solid var(--colOran);
  font: 600 24px/var(--lhS) var(--fsG);
  padding-left: 20px;
  color: #000;
  margin-bottom: 40px;
}
#relatedList article > div .pageBack {
  margin-bottom: 100px;
}
#relatedList article > div .pageBack a {
  display: inline-block;
  width: 240px;
  border-radius: 3em;
  border: 1px solid #000;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
#relatedList article > div .pageBack a:hover {
  border: 1px solid var(--colOran);
  background: var(--colOran);
  color: #fff;
}
#relatedList article > div .newsList a.postBox p {
  font: 400 10px/var(--lhS) var(--fsG);
}
#relatedList article > div .newsList a.postBox p time {
  font: 400 8px/var(--lhS) var(--fsE);
}

@media screen and (max-width: 800px) {
  #relatedList article {
    border-radius: 20px 20px 0px 0px;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    background: #fff;
    padding: 20px 20px;
  }
  #relatedList article > header {
    border-top: 1px solid #333;
    padding-top: 40px;
    margin: 0;
  }
  #relatedList article > header h2 {
    border-left: 5px solid var(--colOran);
    font: 600 24px/var(--lhS) var(--fsG);
    padding-left: 20px;
    color: #000;
    margin-bottom: 40px;
    text-align: left;
  }
  #relatedList article > div #newsList .postBox {
    width: 100%;
    padding: 0;
    border: none;
  }
  #relatedList article > div #newsList .postBox p {
    font: 400 16px/var(--lhS) var(--fsG);
  }
  #relatedList article > div #newsList .postBox p time {
    font: 400 14px/var(--lhS) var(--fsG);
  }
}

/* ---------------------------------------------
	#relatedPosts Styles ‐ POST
--------------------------------------------- */
#relatedPosts {
  margin-top: 50px;
}
#relatedPosts article {
  background: linear-gradient(102.58deg, rgba(255, 255, 255, 0.8) 1.21%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  border-radius: 20px;
  max-width: 1000px;
  width: calc(100% - 200px);
  margin: 0 auto;
  padding: 50px 50px;
}
#relatedPosts article > header hgroup {
  margin-bottom: 30px;
}
#relatedPosts article > header h2 {
  font: 400 40px/var(--lhS) var(--fsE);
  color: var(--colOran);
}
#relatedPosts article > header p {
  font: 400 14px/var(--lhS) var(--fsG);
  color: var(--colOran);
}
#relatedPosts article > div .newsList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px 0;
}
#relatedPosts article > div .newsList a.postBox {
  display: block;
  width: 33.33%;
  padding: 0 15px;
  transition: all 0.3s ease;
}
#relatedPosts article > div .newsList a.postBox:hover {
  color: var(--colOran);
}
#relatedPosts article > div .newsList a.postBox figure {
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
}
#relatedPosts article > div .newsList a.postBox figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
#relatedPosts article > div .newsList a.postBox:hover figure img {
  transform: scale(1.04);
}
#relatedPosts article > div .newsList a.postBox p {
  font: 400 14px/var(--lhS) var(--fsG);
}
#relatedPosts article > div .newsList a.postBox p time {
  margin-top: 10px;
  display: block;
  text-align: right;
  font: 400 12px/var(--lhS) var(--fsE);
}

@media screen and (max-width: 800px) {
  #relatedPosts article {
    width: 100%;
    padding: 30px 20px;
  }
  #relatedPosts article > div .newsList {
    flex-direction: column;
  }
  #relatedPosts article > div .newsList a.postBox {
    width: 100%;
    padding: 10px 0;
  }
}

/* ---------------------------------------------
	#inquiry Styles ‐ INQUIRY
--------------------------------------------- */
#inquiry article {
  position: relative;
}
#inquiry article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(102.58deg, rgba(255, 255, 255, 0.8) 1.21%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  z-index: -1;
}
#inquiry article > header {
  padding: 30px 50px;
  width: fit-content;
}
#inquiry article > div {
}
#inquiry article > header p {
  color: var(--colOran);
}
#inquiry article > div .notice {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  height: 300px;
}
#inquiry article > div .notice h3 {
  font: 600 32px/var(--lhS) var(--fsG);
  text-align: center;
  letter-spacing: .08em;
  margin-bottom: 20px;
}
#inquiry article > div .notice p {
  font: 400 16px/var(--lhS) var(--fsG);
  text-align: center;
}
#inquiry article > div .form {
  max-width: 1000px;
  width: calc(100% - 40px);
  padding: 60px 50px 80px;
  margin: 0 auto;
  background: transparent;
  border-radius: 16px;
}
#inquiry article > div .form label {
  display: block;
  margin-top: 32px;
  margin-bottom: 8px;
  font: 500 14px/var(--lhS) var(--fsG);
  color: var(--colGraK);
  letter-spacing: 0.04em;
}
#inquiry article > div .form label span.required {
  display: inline-block;
  font: 700 10px/1 var(--fsE);
  color: #fff;
  background: var(--colOran);
  padding: 3px 8px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
  letter-spacing: 0.06em;
}
/* CF7 バリデーションエラー */
.wpcf7 .wpcf7-not-valid {
  border-color: #DF0000 !important;
  background: #fff5f5 !important;
}
.wpcf7 .wpcf7-not-valid-tip {
  color: #DF0000;
  font-size: 12px;
  margin-top: 6px;
  display: block;
  letter-spacing: 0.02em;
}
.wpcf7 .wpcf7-response-output {
  border: none !important;
  padding: 16px 24px !important;
  margin: 40px 0 0 !important;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.wpcf7 .wpcf7-response-output.wpcf7-validation-errors,
.wpcf7 .wpcf7-response-output.wpcf7-spam-blocked {
  background: #DF0000;
  color: #fff;
}
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: #1a8a1a;
  color: #fff;
}
#inquiry article > div .form label.more::after {
  content: '※必須';
  display: inline-block;
  font: 700 12px/1 var(--fsG);
  color: #DF0000;
  background: none;
  padding: 0;
  border-radius: 0;
  margin-left: 0.5em;
  vertical-align: middle;
}
#inquiry article > div .form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff url(../img/icon_select_arr.svg) no-repeat right 16px center / 12px;
  width: 100%;
  height: 56px;
  padding: 14px 50px 14px 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: fit-content;
  font: 400 15px/var(--lhS) var(--fsG);
  color: var(--colGraK);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#inquiry article > div .form select:focus {
  outline: none;
  border-color: var(--colOran);
  box-shadow: 0 0 0 3px rgba(254, 109, 1, 0.12);
}
#inquiry article > div .form input {
  width: 100%;
  height: 56px;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font: 400 15px/var(--lhS) var(--fsG);
  color: var(--colGraK);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#inquiry article > div .form input:focus,
#inquiry article > div .form textarea:focus {
  outline: none;
  border-color: var(--colOran);
  box-shadow: 0 0 0 3px rgba(254, 109, 1, 0.12);
}
#inquiry article > div .form input::placeholder,
#inquiry article > div .form textarea::placeholder {
  color: #bbb;
}
#inquiry article > div .form textarea {
  border-radius: 8px;
  padding: 14px 18px;
  width: 100%;
  border: 1px solid #ddd;
  font: 400 15px/var(--lhS) var(--fsG);
  color: var(--colGraK);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 180px;
  resize: vertical;
}
#inquiry article > div .form .submit {
  margin-top: 50px;
}
#inquiry article > div .form .submit input {
  display: block;
  margin: 0 auto;
  border: none;
  background: var(--colGraK);
  padding: 18px 20px;
  width: 320px;
  max-width: 100%;
  color: #fff;
  font: 600 16px/var(--lhS) var(--fsE);
  text-align: center;
  border-radius: 60px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
#inquiry article > div .form .submit input:hover {
  background: linear-gradient(135deg, #FF7700 0%, #F50000 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(254, 109, 1, 0.35);
}
#inquiry article > div .form .wpcf7-form-control-wrap[data-name="privacy-policy"] {
  display: block;
  margin-top: 30px;
  padding: 0;
}
#inquiry article > div .form .wpcf7-list-item {
  margin: 0 !important;
}
#inquiry article > div .form input[type=checkbox] {
  display: inline-block;
  width: 22px !important;
  height: 22px !important;
  padding: 0 !important;
  border: 1px solid #ccc;
  border-radius: 4px;
  accent-color: var(--colOran);
  color: #fff;
  cursor: pointer;
  vertical-align: middle;
}
#inquiry article > div .form input[type=checkbox] + label {
  display: inline-block;
  margin-left: .5em;
  vertical-align: middle;
}
#inquiry article > div .form input[type=checkbox] + label a,
#inquiry article > div .form .wpcf7-acceptance a,
#inquiry article > div .form .wpcf7-list-item-label a {
  font: 500 15px/var(--lhS) var(--fsG);
  color: var(--colOran) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding-right: 5px;
  transition: color 0.2s ease;
}
#inquiry article > div .form input[type=checkbox] + label a:hover,
#inquiry article > div .form .wpcf7-acceptance a:hover,
#inquiry article > div .form .wpcf7-list-item-label a:hover {
  color: #FF7700 !important;
}
@media screen and (max-width: 800px) {
  #inquiry article > div .form {
    padding: 40px 20px 60px;
    border-radius: 12px;
  }
  #inquiry article > div .form label {
    margin-top: 24px;
    font-size: 13px;
  }
  #inquiry article > div .form input,
  #inquiry article > div .form textarea,
  #inquiry article > div .form select {
    height: 50px;
    padding: 12px 14px;
    font-size: 14px;
  }
  #inquiry article > div .form textarea {
    height: auto;
    min-height: 150px;
  }
  #inquiry article > div .form .submit {
    margin-top: 40px;
  }
  #inquiry article > div .form .submit input {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
  }
}


/* ---------------------------------------------
	#about Styles ‐ ABOUT US
--------------------------------------------- */
#about article {
  position: relative;
}
#about article::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
}
#about article > header {
  padding: 30px 50px;
  width: fit-content;
}
#about article > header p {
  color: var(--colOran);
}
#about article > div {
  max-width: 1000px;
  width: calc(100% - 40px);
  padding-bottom: 100px;
  margin: 0 auto;
  padding: 30px 50px 100px 50px;
}


/* ---------------------------------------------
	#reviews Styles ‐ REVIEWS
--------------------------------------------- */
#reviews article {
  position: relative;
}
#reviews article::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
}
#reviews article > header {
  padding: 30px 50px;
  width: fit-content;
}
#reviews article > header p {
  color: var(--colOran);
}
#reviews article > div {
  margin: 0 !important;
  padding: 30px 50px 100px 50px;
}
#reviews article > div > div {
  max-width: 1000px;
  width: calc(100% - 40px);
  padding-bottom: 100px;
  margin: 0 auto;
}



/* ---------------------------------------------
	#service Styles ‐ SERVICE
--------------------------------------------- */
#services article {
  position: relative;
}
#services article::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
}
#services article > header {
  padding: 30px 50px;
  width: fit-content;
}
#services article > header p {
  color: var(--colOran);
}
#services article > div {
  margin: 0 !important;
  padding: 30px 50px 100px 50px;
}
#services article > div > div {
  max-width: 1000px;
  width: calc(100% - 40px);
  padding-bottom: 100px;
  margin: 0 auto;
}

/* ---------------------------------------------
	#careers Styles ‐ SERVICE
--------------------------------------------- */
#careers {
  background: rgba(220,220,220,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
}
#careers article {
  padding: 50px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}
#careers article > header {
  flex-shrink: 0;
  border-radius: 0px 20px 0px 0px;
  background: none !important;
  width: fit-content;
  padding: 30px;
}
#careers article > header p.sholder {
  background: #000;
  color: #fff;
  padding:10px 20px;
  border-radius: 2em;
  font: 600 16px/var(--lhS) var(--fsE);
  text-align: center;
  width: fit-content;
}
#careers article > header h1 {
  font: 600 40px/var(--lhS) var(--fsG);
}
#careers article > header h1 strong {
  display: block !important;
  font: 600 60px/var(--lhS) var(--fsG);
  color: var(--colOran);
}
body.is-english #careers article > header h1 {
  font: 700 40px/150% var(--fsE);
  letter-spacing: 0.05em;
  color: #222;
  text-align: center;
}
body.is-english #careers article > header h1 strong {
  display: inline !important;
  font: 700 40px/150% var(--fsE);
  color: var(--colOran);
}
#careers article > div {
  flex: 1;
  margin: 0 !important;
  padding: 30px 50px 100px 50px;
  background: none !important;
}
#careers article > div > div.careerList div {
  width: 640px;
  border-radius: 15px;
  background: #fff;
  aspect-ratio: 65 / 40;
  object-fit: cover;
}
#careers article > div > div.careerList div hgroup {
  position: relative;
  border-radius: 15px 15px 0 0;
  background: var(--colOran);
  height: 140px;
}
#careers article > div > div.careerList div:nth-of-type(1) {background: #fff url(../img/career_card_01.png) no-repeat right bottom / 300px;}
#careers article > div > div.careerList div:nth-of-type(2) {background: #fff url(../img/career_card_02.png) no-repeat right bottom / 300px;}
#careers article > div > div.careerList div:nth-of-type(3) {background: #fff url(../img/career_card_03.png) no-repeat right bottom / 300px;}
#careers article > div > div.careerList div:nth-of-type(4) {background: #fff url(../img/career_card_04.png) no-repeat right bottom / 300px;}
#careers article > div > div.careerList div:nth-of-type(1) hgroup {background: var(--colOran);}
#careers article > div > div.careerList div:nth-of-type(2) hgroup {background: var(--colYell);}
#careers article > div > div.careerList div:nth-of-type(3) hgroup {background: var(--colLime);}
#careers article > div > div.careerList div:nth-of-type(4) hgroup {background: var(--colBlue);}
#careers article > div > div.careerList div hgroup h3 {
  position: absolute;
  right: 0;
  bottom: -45px;
  left: 30px;
  font: 700 64px/var(--lhS) var(--fsE);
}
#careers article > div > div.careerList div hgroup h3::before {
  position: absolute;
  left: 0;
  top: -40px;
  content: '01';
  font: 700 38px/var(--lhS) var(--fsE);
}
#careers article > div > div.careerList div.value-card:nth-of-type(2) hgroup h3::before {content: '02';}
#careers article > div > div.careerList div.value-card:nth-of-type(3) hgroup h3::before {content: '03';}
#careers article > div > div.careerList div.value-card:nth-of-type(4) hgroup h3::before {content: '04';}

#careers article > div > div.careerList div dl {
  margin-top: 100px;
  padding-left: 30px;
  max-width: 350px;
}
#careers article > div > div.careerList div dl dt {
  font: 700 28px/var(--lhS) var(--fsG);
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #999;
}


.mar {
  position: absolute;
  content: '';
  z-index: 15;
  right: 0;
  bottom: -110px;
  left: 0;
  width: 100% !important;
  padding-bottom: 30px;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
}

.loop-barrier {
  display: flex !important;
  width: max-content !important;
  flex-wrap: nowrap !important;
  animation: marquee-final 60s linear infinite !important;
}

.loop-item {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #fff !important;
  font: 300 220px/var(--lh0) var(--fsE);
  font-style: normal !important;
  white-space: nowrap !important;
  opacity: 1 !important;
  visibility: visible !important;
}

@keyframes marquee-final {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}



/* スクロールさせるための「縦の長さ」を作る */
.career-scroll-space {
  height: 350vh;
  position: relative;
  margin-bottom: -100vh;
}
@media screen and (max-width: 800px) {
  .career-scroll-space {
    margin-bottom: -50vh;
  }
}

/* スクロール中、画面にずっと固定させる */
.career-sticky-viewport {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 2500px;
  overflow: hidden; /* 飛んでいったカードが画面外で悪さをしないように */
}

/* careerListの中のdivをすべて「同じ場所」に重ねる */
.careerList {
  position: relative;
  width: 640px; /* 元のデザインに合わせる */
  height: 400px; /* aspect-ratioから計算 */
}

.value-card {
  position: absolute !important; /* 絶対に重ねる */
  top: 0;
  left: 0;
  will-change: transform, opacity;
  transform-style: preserve-3d;
}

/* z-indexの自動割り振り（JSでやりますが予備） */
.value-card:nth-child(1) { z-index: 4; }
.value-card:nth-child(2) { z-index: 3; }
.value-card:nth-child(3) { z-index: 2; }
.value-card:nth-child(4) { z-index: 1; }


/* ---------------------------------------------
	#enviro Styles ‐ SERVICE
--------------------------------------------- */
#enviro {
  position: relative;
  z-index: 5;
  border-radius: 20px;
}
#enviro article {
  padding: 100px 0 0 0;
}
#enviro article > header {
  padding: 30px 50px;
  border-radius: 20px 20px 0px 0px;
  background: var(--colOran);
  width: fit-content;
}
#enviro article > header h2 {
  color: #fff;
}
#enviro article > header p {
  color: #fff;
}
#enviro article > div {
  margin-top: -70px;
  padding: 100px 50px 70px 50px;
  border-radius: 0px 20px 20px 20px;
  background: var(--colOran);
}
#enviro article > div .enviroList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
#enviro article > div .enviroList ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
#enviro article > div .enviroList ul li {
  border: 1px solid #fff;
  flex-shrink: 0;
  width: calc((100% / 6) - (20px * 5 / 6));
  border-radius: 12px;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
#enviro article > div .enviroList ul li img {
  margin-top: 10px;
  height: 50px;
}
#enviro article > div .enviroList ul li p {
  font: 500 16px/var(--lhS) var(--fsG);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  height: 60px;
  flex-direction: column;
}
#enviro article > div .enviroList ul li p em {
  font-style: normal;
  font-size: 13px;
}
.enviro-nav-btns {
  display: none;
}
.enviro-nav-btns button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  cursor: pointer;
}
.enviro-nav-btns button img {
  width: 16px;
  filter: brightness(0) invert(1);
}

/* ---------------------------------------------
	#description Styles ‐ SERVICE
--------------------------------------------- */
#description {
  position: relative;
  z-index: 1;
  border-radius: 50px;
  margin-top: -50px;
  background: #ececec;
}
#description article {
  padding: 80px 50px;
}
#description article > header {
  margin-bottom: 80px;
}
#description article > header h2 {
  color: #000;
}
#description article > div .descList > div {
  margin-bottom: 50px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0 50px;
}
hr.desc-divider {
  border: none;
  border-top: 1px solid #999;
  width: 100%;
  margin: 0 0 30px 0;
}
#description article > div .descList ul {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 10px;
  margin-bottom: 0;
}
#description article > div .descList > div > div {
  flex: 1;
  min-width: 0;
  order: 1;
}
#description article > div .descList > div > figure {
  flex-shrink: 0;
  width: 320px;
  order: 2;
  border-radius: 12px;
  overflow: hidden;
}
#description article > div .descList > div > figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
#description article > div .descList ul li.status::before {
  content: '●';
  color: var(--colOran);
  margin-right: .5em;
}
#description article > div .descList .fin ul li.status::before {
  content: '●';
  color: #ccc;
  margin-right: .5em;
}
#description article > div .descList h3 {
  font: 600 24px/var(--lhS) var(--fsE);
  margin-bottom: 30px;
}
#description article > div .descList h3 em {
  font: 400 16px/var(--lhS) var(--fsG);
  display: block;
}
#description article > div .descList p {
  font: 400 16px/var(--lhL) var(--fsG);
}
#description article > div .descList p + p.view {
  margin-top: 2em;
  margin-left: auto;
  width: fit-content;
  text-align: right;
}
#description article > div .descList p + p.view a {
  padding: 10px 80px 10px 20px;
  border-radius: 2em;
  background: #000 url(../img/arr_button.svg) no-repeat right 16px center / 20px;
  display: inline-block;
  color: #fff !important;
  width: fit-content;
  font: 400 14px/var(--lhS) var(--fsE);
}
#description article > div .descList p + p.view a:hover {
  padding: 10px 80px 10px 20px;
  border-radius: 2em;
  background: var(--colOran) url(../img/arr_button.svg) no-repeat right 16px center / 20px;
  display: inline-block;
  color: #fff !important;
  width: fit-content;
  font: 400 14px/var(--lhS) var(--fsE);
}

#description article > div .descList .fin  p.view {
  display: none;
}
#description article > div .descList .fin > figure {
  opacity: 0.4;
}
#description article > div .descList .fin > div {
  opacity: 0.5;
}
/* desc-nav-btns: PC では非表示 */
.desc-nav-btns {
  display: none;
}
@media screen and (max-width: 800px) {
  #description article {
    padding: 40px 16px;
  }
  #description article > header {
    margin-bottom: 80px;
    margin-top: 40px;
  }
  #description article > div .descList > div {
    flex-direction: column;
    gap: 20px;
  }
  #description article > div .descList > div > figure {
    width: 100%;
    max-height: none;
    border-radius: 0 !important;
    overflow: visible;
    order: unset;
  }
  #description article > div .descList > div > div {
    order: unset;
  }
  #description article > div .descList > div > figure img {
    border-radius: 0 !important;
    object-fit: contain !important;
  }
  #description article > div .descList h3 {
    font-size: 20px;
  }
}

#description article > div .appBnr {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
#description article > div .appBnr a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 12px;
  background: url(../img/bkg_recButton.png) no-repeat center center / cover;
  height: fit-content;
  padding: 30px 120px;
  gap: 10px;
  text-align: center;
}
#description article > div .appBnr a::before {
  border-radius: 12px;
  position: absolute;
  content: '';
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,.6);
  pointer-events: none;
}
#description article > div .appBnr a p {
  display: inline-block;
  font: 400 32px/var(--lhL) var(--fsG);
  z-index: 5;
  color: #fff;
  border-bottom: 1px solid #fff;
  margin-bottom: 40px;
}
#description article > div .appBnr a p strong {
  display: block;
  width: fit-content;
  color: var(--colYell);
  border-bottom: 1px solid #fff;
}
body.is-english #description article > div .appBnr a p {
  font: 700 24px/170% var(--fsG);
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0px 0px 34px rgba(0, 0, 0, 0.5);
  border-bottom: none;
}
body.is-english #description article > div .appBnr a p strong {
  font-size: 32px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.05em;
  color: #FFE900;
  text-shadow: 0px 0px 34px rgba(0, 0, 0, 0.5);
  text-decoration: underline;
  text-decoration-color: #fff;
  text-underline-offset: 4px;
  border-bottom: none;
}
#description article > div .appBnr a button {
  z-index: 5;
  border-radius: 2em;
  background: #000 url(../img/arr_button.svg) no-repeat right 20px center / 24px;
  color: #fff;
  padding: 10px 80px 10px 30px;
  border: 2px solid #fff;
  cursor: pointer;
  transition: background 0.3s ease, padding 0.3s ease;
}
#description article > div .appBnr a:hover button {
  background-color: transparent;
  background-image: linear-gradient(to right, #FF7700 10%, #F50000 90%), url(../img/arr_button.svg);
  background-repeat: no-repeat;
  background-position: center, right 15px center;
  background-size: cover, 24px;
  padding-right: 85px;
}
body.is-english #inquiry article > header {
  padding-right: 80px;
}
body.is-english #description article > div .appBnr a {
  align-items: flex-start;
  padding: 30px 60px;
}
body.is-english #description article > div .appBnr a p {
  text-align: left;
}


/* ==========================================================
   SP レスポンシブ — 採用ページ全体
   ========================================================== */
@media screen and (max-width: 800px) {

  /* --- FV (careers) --- */
  body#contents.careers #firstView .inner > header h2 {
    font-size: 32px;
  }

  /* --- #careers (Value cards) --- */
  .career-sticky-viewport {
    overflow: hidden;
  }
  #careers {
    border-radius: 15px;
  }
  #careers article {
    padding: 30px 16px;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 20px;
  }
  #careers article > header {
    width: 100% !important;
    text-align: center;
  }
  #careers article > header h1,
  #careers article > header .sholder {
    font-size: 28px;
    text-align: center;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  #careers article > header h1 strong {
    font-size: 40px;
  }
  body.is-english #careers article > header h1 {
    font: 700 24px/150% var(--fsE) !important;
    letter-spacing: 0.05em;
    color: #222;
  }
  body.is-english #careers article > header h1 strong {
    display: inline !important;
    font: 700 24px/150% var(--fsE) !important;
    color: var(--colOran);
  }
  #careers article > div {
    padding: 0 !important;
    width: 100%;
  }
  .careerList {
    position: relative;
    width: 90vw;
    margin-left: calc((90vw - 100%) / -2);
    height: 350px;
  }
  .value-card {
    width: 100% !important;
    left: 0 !important;
  }
  #careers article > div > div.careerList div {
    width: 90vw;
    height: 346px;
    aspect-ratio: auto;
    border-radius: 17px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
  }
  #careers article > div > div.careerList div hgroup {
    height: 29%;
    border-radius: 17px 17px 0 0;
  }
  #careers article > div > div.careerList div hgroup h3 {
    font: 800 40px/140% var(--fsE);
    left: 7%;
    bottom: -35px;
  }
  #careers article > div > div.careerList div hgroup h3::before {
    font: 700 28px/140% var(--fsE);
    top: -32px;
    letter-spacing: 0.05em;
  }
  #careers article > div > div.careerList div dl {
    margin-top: 60px;
    padding: 0 16px 20px;
    max-width: 52%;
  }
  #careers article > div > div.careerList div dl dt {
    font-size: 20px;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #000;
  }
  #careers article > div > div.careerList div dl dd {
    font: 400 14px/140% var(--fsG);
    letter-spacing: 0.05em;
    color: #222;
  }
  #careers article > div > div.careerList div:nth-of-type(1),
  #careers article > div > div.careerList div:nth-of-type(2),
  #careers article > div > div.careerList div:nth-of-type(3),
  #careers article > div > div.careerList div:nth-of-type(4) {
    background-size: 65% auto !important;
    background-position: left 120% top 150px !important;
  }

  /* --- marquee --- */
  .mar {
    bottom: -60px;
  }
  .loop-item {
    font-size: 80px;
  }

  /* --- #enviro (Work Environment) --- */
  #enviro article {
    padding: 60px 0 0 0;
  }
  #enviro article > header {
    padding: 20px 24px;
  }
  #enviro article > div {
    margin-top: -40px;
    padding: 60px 16px 40px;
  }
  #enviro article > div .enviroList {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  #enviro article > div .enviroList::-webkit-scrollbar {
    display: none;
  }
  #enviro article > div .enviroList ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
    height: 240px;
    gap: 10px;
    width: max-content;
  }
  #enviro article > div .enviroList ul li {
    width: calc(50vw - 24px);
    height: 115px;
    padding: 12px 8px;
    scroll-snap-align: start;
    flex-shrink: 0;
    flex-grow: 0;
  }
  #enviro article > div .enviroList ul li:last-child {
    margin-bottom: auto;
  }
  #enviro article > div .enviroList ul li p {
    font-size: 13px;
    height: 45px;
  }
  #enviro article > div .enviroList ul li img {
    height: 36px;
  }
  .enviro-nav-btns {
    display: flex !important;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 16px;
  }

  /* --- #description (Job Description) --- */
  #description {
    border-radius: 0;
    margin-top: -30px;
  }
  #description article > header h2 {
    font: 500 60px/110% var(--fsE) !important;
    text-align: center;
    letter-spacing: 0.03em;
    color: #222;
  }
  body.is-english #description {
    margin-top: 40px;
    padding-bottom: 40px;
  }
  body.is-english #description article > div .appBnr a p span {
    display: block;
    font: 500 20px/210% var(--fsG) !important;
    color: #fff;
    text-shadow: 0px 0px 34px rgba(0, 0, 0, 0.5);
  }
  body.is-english #description article > div .appBnr a p strong {
    display: block;
    font: 700 24px/170% var(--fsG) !important;
    color: #FFE900;
    text-shadow: 0px 0px 34px rgba(0, 0, 0, 0.5);
  }
  #description article > div .descList > div {
    flex-direction: column;
    gap: 20px;
  }
  #description article > div .descList > div > figure {
    width: 100%;
    max-height: none;
    border-radius: 0 !important;
    overflow: visible;
  }
  #description article > div .descList > div > figure img {
    border-radius: 0 !important;
    object-fit: contain !important;
  }
  #description article > div .descList ul {
    gap: 10px;
    flex-wrap: wrap;
  }
  #description article > div .descList h3 {
    font: 600 32px/140% var(--fsE) !important;
    color: #000;
    margin-bottom: 16px;
  }
  #description article > div .descList h3 em {
    font-size: 14px;
  }
  #description article > div .descList p + p.view {
    margin-top: 1em;
  }

  /* --- appBnr (エントリーバナー) --- */
  #description article > div .appBnr a {
    background-image: url(../img/recruit_cta_sp.png) !important;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    min-height: 597px;
    padding: 0 40px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding-bottom: 50px;
    text-align: left;
  }
  #description article > div .appBnr a::before {
    border-radius: 20px;
    background: rgba(6, 6, 6, 0.3);
  }
  #description article > div .appBnr a p {
    font: 700 32px/210% var(--fsG) !important;
    letter-spacing: 0.05em;
    color: #fff;
    text-shadow: 0px 0px 34px rgba(0, 0, 0, 0.5);
    border-bottom: none;
    margin-bottom: 40px;
  }
  #description article > div .appBnr a p strong {
    font: 700 32px/210% var(--fsG);
    color: #FFE900;
    border-bottom: 1px solid #fff;
  }
  #description article > div .appBnr a button {
    background: #FE6D01 url(../img/arr_button.svg) no-repeat right 15px center / 24px;
    border: 1.28px solid #fff;
    border-radius: 1274px;
    padding: 10px 50px 10px 15px;
    font: 500 16px/150% var(--fsG);
    color: #fff;
  }
}

/* SP menu fix — full width overlay */
@media screen and (max-width: 900px) {
  nav#globalNav > div {
    position: fixed !important;
    top: 67px;
    right: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 67px);
    height: calc(100dvh - 67px);
    overflow-y: auto;
    border-radius: 0;
  }
}

/* Thanks page — back button */
.btn-back {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 50px;
  border: 1px solid #222;
  border-radius: 892px;
  font: 400 17px/140% var(--fsE);
  letter-spacing: 0.05em;
  color: #000 !important;
  text-decoration: none;
  box-shadow: 2px 2px 2px rgba(0,0,0,.3);
  background: transparent;
}
.btn-back:hover {
  background: var(--colOran);
  color: #fff !important;
  border-color: var(--colOran);
}
body.is-english .btn-back {
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  width: 260px;
  height: 50px;
  border: 1px solid #222 !important;
  border-radius: 892px !important;
  font: 400 17px/140% var(--fsE) !important;
  letter-spacing: 0.05em;
  color: #000 !important;
  text-decoration: none;
  box-shadow: 2px 2px 2px rgba(0,0,0,.3);
  background: transparent !important;
  padding: 0 !important;
}
body.is-english .btn-back:hover {
  background: var(--colOran) !important;
  color: #fff !important;
  border-color: var(--colOran) !important;
}

.btn-download {
  display: flex !important;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 30px !important;
  width: 300px !important;
  height: 60px !important;
  background: #222 !important;
  color: #fff !important;
  border: 3px solid #fff !important;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25) !important;
  border-radius: 10px !important;
  font: 500 16px/140% var(--fsG) !important;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.btn-download:hover {
  background: #444 !important;
}

/* Floating recruit button (top page only) */
#floating-recruit {
  position: fixed;
  z-index: 9999;
  right: 20px;
  bottom: 20px;
  transition: all .18s;
}
#floating-recruit a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 120px;
  height: 120px;
  background: #000;
  color: #fff;
  border: 3px solid #fff;
  border-radius: 50%;
  font: 600 16px/var(--lhS) var(--fsG);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  transition: all .18s;
}
#floating-recruit a:hover {
  width: 130px;
  height: 130px;
  margin-right: -5px;
  margin-bottom: -5px;
  background: linear-gradient(to right, #FF7700 10%, #F50000 90%);
}
#floating-recruit a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: '';
  width: 33px;
  height: 33px;
  background: url(../img/icon_cta_arr.svg) no-repeat center center / contain;
}

/* Privacy Policy page */
.privacy-content {
  max-width: 1000px;
  width: calc(100% - 40px);
  margin: 0 auto;
  padding: 60px 0 150px 0;
}
.privacy-content h3 {
  font: 600 20px/var(--lhS) var(--fsG);
  margin: 40px 0 12px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--colOran);
}
.privacy-content p {
  font: 400 16px/var(--lhL) var(--fsG);
  margin-bottom: 16px;
}
.privacy-content ul {
  margin: 0 0 16px 1.5em;
  list-style: disc;
}
.privacy-content ul li {
  font: 400 16px/var(--lhL) var(--fsG);
  margin-bottom: 4px;
}
@media screen and (max-width: 800px) {
  .privacy-content {
    padding: 30px 0 60px 0;
  }
  .privacy-content h3 {
    font-size: 18px;
  }
}

/* SP overflow fix */
@media screen and (max-width: 800px) {
  body#contents.careers #firstView {
    overflow: visible;
  }
  /* セクション見出しのSP用フォントサイズ */
  #enviro article > header h2 {
    font: 500 44px/110% var(--fsE) !important;
    text-align: center;
    color: #fff;
  }
  #enviro article > header {
    padding: 20px 20px;
    max-width: 100%;
    box-sizing: border-box;
  }
  #enviro article > div {
    padding: 80px 20px 40px 20px;
  }
  #description article {
    padding: 40px 20px;
  }
  #description article > div .descList > div {
    flex-direction: column;
  }
  #description article > div .descList > div > figure {
    width: 100%;
  }
  .scroll-wrapper {
    overflow: visible;
  }
  #service {
    width: 100% !important;
    border-radius: 20px;
  }
}

/* ==========================================================
   英語版ページ — フォーム必須バッジ
   ========================================================== */
body.is-english #inquiry article > div .form label.more::after {
  content: 'Required';
}

/* ==========================================================
   SP — ナビメニュー内 言語切替ボタン（上部配置）
   ========================================================== */
.sp-lang-switch {
  display: none;
}
@media screen and (max-width: 800px) {
  .sp-lang-switch {
    display: block;
    text-align: right;
    padding: 8px 20px 0;
  }
  .sp-lang-switch a {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid #fff;
    border-radius: 30px;
    color: #fff;
    font: 500 14px/1 var(--fsE);
    text-decoration: none;
    transition: all .2s;
  }
  .sp-lang-switch a:hover {
    background: #fff;
    color: #000;
  }
  /* ul.contact — Download・Form・LINE ボタンスタイル（CTA順・色合わせ / タスク14） */
  nav#globalNav div > ul.contact li {
    display: block !important;
    margin-top: 10px !important;
  }
  nav#globalNav div > ul.contact li a {
    display: block !important;
    font: 400 16px/var(--lhS) var(--fsG) !important;
    padding: 20px 30px !important;
    border-radius: 8px !important;
    border: none !important;
    color: #fff !important;
  }
  nav#globalNav div > ul.contact li a em {
    display: block !important;
    font: 600 32px/var(--lhS) var(--fsE) !important;
  }
  /* Download（1番目）: 黄 / 文字黒 */
  nav#globalNav div > ul.contact li:nth-child(1) a {
    background: var(--colYell) url(../img/icon_cta_arr.svg) no-repeat right 20px top 20px / 40px !important;
    color: #000 !important;
  }
  nav#globalNav div > ul.contact li:nth-child(1) a em {
    color: #000 !important;
  }
  /* Form（2番目）: オレンジ */
  nav#globalNav div > ul.contact li:nth-child(2) a {
    background: var(--colOran) url(../img/icon_cta_arr.svg) no-repeat right 20px top 20px / 40px !important;
  }
  /* LINE（3番目）: 緑 / common.css の last-child 白枠を打ち消し */
  nav#globalNav div > ul.contact li:nth-child(3) a {
    background: var(--colGren) url(../img/icon_cta_arr.svg) no-repeat right 20px top 20px / 40px !important;
    border: none !important;
  }
  /* ナビメニューをスクロール可能に */
  nav#globalNav > div {
    max-height: calc(100vh - 60px);
    max-height: calc(100dvh - 60px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 40px;
  }
  /* ナビメニュー展開時に追従ボタンを非表示 */
  body.spMenu #floating-recruit {
    opacity: 0 !important;
    pointer-events: none !important;
  }
}

/* ==========================================================
   EN PC — ヘッダーナビリンク表示（em なしのため font-size 復元）
   ========================================================== */
body.is-english nav#globalNav div > ul > li > a {
  font-size: clamp(12px, 1.2vw, 14px) !important;
  font-family: var(--fsG);
}

/* ==========================================================
   SP — ナビメニュー展開時に追従ボタンを非表示
   ========================================================== */
@media screen and (max-width: 800px) {
  body.spMenu #floating-recruit {
    opacity: 0;
    pointer-events: none;
  }
}

/* ==========================================================
   SP — 追従ボタン フワッと出現 + フッターで非表示
   ========================================================== */
@media screen and (max-width: 800px) {
  #floating-recruit {
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
  }
  #floating-recruit.is-visible {
    opacity: 1;
    pointer-events: auto;
  }
  #floating-recruit.is-hidden-footer {
    opacity: 0;
    pointer-events: none;
  }
}

/* ==========================================================
   英語版 FV — テキスト折り返し・下切れ修正
   ========================================================== */
body.is-english #firstView .inner > header h2 + p span {
  white-space: normal !important;
  word-break: break-word !important;
}
/* SP — フォームページ見出し・説明文のサイズ調整 */
@media screen and (max-width: 800px) {
  #inquiry article > div .notice {
    height: auto;
    padding: 30px 16px;
  }
  #inquiry article > div .notice h3 {
    font: 500 clamp(14px, 4vw, 18px)/var(--lhM) var(--fsG);
    letter-spacing: .04em;
  }
  /* セレクトボックスのはみ出し防止 */
  #inquiry article > div .form .wpcf7-form-control-wrap {
    display: block;
    max-width: 100%;
  }
  #inquiry article > div .form select {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  #inquiry article > header {
    width: fit-content;
    padding: 20px 24px;
  }
  #inquiry article > header p {
    text-align: left;
  }
  #inquiry article header hgroup h2 {
    font: 500 80px/150% var(--fsE) !important;
    letter-spacing: 0.03em;
    color: var(--colOran);
  }
  body.is-english #inquiry article header hgroup h2 {
    font: 500 50px/120% var(--fsE) !important;
    letter-spacing: 0.03em;
    color: var(--colOran);
    text-align: left !important;
  }
  body.is-english #inquiry article > div .notice {
    align-items: center;
  }
  body.is-english #inquiry article > div .notice h3 {
    text-align: center !important;
  }
  body.is-english #inquiry article > div .notice p {
    text-align: center !important;
  }
  #inquiry article > div .notice h3 {
    font: 700 24px/150% var(--fsG) !important;
    text-align: center;
    letter-spacing: 0.1em;
    color: #000;
  }
  #inquiry article > div .notice p {
    font: 400 16px/150% var(--fsG) !important;
    text-align: center;
    letter-spacing: 0.1em;
    color: #000;
  }
}
/* h2のchar-box下切れ防止 */
body.is-english #firstView .inner > header h2 {
  overflow: visible;
  line-height: 1.2;
}
body.is-english #firstView .inner > header h2 .char-box {
  overflow: visible;
}
@media screen and (max-width: 800px) {
  body.is-english #firstView .inner {
    width: calc(100% - 30px);
    margin-left: 15px;
  }
  body.is-english #firstView .inner > header h2 span {
    font-size: clamp(24px, 8vw, 40px);
    display: inline !important;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 6px 8px 6px 0;
    line-height: 1.7;
  }
  body.is-english #firstView .inner > header h2 + p {
    font: 400 16px/170% var(--fsG) !important;
    color: #000;
  }
  body.is-english #firstView .inner > header h2 + p span:not(.pc-only) {
    display: inline !important;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    white-space: normal !important;
    padding: 5px 6px;
    line-height: 1.7;
  }
  body.is-english #firstView .inner > header h2 + p span.pc-only {
    display: none !important;
  }
  body.is-english #news article > header hgroup h2 {
    font: 500 60px/120% var(--fsE) !important;
    color: var(--colOran);
    text-align: left;
  }
  body.is-english .policy article > div h3 {
    font: 700 24px/140% var(--fsG) !important;
    color: #222;
  }
  body.is-english .policy#value article > div div p.value-heading {
    font: 700 26px/150% var(--fsG) !important;
    letter-spacing: 0.05em;
    color: #222 !important;
    margin-bottom: 20px;
  }
  body.is-english .policy#value article > div div h3 {
    font: 400 16px/150% var(--fsG) !important;
    letter-spacing: 0.05em;
    color: #222;
    margin-bottom: 0;
  }
  body.is-english .policy#value article > div div h3 em {
    font: 400 16px/150% var(--fsE) !important;
  }
  body.is-english .policy#value article > div div p {
    font: 400 16px/150% var(--fsG) !important;
    letter-spacing: 0.05em;
    color: #222;
  }

  /* SP TOP — 01: Recruit 上の余白を詰める */
  #recruit {
    margin-top: -50px;
  }

  /* SP TOP — 02: Service 上の余白を詰める + 見出しサイズ */
  .scroll-wrapper {
    margin-top: -40px;
  }
  #service article > header h2 {
    font: 400 80px/var(--lhS) var(--fsE) !important;
  }
  #service article > header p {
    font-size: 13px;
  }

  /* SP TOP — 03: Clients 黄色部分の余白調整 */
  #clients {
    margin-top: 80px !important;
    border-radius: 15px;
    padding: 30px 0 40px 0 !important;
    position: relative;
    z-index: 11;
  }
  #voice-sticky-content {
    width: calc(100vw - 20px) !important;
    margin-left: calc(50% - 50vw + 10px) !important;
  }
}

/* ==========================================================
   SP — Service / お客様の声 矢印ナビボタン + ネイティブスクロール
   ========================================================== */
.service-nav-btns,
.voice-nav-btns {
  display: none;
}
@media screen and (max-width: 800px) {
  /* --- Service: スクロール連動を無効化し、ネイティブ横スクロールに --- */
  .scroll-wrapper {
    height: auto !important;
    margin-top: -120px !important;
  }
  #service {
    position: relative !important;
    top: auto !important;
  }
  #service .service-viewport {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  #service .service-viewport::-webkit-scrollbar {
    display: none;
  }
  #service .service-viewport {
    scroll-snap-type: x mandatory;
    padding-left: 10vw;
    padding-right: 10vw;
  }
  #service .serviceSet {
    display: flex !important;
    flex-wrap: nowrap !important;
    transform: none !important;
    gap: 20px;
  }
  #service .serviceSet > div {
    min-width: 80vw;
    flex-shrink: 0;
    scroll-snap-align: center;
  }
  .service-nav-btns {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 10px 20px;
  }
  .service-nav-btns button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.5);
    background: transparent;
    cursor: pointer;
  }
  .service-nav-btns button img {
    width: 16px;
    filter: brightness(0) invert(1);
  }

  /* --- お客様の声: スティッキースクロールを無効化し、ネイティブ横スクロールに --- */
  #voice-sticky-wrapper {
    height: auto !important;
    position: relative !important;
  }
  #voice-sticky-content {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    width: 100% !important;
    margin-left: 0 !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }
  #voice-sticky-content::-webkit-scrollbar {
    display: none;
  }
  #voice-sticky-content .voiceList {
    transform: none !important;
  }
  .voice-nav-btns {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 10px 20px 0;
  }
  .voice-nav-btns button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
  }
  .voice-nav-btns button img {
    width: 16px;
  }



  /* SP — About Us 見出し */
  #company article > header h2 {
    font: 500 80px/140% var(--fsE) !important;
    letter-spacing: -0.01em;
    text-align: center;
    color: #222;
    white-space: nowrap;
  }

  /* SP — Vision / Mission 本文 */
  #vision.policy article > div p,
  #mission.policy article > div p {
    width: 100%;
    font: 400 16px/170% var(--fsG);
    letter-spacing: 0.05em;
    color: #000000;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
  }

  /* SP — FV キャッチコピー */
  #firstView .inner > header h2 span {
    font-size: 50.852px;
    line-height: 140%;
    letter-spacing: 0.05em;
  }

  /* SP — FV サブテキスト */
  #firstView .inner > header h2 + p {
    width: 100%;
    max-width: 460px;
  }
}
