/* ===========================
   Reset & Base
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
/*  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #333;
  background: #fff;
  line-height: 1.8;*/
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }


/* swell reset */
#header > .l-container {
	max-width:1920px !important;
	margin:auto;
	padding:0 clamp(20px,2.08vw,40px) !important;
}
.l-container {
	max-width:100% !important;
	padding:0 !important;
}
@media screen and (max-width: 959px) {
	#header > .l-container {
		padding:0 0px !important;
	}
}

/* ===========================
   CSS Variables
=========================== */
:root {
  --color-primary: #ba8217;   /* gold/yellow accent */
  --color-green: #4caf50;
  --color-dark: #000;
  --color-gray-light: #f5f5f5;
  --color-gray: #888;
  --color-border: #b8b7b7;
  --font-en: "area-extended", sans-serif;
  --max-width: 1580px;
  --section-padding: 140px 20px;
}
@media screen and (max-width: 1500px) {
:root {
  --section-padding: clamp(60px,9.33vw,140px) 20px clamp(40px,6vw,90px);
}
}
/* ===========================
   Utility
=========================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 800px) {
	.container {
		padding:0;
	}
}
.section-label {
  font-family: var(--font-en);
  font-size:clamp(18px,1.04vw,20px);
  font-weight:900px;
  color:#afa899;
/*  letter-spacing: 0.15em;*/
  display: block;
  margin-top: 15px;
}
.section-heading {
  font-family: var(--font-en);
  font-size: clamp(55px,3.28vw,63px);
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1500px) {
	.section-heading {
	  font-size:clamp(30px,3.66vw,55px);
 	}
 	.section-label {
	  font-size:clamp(12px,1.2vw,18px);
  }
}
.btn {
  display: flex;
  align-items: center;
  justify-content:center;
  width:212px;
  min-height:70px;
  background:#999;
  border-radius:50px;
  transition:0.3s;
  font-size:clamp(16px,0.93vw,18px);
}
.btn.type01 {
  border-width: 0px;
  border-color: rgb(209, 209, 211);
  border-style: solid;
  background-color: rgb(248, 248, 248);
  box-shadow: 2.121px 2.121px 5.88px 1.12px rgba(0, 0, 0, 0.2);
}
.btn.type02 {
	background:#3c3c3c;
	color:#fff;
}
.btn.type03 {
  border-width: 0px;
  border-color: rgb(209, 209, 211);
  border-style: solid;
  background-color: rgb(71, 174, 39);
  box-shadow: 2.121px 2.121px 5.88px 1.12px rgba(0, 0, 0, 0.1);
  color:#fff;
}

