@charset "utf-8";


#header{
	width: unset!important;
	border-bottom: none;
	max-width: 1200px;
	padding: 0 30px;
}
#header-upper {
	width: unset;
	margin: 0 auto;
}
#contents {
	width: unset;
	margin: 0 0px 40px;
}
#main {
	float: unset;
	width: unset;
	position: relative;
}
#main .header--type-01 {
	margin: 0px 0px 20px;
	padding: 30px;
	border-radius: unset;
	background: #f1efef;
	color: #111;
}
#main .header--type-01 h1 {
	font-size: 36px;
	font-weight: 500;
	max-width: 1200px;
	margin: auto;
}



/*--------------------------------------------
 employ
---------------------------------------------*/
html {
  scroll-behavior: smooth;
}



    * {
      box-sizing: border-box;
    }


.hero {
position: relative;
background: url('https://tradingeconomics.pages.dev/corp_contents/employment/images/emp-background.jpg') no-repeat center center/cover;
height: 500px;
display: flex;
align-items: baseline;
text-align: left;
color: #fff;
}
.hero-text {
background: linear-gradient(rgba(255, 255, 255, 0.7),rgba(255, 255, 255,0));
color: #333;
padding: 20px;
width: 100%;
position: relative;
}
.hero-text h2 {
font-size: 1.7rem;
color: #111;
font-family: serif;
letter-spacing: 0.1em;
}
.hero-text h2 strong {
font-size: 2.5rem;
color:#faa000;
}
.badge {
position: absolute;
left: 120px;
background: url('https://tradingeconomics.pages.dev/corp_contents/employment/images/foundYear.png') no-repeat center center/contain;
width: 200px;
height: 200px;
}
.catchphrase {
    position: absolute;
    left: 350px;
}
.stats {
display: flex;
justify-content: center;
align-items: flex-start;
gap: 20px;
margin: -50px auto 100px;
position: relative;
width: 90%;
padding: 0 40px;
}
.stat-card {
flex: 1;
/* background: #fff;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
padding: 20px;
text-align: center;
width: 300px; */
}
.stat-card img {
max-width: 90%;
margin: auto 5% 3%;
}
.stat-card p {
    max-width: 90%;
    margin: auto 5%;
    color: #000;
    font-size: 16px;
}
.stat-card p span{
font-weight: 700;
}
.stat-card h3 {
margin-bottom: 10px;
}
.invitationMessage {
    text-align: center;
    font-size: 20px;
    padding: 2%;
    background: rgb(80 178 195 / 88%);
    color: #ffffff;
    text-shadow: 2px 3px 3px rgb(16 62 70);
    font-weight: 700;
}
.buttons {
margin: 100px 0;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
}
.buttons a {
margin: 0 10px;
transition: background 0.3s;
border-radius: 50px;
}
.buttons a img {
width: 400px;
}
.buttons a:hover {
background: #e09e00;
}


