@charset "UTF-8";
/* CSS Document */
:root {
	--primary-color: #FF5C00;
	--secondary-color: #6C63FF;
	--dark-blue: #1a1a2e;
	--light-bg: #F8F8F8;
	--text-color-dark: #333;
	--text-color-light: #fff;
	--gray-text: #666666;
	--white: #FFFFFF;
	--black: #1A1A1A;
	--gray: #666666;
	--light-gray: #F5F5F5;
	--border-color: #dddddd;
	--eastboy-blue: #1a2b4d;
	--light-gray-bg: #f0f0f0;
	--dark-text: #333333;
	--global-color-white-900: #FFFFFF;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: "BIZ UDPMincho", "Yu Mincho", "MS PMincho", serif;
	color: var(--dark-text);
	line-height: 1.6;
}

.container {
	max-width: 1268px;
	margin: 0 auto;
	padding: 80px 20px;
}

.section {
	padding: 80px 0;
}


/* PC */
/* kv */
.fv_animation {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1484 / 821;
}

.fv_animation__wrap.sp-display {
	display: none;
}

.fv_animation__wrap.pc-display {
	display: block;
}

.fv_animation__wrapper {
	position: relative;
	z-index: -1;
}

.hero__title {
  position: absolute;
  z-index: 20;
  top: 50%;
  right: -5%;
  transform: translate(-50%, -50%);
  text-align: right;
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 20px;
  font-family: "BIZ UDPMincho", "Yu Mincho", "MS PMincho", serif;
  line-height: 1.3;
  color: #fff;
}

#top .hero__title{
	font-size: 64px;
	letter-spacing: 0.04em;
	font-weight: 400;
  font-family: "BIZ UDPMincho", "Yu Mincho", "MS PMincho", serif;
}

.hero__subtitle {
  position: absolute;
  z-index: 20;
  top: calc(50% + 110px);
  right: -2%;
  transform: translateX(-50%);
  text-align: right;
  font-size: 24px;
  font-family: "BIZ UDPMincho", "Yu Mincho", "MS PMincho", serif;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
}


.fv_animation__item {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  opacity: 0;
  background-color: rgba(8, 0, 29, 0.22);
}

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

.fv_animation__container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

/* スライド（画像ラッパー）の基本設定 */
.fv_animation__item {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 1000ms ease;
}

/* activeなスライドを表示 */
.swiper-slide-active {
  opacity: 1;
  z-index: 1;
}

.fv_animation__item {
  background-color: rgba(8, 0, 29, 0.22);
}

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


/* Recruitment Banner */
.recruitment-banner {
	background: #fff;
  padding: 104px 0 40px;
}