.btn:hover { opacity: 0.85; }
.tag {
  display: inline-block;
  padding: 10px 10px;
  border-radius: 20px;
  font-size:clamp(16px,0.93vw,18px);
  font-weight: bold;
  background:#333333;
  color:#fff;
  width:160px;
  min-width:160px;
  text-align:center;
  line-height:1em;
  white-space:nowrap;
}
/*.tag-yellow { background: var(--color-primary); color: #fff; }
.tag-green  { background: var(--color-green); color: #fff; }
.tag-gray   { background: #aaa; color: #fff; }*/
@media screen and (max-width: 1500px) {
	.btn {
	  width:clamp(150px,14.13vw,212px);
	  height:clamp(40px,4.66vw,70px);
	  min-height:50px;
	  font-size:clamp(13px,1.06vw,16px);
	  font-weight:bold;
	}
	.tag {
	  padding: 10px 10px;
	  font-size:clamp(14px,1.06vw,16px);
	  width:160px;
	  min-width:160px;
	}
}
@media screen and (max-width: 900px) {
	.tag {
	  padding: 5px 10px;
	  font-size:clamp(10px,0.93vw,14px);
	  width:auto;
	  min-width:100px;
	}
}
/* ===========================
   Header / Nav
=========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  height: 60px;
  display: flex;
  align-items: center;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.site-logo {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-dark);
}
.site-logo span {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-gray);
  letter-spacing: 0.1em;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-dark);
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--color-primary); }

/* ===========================
   Hero
=========================== */
.hero {
  background: #fff;
  padding: 90px 10px 60px;
  position: relative;
  overflow: hidden;
/*  min-height: 520px;*/
	height:clamp(600px,35.41vw,680px);
	max-width:1920px;
	margin:0 auto;
  background:url(../images/main-v.png) no-repeat right center;
  background-size:1078px;
}
.hero .container {
  width: 100%;
}
.hero-content {

}
.hero-en {
  font-family: var(--font-en);
  font-size: clamp(70px,3.9vw,75px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-dark);
  letter-spacing: -0.02em;
}
.hero-en em {
  font-style: normal;
  color: var(--color-primary);
  font-weight:900;
}
.hero-ja {
  font-size:clamp(40px,2.5vw,48px);
  font-weight: 700;
  color: var(--color-dark);
  margin-top: 16px;
  line-height: 1.5;
  letter-spacing:0.05em;
}
.hero-desc {
  font-size:clamp(20px,1.25vw,24px);
  color: #000;
  margin-top: 30px;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
@media (min-width: 1600px) and (max-width: 1920px) {
	.hero {
  	background-size:950px;
	}
}
@media screen and (max-width: 1599px) {
	.hero {
  	background-size:60vw;
	}
}

@media screen and (max-width: 1500px) {
	.hero {
		height:auto;
		min-height:0;
		padding-top:3vw;
	}
	.hero-en {
    font-size:clamp(50px,4.66vw,70px);
	}
	.hero-ja {
		font-size:clamp(25px,2.66vw,40px);
	}
	.hero-desc {
		font-size:clamp(14px,1.33vw,20px);
	}
}
@media screen and (max-width: 800px) {
	.hero {
		padding:3vw 20px 8vw;
		background-position:right -14vw top;
	}
	.hero-en {
    font-size:clamp(30px,6.25vw,50px);
	}
	.hero-ja {
		font-size:clamp(18px,3.12vw,25px);
	}
	.hero-desc {
		font-size:clamp(12px,1.75vw,14px);
		margin-top:3vw;
	}
}
@media screen and (max-width: 520px) {
	.hero-en {
    font-size:clamp(24px,3.75vw,30px);
	}
	.hero-ja {
		font-size:clamp(14px,2.25vw,18px);
	}
	.hero-btns {
		flex-direction:column;
		align-items:center;
	}
	.hero .btn {
		width:100%;
	}
}
/* ===========================
   About
=========================== */
.about {
  padding: var(--section-padding);
	background: linear-gradient(to right,  #ffffff 0%,#ffffff 43%,#f2f2f2 50%,#f2f2f2 100%);
}
.about .container {
  display: flex;
  align-items: flex-start;
}
.about-text { 
	flex: 1; 
	width:clamp(500px,36.45vw,700px);
}
.about-text h3 {
  font-size:clamp(26px,1.56vw,30px);
  font-weight: 700;
  color: var(--color-dark);
  margin: 35px 0 16px;
  line-height: 1.6;
}
.about-text p {
  font-size:clamp(16px,0.93vw,18px);
  color: #000;
  line-height: 2.4em;
  margin-top:20px;
}
.about-image {
	width:50vw;
	padding-top:4vw;
	position:relative;
	right:-2vw;
}
.about-image .img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e8e8e0 0%, #d4d4c8 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 13px;
}
@media screen and (max-width: 1500px) {
	.about-text h3 {
	  font-size:clamp(20px,1.73vw,26px);
	  margin: 35px 0 16px;
	}
	.about-text p {
	  font-size:clamp(14px,1.06vw,16px);
	  line-height: 2.4em;
	  margin-top:20px;
	}
}
@media screen and (max-width: 1500px) {
	.about .container {
    flex-direction:column;
    align-items:center;
	}
	.about-text {
		width:100%;
		min-width:0;
		max-width:100%;
	}
	.about-text p > br.pc {
		display:none;
		
	}
	.about-image {
		width:60vw;
		right:0;
		margin-left:auto;
		padding-top:10px;
	}
}
@media screen and (max-width: 800px) {
	.about {
		background: linear-gradient(to right,  #ffffff 0%,#ffffff 83%,#f2f2f2 90%,#f2f2f2 100%);
	}
}

/* ===========================
   Service
=========================== */
.service {
  padding: var(--section-padding);
  background: var(--color-gray-light);
}
.service .container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.service-intro { 
	width:clamp(400px,24.21vw,465px);
}
.service-intro p {
  font-size:clamp(18px,1.04vw,20px);
  color: #000;
  font-weight:bold;
  margin-top: 16px;
  line-height: 2;
}
.service-cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: #fff;
  border-radius: 8px;
  padding: 35px clamp(35px,2.08vw,40px);
  border-width: 0px;
  border-color: rgb(209, 209, 211);
  border-style: solid;
  background-color: rgb(248, 248, 248);
  box-shadow: 2.121px 2.121px 5.88px 1.12px rgba(0, 0, 0, 0.2);
}
.service-card-icon {
  margin-bottom: 16px;
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:140px;
}
.service-card-icon img {
	max-width:100%;
}
.service-card h4 {
  font-size:clamp(26px,1.56vw,30px);
  font-family:var(--font-en);
  font-weight: 900;
  color: var(--color-dark);
  margin-bottom: 15px;
  line-height:1.2em;
  position:relative;
}
.service-card h4:before {
	content:"";
	width:13px;
	height:13px;
	border-radius:50%;
	display:block;
	background:#ba8217;
	position:absolute;
	left:-20px;
	top:10px;
}
.service-card .card-sub {
  font-size:clamp(18px,1.04vw,20px);
  color: #000;
  font-weight:bold;
  margin-bottom: 12px;
}
.service-card p {
  font-size:clamp(14px,0.83vw,16px);
  color: #000;
  line-height: 2;
}
@media screen and (max-width: 1500px) {
	.service .container {
    flex-direction:column;
    gap: 30px;
    align-items: flex-start;
	}
	.service-intro p {
    font-size:clamp(14px,1.2vw,18px);
    margin-top: 16px;
	}
	.service-card {
		
		padding: 30px clamp(30px,2.33vw,35px);
	}
	.service-card h4 {
    font-size:clamp(16px,1.73vw,26px);
    margin-bottom:1vw;
  }
  .service-card h4:before {
  	top:0.6vw;
  	width: 10px;
    height: 10px;
    left:-15px;
  }
  .service-card .card-sub {
    font-size:clamp(14px,1.2vw,18px);
  }
}
@media screen and (max-width: 720px) {
	.service-cards {
    display: flex;
    flex-direction:column;
    gap:20px;
    width:100%;
	}
	.service-card {
		width:100%;
	}
	.service-card p:last-child {
		text-align:center;
	}
}
/* ===========================
   Career & Employers (2-col)
=========================== */
.career-employers {
  padding: var(--section-padding);
  background: #fff;
}
.career-employers .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.career-col,.employers-col {
	padding:0 clamp(20px,1.56vw,30px);
}
.career-col {
	background:url(../images/carrer01.png) no-repeat right 20px top;
	border-left:1px solid #000;
}
.employers-col {
	background:url(../images/employers01.png) no-repeat right top;
	border-left:1px solid #ba8217;
}

.col-heading {
  font-family: var(--font-en);
  font-size:clamp(55px,3.28vw,63px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-dark);
  line-height: 1;
  margin-bottom:30px;
}
.col-sub {
  font-size:clamp(18px,1.04vw,20px);
  font-family: var(--font-en);
  font-weight: 900;
  color: #afa899;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.col-title {
  font-size:clamp(22px,1.25vw,24px);
  font-weight: bold;
  color: #000;
  margin: 5px 0 10px;
}
.employers-col .col-title {
	color:var(--color-primary);
}
.col-desc {
  font-size:clamp(16px,0.93vw,18px);
  color: #000;
  line-height: 1.9;
}
/* highlight link list */
.link-list {
  display: flex;
  flex-direction: column;
  align-items:flex-start;
  gap: 12px;
  margin: 40px 0 70px;
}
.link-list li {
  font-size:clamp(16px,0.93vw,18px);
  font-weight: bold;
  color: #000;
  display: flex;
  align-items:center;
  background:#e2e0e0;
  padding:6px 15px;
}
.link-list li::before {
  content: '●';
  font-size: 13px;
  color: #000;
  margin-right:5px;
}
.employers-col .link-list li::before {
  color:var(--color-primary);
}


/* Flow */
.flow-label {
  font-size:clamp(18px,1.04vw,20px);
  font-family: var(--font-en);
  font-weight: 900;
  color: #afa899;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.flow-title {
  font-size:clamp(22px,1.25vw,24px);
  font-weight: bold;
  color: #000;
  margin: 5px 0 10px;
}
.employers-col .flow-title {
	color:var(--color-primary);
}
.flow-steps { 
	margin-top:30px;
	display: flex;
	flex-direction: column;
	gap: 0;
}
.flow-step {
  display: flex;
  align-items: center;
  border-radius: 15px;
  padding: 35px clamp(35px, 2.08vw, 40px);
  border-width: 0px;
  border-color: rgb(209, 209, 211);
  border-style: solid;
  background-color: #fff;
  box-shadow: 2.121px 2.121px 5.88px 1.12px rgba(0, 0, 0, 0.2);
  margin-bottom:50px;
  min-height:130px;
  position:relative;
}
.flow-step:last-child {
	margin-bottom:10px;
}
.flow-step:after {
	content:"";
	width:34px;
	height:39px;
	display:block;
	position:absolute;
	left:0;
	right:0;
	bottom:-45px;
	margin:auto;
	background:url(../images/arrow01.png) no-repeat center / contain;
}
.flow-step:last-child::after {
	display:none;
}
.step-num {
  color: #000;
  font-family: var(--font-en);
  font-size:clamp(26px,1.56vw,30px);
  font-weight: 900;
  width:55px;
  min-width:55px;
}
.employers-col .step-num 
	{ 
	color: var(--color-primary);
}
.step-content {
	display:flex;
	align-items:center;
}
.step-content strong {
  display: flex;
  align-items:center;
  font-size:clamp(20px,1.14vw,22px);
  font-weight: bold;
  color: var(--color-dark);
  min-width:145px;
  width:145px;
  min-height:80px;
  margin-right:0px;
}
.employers-col  .step-content strong {
	color:var(--color-primary);
}
.step-content p {
  font-size:clamp(14px,0.83vw,16px);
  color: #000;
  line-height: 1.7;
  margin-right: 8px;
  border-left:1px solid #000;
  padding-left:20px;
  max-width:310px;
}
.step-icon {
	margin-left:auto;
  display: flex;
  justify-content: flex-end;
}
.step-icon img {
/*	object-fit:contain;*/
}
.step-content p br.pc {
	display:none;
}

@media screen and (max-width: 1500px) {
	.career-col,.employers-col {
    background-size:20vw;
	}
	.col-heading {
	  font-size: clamp(30px, 3.66vw, 55px);
	  margin-bottom:2vw;
	}
	.col-sub {
	  font-size: clamp(12px, 1.2vw, 18px);
	}
	.col-title {
	  font-size:clamp(16px,1.46vw,22px);
	}
	.link-list li {
    font-size:clamp(14px,1.06vw,16px);
	}
	.link-list li::before {
    font-size: 10px;
    margin-right: 5px;
    position:relative;
    top:-2px;
	}
	/* flow */
	.flow-step {
    padding: 20px clamp(20px,2.33vw,35px);
    margin-bottom:40px;
  }
  .flow-label {
    font-size:clamp(18px,1.46vw,22px);
  }
  .flow-title {
    font-size: clamp(22px, 1.25vw, 24px);
  }
	.step-num {
		font-size:clamp(18px,1.73vw,26px);
		width:45px;
		min-width:45px;
	}
	.step-content strong {
		font-size:clamp(16px,1.33vw,20px);
		min-width: 120px;
    width: 120px;
    margin-right:10px;
	}
	.step-content p {
		max-width:300px;
		font-size:clamp(13px,0.93vw,14px);
	}
	.step-icon img {
		max-width:70%;
	}
	.flow-step:after {
    width: 25px;
    height: 30px;
    bottom: -35px;
	}

}
@media screen and (max-width: 1000px) {
	.career-employers .container {
    display:flex;
    flex-direction:column;
    gap:60px;
	}
	.career-col,.employers-col {
    background-size:50vw;
    padding-right:0;
	}
	.link-list {
    margin: 30px 0 40px;
	}
	.step-content p {
		font-size:14px;
	}
}
@media screen and (max-width: 550px) {
	.career-col,.employers-col {
    background-position:top 200px right;
	}
	.flow-step {
		flex-direction:column;
		position:relative;
	}
	.step-content {
		flex-direction:column;
		align-items:center;
	}
	.step-num {
		width:100%;
		min-width:0;
		text-align:center;
	}
	.step-content strong {
		width:auto;
		min-width:0;
		margin:0;
		text-align:center;
		min-height:0;
	}
	.step-content p {
		padding:0;
		border:none;
		text-align:center;
		margin-top:20px;
		margin-right:0;
		font-size:14px;
	}
	.step-content p br {
		display:none;
	}
	.step-icon img {
		position:absolute;
		right:20px;
		top:20px;
		max-width:13vw;
		object-fit:contain;
	}
}

/* ===========================
   Company
=========================== */
.company {
  padding: var(--section-padding);
  background: var(--color-gray-light);
}
.company .container {
  display:flex;
  justify-content:space-between;
}
.company table {
  width:clamp(800px,48.17vw,925px);
  border-collapse: collapse;
}
.company table th,
.company table td {
  padding: 18px 0px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}
.company table th {
  width:230px;
  font-size:clamp(18px,1.04vw,20px);
  font-weight: 700;
  color: var(--color-dark);
  line-height:1.2em;
}
.company table td { 
	color: #000;
	line-height:2em;
	font-size:clamp(16px,0.93vw,18px);
}
@media screen and (max-width: 1200px) {
	.company .container {
		flex-direction:column;
		gap:40px;
	}
	.company table {
		margin:auto;
		width:100%;
		max-width:800px;
		min-width:0;
	}
	.company table th {
    font-size:clamp(16px,1.2vw,18px);
    width:180px;
  }
  .company table td {
    font-size:clamp(14px,1.06vw,16px);
  }
}
@media screen and (max-width: 550px) {
	.company table,.company table tbody,.company table tr,.company table th,.company table td {
		display:block;
		width:100%;
	}
	.company table th {
		border:none;
		padding-bottom:0;
	}
	.company table td {
		margin-bottom:10px;
		padding-top:10px;
		padding-left:10px;
	}
}

/* ===========================
   News
=========================== */
.news {
  padding: var(--section-padding);
  background: #fff;
}
.news .container {
	display:flex;
	justify-content:space-between;
}
.news-list {

}
.news-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  width:clamp(900px,57.29vw,1100px);
}
.news-date {
  font-size:clamp(16px,0.93vw,18px);
  color:#858484;
  white-space: nowrap;
}
.news-text {
  font-size:clamp(16px,0.93vw,18px);
  color: #000;
  margin-left:40px;
  width:100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.news-more {
  margin-top: 20px;
}
@media screen and (max-width: 1300px) {
	.news .container {
    flex-direction:column;
    gap:40px;
	}
}
@media screen and (max-width: 900px) {
	.news-item {
		flex-wrap:wrap;
		padding-top:0;
		width:auto;
		gap:10px;
	}
	.news-text {
		min-width:100%;
		margin-left:0;
		margin-bottom:10px;
		border-bottom:1px solid #b8b7b7;
		padding-bottom:15px;
	}
	.news-text a {
		font-size:14px;
	}
	.news-date {
		font-size:14px;
	}
}

/* ===========================
   Contact
=========================== */
.contact {
  padding: var(--section-padding);
  background: var(--color-gray-light);
  background:url(../images/contact01.png) no-repeat center right;
}
.contact .container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.contact-content { flex: 1; }
.contact-content h3 {
  font-size:clamp(20px,1.25vw,24px);
  font-weight: bold;
  color: #000;
  margin: 40px 0 50px;
	line-height:2em;
}
.contact-btns {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.contact-btns .btn {
	width:clamp(300px,17.18vw,330px);
	min-height:clamp(80px,5.2vw,100px);
	font-size:clamp(18px,1.14vw,22px);
	font-weight:bold;
}
.contact-image {
  flex: 0 0 380px;
  max-width: 380px;
}
.contact-image .img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e0e4e8 0%, #c8ccd4 100%);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #bbb; font-size: 13px;
}
@media screen and (max-width: 1500px) {
	.contact-content h3 {
	  font-size:clamp(14px,1.33vw,20px);
	  margin: 30px 0 30px;
	}
	.contact {
    background-size:70%;
	}
	.contact-btns .btn {
		width:clamp(200px,20vw,300px);
		min-height:clamp(50px,5.33vw,80px);
		font-size:clamp(14px,1.2vw,18px);
	}
}
@media screen and (max-width: 670px) {
	.contact {
    background-size:60%;
    background-position:right top 25%;
	}
	.contact-btns {
		flex-direction:column;
	}
	.contact-btns .btn {
		width:100%;
	}
}
