@charset 'UTF-8';
/*--------------------------------------------------
共通
--------------------------------------------------*/
body{
  letter-spacing: 3px;
  font-family: "Noto Sans JP", sans-serif;
}
.position_r{
	position: relative;
}
.common_section{
  padding: 80px 0;
  margin: 0;
  position: relative;
}
.left_content{
  padding: 0 10px 0 6vw;
}
.stunder_textarea{
  padding-left: 160px;
  max-width: 1300px;
}

@media only screen and (max-width: 1000px) {
  .stunder_textarea{
    padding-left: 0;
  }
}

@media only screen and (max-width: 600px) {
  .left_content{
    padding: 0 10px 0;
  }
}

/*背景===========================*/
.bg_white{ background-color: #fff; }
.bg_black{ background-color: #000; }
.bg_black.bg_grid{
  position: relative;
  background-color: transparent;
}
.bg_black.bg_grid:before, .bg_black.bg_grid:after{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.bg_black.bg_grid:before{
  background-color: #000;
  z-index: -2;
}
.bg_black.bg_grid:after{
  z-index: -1;
  background-image: url('images/common/bg_masu.svg');
  background-repeat: repeat;
  background-size: 150px;
  opacity: 0.4;
}

/*タイトル===========================*/
.sub_title_flex{
  display: flex;
  align-items: baseline;
  margin-bottom: 50px;
}
.sub_title_eng{ width: 100%; }
.sub_title_eng img{
  width: 100%;
}
.sub_title_mini_area{
  padding-left: 70px;
}
.sub_title_mini{
  color: #606060;
  margin: 0;
  font-size: 20px;
  font-weight: 400;
}
.bg_black .sub_title_mini{ color: #c6c6c6; }

.page_title{ margin: 80px 0 100px; }

@media only screen and (max-width: 1000px) {
  .sub_title_flex{
    flex-direction: column;
  }
  .sub_title_mini_area{
    padding: 0;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .page_title{ margin: 9vw 0 50px; }
}

/*その他===========================*/
.common_text{ line-height: 30px; }
.sp_nobr:before{
  content: "\A" ;
  white-space: pre ;
}
.ofi{
  height: 100%;
  width: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
}

@media only screen and (max-width: 600px) {
  /*flex{
  flex-direction: column;}*/
  .sp_br:before{
    content: "\A" ;
    white-space: pre ;
  }
  .sp_nobr:before{
    content: "" ;
  }
  .order{
    order: 1;
  }
}

/*--------------------------------------------------
トップページ
--------------------------------------------------*/
/*メインビジュアル===========================*/
.main_visual{
  position: relative;
  overflow: hidden;
  height: 85vh;
  min-height: 500px;
}
.mv_fukidashi{
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 80vw;
  max-width: 600px;
  padding: 0 10px;
  -webkit-transform: translate(0%,-50%);
  -moz-transform: translate(0%,-50%);
  transform: translate(0%,-50%);
  text-align: center;
}
.mv_fukidashi img{
  height: 76vh;
}
.mv_fukidashi svg {
  display: inline;
  fill: none;
  stroke: #000;
  stroke-width:2;
  stroke-miterlimit:50;
  stroke-dasharray: 9779;
  stroke-dashoffset: 9779;
  stroke-miterlimit: 10;
  animation: strokeAnimation 8s linear 0.5s forwards;
}
@keyframes strokeAnimation {
  0% { stroke-dashoffset: 9779; }
  80% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; }
}

/*テキスト*/
.mv_textarea{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  padding: 0 50px 0 6vw;
  -webkit-transform: translate(0%,-50%);
  -moz-transform: translate(0%,-50%);
  transform: translate(0%,-50%);
}
.mv_text{
  position: relative;
  margin-bottom: 10px;
}
.mv_text img{
  max-height: 150px;
  opacity: 0;
  animation: bi_objct_op 0.5s linear 2.8s forwards;
}
.mv_text_01{
  width: 29vw;
  max-width: 480px;
}
.mv_text_02{
  width: 52vw;
  max-width: 820px;
}
.mv_text_03{
  width: 100%;
  max-width: 1600px;
  margin-top: 30px;
}
.mv_text_03_sp, .mv_text_04_sp{display: none; }

/*アニメーション*/
.mv_text:before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #000;
  z-index: 1;
  width: 100%;
  height: 0%;
  animation: black_in 1s ease-in-out 2.5s forwards;
}
@keyframes black_in {
  0% {
    height: 0%;
    bottom: 0;
  }
  40%{
    height: 100%;
    bottom: 0;
    top: auto;
  }
  50%{
    bottom: auto;
    top: 0;
  }
  60%{ height: 100%; }
  100% {
    height: 0%;
    bottom: auto;
    top: 0;
  }
}
@keyframes bi_objct_op{
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/*周囲の要素表示アニメーション*/
.mv_fade_after{
  opacity: 0;
  animation: mv_fadein 0.5s ease-in-out 4s forwards;
}
@keyframes mv_fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*アニメーション解除*/
.anime_none.mv_fade_after,
.anime_none.mv_text img{
  opacity: 1;
  animation: none;
}
.anime_none.mv_text:before{
  animation: none;
}
.anime_none.mv_fukidashi svg{
  animation: none;
  stroke-dashoffset: 0;
}


/*スクロール*/
.mv_scroll{
  -webkit-transform: translate(0%,-50%) rotate(90deg);
  -moz-transform: translate(0%,-50%) rotate(90deg);
  transform: translate(0%,-50%) rotate(90deg);
  position: absolute;
  top: 50%;
  right: -35px;
  font-size: 20px;
}
.mv_scroll span{
  position: relative;
  width: 40px;
  height: 1px;
  display: inline-block;
  margin-left: 10px;
  vertical-align: super;
}
.mv_scroll span:before{
  content: '';
  height: 100%;
  width: 100%;
  background-color: #000;
  position: absolute;
  top: 50%;
  right: 0;
  animation: mv_scroll_border 1.5s ease-in-out infinite forwards;
}

@keyframes mv_scroll_border{
  0% {
    width: 0%;
    left: 0;
  }
  40%{
    width: 100%;
    left: 0;
    right: auto;
  }
  50%{
    left: auto;
    right: 0;
  }
  60%{ width: 100%; }
  100% {
    width: 0%;
    left: auto;
    right: 0;
  }
}

@media only screen and (max-width: 900px) {
  .mv_text{ margin-bottom: 30px; }
  .mv_text_01{ margin-bottom: 20px; }
  .mv_text_03{ display: none; }
  .mv_text_03_sp, .mv_text_04_sp{ display: block; }
  .mv_text_01{ width: 48vw; }
  .mv_text_02{ width: 80vw;}
  .mv_text_03_sp{ width: 70vw; }
  .mv_text_04_sp{ width: 76vw; }
}

@media only screen and (max-width: 600px) {
  .mv_scroll{ font-size: 16px; }
}


/*espr===========================*/
.st_espr .sub_title_eng{ max-width: 520px; }
.read_catch{
  color: #fff;
  margin: 80px 0 30px;
  font-size: 30px;
  font-weight: 600;
}
.read_text{
  color: #fff;
  line-height: 45px;
}
/*work*/
.sub_title_work{
  width: 100%;
  max-width: 200px;
  margin: 80px 0 40px;
}
.work_list{}
.work_list li .work_list_card{
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
  padding: 20px;
  height: 100%;
}
/*表示アニメーション*/
.white_up_ani,
.black_up_ani{
  position: relative;
}
.white_up_ani.action:before,
.black_up_ani.action:before{
  content: '';
  width: 100%;
  height: 0%;
  position: absolute;
  bottom: 0;
  left: 0;
  animation: black_in 1s ease-in-out 0.5s forwards;
  z-index: 2;
}
.white_up_ani.action:before{ background-color: #fff; }
.black_up_ani.action:before{ background-color: #000; }


li.white_up_ani .work_list_card{ opacity: 0; }
li.white_up_ani.action .work_list_card{
 animation: bi_objct_op 0.5s linear 0.8s forwards;
}


@media only screen and (max-width: 1000px) {
  .st_espr .sub_title_eng{
    width: 45vw;
    min-width: 300px;
  }
}
@media only screen and (max-width: 700px) {
  .sub_title_work{
    width: 25vw;
    min-width: 120px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 600px) {
  .read_catch{ margin-top: 50px; }
  .read_text{ line-height: 35px; }
  .work_list li{ font-size: 14px; }

}
/*事例===========================*/
.st_case .sub_title_eng{ max-width: 680px; }
.case_card{
  background-color: #fff;
  border: 1px solid #000;
  letter-spacing: 2px;
}
.black_up_ani .case_card{ opacity: 0; }
.black_up_ani.action .case_card{
  opacity: 0;
 animation: bi_objct_op 0.5s linear 0.8s forwards;
}

.case_thumb{}
.case_textarea{
  padding: 10px 10px 20px;
}
.case_client{
  font-size: 25px;
}
.case_event_title{
  font-size: 20px;
  margin: 3px 0 0;
}
.case_tag{
  line-height: 35px;
}
.case_tag span{
  font-size: 14px;
  background-color: #000;
  color: #fff;
  margin-right: 8px;
  padding: 5px;
  white-space: nowrap;
}

/*ボタン*/
.view_more_btn{
  display: block;
  border: 1px solid #000;
  text-decoration: none;
  text-align: center;
  color: #000;
  width: 100%;
  max-width: 250px;
  padding: 15px 25px 15px 15px;
  position: relative;
  margin: 50px auto 0;
  transition: 0.3s;
}
.view_more_btn svg{
  width: 25px;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0%,-50%);
  -moz-transform: translate(0%,-50%);
  transform: translate(0%,-50%);
  transition: 0.3s;
}
.view_more_btn:hover{
  color: #fff;
  background-color: #000;
}
.view_more_btn:hover svg{
  right: 5px;
}

@media only screen and (max-width: 800px) {
  .case_client{ font-size: 20px; }
  .case_event_title{
    font-size: 16px;
    margin-top: 0;
  }
  .case_tag{ margin-top: 5px; }
  .case_tag span{ font-size: 12px; }
}
@media only screen and (max-width: 600px) {
   .topp_c_card{
    max-width: 500px;
    margin: 0 auto;
   }
  .topp_c_card:nth-child(even) .case_card{
    margin-top: 0px;
  }
}

/*会社概要===========================*/
.st_company .sub_title_eng{
  max-width: 500px;
}
.common_table{
  width: 100%;
  max-width: 800px;
  margin: 0 0 0 auto
}
.common_table tr{ border-bottom: 1px solid #000; }
.common_table td, .common_table th{
  padding: 40px 20px 20px 20px;
  text-align: left;
}
.common_table th{
  font-weight: 400;
  min-width: 210px;
}
.common_table td{ width: 100%; }

.common_table.company_table{
  color: #fff;
}
.common_table.company_table tr{ border-color: #fff; }
.company_map{
  margin-top: 100px;
  -webkit-transform: translate(224px, 0%);
  -moz-transform: translate(224px, 0%);
  transform: translate(224px, 0%);
}
.company_map iframe{
  width: 80vw;
  max-width: 1000px;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
}
.white_up_ani iframe{ opacity: 0; }
.white_up_ani.action iframe{
  animation: bi_objct_op 0.5s linear 0.8s forwards;
}

@media only screen and (max-width: 1000px) {
  .common_table{
    max-width: 100%;
  }
  .company_map{
    width: 100%;
    max-width: 100%;
    margin: 80px 0 0;
    -webkit-transform: translate( 0px, 0%);
    -moz-transform: translate( 0px, 0%);
    transform: translate( 0px, 0%);
  }
  .company_map iframe{
    width: 100%;
    height: 350px;
  }
}
@media only screen and (max-width: 600px) {
  .common_table tr{
    display: block;
    margin-bottom: 30px;
  }
  .common_table td, .common_table th{
    display: block;
     padding: 0 0px 20px;
  }
  .common_table td{
  }
   .common_table th{
    min-width: 1px;
    width: 100%;
   }
   .company_map{ margin-top: 50px; }
}


/*お問い合わせ===========================*/
input {
  font-family: "Noto Sans JP", sans-serif;
}
.contact_table {
  overflow: hidden;
  text-align: left;
  table-layout: auto;
  margin-top: 50px;
}
.required {
  margin-left: 10px;
  font-size: 14px;
  color: #DE8686;
}
.contact_table span.wpcf7-list-item {
  /*チェックボックスを縦並びに*/
  display: block;
}
.contact_table input,
.contact_table textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100% !important;
  margin: 0px 0px 5px 0px;
  padding: 10px;
  background-color: #ededed;
  border: none;
}
.contact_table input.contact_zip{
  width: 200px !important;
  margin-left: 5px;
}
.contact_table input.contact_add{
  margin: 10px 0 0 24px;
  width: calc( 100% - 24px) !important;
}

.contact_table input[type="checkbox"],
.contact_table input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px !important;
  margin: 5px 10px 10px 5px;
  font-size: 100%;
}

.pp_btn_area{
  width: 100%;
  max-width: 800px;
  margin: 50px 0 70px auto;
  text-align: center;
}
.pp_btn_area a{ color: #000; }
.pp_btn_area a:hover{ color: #a5a5a5; }

.submig_area{
  width: 100%;
  max-width: 800px;
  margin: 0 0 0 auto;
}
input[type="submit"] {
  display: block;
  width: 100%;
  max-width: 180px;
  margin: 30px auto;
  border: 1px solid #000;
  font-size: 100%;
  letter-spacing: 3px;
  cursor: pointer;
  padding: 10px;
  transition: 0.3s;
}
input[type="submit"]:hover{
  background-color: #000;
  color: #fff;
}

.wpcf7 form .wpcf7-response-output{
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin: 0px 0 0px auto;
  padding: 10px;
}

.wpcf7 form.sent .wpcf7-response-output{
  background-color: #000;
  color: #fff;
  border-color: #000;
}

@media only screen and (max-width: 600px) {
  .pp_btn_area{ margin: 50px auto; }
}


/*--------------------------------------------------
事例一覧
--------------------------------------------------*/
.case_page_section{
  border-bottom: 1px solid #000;
}
.page_st_case .sub_title_eng{ max-width: 675px; }

.casepage_fukidashi{
  position: fixed;
  left: 4vw;
  top: 10vw;
  width: 65vw;
  max-width: 500px;
  min-width: 200px;
  z-index: -1;
}
/*--------------------------------------------------
プライバシーポリシー
--------------------------------------------------*/
.st_pripli .sub_title_eng{ max-width: 675px; }
.pp_con{
  max-width: 1200px;
  margin-bottom: 50px;
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
}
.pp_con_title{
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 20px;
}
.pp_con ul{
  margin: 20px 0 20px 30px;
}
.pp_con ul li{
  margin-bottom: 20px;
  list-style: decimal;
  line-height: 30px;
}
.pp_con ul li::maker{ font-weight: 600; }

@media only screen and (max-width: 600px) {
  .pp_con_title{ font-size: 25px;}
  .pp_section .common_text,
  .pp_con ul li{ letter-spacing: 2px; }
}

/*--------------------------------------------------
404
--------------------------------------------------*/
.pnf_section{
  border-bottom: 1px solid #000;
}
.st_404 .sub_title_eng{ max-width: 720px; }
.pnf_section .view_more_btn{
  margin: 50px auto 0 0px;
}