/*--------------------------------------------
 fade-In
---------------------------------------------*/
.badge {
  opacity: 0; /* 初期状態は非表示 */
  animation: fadeIn 1.3s ease forwards;
  animation-delay: 1s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


/*--------------------------------------------
 slideX & fade-In
---------------------------------------------*/
.slide-01 {
  opacity: 0; /* 初期状態は非表示 */
  transform: translateX(100px); /* 下に少しズレた位置から */
  animation: slideFadeInX 1.5s ease forwards;
  animation-delay: 1.3s;
}
.slide-02 {
  opacity: 0; /* 初期状態は非表示 */
  transform: translateX(100px); /* 下に少しズレた位置から */
  animation: slideFadeInX 1.5s ease forwards;
  animation-delay: 1.6s;
}
.slide-03 {
  opacity: 0; /* 初期状態は非表示 */
  transform: translateX(100px); /* 下に少しズレた位置から */
  animation: slideFadeInX 1.5s ease forwards;
  animation-delay: 1.9s;
}

@keyframes slideFadeInX {
  from {
    opacity: 0;
    transform: translateX(100px); /* 下から */
  }
  to {
    opacity: 1;
    transform: translateX(0); /* 元の位置 */
  }
}


/*--------------------------------------------
 slideY & fade-In
---------------------------------------------*/
.card-fadein-01 {
  opacity: 0; /* 初期状態は非表示 */
  transform: translateY(50px); /* 下に少しズレた位置から */
  animation: slideFadeInY 1.5s ease forwards;
  animation-delay: 3s;
}
.card-fadein-02 {
  opacity: 0; /* 初期状態は非表示 */
  transform: translateY(50px); /* 下に少しズレた位置から */
  animation: slideFadeInY 1.5s ease forwards;
  animation-delay: 3s;
}
.card-fadein-03 {
  opacity: 0; /* 初期状態は非表示 */
  transform: translateY(50px); /* 下に少しズレた位置から */
  animation: slideFadeInY 1.5s ease forwards;
  animation-delay: 3s;
}

@keyframes slideFadeInY {
  from {
    opacity: 0;
    transform: translateY(50px); /* 下から */
  }
  to {
    opacity: 1;
    transform: translateY(0); /* 元の位置 */
  }
}



/*--------------------------------------------
 local
---------------------------------------------*/

/* ベースレイアウト */
:root{
	--map-width: 80%;
	--max-width: 1200px;
}
.map-frame{
	width: var(--map-width);
	max-width: var(--max-width);
	margin: 50px auto;
	position: relative;
}

/* 画像は幅100%でリサイズ、アスペクト比は画像に依存 */
.map-img{
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

#mapFrame h2 {
	position: absolute;
	background: linear-gradient( to right, rgba(255, 255, 255, 1),  rgba(255, 255, 255, 1),  rgba(255, 255, 255, 0.5), rgba(255, 255, 255,0));
	padding: 20px 20px;
	left: 0%;
	top: 10%;
	font-size: 2.5rem;
	width: 60%;
}

.local-catchphrase {
    position: absolute;
    bottom: 15%;
    left: 3%;
    font-size: 1.3rem;
    color: #666;
    text-shadow: 2px 2px 2px #ffffff;
    font-weight: 700;
    background-color: rgb(255 255 255 / 50%);
    padding: 10px;
    border-radius: 5px;
    width: 50%;
    font-family: auto;
}


/* 都市リンクの共通スタイル */
.city-link{
	position: absolute; /* 親要素（.map-frame）を基準にする */
	transform: translate(-50%,-100%); /* ラベルをピンの上に表示するために上寄せ */
	background: rgba(255,255,255,0.5);
	padding: 6px 8px;
	border-radius: 6px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.12);
	text-decoration: none;
	color: #111;
	font-size: 14px;
	white-space: nowrap;
	transition: transform .12s ease, box-shadow .12s ease;
	display: flex; gap: 8px; align-items: center;
}
.city-link:hover{
	transform: translate(-50%,-100%) scale(1.02);
	box-shadow: 0 6px 18px rgba(0,0,0,0.18)}

