@charset "UTF-8";

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

	headline

-----------------------------------*/
#headline {
	background: url(../img/company/headline_bg.jpg) no-repeat center center/cover;
}
#headline h1::before {
	content: "COMPANY";
}
@media screen and (max-width: 640px) {
    #headline {
		background: url(../img/company/sp/headline_bg.jpg) no-repeat center center/cover;
	}
}
/*-----------------------------------

	menu_block

-----------------------------------*/
#menu_block {
	clip-path: polygon(60px 0, 100% 0, 100% 100%, 0 100%, 0 60px);
	background: #f0f0f5;
	padding-top: 37px;
	margin-bottom: 75px;
	position: relative;
}
#menu_block::before {
    content: "";
    width: 100%;
    height: calc(100% - 1px);
    clip-path: polygon(60px 0, 100% 0, 100% 100%, 0 100%, 0 60px);
    background: #FFF;
    position: absolute;
    top: 1px;
    left: 0;
    z-index: -1;
}
#menu_block ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
}
#menu_block ul li {
	width: 230px;
}
#menu_block ul li a {
	display: block;
	background: #f0f0f5 url(../img/business/icon_arrow_menu.svg) no-repeat calc(100% - 15px) center/32px;
	padding: 25px 15px;
}
@media screen and (max-width: 640px) {
	#menu_block {
		margin-bottom: 40px;
		clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%, 0 40px);
	}
	#menu_block::before {
		clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%, 0 40px);
	}
	#menu_block ul {
		gap: 10px;
	}
	#menu_block ul::after {
		content:"";
		display: block;
		width: calc((100% - 10px) / 2);
	}
	#menu_block ul li {
		width: calc((100% - 10px) / 2);
	}
	#menu_block ul li a {
		background: #f0f0f5 url(../img/business/icon_arrow_menu.svg) no-repeat calc(100% - 10px) center/24px;
		padding: 15px 10px;
		font-size: 13px;
	}
}
/*-----------------------------------

	company_wrap - company_menu

-----------------------------------*/
#company_wrap {
	display: grid;
	grid-template-columns: 310px auto;
	grid-template-rows: 1fr;
	gap: 0;
}
#company_wrap .company_menu {
	grid-area: 1 / 1 / 2 / 2;
	height: 100%;
}
#company_wrap .company_menu ul {
	width: max-content;
	position: sticky;
	top: 130px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