.recruitment-banner__container {
	max-width: 950px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.recruitment-banner__card {
	position: relative;
	max-width: 950px;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 56px 30px;
	border-radius: 20px;
	background-image: url(./images/page/top_recruit_banner.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	gap: 38px;
	min-height: 200px;
}


.recruitment-banner__content h3 {
	color: #091923;
	font-size: 32px;
	font-weight: 400;
	margin-bottom: 38px;
	letter-spacing: 0.14em;
}

.recruitment-banner__content {
	flex: 1;
}

.recruitment-banner__content span {
	display: inline-block;
	font-size: 24px;
	font-weight: 300;
	color: #E13B00;
	background: #fff;
	letter-spacing: 0.14em;
	line-height: 1;
	padding: 0px 5px 2px;
}

.recruitment-banner__content p {
	color: #091923;
	font-size: 36px;
	line-height: 1.6;
	font-weight: 400;
	margin: 0;
	letter-spacing: 0.14em;
	text-align: left;
}

.recruitment-banner__button {
	position: relative;
	background: #E16900;
	color: #fff;
	padding: 20px 81px 16px;
	border-radius: 50px;
	font-size: 24px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
	white-space: nowrap;
	letter-spacing: 0.05em;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
	font-weight: bold;
}

.recruitment-banner__button::after {
	position: absolute;
	content: "";
	width: 45px;
	height: 45px;
	top: 15px;
	right: 10px;
	background-image: url(./images/common/vector.png);
	background-size: 100% 100%;
	transition: transform 0.3s ease;
}

.recruitment-banner__button:hover {
	transform: translateY(4px);
}

.recruitment-banner__button:hover::after {
	transform: translateX(3px);
}


/* About Section */
.about {
	background: #054576;
	color: #fff;
	padding: 90px 0 190px;
}

.about__container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.about__content {
	text-align: right;
}

.c-ttl-eng.c-ttl-eng--about {
	display: block;
	text-align: left;
}

.c-ttl.c-ttl--about {
	color: #fff;
	text-align: left;
}

.about__content p {
	margin-top: 87px;
	font-size: 15px;
	margin-bottom: 110px;
	font-weight: 300;
	letter-spacing: 0.14em;
	line-height: 2.2;
}

.about__image {
	height: auto;
	padding-top: 20px;
	border-radius: 16px;
	aspect-ratio: 643 / 433;
}
.about__image img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 16px;
}

/* Services Section */
.services {
	height: 480px;
}

.services__container {
	position: relative;
	z-index: 10;
	max-width: 1235px;
	width: 100%;
	margin: -74px auto 0;
	padding: 100px 20px 106px;
	background: #F9F9F9;
}

.services__header {
	text-align: center;
	margin-bottom: 50px;
}

.c-sub-ttl.c-sub-ttl--service {
	color: #054576;
	text-align: center;
}

.services__header p {
	color: #666;
	font-size: 16px;
}

.services__grid {
	max-width: 948px;
	width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2%;
}

.services__card {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	background: #054576;
	border-radius: 50%;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s;
	aspect-ratio: 1 / 1;
}

.services__card:nth-child(3) .services__card-icon {
	margin: 0 auto 40px;
}

.services__card:hover {
	transform: translateY(-5px);
}

.services__card-icon {
	width: auto;
	height: 22px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.services__card a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 42px 20px;
}

.services__card h3 {
	font-size: 24px;
	color: #fff;
	text-align: center;
	font-weight: 500;
	letter-spacing: 0.08em;
}

.services__card p {
	color: #666;
	font-size: 14px;
}

/* Safety Section */
.safety {
	position: relative;
	background: #1e3a5f;
	color: #fff;
	z-index: 1;
}

.safety::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(./images/page/safety_bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	z-index: -1;
}

.safety__container {
	max-width: 1235px;
	margin: 0 auto;
	padding: 190px 20px 53px;
}

.safety__content__ttl {
	flex-shrink: 0;
	margin-right: 115px;
}

.c-ttl.c-ttl--safety {
	margin-bottom: 10px;
	color: #fff;
}

.safety__content {
	display: flex;
	align-items: baseline;
	margin-bottom: 116px;
}

.safety__content .safety__content__txt {
	margin-bottom: 40px;
	font-size: 23px;
	letter-spacing: 0.14em;
	font-weight: 400;
	font-family: "BIZ UDPMincho", "Yu Mincho", "MS PMincho", serif;
}

.safety__content p {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.14em;
	line-height: 2;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

.c-safety__button {
	display: flex;
	width: 223px;
	height: 40px;
	margin: 0 0 0 auto;
	line-height: 38px;
	background: #fff;
	color: #054576;
	border: 1px solid #fff;
	border-radius: 25px;
	text-decoration: none;
	font-size: 14px;
	letter-spacing: 0.08em;
	font-weight: 300;
	text-align: center;
	transition: background 0.3s;
}

.c-safety__button a {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 25px;
	color: #054576;
}

.c-safety__button a:hover {
	background: #054576;
	color: #fff;
	border: 1px solid #054576;
	transition: background 0.3s;
}

.safety__image {
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23666" width="400" height="300"/><rect fill="%23333" x="100" y="100" width="200" height="100"/></svg>');
	background-size: cover;
	height: 300px;
	border-radius: 12px;
}

/* Portfolio Section */
.portfolio {
	position: relative;
	background: #EBF3F5;
	z-index: 10;
}

.portfolio__container {
	max-width: 1235px;
  margin: 0 auto;
  padding: 50px 0 58px;
  background: #fff;
  position: relative;
  padding-left: 0;
  padding-right: 0;
}

.portfolio__header {
	text-align: center;
	margin-bottom: 60px;
}

.c-sub-ttl.c-sub-ttl--port {
	color: #1e3a5f;
	text-align: center;
}

.portfolio__header p {
	color: #666;
	font-size: 16px;
}

.portfolio__grid {
	transition-timing-function: linear !important;
}

.portfolio__item {
	position: relative;
  overflow: hidden;
	height: 202px !important;
  background-color: #f0f0f0;
	clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
	transition: transform 0.3s;
}

.portfolio__item:hover {
	transform: scale(1.05);
}

.portfolio__item__txt {
	position: absolute;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 42px;
  bottom: 0;
  left: 0;
  background: #054576;
  color: #fff;
  box-sizing: border-box;
}

.portfolio__text-content {
  display: flex;
  flex-direction: column;
	justify-content: center;
  width: 100%;
	height: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

.portfolio__title {
	padding-top: 8px;
	padding-right: 20px;
	font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
  line-height: 1;
  margin: 0;
}

.portfolio__date {
	padding-right: 50px;
	font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: right;
  line-height: 1;
  margin: 0;
}

.portfolio__button {
	text-align: center;
}

.portfolio__button a {
	background: #1e3a5f;
	color: #fff;
	padding: 12px 30px;
	border-radius: 25px;
	text-decoration: none;
	transition: background 0.3s;
}

.portfolio__button a:hover {
	background: #2c5282;
}

.workSlider {
  padding: 20px 0;
  margin-bottom: 37px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: none;
}

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

.c-more__button.c-more__button--port {
	display: block;
	width: 223px;
	margin: 0 auto;
	text-align: center;
}

/* recruit Section */
.topRecruit {
	position: relative;
	background: #054576;
	color: #fff;
	padding: 87px 0 74px;
	z-index: 1;
}

.topRecruit::before {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(./images/page/top_recruit_illu.png);
	background-size: cover;
	background-repeat: no-repeat;
	z-index: -1;
}

.topRecruit__container {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.topRecruit__header {
	text-align: left;
	margin-bottom: 64px;
}

.c-ttl.c-ttl--recruit {
	color: #fff;
}

.topRecruit__flex {
}

.topRecruit__content {
	text-align: center;
}

.topRecruit__content p {
	max-width: 760px;
	width: 100%;
	font-size: 14px;
	letter-spacing: 0.14em;
	margin-bottom: 0;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
	font-weight: 300;
}

.c-entry_btn--rec {
	display: block !important;
	margin: 86px 0 0 auto;
}

/* News Section */
.news {
	padding: 125px 0;
	background: #fff;
}

.news__container {
	max-width: 880px;
	margin: 0 auto;
	padding: 0 20px;
}

.news__header {
	text-align: center;
}

.news__list {
	max-width: 800px;
	margin: 92px auto;
}

.news__item {
	display: flex;
	align-items: center;
	gap: 250px;
	padding: 30px 33px;
	border-bottom: 1px dashed #000;
}

.news__item:first-child {
	border-top: 1px dashed #000;
}

.news__date {
	color: #000;
	font-size: 16px;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
	font-weight: 500;
	letter-spacing: 0.14em;
	white-space: nowrap;
	line-height: 1;
}

.news__title {
	color: #000;
	text-decoration: none;
	flex: 1;
	transition: color 0.3s;
	font-size: 16px;
	letter-spacing: 0.14em;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
	font-weight: bold;
	line-height: 1;
}

.news__title:hover {
	color: #E16900;
}

.news__tag {
	background: #0066cc;
	color: #fff;
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 12px;
}

.news__button {
	text-align: center;
	margin-top: 40px;
}

.news__button a {
	background: #1e3a5f;
	color: #fff;
	padding: 12px 30px;
	border-radius: 25px;
	text-decoration: none;
	transition: background 0.3s;
}

.news__button a:hover {
	background: #2c5282;
}

/* ニュース詳細ページ */
.newsSingle__ttl {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.newsSingle__body {
  margin-top: 2rem;
}

.newsSingle__body p {
	color: #000;
}

.newsSingle__back {
	border-radius: 50px;
	letter-spacing: 0.08em;
}



/* 空の画像 */
.sky_bg {
	width: 100%;
	height: 104px;
}

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

/* Contact Section */
.contact.c-contact {
	margin: 0 auto;
	background: #054576;
	padding: 40px 60px 40px 40px;
	border-radius: 16px;
}

.c-contact .contact__container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.c-contact .contact__header {
	text-align: left;
}

.contact__header p {
	font-size: 24px;
	margin: 20px auto 56px;
	text-align: center;
	letter-spacing: 0.14em;
}

.c-ttl.c-ttl--contact {
	color: #fff;
}

.contact__item {
	position: relative;
	width: 93px;
	height: 93px;
	margin: 0 auto;
	transition: .2s ease;
	z-index: 20;
}

.contact__item a {
	display: block;
	width: 100%;
	height: 100%;
	transition: .2s ease;
}

.contact__item a:hover {
	transition: .2s ease;
	transform: translateY(-5px);
}

.contact:hover .contact__item {
	transition: .2s ease;
	transform: translateY(-5px);
}

.c-animline {
  position: absolute;
	width: 150vw;
	height: 100%;
	bottom: -35%;
	left: -17%;
	transform-origin: 0 100%;
	transform: translate(20%, 20%) rotate(-32deg);
  z-index: 10;
}

.c-animline svg {
  width: 100%;
  height: 100%;
}


.c-animline .line {
  stroke-dasharray: 800;
  -webkit-animation: svg-wave 10s linear infinite;
	animation: svg-wave 10s linear infinite;
  -webkit-animation-fill-mode: backwards;
	animation-fill-mode: backwards;
  fill: none;
  stroke: var(--global-color-white-900);
  stroke-width: 2;
  stroke-miterlimit: 8;
  -webkit-transition: stroke 6s ease;
  transition: stroke 6s ease;
  stroke-linecap: round;
	stroke: var(--white);
}

.c-animline .line:nth-child(1) {
	animation-duration: 8s;
  animation-delay: 1s;
}
.c-animline .line:nth-child(2) {
	animation-duration: 10s;
  animation-delay: 4s;
}
.c-animline .line:nth-child(3) {
	animation-duration: 9s;
  animation-delay: 3s;
}

@-webkit-keyframes svg-wave {
  0% {
    stroke-dashoffset: 1800;
    stroke-width: 0.8;
    stroke-opacity: 0;
  }
  50% {
    stroke-width: 1.8;
    stroke-opacity: 0.7;
  }
  100% {
    stroke-dashoffset: 800;
    stroke-width: 0;
    stroke-opacity: 0;
  }
}

@keyframes svg-wave {
  0% {
    stroke-dashoffset: 1800;
    stroke-width: 0.8;
    stroke-opacity: 0;
  }
  50% {
    stroke-width: 1.8;
    stroke-opacity: 0.7;
  }
  100% {
    stroke-dashoffset: 800;
    stroke-width: 0;
    stroke-opacity: 0;
  }
}


.rolling-icon {
  position: absolute;
  width: 95px;
  height: 70px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 102;
}


.light-beam {
  position: absolute;
  width: 80px;
  height: 3px;
  z-index: 2;
  pointer-events: none;

  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0) 0%,
    rgba(255, 215, 0, 0.9) 50%,
    rgba(255, 215, 0, 0) 100%
  );

  opacity: 0;
  transform-origin: center center;
}


/* 事業技術 */

.c-title {
	font-size: 2rem;
	font-weight: bold;
	color: #1e3a8a;
	margin-bottom: 1rem;
}

.c-title--large {
	font-size: 2.5rem;
	margin-bottom: 2rem;
}

.c-title--white {
	color: #fff;
}

.c-subtitle {
	font-size: 1rem;
	color: #666;
}

/* ヒーローセクション */
.hero {
	background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
	padding: 80px 0;
	margin-bottom: 60px;
}

.hero__content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #fff;
}

.hero__text {
	flex: 1;
	max-width: 600px;
}

.hero__title {
	font-size: 3rem;
	margin-bottom: 1rem;
	font-weight: bold;
}

.hero__subtitle {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.9);
}

.hero__image {
	flex: 1;
	max-width: 500px;
	margin-left: 40px;
}

.hero__image img {
	width: 100%;
	height: auto;
	border-radius: 8px;
}

/* メインコンテンツ */
.main {
	display: flex;
	margin-bottom: 100px;
}



.main__content {
	max-width: 900px;
	width: 100%;
	padding-top: 196px;
	flex: 1;
}



/* コンテンツカード */
.card-section {
	position: relative;
	background: #fff;
	border-radius: 12px;
	margin-bottom: 210px;
	border: 5px solid #054576;
}

.card-section--patent{
	margin-bottom: 145px;
}

.card-section:last-child {
	margin-bottom: 100px;
}

.card-section__inner {
	padding: 72px 80px 68px 84px;
}

.card__header {
	position: absolute;
	border-radius: 12px 12px 0 0;
	display: flex;
	align-items: center;
	gap: 11px;
	top: -114px;
	right: 0;
	width: 510px;
	height: 110px;
}

.card__header img {
	width: 100%;
	height: 100%;
}


/* 電力セクション */
.c-power__image {
	width: 320px;
	height: 192px;
	border-radius: 16px;
}

.c-power__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}