/* ピン（小丸） */
.city-link .pin{
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #d23;
	box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.locationSHA {
	left: 74%;
	top: 31%;
}
.locationPEK {
	left: 70%;
	top: 18%;
}
.locationCAN {
	left: 67%;
	top: 45%;
}
.locationHKG {
	left: 68%;
	top: 49%;
}
.locationTPE {
	left: 75%;
	top: 42%;
}
.locationSOL {
	left: 81%;
	top: 23%;
}
.locationBKK {
	left: 57%;
	top: 60%;
}
.locationKUL {
	left: 64%;
	top: 76%;
}
.locationSIN {
	left: 60%;
	top: 80%;
}
.locationJKT {
	left: 97%;
	top: 85%;
}
.locationMNL {
	left: 79%;
	top: 59%;
}
.locationHCM {
	left: 64%;
	top: 65%;
}
.locationDEL {
	left: 36%;
	top: 36%;
}
.locationTYO {
	left: 92%;
	top: 25%;
}
.locationFUK {
	left: 84%;
	top: 28%;
}


/* スマホでは文字サイズを少し落とす */
@media (max-width: 480px){
	.city-link{
		font-size: 12px;
		padding: 5px 6px;
	}
}


/*--------------------------------------------
 local fade-In
---------------------------------------------*/
.map-img {
  opacity: 0; /* 初期状態は非表示 */
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.5s;
  filter: hue-rotate(110deg) saturate(300%) contrast(75%) brightness(105%);
}

.fadeInX {
  opacity: 0; /* 初期状態は非表示 */
  animation: revealLeft 0.5s ease forwards;
  animation-delay: 1.5s;
}
@keyframes revealLeft {
  from {
    clip-path: inset(0 100% 0 0); /* 右100%隠す */
  }
  to {
	opacity: 1; /* 初期状態は非表示 */
    clip-path: inset(0 0 0 0); /* 全部表示 */
  }
}
.locationSHA {
  opacity: 0; /* 初期状態は非表示 */
  animation: fadeIn 0.5s ease forwards;
  animation-delay: 2.7s;
}
.locationPEK {
  opacity: 0; /* 初期状態は非表示 */
  animation: fadeIn 0.5s ease forwards;
  animation-delay: 2.6s;
}
.locationCAN {
  opacity: 0; /* 初期状態は非表示 */
  animation: fadeIn 0.5s ease forwards;
  animation-delay: 3.1s;
}
.locationHKG {
  opacity: 0; /* 初期状態は非表示 */
  animation: fadeIn 0.5s ease forwards;
  animation-delay: 2s;
}
.locationTPE {
  opacity: 0; /* 初期状態は非表示 */
  animation: fadeIn 0.5s ease forwards;
  animation-delay: 3.2s;
}
.locationSOL {
  opacity: 0; /* 初期状態は非表示 */
  animation: fadeIn 0.5s ease forwards;
  animation-delay: 3s;
}
.locationBKK {
  opacity: 0; /* 初期状態は非表示 */
  animation: fadeIn 0.5s ease forwards;
  animation-delay: 2.2s;
}
.locationKUL {
  opacity: 0; /* 初期状態は非表示 */
  animation: fadeIn 0.5s ease forwards;
  animation-delay: 2.1s;
}
.locationSIN {
  opacity: 0; /* 初期状態は非表示 */
  animation: fadeIn 0.5s ease forwards;
  animation-delay: 2.3s;
}
.locationJKT {
  opacity: 0; /* 初期状態は非表示 */
  animation: fadeIn 0.5s ease forwards;
  animation-delay: 2.5s;
}
.locationMNL {
  opacity: 0; /* 初期状態は非表示 */
  animation: fadeIn 0.5s ease forwards;
  animation-delay: 2.8s;
}
.locationHCM {
  opacity: 0; /* 初期状態は非表示 */
  animation: fadeIn 0.5s ease forwards;
  animation-delay: 3.4s;
}
.locationDEL {
  opacity: 0; /* 初期状態は非表示 */
  animation: fadeIn 0.5s ease forwards;
  animation-delay: 3.3s;
}
.locationTYO {
  opacity: 0; /* 初期状態は非表示 */
  animation: fadeIn 0.5s ease forwards;
  animation-delay: 2.4s;
}
.locationFUK {
  opacity: 0; /* 初期状態は非表示 */
  animation: fadeIn 0.5s ease forwards;
  animation-delay: 2.9s;
}


/*--------------------------------------------
 tab
---------------------------------------------*/
.tabs {
  max-width: 1200px;
  margin: 0 auto;
  font-family: sans-serif;
}

/* ラジオボタンは非表示 */
.tabs input[type="radio"] {
  display: none;
}

/* ラベル共通設定 */
.tabs label {
  display: inline-block;
  width: calc(33.3333% - 3px);
  text-align: center;
  padding: 10px 0;
  background-color: #f0f0f0;
  cursor: pointer;
  font-weight: normal;
  transition: background-color 0.2s;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-bottom: none;
}

/* 選択されたラベルだけ色変更 */
#tab1:checked ~ label[for="tab1"],
#tab2:checked ~ label[for="tab2"],
#tab3:checked ~ label[for="tab3"] {
  background-color: #ffffff;
  font-weight: bold;
  border-bottom: 2px solid white;
}

/* タブの中身非表示がデフォルト */
.tab-content {
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* 選択されたタブ内容を表示 */
#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3 {
  visibility: visible;
  position: static;
  width: 100%;
  height: auto;
  opacity: 1;
  padding: 20px;
  background: #fff;
  display: flex;
  justify-content: center;
}


/*--------------------------------------------

---------------------------------------------*/
.section--employment .emp_ttl {
	margin-top:20px;
	font-weight:bold;
}
.section--employment .emp_ttl div {
}
.section--employment .emp_ttl div.houjin {
	width:470px;
}
.section--employment table.employment_table {
	width:620px;
	margin:20px 0 0 0;
}

table.employment_table {
	border-top:#CCCCCC 1px solid;
	border-left:#CCCCCC 1px solid;
	border-right:#CCCCCC 1px solid;
	margin-bottom:20px;
	line-height:180%;
}
.employment_table td.table_inner01 {
	font-weight:bold ;
	vertical-align:top;
	text-align:left;
	padding:10px;
	width:100px;
	border-right:none;
	background:#f1efef;
	border-right:#CCCCCC 1px solid;
	border-bottom:#CCCCCC 1px solid;
	color:#000000;
	word-break:normal;
}
.employment_table td.table_inner05 {
	text-align:left;
	padding:10px;
	border-bottom:#CCCCCC 1px solid;
	color:#000000;
	width:480px;
	word-break:normal;
}
.employment_table td.table_inner05 img.map {
	vertical-align:top;
	padding-left:12px;
	padding-top:2px;
	padding-right:30px;
}
.section--employment .contact {
	line-height:180%;
	margin:15px 0;
}
.section--employment .contact dl dt {
	margin-top:10px;
}
.section--employment .contact dl dd {
	padding-left:1em;
}
.block--news-list-item .article__table .article__header h2 {
	width: auto;
	font-size: 1rem;
	position: unset;
	background: unset;
}