/* CSS Document */
/*ページタイトル*/
section.page_title > h1::before{
  content: "Company";
}
/*コンテンツ*/
section.company_wrap{
  padding: var(--headerHeight) 0 0 0;
  background-color: #fff;
  box-sizing: border-box;
}
section.company_wrap > h1{
  font-size: 1.35rem;
  color: #444;
  font-weight: 400;
  text-align: center;
  margin-bottom: 1.5rem;
  -ms-filter: blur(4px);
  filter: blur(4px);
  opacity: 0;
  -webkit-transition: opacity 1000ms ease-out;
  transition: opacity 1000ms ease-out;
}
section.company_wrap > h1.wcvisible{
  -ms-filter: blur(0);
  filter: blur(0);
  opacity: 1;
}
body[wc-view-type="sp"] section.company_wrap > h1{
  width: 100vw;
  box-sizing: border-box;
}
section.company_wrap > h1::before{
  content: "Company info";
  display: block;
  color: #444;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1em;
  margin-bottom: 1rem;
}
section.company_wrap div.company_list_box{
  margin: 0 auto var(--headerHeight) auto;
}
body[wc-view-type="sp"] section.company_wrap div.company_list_box{
  width: 87vw;
}
body[wc-view-type="tb"] section.company_wrap div.company_list_box{
  width: 80vw;
}
body[wc-view-type="tb-l"] section.company_wrap div.company_list_box{
  width: 70vw;
}
body[wc-view-type="pc"] section.company_wrap div.company_list_box{
  width: 750px;
}
section.company_wrap div.company_list_box > dl.c_list{
  border-bottom: 1px solid #ccc;
  display: flex;
  padding: 0 2rem;
  box-sizing: border-box;
  -webkit-transition:opacity 1000ms ease-out,transform 1000ms ease-out;
  transitoin:opacity 1000ms ease-out,transform 1000ms ease-out;
  opacity: 0;
  transform: translateY(1rem);
}
section.company_wrap div.company_list_box > dl.c_list.wcvisible{
  opacity: 1;
  transform: translateY(0);
}
body[wc-view-type="sp"] section.company_wrap div.company_list_box > dl.c_list{
  flex-direction: column;
  padding: 0 0.5rem;
}
section.company_wrap div.company_list_box > dl.c_list:nth-of-type(1){
  border-top: 1px solid #ccc;
}
section.company_wrap div.company_list_box > dl.c_list dt,
section.company_wrap div.company_list_box > dl.c_list dd{
  box-sizing: border-box;
}
section.company_wrap div.company_list_box > dl.c_list dt{
  width: 150px;
  padding: 1rem 1rem 1rem 0;
}
body[wc-view-type="sp"] section.company_wrap div.company_list_box > dl.c_list dt{
  width: 100%;
  padding: 1rem;
  border-bottom: 1px dashed #ccc;
}
section.company_wrap div.company_list_box > dl.c_list dd{
  width: calc(100% - 150px);
  padding: 1rem 0 1rem 1rem;
}
body[wc-view-type="sp"] section.company_wrap div.company_list_box > dl.c_list dd{
  width: 100%;
  padding: 1rem;
}
section.company_wrap div.company_list_box > dl.c_list dd span.yubin{
  display: table;
}
section.company_wrap div.company_list_box > dl.c_list dd span.mini{
  display: block;
  color: #666;
  font-size: 0.85rem;
}
/*map*/
div.map{
  position: relative;
  z-index: 1;
  background-color: #f5f5f7;
}
body[wc-view-type="sp"] div.map{
  height: 70vw;
}
body[wc-view-type="tb"] div.map{
  height: 60vw;
}
body[wc-view-type="tb-l"] div.map{
  height: 50vw;
}
body[wc-view-type="pc"] div.map{
  height: 450px;
}
div.map iframe{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}