/* CSS Document */
/*ページタイトル*/
section.page_title h2::before{
  content: "Company";
}
/*コンテンツ*/
main *{
  color: #fff;
}
/*代表挨拶*/
.greeting{
  background-color: #000;
  box-sizing: border-box;
}
body[wc-view-type="sp"] .greeting{
  padding: var(--headerHeight) 7vw;
}
body[wc-view-type="tb"] .greeting{
  padding: var(--headerHeight) 5vw;
}
body[wc-view-type="tb-l"] .greeting{
  padding: var(--headerHeight) 10vw;
}
body[wc-view-type="pc"] .greeting{
  padding: var(--headerHeight) calc((100vw - 1100px) / 2);
}
.greeting > h2.contents_title::before{
  content: "Greeting";
}
.greeting .g_in_box{
  display: flex;
}
body[wc-view-type="sp"] .greeting .g_in_box{
  flex-direction: column;
}
body:not([wc-view-type="sp"]) .greeting .g_in_box{
  align-items: flex-start;
}
.greeting .g_in_box .g_in_text{
  box-sizing: border-box;
}
body[wc-view-code="tb"] .greeting .g_in_box .g_in_text{
  width: 100%;
	text-align: center;
}

body[wc-view-type="tb-l"] .greeting .g_in_box .g_in_text{
	
}
body[wc-view-type="pc"] .greeting .g_in_box .g_in_text{
	width: 750px;
	text-align: center;
	margin: 0 auto;
}
.greeting .g_in_box .g_in_text > p{
  line-height: 1.8rem;
  margin-top: 1rem;
  transition: opacity ease 1s,filter ease 1s;
  opacity: 0;
  filter: blur(10px);
}
.greeting .g_in_box .g_in_text > p[inview-state="true"]{
  opacity: 1;
  filter: blur(0);
}
.greeting .g_in_box .g_in_text > .name{
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-top: 1rem;
  margin-right: auto;
}
.greeting .g_in_box .g_in_text > .name .post,
.greeting .g_in_box .g_in_text > .name .in_name{
  font-weight: 700;
}
.greeting .g_in_box .g_in_text > .name .post{
  font-size: 0.9rem;
  margin-right: 1rem;
}
.greeting .g_in_box .g_in_text > .name .in_name{
  font-size: 1.35rem;
}
.greeting .g_in_box figure{
  background-color: #efefef;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  transition: all ease 1s;
  opacity: 0;
  filter: blur(10px);
}
.greeting .g_in_box figure[inview-state="true"]{
  opacity: 1;
  filter: blur(0);
}
body[wc-view-type="sp"] .greeting .g_in_box figure{
  
  aspect-ratio:3/2.5;
  margin-top: 2rem;
}
body:not([wc-view-type="sp"]) .greeting .g_in_box figure{
  aspect-ratio:2.5/3;
  margin-top: 1.5rem;
}
body[wc-view-type="tb"] .greeting .g_in_box figure{
  width: 250px;
  max-width: 250px;
}
body[wc-view-type="tb-l"] .greeting .g_in_box figure,
body[wc-view-type="pc"] .greeting .g_in_box figure{
  width: 300px;
  max-width: 300px;
}
.greeting .g_in_box figure::before{
  content: "Image";
  font-family: "Oswald";
  font-size: 2.5rem;
  letter-spacing: 2px;
  line-height: 1em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #262729;
  font-weight: 700;
}
/*会社概要*/
.company_info{
  box-sizing: border-box;
  background-color: #262729;
}
body[wc-view-type="sp"] .company_info{
  padding: var(--headerHeight) 7vw;
}
body[wc-view-type="tb"] .company_info{
  padding: var(--headerHeight) 5vw;
}
body[wc-view-type="tb-l"] .company_info{
  padding: var(--headerHeight) 10vw;
}
body[wc-view-type="pc"] .company_info{
  padding: var(--headerHeight) calc((100vw - 1100px) / 2);
}
.company_info > h2.contents_title::before{
  content:"Company Plofile";
}
.company_info .c_i_box{
  position: relative;
  z-index: 1;
}
body:not([wc-view-type="sp"]) .company_info .c_i_box{
  margin: 0 auto;
}
body[wc-view-type="tb"] .company_info .c_i_box{
  width: 650px;
}
body[wc-view-type="tb-l"] .company_info .c_i_box,
body[wc-view-type="pc"] .company_info .c_i_box{
  width: 750px;
}
.company_info .c_i_box .border{
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 0;
  height: 1px;
  background-color: #fff;
  left: 0;
  right: 100%;
  transition: all 1s 0.25s ease;
}
.company_info .c_i_box[inview-state="true"] .border{
  width: 100%;
  right: 0;
}
.company_info .c_i_box .border.top{
  bottom: inherit;
  top: 0;
}
.company_info .c_i_box .border span{
  position: absolute;
  inset:0;
  display: block;
}
.company_info .c_i_box .border span::before,
.company_info .c_i_box .border span::after{
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 5%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0;
  display: table;
}
.company_info .c_i_box .border span::before{
  left: 0;
  transition: opacity 0.5s ease;
}
.company_info .c_i_box .border span::after{
  right: 0;
  transition: opacity 0.5s 1s ease;
}
.company_info .c_i_box[inview-state="true"] .border span::before,
.company_info .c_i_box[inview-state="true"] .border span::after{
  opacity: 1;
}
.company_info .c_i_box > dl{
  display: flex;
  box-sizing: border-box;
}
body[wc-view-type="sp"] .company_info .c_i_box > dl{
  flex-direction: column;
}
body:not([wc-view-type="sp"]) .company_info .c_i_box > dl{
  padding: 1rem 1.5rem;
}
.company_info .c_i_box > dl > dt,
.company_info .c_i_box > dl > dd{
  box-sizing:border-box;
  transition: opacity 1s 0.25s ease,filter 1s 0.25s ease;
  opacity: 0;
  filter: blur(10px);
}
.company_info .c_i_box[inview-state="true"]  > dl > dt,
.company_info .c_i_box[inview-state="true"]  > dl > dd{
  opacity: 1;
  filter: blur(0);
}
.company_info .c_i_box > dl > dt{
  font-weight: 700;
}
body[wc-view-type="sp"] .company_info .c_i_box > dl > dt{
  padding: 0.75rem 0.75rem 0 0.75rem;
}
body:not([wc-view-type="sp"]) .company_info .c_i_box > dl > dt{
  width: 180px;
}
.company_info .c_i_box > dl > dd{
}
body[wc-view-type="sp"] .company_info .c_i_box > dl > dd{
  padding: 0.75rem;
}
body:not([wc-view-type="sp"]) .company_info .c_i_box > dl > dd{
  width: calc(100% - 180px);
}
.company_info .c_i_box > dl > dd .in_dl{
}
.company_info .c_i_box > dl > dd .in_dl > dt{
  display: flex;
  align-items: center;
}
.company_info .c_i_box > dl > dd .in_dl > dt::before{
  content: "";
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
  flex: none;
  margin-right: 0.5rem;
}
.company_info .c_i_box > dl > dd .in_dl > dd{
  padding-left: 1rem;
  box-sizing: border-box;
}
/*事業所紹介*/
.office{
  box-sizing: border-box;
  background: rgb(38,39,41);
  background: linear-gradient(0deg, rgba(38,39,41,1) 0%, rgba(0,0,0,1) 100%);
}
body[wc-view-type="sp"] .office{
  padding: var(--headerHeight) 7vw;
}
body[wc-view-type="tb"] .office{
  padding: var(--headerHeight) 5vw;
}
body[wc-view-type="tb-l"] .office{
  padding: var(--headerHeight) 10vw;
}
body[wc-view-type="pc"] .office{
  padding: var(--headerHeight) calc((100vw - 1100px) / 2);
}
.office > .contents_title::before{
  content: "Office";
}
.office .office_block{
  display: flex;
  flex-wrap: wrap;
  gap:2rem;
}
body[wc-view-type="sp"] .office .office_block{
  flex-direction: column;
  gap:1rem;
}
.office .office_block article{
  background-color: #262729;
  padding: 1rem;
  border-radius: 1rem;
  box-sizing: border-box;
  transition: opacity ease 1s,filter ease 1s;
  opacity: 0;
  filter: blur(10px);
}
body[wc-view-type="sp"] .office .office_block article{
  width: 100%;
}
.office .office_block article[inview-state="true"]{
  opacity: 1;
  filter: blur(0);
}
body:not([wc-view-type="sp"]) .office .office_block article{
  width: calc(50% - 1rem);
  padding: 1.5rem;
}
.office .office_block article > h2{
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0.75rem 0.75rem 0.75rem;
  box-sizing: border-box;
}
.office .office_block article > h2 .of_deco{
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.office .office_block article > h2 .of_deco > span{
  position: absolute;
  inset:0;
  z-index: 3;
}
.office .office_block article > h2 .of_deco > span::before,
.office .office_block article > h2 .of_deco > span::after{
  content: "";
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  position: absolute;
}
.office .office_block article > h2 .of_deco > span::before{
  left: 0;
}
.office .office_block article > h2 .of_deco > span::after{
  right: 0;
}
.office .office_block article > .office_contents{
  display: flex;
  flex-direction: column;
}
body[wc-view-type="sp"] .office .office_block article > .office_contents{
  flex-direction: column;
}
.of_in_content{
  padding: 1rem;
  box-sizing: border-box;
}
.of_in_content > dl{
  display: flex;
}
.of_in_content > dl:not(:first-of-type){
  margin-top: 0.5rem;
}
.of_in_content > dl dt{
  width: 1.5rem;
  flex: none;
  margin-right: 0.25rem;
}
.of_in_content > dl dt .icon{
  width: 1.5rem;
  height: 1.5rem;
  background-color: #fff;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  display: table;
}
.of_in_content > .of_add dt .icon,
.of_in_content > .of_tel dt .icon{
  -webkit-mask-image: var(--wciconsrc);
  mask-image: var(--wciconsrc);
}
.of_in_content > .of_fax dt .icon{
  -webkit-mask-image: url("/img/svg/fax.svg");
  mask-image: url("/img/svg/fax.svg");
}
.of_in_content > dl dd{
}
.of_in_content > .of_tel a{
  text-decoration: none;
}
body:not([wc-view-type="sp"]) .of_in_content > .of_tel a{
  pointer-events: none;
}
.office .office_block article > .map{
  width: 100%;
  height: auto;
  aspect-ratio:16/9;
  border-radius: 1rem;
  position: relative;
  z-index: 1;
}
body[wc-view-type="sp"] .office .office_block article > .map{
  height: 100%;
}
body[wc-view-type="tb-l"] .office .office_block article > .map,
body[wc-view-type="pc"] .office .office_block article > .map{
  margin-top: auto;
  aspect-ratio:16/7;
}
.office .office_block article > .map iframe{
	position: absolute;
	inset:0;
	z-index: 2;
	border-radius: 1rem;
	filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
	height: 100%;
}