.c-power-flex {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 74px;
	margin-bottom: 64px;
}

.c-power__ttl {
	color: #000;
	font-size: 24px;
	font-weight: 900;
	line-height: 1.5;
	white-space: nowrap;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

.power__item__ttl {
	padding-left: 24px;
	margin-bottom: 28px;
	color: #000;
	font-size: 20px;
	letter-spacing: 0.08em;
	font-weight: 900;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

.power__item__txt {
	color: #000;
	font-size: 14px;
	letter-spacing: 0.08em;
	font-weight: 900;
	line-height: 1.5;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

.power__content {
	margin-bottom: 16px;
}

.power__content:last-child {
	margin-bottom: 0;
}

.power__content h3 {
	position: relative;
	font-size: 24px;
	color: #054576;
	margin-bottom: 30px;
	letter-spacing: 0.08em;
}

.power__content h3::before {
	position: absolute;
	content: "";
	width: 54%;
	height: 1px;
	top: 50%;
	left: 73%;
	transform: translateY(-50%) translateX(-50%);
	background: #054576;
}

.power__content:last-child h3::before {
	position: absolute;
	content: "";
	width: 66%;
	height: 1px;
	top: 50%;
	left: 67%;
	transform: translateY(-50%) translateX(-50%);
	background: #054576;
}

.power__list {
	list-style: none;
}

.power__list li {
	position: relative;
	padding: 10px 0;
}

.power__list li:before {
	position: absolute;
	content: "";
	background: #FF8426;
	width: 12px;
	height: 25px;
	top: 8px;
	left: 0;
}

/* 特殊技術セクション */
.tech {
	margin-bottom: 40px;
}

.tech__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-bottom: 30px;
}

.tech__item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.tech__number {
	background: #f97316;
	color: #fff;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	flex-shrink: 0;
}

.tech__image {
	width: 120px;
	height: 80px;
	background: #f0f0f0;
	border-radius: 4px;
	overflow: hidden;
	flex-shrink: 0;
}

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

.tech__text {
	flex: 1;
}

.tech__text h4 {
	font-size: 1rem;
	margin-bottom: 5px;
	color: #333;
}

/* 採用セクション */
.partner-section {
	background: #fff;
	border-radius: 12px;
	padding: 0;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	margin-bottom: 40px;
	overflow: hidden;
}

.partner__content {
	padding: 40px;
	text-align: center;
}

.partner__image {
	width: 100%;
	height: 300px;
	background: #f0f0f0;
	margin-bottom: 30px;
	overflow: hidden;
}

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

.partner__text {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 20px;
}

.partner__subtitle {
	font-size: 1rem;
	color: #666;
	margin-bottom: 30px;
}

.partner__description {
	font-size: 0.9rem;
	color: #666;
	line-height: 1.6;
	text-align: left;
}

/* トップ お問い合わせボタン */
.top_contact {
	position: relative;
	text-align: center;
	padding: 60px 0;
	background: #054576;
}

.contact__btn {
	background: #1e3a8a;
	color: #fff;
	padding: 20px 60px;
	border-radius: 50px;
	text-decoration: none;
	font-size: 1.2rem;
	font-weight: bold;
	display: inline-flex;
	align-items: center;
	gap: 15px;
	transition: all 0.3s;
}

.contact__btn:hover {
	background: #1e40af;
	transform: translateY(-2px);
}

.contact__icon {
	width: 24px;
	height: 24px;
	background: #fff;
	border-radius: 50%;
}

.contact-anime {
  position: absolute;
  inline-size: 100%;
  left: 0;
	bottom: 0;
	transform: rotate(-5deg) translateY(-50%);
    transform-origin: top right;
  z-index: 10;
}



.contact-anime svg {
  width: 100%;
  height: 100%;
}


.contact-anime .line {
  stroke-dasharray: 800;
  -webkit-animation: contact-svg-wave 10s linear infinite;
	animation: contact-svg-wave 10s linear infinite;
  -webkit-animation-fill-mode: backwards;
	animation-fill-mode: backwards;
  fill: none;
  stroke: var(--global-color-white-900);
  stroke-width: 2;
  stroke-miterlimit: 8;
  -webkit-transition: stroke 6s ease;
  transition: stroke 6s ease;
  stroke-linecap: round;
	stroke: var(--white);
}

.c-acontact-animenimline .line:nth-child(1) {
  -webkit-animation-duration: 3s;
	animation-duration: 3s;
  -webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}
.contact-anime .line:nth-child(2) {
  -webkit-animation-duration: 2s;
	animation-duration: 2s;
  -webkit-animation-delay: 4s;
	animation-delay: 4s;
}
.contact-anime .line:nth-child(3) {
  -webkit-animation-duration: 4s;
	animation-duration: 4s;
  -webkit-animation-delay: 3s;
	animation-delay: 3s;
}

@-webkit-keyframes contact-svg-wave {
  0% {
    stroke-dashoffset: 1800;
    stroke-width: 0.8;
    stroke-opacity: 0;
  }
  50% {
    stroke-width: 1.8;
    stroke-opacity: 0.7;
  }
  100% {
    stroke-dashoffset: 800;
    stroke-width: 0;
    stroke-opacity: 0;
  }
}

@keyframes contact-svg-wave {
  0% {
    stroke-dashoffset: 1800;
    stroke-width: 0.8;
    stroke-opacity: 0;
  }
  50% {
    stroke-width: 1.8;
    stroke-opacity: 0.7;
  }
  100% {
    stroke-dashoffset: 800;
    stroke-width: 0;
    stroke-opacity: 0;
  }
}




.contact-light-beam {
  position: absolute;
  width: 80px;
  height: 3px;
  z-index: 101;
  pointer-events: none;

  background: linear-gradient(
    90deg,
    rgba(255, 215, 0, 0) 0%,
    rgba(255, 215, 0, 0.9) 50%,
    rgba(255, 215, 0, 0) 100%
  );
  opacity: 0;
  transform-origin: center center;
}

.contact-rolling-icon {
  position: absolute;
  width: 95px;
  height: 70px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 102;
  transform-origin: center center;
  animation: rotateMoveRight 10s linear infinite;
	transform: rotate(-5deg) translateY(-50%);
	transform-origin: top right;
}

@keyframes rotateMoveRight {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  100% {
    transform: translateX(100vw) rotate(360deg);
  }
}




.patent {
	width: 724px;
	margin: 0 auto;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 5px 5px 0 0;
}

.patent__table {
	width: 100%;
	border-collapse: collapse;
}

.patent__header {
	background-color: #ff8326;
	color: #fff;
}

.patent__header-cell {
	padding: 10px 12px;
	text-align: left;
	font-size: 14px;
	font-weight: 900;
}

.patent__header-cell--number {
	width: 176px;
	display: flex;
}

.patent__header-cell--content {
	width: 506px;
}

.patent__row {
	border-bottom: 1px solid #ddd;
}

.patent__row:nth-child(even) {
	background-color: #fafafa;
}

.patent__cell {
	padding: 15px 12px;
	border-right: 1px solid #B9B9B9;
	vertical-align: top;
}

.patent__cell--number,
.patent__cell--index {
	text-align: left;
	font-weight: bold;
	font-size: 13px;
	letter-spacing: 0.08em;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

.patent__cell--index {
	width: 42px;
}

.patent__cell--content {
	font-size: 13px;
	line-height: 1.5;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 16px 33px 17px 12px;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
	font-weight: 900;
}

.patent__image {
	max-width: 255px;
	height: 176px;
	margin-top: 10px;
	border-radius: 8px;
}

.patent__text {
	letter-spacing: 0.08em;
}

.patent__header-cell--index {
	border-radius: 4px 0 0 0;
}

.patent__header-cell--content {
	border-radius: 0 4px 0 0;
}


/* お取引先の皆さまへ */
.toPartners__inner {
	padding: 0 0 200px 0;
	text-align: center;
}
.toPartners__mainTtl {
	position: relative;
	display: inline;
	color: #054576;
	font-size: 32px;
	letter-spacing: 0.08em;
	font-weight: 900;
	text-align: center;
}

.toPartners__img {
	margin-top: 40px;
}

.toPartners__ttl {
	position: relative;
	padding: 0 46px;
	margin-top: 52px;
	margin-bottom: 100px;
	font-size: 24px;
	color: #000;
	letter-spacing: 0.08em;
	font-weight: 900;
	line-height: 1.8;
}

.toPartners__ttl::before {
	position: absolute;
	content: "";
	width: 60px;
	height: 5px;
	left: 50%;
  bottom: -46px;
  transform: translateY(-50%) translateX(-50%);
	background: #FF8426;
}

.toPartners__txt p {
	color: #000;
	font-size: 16px;
	letter-spacing: 0.08em;
	font-weight: 900;
	line-height: 2.8;
	text-align: center;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

.toPartners__mainTtl::before {
	position: absolute;
	content: "";
	width: 30px;
	height: 30px;
	top: 50%;
  left: 0%;
  transform: translateY(-50%) translateX(-50%);
	background-image: url(../images/page/partners_icon.png);
	background-size: 100% 100%;
}

.flow {
	margin-bottom: 210px;
}

.flow__body {
	padding: 80px 75px;
}

.c-step {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 45px;
}

.c-step:last-child {
	margin-bottom: 0;
}

.c-step__num {
	color: #FF7F27;
	font-size: 32px;
	font-weight: 500;
	margin-bottom: 24px;
	letter-spacing: 0.08em;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

.c-step__title {
	font-size: 32px;
	font-weight: 900;
	color: #000;
	letter-spacing: 0.08em;
	line-height: 1.2;
}

.c-step__img {
	max-width: 397px;
	width: 100%;
	height: auto;
	aspect-ratio: 397 / 249;
	border-radius: 16px;
}

.c-step__img img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 16px;
}

.c-step__text {
	font-size: 14px;
	line-height: 1.6;
	color: #000;
	letter-spacing: 0.08em;
	font-weight: 900;
	line-height: 2;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

.flow__item {
	padding: 43px 0;
	background-image: linear-gradient(to right, #000 50%, transparent 50%);
	background-position: 0 100%;
	background-size: 14px 1px;
	background-repeat: repeat-x;
}

.flow__item:first-child {
	padding-top: 0;
}

.flow__item:last-child {
	padding-bottom: 0;
	background: none;
}

.flow__item:nth-of-type(2n) .c-step {
	flex-direction: row-reverse;
}

.c-step__textArea {
	width: 50%;
}

.c-step--reverse .c-step__num {
	text-align: right;
}

.c-step--reverse .c-step__title {
	text-align: right;
}

.flow__body {
	padding: 68px 0;
}

.flow__body__lists {
	max-width: 630px;
	width: 100%;
	margin: 0 auto;
}

.flow__body__item {
	display: flex;
	align-items: baseline;
	margin-bottom: 35px;
}

.flow__body__item:last-child {
	margin-bottom: 0;
}

.flow__body__item .number {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 24px;
	flex-shrink: 0;
	width: 68px;
	height: 68px;
	border-radius: 50px;
	background: #FF8426;
	color: #fff;
	font-size: 28px;
	font-weight: 900;
	letter-spacing: 0.08em;
	line-height: 1;
}

.flow-flex__top {
	display: flex;
	align-items: center;
	margin-bottom: 16px;
}

.flow-flex__top:last-child {
	margin-bottom: 0;
}

.flow-flex__top img {
	width: 38px;
	height: auto;
	margin-right: 10px;
}


.flow-flex__top .txt {
	color: #000;
	font-size: 28px;
	letter-spacing: 0.08em;
	font-weight: 900;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

.flow-flex__top .txt span {
	font-size: 20px;
	color: #000;
	letter-spacing: 0.07em;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

.flow-flex__bottom {
	padding-left: 50px;
	font-size: 14px;
	color: #000;
	font-weight: 300;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}


/*お問い合わせ*/
.contact__inner .c-page {
	position: relative;
	max-width: 1176px;
	width: 100%;
	margin: 0 auto;
	padding: 56px 0 44px;
	text-align: center;
	border-bottom: 1px solid #054576;
}

.formArea {
	max-width: 620px;
	width: 100%;
	margin: 0 auto;
	padding: 95px 0 58px;
}

.contact__side {
	position: absolute;
	content: "";
  max-width: 130px;
	width: 100%;
	height: 90px;
	bottom: -186px;
	left: 0;
}

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

.contact__side li {
	position: relative;
	margin: 40px 0;
	line-height: 1;
	font-weight: 900;
	font-size: 15px;
	color: #B9B9B9;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

.contact__side li::before {
	position: absolute;
	content: "";
	width: 11px;
	height: 11px;
	top: 50%;
  left: 4%;
  transform: translateY(-50%) translateX(-50%);
	border-radius: 25px;
	background: #B9B9B9;
}

.contact__side li::after {
	position: absolute;
	content: "";
	width: 1px;
	height: 56px;
	top: 80%;
  left: 4%;
	background: #B9B9B9;
}

.contact__side li:first-child {
	margin-top: 0;
}

.contact__side li:first-child::before {
	background: #FF8426;
}

.contact__side li:first-child {
	color: #054576;
}

.contact__side li:last-child {
  border-bottom: none;
	margin-bottom: 0;
}

.contact__side li:last-child::after {
	background: none;
}

.wpcf7-form-control {
	border: 1px solid #B3B3B3;
	height: 38px;
	width: 100%;
	border-radius: 8px;
	padding: 6px 10px 2px;
}

.Form-Item-Label {
	color: #054576;
	font-size: 16px;
	margin-bottom: 16px;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
	font-weight: bold;
	line-height: 1;
}
.Form-Item-Label-Required {
	color: #D32929;
}

.Form-Item {
	margin-bottom: 30px;
}

.Form-Item:last-child {
	margin-bottom: 0;
}

input::placeholder,
textarea::placeholder {
	color: #B3B3B3 !important;
	font-size: 16px;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

.wpcf7-textarea {
	height: 136px;
	padding: 10px;
}

.privacy__area {
	background: #054576;
	padding: 55px 0 54px;
	margin-bottom: 42px;
	text-align: center;
}

.wpcf7-acceptance {
	border: none;
}

.privacy__area p {
	text-align: center;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
	line-height: 1;
}

.privacy__area .wpcf7-list-item-label {
	display: inline-block;
	margin: 0 auto 12px;
	padding-left: 8px;
	font-weight: 900;
	font-size: 15px;
	color: #fff;
}

.privacy__txt {
	font-weight: 400;
	font-size: 11px;
	text-align: center;
}

.button-wrap {
	text-align: center;
}

.wpcf7 .wpcf7-submit:disabled {
	width: 188px;
	height: 50px;
	margin: 0 auto;
	background: #ddd;
	border-radius: 8px;
	font-size: 16px;
	font-weight: bold;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

.wpcf7 .wpcf7-submit {
	width: 188px;
	height: 50px;
	margin: 0 auto;
	border-radius: 8px;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	background: #054576;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
	border: none;
}

.formArea__contact__btn {
	width: 44px;
	height: 44px;
	margin: 0 auto 46px;
}

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

.thanks__messa {
	margin-bottom: 98px;
	font-size: 16px;
	color: #000;
	font-weight: 900;
	line-height: 1.8;
	text-align: center;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

.thanks__top {
	position: relative;
	width: 100%;
}

.thanks__top a img {
	width: 100%;
	height: auto;
}

#thanks .formArea {
	max-width: 895px;
	width: 100%;
}
.formArea__top {
	position: absolute;
	content: "";
	top: 50%;
  right: 54px;
  transform: translateY(-50%) translateX(0%);
}

.formArea__top h3 {
	margin-bottom: 17px;
	font-size: 24px;
	font-weight: 300;
	color: #fff;
	font-family: "BIZ UDPMincho", "Yu Mincho", "MS PMincho", serif;
	text-align: right;
}

.formArea__top__txt {
	margin-bottom: 20px;
	font-size: 15px;
	font-weight: 300;
	color: #fff;
	font-family: "BIZ UDPMincho", "Yu Mincho", "MS PMincho", serif;
	text-align: right;
}

.back__top {
	width: 75px;
	height: 25px;
	border: 1px solid #fff;
	color: #fff;
	background: transparent;
	display: block;
	padding: 3px 0;
	font-size: 12px;
	border-radius: 16px;
	text-align: center;
	margin: 0 0 0 auto;
	letter-spacing: 0.04em;
}

/*確認画面と完了画面を非表示*/
.confirm_area,
.thanks_area {
	display: none;
}

/*デフォルトのサンクスメッセージを非表示*/
.wpcf7-response-output{
	display: none;
}



/* Jobs Hero Section */
.jobs-hero .container {
	max-width: 1144px;
	width: 100%;
	height: auto;
	padding: inherit;
	aspect-ratio: 1124 / 319;
	margin: 0 0 0 auto;
	margin-top: 33px;
	background-image: url(./images/page/jobs-hero.jpg);
	background-size: 100% 100%;
}

#people01 .jobs-hero .container {
	background-image: url(./images/page/people01-hero.jpg);
}

#people02 .jobs-hero .container {
	background-image: url(./images/page/people02-hero.jpg);
}

#people03 .jobs-hero .container {
	background-image: url(./images/page/people03-hero.jpg);
}



.jobs-hero__wrap {
	position: relative;
	display: flex;
	align-items: center;
	top: 122px;
	left: 107px;
}

.jobs-hero__title {
	margin-right: 27px;
	font-size: 60px;
	font-weight: 400;
	color: #FF8426;
	letter-spacing: 0.14em;
	font-family: "Do Hyeon", "Noto Sans KR", "Arial", sans-serif;
}

.jobs-hero__sub {
	font-size: 20px;
	color: #fff;
	font-weight: 600;
	letter-spacing: 0.14em;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

/* Main Content */
.jobs-main {
	padding: 80px 0;
	background-color: #f8f9fa;
}

.job-info__inner {
	max-width: 1178px;
	width: 100%;
	margin: 0 auto;
	padding: 150px 20px 70px;
}

.job-info__head {
	position: relative;
	padding: 0 40px 9px 26px;
	font-size: 28px;
	font-weight: 600;
	letter-spacing: 0.14em;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

.job-info__head::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	max-width: 900px;
	width: 100%;
	height: 10px;
	background: #FF8426;
}

.job-info__body {
	padding: 38px 0 0;
	display: flex;
	gap: 6px;
	align-items: flex-start;
}

.job-info__img {
	flex-shrink: 0;
	aspect-ratio: 270 / 237;
}

.job-info__lead {
	font-size: 24px;
	font-weight: 600;
	color: #000;
	margin-bottom: 30px;
	letter-spacing: 0.14em;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

.job-info__desc {
	font-size: 14px;
	line-height: 1.8;
	color: #000;
	margin-bottom: 30px;
	letter-spacing: 0.14em;
	font-weight: 600;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

.job-info__detail h3 {
	margin-bottom: 12px;
	font-size: 14px;
	color: #000;
	line-height: 1.6;
	letter-spacing: 0.14em;
	font-weight: 600;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}


.job-info__detail ul {
	display: flex;
	align-items: center;
	gap: 16px;
}

.job-info__detail ul li {
	font-size: 14px;
	color: #000;
	line-height: 1.6;
	letter-spacing: 0.14em;
	font-weight: 600;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}


/* Daily Flow Section */
.daily-flow__inner {
	max-width: 1110px;
	width: 100%;
	margin: 0 auto;
}

.daily-flow__head {
	background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 100%);
	color: white;
	padding: 20px 40px;
	font-size: 24px;
	font-weight: bold;
	position: relative;
}

.daily-flow__head::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 40px;
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid #ff6b35;
}

.daily-flow__body {
	padding: 30px 0 150px;
}

.daily-flow__item {
	position: relative;
	display: flex;
	align-items: center;
	padding: 24px 0 26px;
	line-height: 1;
}

.daily-flow__item:nth-of-type(2n) {
	background: #fff8e8;
}

.daily-flow__item:last-child {
	border-bottom: none;
}

.daily-flow__item:last-child::after {
	content: none;
}

.daily-flow__time {
	width: 115px;
	font-size: 20px;
	color: #000;
	flex-shrink: 0;
	letter-spacing: 0.14em;
	font-weight: 600;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

.daily-flow__desc {
	font-size: 20px;
	color: #000;
	line-height: 1.6;
	letter-spacing: 0.14em;
	font-weight: 600;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

.daily-flow__item::before {
	content: '';
	width: 17px;
	height: 17px;
	background: #FF8426;
	border-radius: 50%;
	margin-right: 34px;
	margin-left: 30px;
}

.daily-flow__item::after {
	content: "";
	width: 2px;
	height: 82px;
	top: 38px;
	left: 38px;
	background: #FF8426;
	z-index: 1;
}

.daily-flow__item::after {
	position: absolute;
	content: '';

}

/* Entry Section */

.job-entry {
	margin-bottom: 68px;
}

.job-entry__top {
	position: relative;
	width: 100%;
	height: auto;
	aspect-ratio: 1458 / 295;
	background-image: url(./images/page/job-entry_img.jpg);
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.job-entry__top h2 {
	position: absolute;
	top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
	font-size: 45px;
	color: #fff;
	letter-spacing: 0.14em;
	font-weight: 400;
  font-family: "BIZ UDPMincho", "Yu Mincho", "MS PMincho", serif;
}

.job-entry__btn__inner {
	max-width: 1082px;
	width: 100%;
	margin: 0 auto;
}

.job-entry__btn {
	background: #054576;
}

.job-entry__ttl {
	position: relative;
	display: inline-block;
	padding: 55px 0 40px;
	font-size: 48px;
	letter-spacing: 0.07em;
	color: #fff;
	font-weight: 400;
	font-family: 'Dhurjati', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.job-entry__ttl::before {
	position: absolute;
	content: "";
	width: 862px;
	height: 1px;
	top: 75px;
	right: -878px;
	background: #fff;
}

.entry-btns {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 84px;
	padding-bottom: 128px;
}

.entry-btn {
	position: relative;
	width: 499px;
	background: #FFFFFF;
	color: #000;
	padding: 30px 4px 30px 56px;
	font-size: 20px;
	letter-spacing: 0.07em;
	font-weight: 400;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
	text-align: center;
}

.entry-cta__title {
	font-size: 36px;
	color: white;
	font-weight: bold;
	margin-bottom: 50px;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
	transition: .2s ease;
}

.entry-btn:hover {
	color: #fff;
	transition: .2s ease;
	background: #FF8426;
}

.entry-cta__btns {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.entry-cta__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 300px;
	height: 60px;
	background: white;
	color: #333;
	text-decoration: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: bold;
	transition: all 0.3s ease;
}

.entry-cta__btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.entry-cta__btn-icon {
	width: auto;
	height: 40px;
	margin-right: 24px;
}

.entry-btn:first-child::before {
	position: absolute;
	content: "";
	width: 40px;
	height: 40px;
	top: 22px;
	left: 90px;
	background-image: url(./images/page/entry-cta__btn01.png);
}

.entry-btn:first-child:hover::before {
	transition: all 0.3s ease;
	background-image: url(./images/page/entry-cta__btn01__white.png);
}

.entry-btn:last-child::before {
	position: absolute;
	content: "";
	width: 40px;
	height: 40px;
	top: 22px;
	left: 35px;
	background-image: url(./images/page/entry-cta__btn02.png);
}

.entry-btn:last-child:hover::before {
	background-image: url(./images/page/entry-cta__btn02_white.png);
}


/* Person Card */
.c-person-card {
	max-width: 1075px;
	width: 100%;
	margin: 0 auto;
	padding: 90px 0 0;
}

.c-person-card.first {
	padding-top: 111px;
}

.person-card__tag {
	position: relative;
	background: #FF8426;
	color: white;
	padding: 20px 20px 18px;
	font-size: 18px;
	font-weight: bold;
	display: inline-block;
	border-radius: 50px;
	letter-spacing: 0.14em;
	margin: 0 0 40px 0;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

.person-card__tag::after {
  content: '';
  position: absolute;
	bottom: -10px;
	left: 14%;
  transform: translateX(-50%) rotate(45deg);
  width: 20px;
  height: 20px;
  background: #FF8426;
  border-radius: 0 0 4px 0;
	z-index: -1;
}

.person-card__tag--blue::after {
	background: #054576;
}

.c-card__title {
	padding-bottom: 25px;
	font-size: 22px;
	font-weight: 800;
	color: #000;
	margin-bottom: 25px;
	line-height: 1;
	border-bottom: 1px solid #FF8426;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

.c-card__text {
	font-size: 16px;
	color: #000;
	line-height: 1.8;
	margin-bottom: 0;
	letter-spacing: 0.14em;
	font-weight: 800;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

.person-card__img {
	width: 100%;
	height: auto;
	margin-top: 66px;
}

/* Professional Card */
.pro-card__tag {
	background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 100%);
	color: white;
	padding: 12px 20px;
	font-size: 14px;
	font-weight: bold;
	display: inline-block;
	border-radius: 20px;
	margin: 20px 0 0 20px;
}

/* Career Path Card */
.career-path {
	padding-bottom: 142px;
}
.career-steps__item {
	margin-bottom: 45px;
}

.career-steps__item:last-child {
	margin-bottom: 0;
}

.career-steps__period {
	font-size: 14px;
	font-weight: bold;
	color: #ff6b35;
	margin-bottom: 8px;
}

.career-steps__desc {
	font-size: 16px;
	color: #000;
	line-height: 1.6;
	letter-spacing: 0.14em;
	font-weight: 800;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

/* Next Professional Section */

.next-pro__content {
	max-width: 1214px;
	width: 100%;
	margin: 0 auto;
	padding-bottom: 117px;
}

.next-pro__title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 30px;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.next-pro__cards {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 26px;
}

.next-pro__card {
	width: 50%;
}

.next-pro__card a {
	position: relative;
	display: flex;
	height: 177px;
	transition: .2s ease;
}

.next-pro__card a:hover .next-pro__card-body {
	background: #054576;
	transition: .2s ease;
}

.next-pro__card a:hover .next-pro__card__tag--bottom {
	background: #054576;
	transition: .2s ease;
}

.next-pro__card a:hover .next-pro__card-img img {
	transform: scale(1.2);
	transition: .2s ease;
}

.person-card__tag--blue {
	padding: 10px 20px 6px;
	background: #054576;
}

.person-card__tag--blue: after {
	background: #054576;
}

.next-pro__card-img {
	overflow: hidden;
	width: 100%;
	aspect-ratio: 321 / 177;
	transition: .2s ease;
}

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

.next-pro__card-body {
	width: 100%;
	padding: 20px;
	background: #FF8426;
}

.next-pro__card-tag {
	position: relative;
	margin-left: -34px;
	margin-bottom: 15px;
	color: #fff;
	font-size: 34px;
	font-weight: 400;
	display: inline-block;
	letter-spacing: 0.14em;
	font-family: 'Dhurjati', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	z-index: ;
}

.next-pro__card-tag span {
	margin-left: 6px;
	font-size: 26px;
	letter-spacing: 0.07em;
	font-weight: 400;
	font-family: "Do Hyeon", "Noto Sans KR", "Arial", sans-serif;
}

.next-pro__card-title {
	color: #fff;
	font-size: 23px;
	letter-spacing: 0.07em;
	font-weight: 800;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

#people01 .jobs-hero__wrap,
#people02 .jobs-hero__wrap,
#people03 .jobs-hero__wrap {
	top: 185px;
	left: 20px;
}

.person-head{
	padding: 134px 0 0;
}

.person-head {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: stretch;
  flex-wrap: wrap;
}

.next-pro__tag01 {
	position: absolute;
	content: "";
	left: 50px;
	bottom: 100px;
	font-size: 14px;
	letter-spacing: 0.14em;
	color: #fff;
	font-weight: 800;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

.next-pro__card__tag {
	position: absolute;
	content: "";
	height: 45px;
	bottom: 30px;
	left: 0;
	z-index: 1;
	background: #FF8426;
	color: #fff;
	padding: 12px 49px 18px;
	font-size: 15px;
	letter-spacing: 0.07em;
	font-weight: 800;
	box-sizing: border-box;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

.next-pro__card__tag--bottom {
	height: 22px;
	padding: 4px 14px 5px;
	font-size: 9px;
	bottom: 14px;
}

.person-ttl {
	position: relative;
	left: -50px;
	font-size: 74px;
	letter-spacing: 0.14em;
	font-weight: 400;
	color: #fff;
	font-family: 'Dhurjati', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.person-head__left,
.person-head__right {
  flex: 1;
}

.person-ttl span {
	font-size: 57px;
	letter-spacing: 0.07em;
	font-weight: 400;
	color: #fff;
	font-family: "Do Hyeon", "Noto Sans KR", "Arial", sans-serif;
}

.person-ttl__ja {
	padding-left: 25px;
	margin-bottom: 6%;
	font-size: 40px;
	letter-spacing: 0.07em;
	font-weight: 800;
	line-height: 1.4;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}

.person-head__right {
	background: #FF8426;
}

.person-head__img {
	max-width: 800px;
	width: 100%;
	height: 100%;
	aspect-ratio: 722 / 370;
}

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

.person-txt {
	padding: 0 42px;
	font-size: 14px;
	letter-spacing: 0.14em;
	font-weight: 800;
	font-family: "Noto Sans Thai", "Tahoma", "Arial", sans-serif;
}


@media (min-width: 1400px) {
	.safety__container{
		padding: 190px 0px 53px;
	}

	.topRecruit__container {
		padding: 0;
	}

	.news__container {
		padding: 0;
	}

	.services__container {
		padding: 100px 0 106px;
	}


	.services__grid {
		gap: 40px;
	}


	.c-contact .contact__container {
		padding: 0;
	}

	.job-info__inner {
		padding: 112px 0 174px;
	}

}

@media (max-width: 1000px) {
	.entry-btns {
		flex-direction: column;
	}

	.job-entry__top {
    height: 140px;
		background-size: cover;
	}

	.job-entry__top h2{
		font-size: 22px;
		white-space: nowrap;
	}

	.job-entry__ttl {
		padding: 40px 0;
		font-size: 28px;
	}

	.job-entry__btn__inner {
		padding: 0 20px;
	}

	.job-entry__ttl::before {
		width: 210px;
    height: 1px;
    top: 54px;
    right: -220px;
	}

	.entry-btns {
		width: 95%;
		margin: 0 auto;
		gap: 20px;
		padding-bottom: 60px;
	}

	.entry-btn {
		width: 100%;
		font-size: 16px;
		padding: 22px 4px 18px 34px;
	}

	.entry-btn:first-child::before {
		width: 24px;
		height: 24px;
		top: 20px;
    left: 48px;
		background-size: 100% 100%;
	}

	.entry-btn--adult {
		font-size: 12px;
	}

	.entry-btn:last-child::before {
		width: 24px;
		height: 24px;
		top: 18px;
		left: 20px;
		background-size: 100% 100%;
	}
}

/* SP スマホ */
@media (max-width: 768px) {

	.hero__title {
		margin-bottom: 20px;
		font-size: 32px;
		font-weight: 400;
		line-height: 1.6;
	}

	.about__container,
	.safety__container,
	.contact__info {
		grid-template-columns: 1fr;
		gap: 40px;
	}

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

	.portfolio__grid {
	}

	.recruitment-banner__card {
		flex-direction: column;
		align-items: baseline;
		gap: 20px;
		text-align: center;
		background-image: url(./images/page/sp_top_recruit_banner.jpg);
	}

	.recruitment-banner__content {
		text-align: left;
	}

	.recruitment-banner__content span {
		font-size: 11px;
	}

	.recruitment-banner__content h3 {
		margin-bottom: 16px;
		font-size: 22px;
	}

	.recruitment-banner {
		padding: 60px 0;
	}

	.recruitment-banner__content p {
		font-size: 18px;
	}

	.recruitment-banner__button {
		padding: 12px 30px 10px;
		font-size: 11px;
		margin: 0 0 0 auto;
	}

	.recruitment-banner__button::after {
		width: 20px;
    height: 20px;
    top: 10px;
    right: 3px;
	}

	.recruitment-banner__card {
		padding: 26px 14px 26px 109px;
	}

	.about__container {
		display: block;
	}

	.about {
		padding: 50px 0 70px;
	}

  .about__content p {
    font-size: 12px;
    margin: 20px auto 30px;
    line-height: 1.8;
  }

  .about__image {
		max-width: 500px;
		padding-top: 30px;
		margin: 0 auto;
  }

  .services__container {
		position: relative;
    margin: 0 auto;
		z-index: inherit;
  }

  .services__grid {
    display: flex;
    flex-direction: column;
    width: 60%;
    gap: 20px;
  }

  .safety__content {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .safety__container {
    padding: 50px 20px;
  }

	.services__container {
    padding: 50px 10px;
  }

	.c-more__button.c-more__button--port {
		padding: 8px 30px 9px;
	}

	.c-safety__button {
		line-height: inherit;
	}

	.c-safety__button a {
		padding: 8px 30px 9px;
		font-size: 14px;
	}

	.safety__content {
		align-items: inherit;
	}

	.topRecruit {
		padding: 50px 0;
	}

	.topRecruit__container {
		flex-direction: column;
	}

	.topRecruit__header {
		margin-bottom: 30px;
	}

	.topRecruit__content p {
		margin-bottom: 20px;
		font-size: 12px;
	}

	.news__item {
		gap: 20px;
		padding: 20px 10px;
	}

	.news__date {
		font-size: 14px;
	}

	.news__title {
		font-size: 14px;
	}

	.news__list {
		margin: 30px auto;
	}

	.news {
		padding: 50px 0;
	}

	.sky_bg {
		height: 70px;
	}

	.contact {
		padding: 58px 0 50px;
	}

	.contact__header p {
		margin: 10px auto 30px;
		font-size: 14px;
		line-height: 1.6;
	}

	.contact__item {
		width: 70px;
		height: 70px;
	}

	.recruitment-banner__container {
		width: 90%;
	}

	.safety__content p {
		font-size: 12px;
		letter-spacing: 1.2px;
	}

	.hero__title {
		font-size: 30px;
		top: inherit;
		bottom: 170px;
    right: 30px;
		transform: translate(0%, 0%);
	}

	.hero__subtitle {
		top: inherit;
		bottom: 76px;
    right: -18%;
		font-size: 16px;
		line-height: 1.6;
	}

	.c-animline {
		position: absolute;
		width: 140vw;
		height: 100%;
		bottom: 5%;
		left: 28%;
		transform-origin: 0 100%;
		transform: translate(20%, 20%) rotate(-44deg);
		z-index: 10;
	}

	.rolling-icon {
		width: 55px;
		height: 30px;
	}

	.fv_animation__wrap.sp-display {
		display: block;
	}

	.fv_animation__wrap.pc-display {
		display: none;
	}

	.fv_animation {
		height: 100vh
	}

	@keyframes svg-wave {
    0% {
      stroke-dashoffset: 1800;
      stroke-width: 1;
      stroke-opacity: 0;
    }
    50% {
      stroke-width: 1.8;
      stroke-opacity: 1;
    }
    100% {
      stroke-dashoffset: 800;
      stroke-width: 0;
      stroke-opacity: 0;
    }
  }

	/* 事業技術 */

	.hero {
		padding: 40px 0;
	}

	#top .hero__title {
		font-size: 2rem;
	}

	.card {
		padding: 20px;
	}

	.card__header {
		width: 185px;
		margin: inherit;
		top: -46px;
		height: 45px;
	}

	.contact__btn {
		padding: 15px 40px;
		font-size: 1rem;
	}

	.c-entry_btn--rec {
		width: 223px !important;
    height: 40px;
		margin: 0 auto;
	}

	.card__title {
		padding: inherit;
		font-size: 20px;
		letter-spacing: 0.14em;
	}

	.card-section {
		border-radius: 5px;
		border: 3px solid #054576;
	}

	.card-section__inner {
		padding: 30px 24px;
	}

	.c-power-flex {
		flex-direction: column-reverse;
		gap: inherit;
		align-items: baseline;
		margin-bottom: 30px;
	}

	.c-power__ttl {
		margin-bottom: 20px;
		font-size: 16px;
	}
	.c-power__image {
		width: 100%;
    height: auto;
    margin: 0 auto;
	}

	.power__content h3 {
		font-size: 20px;
	}

	.power__content h3::before {
		background: none;
	}

	.power__item__ttl {
		padding-left: 8px;
    margin-bottom: 12px;
		letter-spacing: 0.01em;
		font-size: 16px;
	}

	.power__list li:before {
		width: 4px;
    height: 20px;
    top: 9px;
	}

	.power__item__txt {
		font-size: 12px;
    letter-spacing: 0.01em;
		line-height: 1.8;
	}

	.power__content:last-child h3::before{
		background: none;
	}

	.power__content h3 {
		margin-bottom: 10px;
	}

	.card-section {
		margin-bottom: 90px;
	}

	.patent-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }


	.patent {
		width: max-content;
		min-width: 250px;
		border-collapse: collapse;
	}

	.patent__cell--index {
		width: 30px;
	}

	.patent__cell--content {
		flex-direction: column;
    padding: 8px 10px 2px;
		font-size: 11px;
	}

	.patent__cell{
		padding: 8px 10px;
	}

	.patent__cell--number, .patent__cell--index {
		font-size: 11px;
	}

	.patent-table-wrapper {
		width: 100%;
	}

	.patent__table {
		width: 100%;
		min-width: 500px;
		border-collapse: collapse;
	}

	.patent__header-cell--number,
	.patent__header-cell--content {
		display: table-cell;
		width: auto;
	}

	.patent__image {
		max-width: 200px;
    height: auto;
		margin-top: 6px;
	}

	.card-section--patent {
		margin-bottom: 50px;
	}

	.toPartners__mainTtl {
		font-size: 24px;
	}

	.toPartners__img {
		margin-top: 30px;
	}

	.toPartners__ttl {
		padding: 0 10px;
    margin-top: 20px;
		margin-bottom: 34px;
    font-size: 16px;
		line-height: 1.6;
    text-align: left;
	}

	.toPartners__ttl::before {
		height: 3px;
    bottom: -16px;
	}

	.toPartners__txt p {
		font-size: 12px;
    letter-spacing: 0.02em;
    line-height: 2.2;
	}

	.toPartners__inner {
		padding: 0 0 100px 0;
	}

	.flow__body {
		padding: 30px 24px;
	}

	.c-step {
		flex-direction: column;
		margin-bottom: 20px;
	}

	.c-step__title {
		font-size: 24px;
	}

	.c-step__num {
		font-size: 24px;
	}

	.c-step__heading {
		display: flex;
		align-items: baseline;
		margin-bottom: 10px;
	}

	.c-step__text {
		font-size: 12px;
		line-height: 1.8;
	}

	.c-step__img {
		border-radius: 8px;
	}

	.c-step__img img {
		border-radius: 8px;
	}

	.c-step__textArea {
		width: 100%;
	}

	.flow__item:nth-of-type(2n) .c-step {
		flex-direction: column;
	}

	.flow__item {
		padding: 30px 0;
	}

	.flow {
		margin-bottom: 90px;
	}


	.c-contact .contact__container {
		flex-direction: column;
	}

	.c-contact .contact__header {
		margin-bottom: 16px;
		text-align: center;
	}

	.contact.c-contact {
		padding: 20px;
	}

	.contact__item {
		width: 50px;
		height: 50px;
	}

	.main {
		margin-bottom: 0;
	}

	.formArea {
		padding: 190px 20px 58px;
	}

	.contact__side {
		bottom: -75%;
		left: 50%;
		transform: translateY(-0%) translateX(-50%);
	}

	.Form-Item-Label {
		font-size: 14px;
    margin-bottom: 8px;
	}

	.Form-Item {
		margin-bottom: 24px;
	}

	input::placeholder,
	textarea::placeholder {
		font-size: 14px;
	}

	.privacy__area {
		padding: 55px 16px 54px;
	}

	.privacy__area p {
		line-height: 1.6;
	}

	.thanks__messa {
		font-size: 14px;
	}

	.formArea__contact__btn {
		width: 34px;
    height: 34px;
    margin: 0 auto 30px;
	}

	.thanks__top {
		width: 100%;
		height: 140px;
	}

	.thanks__top a {
		display: block;
		height: 100%;
	}

	.thanks__top a img {
		display: block;
		width: 100%;
		height: 100%;
	}

	.formArea__top h3 {
		margin-bottom: 12px;
    font-size: 18px;
	}

	.formArea__top__txt {
		margin-bottom: 12px;
    font-size: 12px;
	}

	.formArea__top {
		right: 25px;
	}

	/* Swiperコンテナの高さ設定 */
	.fv_animation__wrap.sp-display .fv_animation__container {
		width: 100%;
		height: 100vh;
		overflow: hidden;
		position: relative;
	}

	.fv_animation__wrap.sp-display .fv_animation__item img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}

	.fv_animation__wrap.sp-display .fv_animation__wrapper {
		height: 100%;
	}

	.services {
		height: inherit;
	}

	.flow__body__item .number {
		width: 36px;
    height: 36px;
		margin-right: 12px;
		font-size: 12px;
	}

	.flow-flex__top {
		margin-bottom: 4px;
	}

	.flow-flex__top img {
		width: 24px;
    height: auto;
    margin-right: 6px;
	}

	.flow-flex__top .txt {
		font-size: 16px;
	}

	.flow-flex__bottom {
		padding-left: 30px;
    font-size: 12px;
	}

	.flow__body__item {
		margin-bottom: 24px;
	}

	.flow-flex__top .txt span {
		font-size: 10px;
	}

	.safety__content .safety__content__txt {
		margin-bottom: 10px;
		font-size: 14px;
	}

	.safety__content__ttl {
		margin-bottom: 20px;
	}

	.contact-rolling-icon {
		width: 55px;
		height: 30px;
	}

	@keyframes rotateMoveRight {
		0% {
			transform: translateX(0) rotate(0deg);
		}
		100% {
			transform: translateX(100vw) rotate(180deg);
		}
	}

	/* 仕事を知る */
	.jobs-hero .container {
		margin-top: 12px;
		aspect-ratio: auto;
    height: auto;
    padding-top: 80%;
    background-size: cover;
    background-position: right;
	}

	.jobs-hero__wrap {
		top: -136px;
    left: 20px;
	}

	.jobs-hero__title {
		margin-right: 8px;
    font-size: 44px;
	}

	.jobs-hero__sub {
		font-size: 16px;
	}

	.job-info__inner {
		padding: 50px 20px 75px;
	}

	.job-info__head {
		padding: 0;
		font-size: clamp(12px, 4vw, 24px);
		text-align: center;
		line-height: 1.8;
	}

	.job-info__head::after {
		display: none;
	}

	.job-info__body {
		flex-direction: column;
	}

	.job-info__body {
		padding: 20px 0 0;
		gap: 20px;
	}

	.job-info__img {
		width: 44%;
		margin: 0 0 0 2%;
	}

	.job-info__lead {
		margin-bottom: 10px;
		font-size: 16px;
	}

	.job-info__desc {
		font-size: 12px;
	}

	.job-info__desc {
		margin-bottom: 20px;
	}

	.job-info__detail ul {
		flex-wrap: wrap;
		gap: 6px 10px;
	}

	.job-info__detail ul li {
		font-size: 12px;
	}

	.daily-flow__item {
		padding: 13px 0;
	}

	.daily-flow__item::before {
		width: 8px;
    height: 8px;
		margin-right: 18px;
    margin-left: 22px;
    flex-shrink: 0;
	}

	.daily-flow__time {
		width: 68px;
    font-size: 15px;
	}

	.daily-flow__desc {
		font-size: 12px;
	}

	.daily-flow__item::after {
		width: 2px;
    height: 65px;
    top: 36px;
    left: 25px;
	}

	.daily-flow__item:nth-of-type(5)::after {
		height: 35px !important;
	}

	.daily-flow__body {
		padding: 30px 0 75px;
	}

	#people01 .jobs-hero .container {
		padding-top: 95%;
		background-image: url(./images/page/sp_people01-hero.jpg);
		aspect-ratio: 362 / 416;
	}

	.job-breadcrumb {
		display: none;
	}

	.jobs-hero__title {
		margin-right: 0;
		font-size: 34px;
		line-height: 1.2;
	}

	.jobs-hero__sub {
		font-size: 14px;
	}

	#people01 .jobs-hero__wrap, #people02 .jobs-hero__wrap, #people03 .jobs-hero__wrap {
		flex-direction: column;
		align-items: flex-end;
		bottom: 50px;
		top: inherit;
		right: 23px;
		left: inherit;
	}

	.person-head {
		padding: 60px 0 0;
	}

	.person-head__img {
		aspect-ratio: 360 / 224;
	}

	.person-head___left {
		position: relative;
	}

	.person-info {
		position: absolute;
    right: 0;
    bottom: 20px;
	}

	.next-pro__tag01{
		position: inherit;
		font-size: 10px;
	}

	.next-pro__card__tag{
		position: inherit;
		height: 28px;
		font-size: 11px;
		padding: 6px 34px 4px;
	}

	.person-head__right {
		padding: 24px 25px 30px;
	}

	.person-ttl {
		font-size: 24px;
		left: inherit;
	}

	.person-ttl span {
		padding-left: 8px;
		font-size: 19px;
	}

	.person-ttl__ja {
		padding: 0;
		font-size: 20px;
		margin-bottom: 25px;
	}

	.person-txt {
		padding: 0;
		font-size: 10px;
    line-height: 1.6;
	}

	.c-person-card.first {
		padding: 50px 20px 0;
	}

	.person-card__tag {
		padding: 6px 14px 3px;
		margin: 0 0 25px 0;
		font-size: 11px;
	}

	.c-card__title {
		padding-bottom: 0;
    font-size: 15px;
		margin-bottom: 25px;
    line-height: 1.6;
	}

	.c-card__text {
		font-size: 12px;
	}

	.c-person-card {
		padding: 40px 20px 0;
	}

	.person-card__img {
		margin-top: 16px;
	}

	.career-steps__desc{
		font-size: 12px;
	}

	.next-pro__cards {
		flex-direction: column;
	}

	.next-pro__card a {
		flex-direction: column;
    height: inherit;
	}

	.next-pro__card-body {
		padding: 0px 15px 6px;
	}

	.next-pro__card-tag {
		font-size: 20px;
    margin-left: 0;
    margin-bottom: 0px;
	}

	.next-pro__card-tag span {
		margin-left: 6px;
    font-size: 16px;
	}

	.next-pro__card-title {
		font-size: 14px;
	}

	.next-pro__card__tag {
		font-size: 11px;
		padding: 6px 15px 4px;
	}

	.next-pro__cards {
		gap: 20px;
	}

	.next-pro__card {
		width: 80%;
	}

	.next-pro__content {
		padding: 75px 20px 75px;
	}

	.person-info {
		position: absolute;
		display: block;
		content: "";
		right: 0;
		bottom: 14px;
		left: inherit;
		width: 165px;
	}

	.next-pro__tag01 {
		position: inherit;
		width: 100%;
		display: block;
		font-size: 10px;
		bottom: inherit;
		left: inherit;
		margin-bottom: 35px;
		text-align: center;
	}

	.next-pro__card__tag {
		display: block;
		width: 100%;
		font-size: 11px;
		padding: 6px 15px 4px;
		bottom: inherit;
		left: inherit;
		text-align: left;
	}

	.next-pro__card a:hover .next-pro__card__tag--bottom{
		text-align: left;
	}

	.person-card__tag::after {
		left: 14%;
		width: 10px;
		bottom: -6px;
		border-radius: 0;
	}

	.job-info__flex {
		display: flex;
		align-items: center;
		justify-content: center;
		padding-bottom: 10px;
		border-bottom: 4px solid #FF8426;
	}

	#people02 .jobs-hero .container,
	#people03 .jobs-hero .container {
		background-image: url(./images/page/sp_people01-hero.jpg);
	}

}


