/* CSS Document */
/*ページタイトル*/
.page_title .contents_title::before{
	content: "Company";
}
/*代表挨拶*/
.greeting{
	box-sizing: border-box;
	display: flex;
}
body[wc-view-code="sp"] .greeting{
	padding: var(--headerHeight) 7vw;
	flex-direction: column;
}
body[wc-view-code="tb"] .greeting{
	padding: var(--headerHeight) 5vw;
}
body[wc-view-code="pc"] .greeting{
	padding: var(--headerHeight) calc((100vw - 1100px) / 2);
}
.greeting .g_text{
	box-sizing: border-box;
}
body[wc-view-code="sp"] .greeting .g_text{
	padding-bottom: 1.25rem;
}
body[wc-view-code="tb"] .greeting .g_text{
	width: calc(100% - 280px);
	padding-right: 1rem;
}

body[wc-view-type="tb-l"] .greeting .g_text{
	padding-right: 1.5rem;
}
body[wc-view-code="pc"] .greeting .g_text{
	width: calc(100% - 300px);
	padding-right: 2.5rem;
}
.greeting .g_text .contents_title{
	margin-bottom: 1.5rem;
}
.greeting .g_text > p{
	line-height: 1.8rem;
	transition: opacity linear 600ms,filter linear 625ms;
	opacity: 0;
	filter: blur(15px);
}
.greeting .g_text > p.wcvisible{
	opacity: 1;
	filter: blur(0);
}
.greeting .g_text > p:not(:first-of-type){
	margin-top: 1rem;
}
.greeting .g_text > p.name{
	display:flex;
	width: fit-content;
	margin-left: auto;
	gap:0.5rem;
	align-items: baseline;
}
.greeting .g_text > p.name > span{
	font-weight: 700;
}
.greeting .g_text > p.name .position{
	font-size: 0.9rem;
}
.greeting .g_text > p.name .name_box{
	font-size: 1.1rem;
}
.greeting figure{
}
body[wc-view-code="tb"] .greeting figure{
	width: 280px;
  margin-top: 5.5rem;
}
body[wc-view-code="pc"] .greeting figure{
	width: 300px;
  margin-top: 5.5rem;
}
.greeting figure img{
	border-radius: 1rem;
	aspect-ratio:3/3.5;
}
/**/
.company_info{
	background-color: var(--defBgColor);
	box-sizing: border-box;
	display: flex;
}
body[wc-view-code="sp"] .company_info{
	padding: var(--headerHeight) 7vw;
	flex-direction: column;
}
body[wc-view-code="tb"] .company_info{
	padding: var(--headerHeight) 5vw;
}
body[wc-view-code="pc"] .company_info{
	padding: var(--headerHeight) calc((100vw - 1100px) / 2);
}
.company_info .contents_title{
}
body[wc-view-type="tb"] .company_info .contents_title{
	width: 250px;
}
body[wc-view-type="tb-l"] .company_info .contents_title{
	width: 300px;
}
body[wc-view-code="pc"] .company_info .contents_title{
	width: 400px;
}
.company_info .contents_title::before{
	content: "Company information";
}
.company_info .c_info_block{
}
body[wc-view-code="sp"] .company_info .c_info_block{
	margin-top: 1.5rem;
}
body[wc-view-type="tb"] .company_info .c_info_block{
	width: calc(100% - 250px);
	margin-top: 2rem;
}
body[wc-view-type="tb-l"] .company_info .c_info_block{
	width: calc(100% - 300px);
	margin-top: 2rem;
}
body[wc-view-code="pc"] .company_info .c_info_block{
	width: calc(100% - 400px);
	margin-top: 2rem;
}
.company_info .c_info_block > dl{
	display: flex;
	border-bottom: 1px solid var(--borderColor);
	transition: opacity linear 600ms,filter linear 625ms;
	opacity: 0;
	filter: blur(15px);
}

.company_info .c_info_block > dl.wcvisible{
	opacity: 1;
	filter: blur(0);
}
.company_info .c_info_block > dl:first-of-type{
	border-top: 1px solid var(--borderColor);
}
body[wc-view-type="tb"] .company_info .c_info_block > dl,
body[wc-view-code="sp"] .company_info .c_info_block > dl{
	flex-direction: column;
}
.company_info .c_info_block > dl > dt,
.company_info .c_info_block > dl > dd{
	box-sizing: border-box;
}
.company_info .c_info_block > dl > dt{
	padding: 0.75rem 0.75rem 0 0.75rem;
  font-weight: 700;
}
body[wc-view-code="pc"] .company_info .c_info_block > dl > dt{
	width: 200px;
	padding: 0.75rem;
}
.company_info .c_info_block > dl > dd{
	padding: 0.5rem 0.75rem 0.75rem 0.75rem;
}
body[wc-view-code="pc"] .company_info .c_info_block > dl > dd{
	width: calc(100% - 200px);
	padding: 0.75rem;
}
.company_info .c_info_block > dl > dd p{
}
.company_info .c_info_block > dl > dd ul{
	padding-left: 1rem;
	list-style-position: outside;
	display: flex;
	gap:0.25rem;
	flex-direction: column;
}
.company_info .c_info_block > dl > dd ul li{
}
/*マップ*/
.map{
	position: relative;
	z-index: 1;
}
body[wc-view-code="sp"] .map{
	aspect-ratio:3/4;
}
body[wc-view-code="pc"] .map{
	aspect-ratio:16/5;
}
.map iframe{
	position: absolute;
	inset:0;
}