/* CSS Document */
/*ページタイトル*/
.page_title .contents_title::after{
	content: "Company";
}
/*コンテンツ*/
.greeting{
	box-sizing: border-box;
	background-color: #eff1ee;
}
body[wc-view-code="sp"] .greeting{
	padding: var(--headerHeight) 7vw;
}
body[wc-view-code="tb"] .greeting{
	padding: var(--headerHeight) 5vw;
}
body[wc-view-code="pc"] .greeting{
	padding: var(--headerHeight) calc((100vw - 750px) / 2);
}
.greeting .contents_title::after{
	content: "Greeting";
}
.greeting > p{
	line-height: 1.8rem;
	margin-top: 1.5rem;
	transition: opacity 600ms ease;
	opacity: 0;
}
body[wc-view-type="tb-l"] .greeting > p,
body[wc-view-code="pc"] .greeting > p{
	text-align: center;
}
.greeting > p.wcvisible{
	opacity: 1;
}
.greeting > p:not(:first-of-type){
	margin-top: 1rem;
}
.greeting > .name{
	width: fit-content;
  display: flex;
  gap: 0.5rem;
  margin: 1rem auto 0 auto !important;
}
.greeting > .name .position{
	font-size: 0.9rem;
}
.greeting > .name .name_box{
	font-size: 1.35rem;
}
/*会社概要*/
.company_info{
	box-sizing: border-box;
}
body[wc-view-code="sp"] .company_info{
	padding: var(--headerHeight) 7vw;
}
body[wc-view-code="tb"] .company_info{
	padding: var(--headerHeight) 5vw;
}
body[wc-view-code="pc"] .company_info{
	padding: var(--headerHeight) calc((100vw - 750px) / 2);
}
.company_info > .contents_title::after{
	content: "Company profile";
}
.company_info > dl:first-of-type{
	margin-top: 1.5rem;
}
.company_info > dl{
	display: flex;
	border-bottom: 1px solid var(--borderColor);
	transition: opacity 600ms ease;
	opacity: 0;
}
.company_info > dl.wcvisible{
	opacity: 1;
}
.company_info > dl:first-of-type{
	border-top: 1px solid var(--borderColor);	
}
body[wc-view-code="sp"] .company_info > dl{
	flex-direction: column;
}
.company_info > dl > dt,
.company_info > dl > dd{
	box-sizing: border-box;
}
.company_info > dl > dt{
	font-weight: 700;
	padding: 0.75rem 0.75rem 0.5rem 0.75rem;
}
body:not([wc-view-code="sp"]) .company_info > dl > dt{
	padding: 0.75rem;
	width: 200px;
}
.company_info > dl > dd{
	padding: 0 0.75rem 0.75rem 0.75rem;
}
body:not([wc-view-code="sp"]) .company_info > dl > dd{
	padding: 0.75rem;
	width: calc(100% - 200px);
}
.company_info > dl > dd p{
}
.company_info > dl > dd p .ci_position{
	display: inline-block;
  margin-right: 1rem;
}
.company_info > dl > dd > ul{
	list-style-position: outside;
	padding-left: 1rem;
}
.company_info > dl > dd > ul > li{
}
.company_info > dl > dd > ul > li:not(:first-of-type){
	margin-top: 0.25rem;
}
.company_info > dl > dd > ul > li > ul{
	list-style: none;
	list-style-position: outside;
}
/*マップ*/
.map{
}
.map .contents_title{
	margin-bottom: 1.5rem;
}
.map .contents_title::after{
	content: "Access";
}
.map .map_inner{
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
}
body[wc-view-code="sp"] .map .map_inner{
	height: 300px;
	margin-bottom: 2rem;
}
body[wc-view-code="tb"] .map .map_inner{
	height: 350px;
	width: 90vw;
	margin: 0 auto 3rem;
}
body[wc-view-code="pc"] .map .map_inner{
	height: 400px;
	width: 1100px;
	margin: 0 auto 3rem;
}
.map .map_inner iframe{
	position: absolute;
	inset:0;
	z-index: 2;
}