#company_wrap .company_menu a {
	display: block;
	font-size: 15px;
	padding-left: 20px;
    color: #acacac;
    transition: color .2s;
	position: relative;
}
#company_wrap .company_menu a:hover {
	opacity: 1;
}
#company_wrap .company_menu a.active {
    color: #000;
}
#company_wrap .company_menu a.active::before {
	content: "";
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: var(--mClr1);
	position: absolute;
	top: 2px;
	left: 0;
}
#company_wrap .company_contents {
	grid-area: 1 / 2 / 2 / 3;
}
@media screen and (max-width: 1180px) {
	#company_wrap {
		grid-template-columns: 200px auto;
	}
}
@media screen and (max-width: 840px) {
	#company_wrap {
		grid-template-columns: 150px auto;
	}
	#company_wrap .company_menu a {
		font-size: 13px;
		padding-left: 15px;
	}
}
@media screen and (max-width: 640px) {
	#company_wrap {
		grid-template-columns: 85px auto;
		width: 95%;
		display: block;
	}
	#company_wrap .company_menu {
		display: none;
	}
	#company_wrap .company_menu ul {
		top: 70px;
	}
	#company_wrap .company_menu a {
		font-size: 11px;
		line-height: 1.2;
		padding-left: 10px;
	}
	#company_wrap .company_menu a.active::before {
		width: 6px;
		height: 6px;
		top: 4px;
	}
	/* #company_wrap .company_contents {
		width: calc(100% - 25px);
	} */
}
/*-----------------------------------

	company_contents - common

-----------------------------------*/
.company_contents > section:not(:last-child) {
	margin-bottom: 80px;
}
.company_contents > section > *:not(:last-child) {
	margin-bottom: 30px !important;
}
.company_contents h2 {
	background: #f0f0f5;
	padding: 55px 50px 90px;
	clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%, 0 30px);
	font-size: 37px;
	font-weight: 900;
	margin-bottom: 40px;
}
.company_contents h2::before {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: var(--mClr1);
	display: block;
	width: max-content;
	padding-bottom: 10px;
	border-bottom: 3px solid var(--mClr1);
	margin-bottom: 20px;
}
.company_contents a.link {
	display: block;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 56px;
	padding-right: 75px;
	width: max-content;
	background: url(../img/business/icon_arrow_link.svg) no-repeat right center/56px;
	margin: 0 0 0 auto;
}
@media screen and (max-width: 640px) {
	.company_contents > section:not(:last-child) {
		margin-bottom: 40px;
	}
	.company_contents > section > *:not(:last-child) {
		margin-bottom: 20px !important;
	}
	.company_contents h2 {
		padding: 25px 25px 40px;
		clip-path: polygon(15px 0, 100% 0, 100% 100%, 0 100%, 0 15px);
		font-size: 20px;
		margin-bottom: 20px;
	}
	.company_contents h2::before {
		font-size: 11px;
		padding-bottom: 5px;
		border-bottom: 2px solid var(--mClr1);
		margin-bottom: 10px;
	}
	.company_contents a.link {
		line-height: 42px;
		padding-right: 55px;
		background: url(../img/business/icon_arrow_link.svg) no-repeat right center/42px;
	}
}
/*-----------------------------------

	greetings_block

-----------------------------------*/
#greetings_block h2 {
	margin-bottom: 35px !important;
}
#greetings_block h2::before {
	content: "GREETINGS";
}
#greetings_block p {
	line-height: 1.87;
	letter-spacing: 0;
	margin-bottom: 41px;
}
#greetings_block .name_box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0 14px;
	width: max-content;
	max-width: 100%;
	margin-left: auto;
	margin-bottom: 51px !important;
}
#greetings_block .job {
	font-size: 14px;
}
#greetings_block .name {
	font-size: 21px;
}
@media screen and (max-width: 640px) {
	#greetings_block .name_box {
		margin-bottom: 31px !important;
	}
	#greetings_block .job {
		font-size: 12px;
	}
	#greetings_block .name {
		font-size: 18px;
	}
}
/*-----------------------------------

	profile_block

-----------------------------------*/
#profile_block {
	margin-bottom: 92px;
}
#profile_block h2 {
	margin-bottom: 42px !important;
}
#profile_block h2::before {
	content: "COMPANY PROFILE";
}
#profile_block tr {
	border-bottom: 1px solid #f0f0f5;
}
#profile_block tr:first-of-type {
	border-top: 1px solid #f0f0f5;
}
#profile_block th,
#profile_block td {
	line-height: 1.75;
	letter-spacing: 0;
	vertical-align: top;
	text-align: left;
	padding: 26px 10px 26px 26px;
}
#profile_block th {
	font-weight: 700;
	color: #fff;
	width: 195px;
	background-color: var(--mClr1);
}
/* #profile_block th span {
	color: #fff;
    font-weight: 700;
    width: fit-content;
    background-color: var(--mClr1);
    padding: 0 7px;
    line-height: 1.6;
} */
#profile_block td {
	width: calc(100% - 195px);
}
#profile_block .profile_others {
	background: #fafafc;
	padding: 32px 40px 28px;
	border: 1px solid #f0f0f5;
	margin-top: 52px;
}
#profile_block .profile_others h3 {
	font-size: 23px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0;
	padding-left: 31px;
	margin-bottom: 21px;
	position: relative;
}
#profile_block .profile_others h3::before {
	content: '';
	display: block;
	background: #208cd5;
	width: 14px;
	height: 2px;
	margin: auto;
	position: absolute;
	top: 0;
	left: 2px;
	bottom: 0;
	z-index: 1;
}
#profile_block .profile_others p,
#profile_block .profile_others ul li {
	line-height: 1.875;
	letter-spacing: 0;
}
#profile_block .profile_others p {
	margin-bottom: 30px;
}
#profile_block .profile_others ul {
	margin-bottom: 53px;
}
#profile_block .profile_others ul li {
	padding-left: 50px;
	position: relative;
}
#profile_block .profile_others ul li:not(:last-of-type) {
	margin-bottom: 30px;
}
#profile_block .profile_others ul li::before {
	display: block;
	font-size: 23px;
	font-family: 'Exo 2', sans-serif;
	font-weight: 600;
	font-style: italic;
	color: #208cd5;
	width: 16px;
	height: 30px;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 9px;
	z-index: 1;
}
#profile_block .profile_others ul li:nth-of-type(1):before {
	content: '1';
}
#profile_block .profile_others ul li:nth-of-type(2):before {
	content: '2';
}
#profile_block .profile_others ul li:nth-of-type(3):before {
	content: '3';
}
#profile_block .profile_others ul li:nth-of-type(4):before {
	content: '4';
}
#profile_block .profile_others ul li:nth-of-type(5):before {
	content: '5';
}
#profile_block .profile_others ul li:nth-of-type(6):before {
	content: '6';
}
#profile_block .profile_others ul li:nth-of-type(7):before {
	content: '7';
}
#profile_block .profile_others ul li:nth-of-type(8):before {
	content: '8';
}
#profile_block .profile_others ul li::after {
	content: "";
	display: block;
	background: #208cd5;
	width: 1px;
	height: calc(100% - 12px);
	min-height: 32px;
	margin: auto;
	position: absolute;
	top: 0;
	left: 33px;
	bottom: 0;
	z-index: 1;
}
#profile_block .profile_others .link_wrap {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 20px 56px;
	flex-wrap: wrap;
}
#profile_block .profile_others .link_wrap a {
	margin: 0;
}
#profile_block .profile_others .link_wrap a.out {
	background: url(../img/common/icon_link.svg) no-repeat right center / 56px;
}
@media screen and (max-width: 640px) {
	#profile_block {
		margin-bottom: 40px;
	}
	#profile_block th,
	#profile_block td {
		display: block;
		width: 100% !important;
	}
	#profile_block th {
		padding: 8px 5px 8px;	
	}
 	#profile_block td {
		padding: 8px 5px 16px;	
	}
	#profile_block .profile_others {
		padding: 20px;
		margin-top: 34px;
	}
	#profile_block .profile_others h3 {
		font-size: 18px;
		padding-left: 26px;
    	margin-bottom: 18px;
	}
	#profile_block .profile_others h3::before {
		width: 11px;
	}
	#profile_block .profile_others ul li {
		padding-left: 40px;
	}
	#profile_block .profile_others ul li::before {
		font-size: 20px;
	}
	#profile_block .profile_others ul li::after {
		left: 27px;
	}
	#profile_block .profile_others .link_wrap a.out {
    	background: url(../img/common/icon_link.svg) no-repeat right center / 42px;
	}
}
/*-----------------------------------

	history_block

-----------------------------------*/
#history_block h2::before {
	content: "HISTORY";
}
#history_block .history_wrap {
	position: relative;
}
#history_block .history_wrap::before {
	content: "";
	display: block;
	background: #f1f2f5;
	width: 20px;
	height: calc(100% - 34px);
	border-radius: 50vw;
	margin: auto;
	position: absolute;
	top: 14px;
	left: 144px;
	z-index: -1;
}
#history_block .history_wrap > ul {
	padding-bottom: 35px;
}
#history_block .history_wrap > ul > li {
	display: flex;
	justify-content: flex-start;
	/* align-items: center; */
	flex-wrap: wrap;
	line-height: 1.75;
	letter-spacing: 0;
	position: relative;
	margin: 40px 0;
}
#history_block .history_wrap > ul > li:last-of-type {
	margin-top: 50px;
}
#history_block .history_wrap > ul > li::before {
	content: "";
	display: block;
	background: #208cd5;
	width: 12px;
	height: 12px;
	border-radius: 50vw;
	margin: auto;
	position: absolute;
	top: 20px;
    left: 148px;
	/* bottom: 0; */
	z-index: 0;
}
#history_block .history_wrap li .year {
	font-size: 56px;
	font-family: 'Exo 2', sans-serif;
	font-weight: 600;
	font-style: italic;
	color: #cfd4dd;
	width: 185px;
	line-height: 1;
}
#history_block .history_wrap li .right_box {
	display: flex;
	justify-content: flex-start;
	/* align-items: center; */
	width: calc(100% - 185px);
	margin-top: 10px;
}
#history_block .history_wrap li .date {
	width: 104px;
}
#history_block .history_wrap li ul,
#history_block .history_wrap li p {
	width: calc(100% - 104px);
}
#history_block .history_wrap .lw_menu li {
	padding-left: 20px;
	position: relative;
}
#history_block .history_wrap .lw_menu li::before {
	content: '';
	display: block;
	background: #208cd5;
	width: 10px;
	height: 1px;
	position: absolute;
	top: 14px;
	margin: 0;
	left: 0;
	z-index: 1;
}
#history_block .history_wrap .mt {
	margin-top: 27px;
}
@media screen and (max-width: 1180px) {
}
@media screen and (max-width: 640px) {
	#history_block .history_wrap > ul {
		padding-bottom: 0;
	}
	#history_block .history_wrap::before,
	#history_block .history_wrap > ul > li::before {
		display: none;
	}
	#history_block .history_wrap > ul > li:not(:last-of-type) {
		margin-bottom: 30px;
	}
	#history_block .history_wrap > ul > li:last-of-type {
		margin-top: 0;
	}
	#history_block .history_wrap li .right_box {
		width: 100%;
	}
	#history_block .history_wrap li .year {
		font-size: 26px;
		line-height: 1;
		margin-bottom: 14px;
	}
	#history_block .history_wrap li:last-of-type .year {
		margin-bottom: 0;
	}
	#history_block .history_wrap li .right_box {
		align-items: flex-start;
	}
	#history_block .history_wrap li .date {
		font-size: 12px;
		width: 94px;
	}
	#history_block .history_wrap li ul, #history_block .history_wrap li p {
		font-size: 12px;
	    width: calc(100% - 94px);	
	}
	#history_block .history_wrap .lw_menu li {
		padding-left: 15px;
	}
	#history_block .history_wrap .lw_menu li::before {
		width: 8px;
		top: 11px;
	}
	#history_block .history_wrap .mt {
		margin-top: 0;
	}
}
/*-----------------------------------

	environment_block

-----------------------------------*/
#environment_block h2::before {
	content: "ENVIRONMENTAL EFFORTS";
}
#environment_block p {
	line-height: 1.75;
	letter-spacing: 0;
}
#environment_block .img_wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 20px 0;
}
#environment_block .img_wrap img {
	width: calc((100% - 39px) / 2);
}
@media screen and (max-width: 640px) {
	#environment_block .img_wrap img {
		width: 100%;
	}
}
/*-----------------------------------

	access_block

-----------------------------------*/
#access_block h2::before {
	content: "ACCESS";
}
#access_block iframe {
	width: 100%;
}
#access_block .train_box {
	margin-bottom: 27px;
}
#access_block h3 {
	font-size: 21px;
	font-weight: 700;
	line-height: 1.72;
	letter-spacing: 0;
	color: #102657;
	margin-bottom: 1px;
}
#access_block p {
	line-height: 1.75;
	letter-spacing: 0;
}
@media screen and (max-width: 640px) {
	#access_block h3 {
		font-size: 18px;
	}
	#access_block iframe {
		height: 220px;
	}
}
/*-----------------------------------

	gap

-----------------------------------*/
#gap {
	height: 280px;
}
@media screen and (max-width: 640px) {
	#gap {
		height: 160px;
	}
}