@charset "UTF-8";
@import url("grid.css");

:root { /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
    --base-color: #000;
    --link-color: #666;
    --linkhover-color: #999;
    --back-color: #f7f7f7;
    --border-color: #ccc;
    --white-color: #fff;
}

img {
	max-width:100%;
	height: auto;/*高さ自動*/
  vertical-align: middle;
}
a {
    display:block;
    color: var(--link-color);
    text-decoration-line: none;
}
a:hover { 
    color: var(--linkhover-color);
}

.inq_btn a{
    padding: 0.5em 2.5em;
    border: 2px solid #fe8900;
    color: #fe8900;
    font-weight: bold;
    position: relative;
    transition: ease .2s;
}
.inq_btn a:before{
    display: inline-block;
    font-family: "FontAwesome";
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f0e0";
    padding-right: 0.5em;
    font-size: 1.25em;
    line-height: 1.6;

}
.inq_btn a:after{
    position: absolute;
    content: "";
    border: solid #fe8900;
    border-width: 0 2px 2px 0;
    width: 100%;
    height: 100%;
    right: -5%;
    bottom: -20%;
}
.inq_btn a:hover{
    background: #fe8900;
    color: #fff;
}
.inq_btn.or a{
  background: #fe8900;
  color: #fff;
}
.inq_btn.or a:hover{
  background: #fff;
  color: #fe8900;
  border: 2px solid #fe8900;
}

/*ヘッダー
-------------------------------------*/
.head-container{
    padding: 10px 0;
    position: fixed;
    background: rgb(255, 255, 255 , 0.9);
    width: 100%;
    z-index: 10;
}
.head-container .inner_block{
    width: calc(100% - 50px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.logo img{
    width: auto;
    height: 35px;
    vertical-align: sub;
}
#toggle {
    position: fixed;
    top: 35px;
    right: 35px;
}

#toggle-box {
    position: relative;
    width: 50px;
    height: 35px;
    cursor: pointer;
}

#toggle-box > span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #000;
  position: absolute;
  transition: transform .6s ease-in-out, top .5s ease, bottom .5s ease;
}

#toggle-box > span:nth-child(1) {
    top: 0;
}

#toggle-box > span:nth-child(2) {
    top: 50%;
    transform: translatey(-50%);
}

#toggle-box > span:nth-child(3) {
  bottom: 0;
}

#toggle {
    z-index: 1000;
}
#main {
    position: relative;  
    z-index: 990;
}

#nav-content {
    z-index: 900;
    overflow: auto;
    width: 50%;
    height: 100%;
    background: #000;
    color: #fff;
    position: fixed;
    top: 100px;
    right: 0;
    text-align: center;
    transform: translateX(100%);
    transition:  transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

#nav-content ul {
  list-style: none;
}

#nav-content a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 30px 0;
  transition: opacity .6s ease;
}

#nav-content a:hover {
  opacity: 0.6;
}

.is-open {
    overflow: hidden;
}

.is-open #toggle-box > span {
    background: #000;
}

.is-open #toggle-box > span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg) translatey(-50%);
}

.is-open #toggle-box > span:nth-child(2) {
  width: 0;
}

.is-open #toggle-box > span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg) translatey(-50%);
}

.is-open #nav-content {
  z-index: 999;
  transform: translateX(0);
}

.overlay {
  background: rgba(0,0,0,0.5);
  height: 100vh;
}

    
/*メイン画像
-------------------------------------*/
.mainimg{
    padding-top: 100px;
    position: relative;
}
.mainimg img {
    width: 100vw;
}
.catch{
    position: absolute;
    bottom: 10%;
}
.catch p{
    font-size: 4em;
    font-weight: bold;
    color: #fff;
    line-height: 1.3;
    letter-spacing: 0.03em;
}

/*メインコンテンツ
-------------------------------------*/
/* main {
    margin: 5rem 0 0 0;
} */
/* section {
	margin: 5rem 0;
	padding: 3rem 0;
} */
.gray-back {
	background-color: var(--back-color);
}


/*強み
-------------------------------------*/
#advantage{
  position: relative;
}
#advantage .wrap{
  padding-top: 50px;
}
#advantage .back_shape_left {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 350px 300px 0 0;
  border-color: #000 transparent transparent transparent;
}
#advantage .back_shape_right{
  position: absolute;
  bottom: 0;
  right: 0;
    display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 350px 300px;
  border-color: transparent transparent #000 transparent;
}


/*業務内容
-------------------------------------*/
.business_box{
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
}
.business_box .business_item{
  width: 32%;
  background: #fff;
  margin-bottom: 2%;
  padding: 2%;
  box-sizing: border-box;
}
.business_icon,
.name{
  text-align: center;
}
.business_icon{
  margin-bottom: 2em;
}
.business_icon img{
  width: 50%;
  height: auto;
}
.name{
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 1em;
}

/*採用情報
-------------------------------------*/
#recruit .rec_inner{
  overflow: hidden;
}
#recruit .rec_inner .wrap{
  display: flex;
}
.tab_box{
  width: 55%
}
.tab_box .tab_base{
  margin-bottom: 3em;
}
.tab_box .tab_base th{
  width: 25%;
}
.tab_box .inq_btn{
  display: inline-block;
  margin-bottom: 2em;
}
.tab_box .tab_base .inner_tab th,
.tab_box .tab_base .inner_tab td{
  padding: 0;
  vertical-align: top;
}
.tab_box .tab_base .inner_tab th{
  background: none;
  width: 15%;
  white-space: nowrap;
  padding-right: 1em;
}
.tab_box .tab_base .inner_tab td{
  border-bottom: 0;
}
.comment_box{
  width: 45%;
  position: relative;
  padding-left: 100px;
  padding-top: 100px;
  padding-bottom: 30px;
  z-index: 1;
}
.comment_box:after{
  content: "";
  position: absolute;
  width: calc(100VW - 50vw);
  height: 100%;
  background: #e0e0e0;
  top: 0;
  z-index: -1;
  left: 0;
}
.profile_box{
  display: flex;
  flex-flow: nowrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
.profile_box:after{
  content: "";
  position: absolute;
  width: calc(100VW - 50vw);
  height: 80%;
  background: #fff;
  top: 10%;
  z-index: -1;
  left: 0;
}
.prof_detail{
  padding-left: 1em;
}
.prof_img{
  width: 30%;
}
.prof_img img{
  border: 2px solid #000;
}



/*会社概要
-------------------------------------*/
#company{
  background: url("/img/company_info_bg.jpg") no-repeat top center / cover;
}
#company .wh_box{
  background: rgba(255, 255, 255, 0.9);
  padding: 80px;
}
#company .tab_base{
  width: 100%;
}
.add_wrap{
  display: flex;
  justify-content: space-between;
}
.tab_base iframe{
  margin-top: 1em;
}
#company .tab_base th{
  background: #000;
  color: #fff;
  border-bottom: 4px solid rgba(255,255,255,0.9);
  width: 25%;
}
#company .tab_base td{
  border-color: #000;
}

/*フッター
-------------------------------------*/
footer {
  background: #000;
  color: #fff;
  padding: 120px 0 0;

}
.foot_box{
  display: flex;
  margin-bottom: 5%;
}
.foot_content{
  width: 50%;
  border-right: 1px solid #fff;
  padding-right: 10%;
}
.foot_logo{
  width: 55%;
  margin-bottom: 5%;
}
.foot_add_wrap{
  display: flex;
  justify-content: space-between;
}
.foot_inq{
  width: 50%;
  padding-left: 10%;
  text-align: center;
}
.tel{
  font-weight: bold;
  font-size: 45px;
}
.tel i{
  padding-right: 0.25em;
}
.foot_inq .inq_btn{
  width: 70%;
  margin: 2em auto;
}
.foot_inq .inq_btn.wh a{
  background: #fff;
  color: #000;
  border-color: #fff;
}
.foot_inq .inq_btn.wh a:after{
  border-color: #fff;
  right: -3%;
}
.foot_inq .inq_btn.wh a:hover{
  background: #000;
  color: #fff;
  border-color: #fff;
}
.copyright{
  font-size: 0.8em;
  margin-bottom: 0;
}

/*お問い合わせ
-------------------------------------*/
.contact-box {
	border: 1px solid var(--border-color);
	text-align: center;
	padding: 2rem 0;
}
.table {
	margin: 4rem 0;
}
.table th {
	width: 250px;
}

/*コピーライト
-------------------------------------*/
.copyright {
    text-align: center;
    padding: 1rem 0;
    background-color: var(--base-color);
}
.copyright a {
    color: var(--white-color);
    text-decoration: none;
	display: inline;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    right: 15px;
    z-index: 3;
}
#pagetop a {
    display: block;
    background-color: #fe8900;
    color: #000;
    border: 2px solid #000;
    width: 50px;
    padding: 10px;
    text-align: center;
    transition: 0.3s;
}
#pagetop a:hover {
    background-color: #fff;
}

/*スクロールエフェクト
-------------------------------------*/
.scroll_up {
  transition: 0.9s ease-in-out;
  transform: translateY(100px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}
.scroll_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}
.scroll_right {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

/* 幅1300px以下の表示
-------------------------------------*/
@media screen and (max-width: 1300px){
  #toggle{
    right: 15px;
  }
  .head-container .inner_block{
    width: calc(100% - 100px);
  }
}
/* 幅1200px以下の表示
-------------------------------------*/
@media screen and (max-width: 1199px){
  .wrap{
    width: 100%;
    padding: 0 30px;
  }
}

/* 幅768px以下の表示
-------------------------------------*/
@media screen and (max-width: 820px){
  body{
    font-size: 15px;
  }
  .catch p{
    font-size: 3.5em;
  }
  #advantage .back_shape_left{
    border-width: 200px 120px 0 0;
  }
  #advantage .back_shape_right{
    border-width: 0 0 200px 120px;
  }
  .pd_box{
    padding: 80px 0;
  }
  .advantage_head{
    font-size: 40px;
    padding-bottom: 60px;
    margin-bottom: 50px;
  }
  .advantage_head:before{
    font-size: 65px;
  }
  h3 span{
    font-size: 30px;
  }
  #recruit .rec_inner .wrap{
    display: block;
  }
  .tab_box,
  .comment_box{
    width: 100%;
  }
  .comment_box{
    padding: 50px;
  }
  .comment_box:after{
    width: 100%;
  }
  .profile_box:after{
    width: calc(100VW - 0vw);
    height: 70%;
  }
  #company .wh_box{
    padding: 50px;
  }
  .add_wrap{
    display: block;
  }
  .add_wrap .add_box:first-child{
    margin-bottom: 2em;
  }
  .foot_add_wrap{
    display: block;
  }
  .foot_add_wrap div{
    margin-bottom: 1em;
  }
  .foot_logo{
    width: 70%;
  }
  .foot_content{
    padding-right: 3%;
  }
  .foot_inq{
    padding-left: 3%;
  }
  .tel{
    font-size: 30px;
  }
}


/* 幅428px以下の表示
-------------------------------------*/
@media screen and (max-width: 428px){
  .wrap{
    padding: 0 15px;
  }
  
  .head-container{
    padding: 0;
  }
  .head-container .inner_block{
    width: calc(100% - 65px);
  }
  .logo{
    line-height: 0;
  }
  .logo img{
    height: 25px;
  }
  .sp_inq_btn{
    display: block;
  }
  .sp_inq_btn i{
    font-size: 40px;
    color: #fd8800;
  }
  #nav-content{
    top: 80px;
  }
  #toggle{
    top: 25px;
  }
  #toggle-box{
    width: 45px;
    height: 35px;
  }
  
  .mainimg{
    padding-top: 80px;
    height: 460px;
    overflow: hidden;
  }
  .mainimg img{
    width: auto;
    height: 100%;
    object-fit: cover;
  }
  .catch p{
    font-size: 2.5em;
  }
  
  #advantage .back_shape_left {
    border-width: 80px 60px 0 0;
  }
  #advantage .back_shape_right {
    border-width: 0 0 80px 60px;
  }
  
  .pd_box {
    padding: 50px 0;
  }
  
  .advantage_head:before {
    font-size: 50px;
    top: -45px;
  }
  .advantage_head {
    font-size: 30px;
    padding-bottom: 40px;
    margin-bottom: 20px;
  }
  .advantage_head:after{
    height: 30px;
  }
  h3{
    margin: 0 0 60px;
  }
  h3 span {
    font-size: 26px;
  }
  
  .business_box{
    flex-flow: colm;
  }
  .business_box .business_item{
    width: 100%;
    display: flex;
    flex-flow: nowrap;
    align-items: center;
  }
  .business_icon{
    margin-bottom: 0;
    width: 40%;
  }
  .business_icon img{
    width: 70%;
  }
  .business_detail{
    width: 60%;
  }
  .name{
    text-align: left;
    margin-bottom: 0.5em;
  }
  
  .wrap .tab_base th,
  .wrap .tab_base td,
  #company .tab_base th,
  #company .tab_base td{
    width: 100%;
    display: block;
    border: 0;
  }
  .tab_box .tab_base .inner_tab{
    display: table;
  }
  .tab_box .tab_base .inner_tab td{
    display: table-cell;
  }
  .comment_box {
    padding: 60px 15px;
  }
  .comment_box::after {
    width: calc(100vw - 0vw);
    left: -15px;
  }
  
  #company .wh_box {
    padding: 60px 15px;
  }
  
  footer{
    padding: 80px 0 0;
  }
  .foot_box{
    flex-flow: column;
  }
  .foot_logo {
    width: 100%;
    text-align: center;
    margin-bottom: 2em;
  }
  .foot_logo img{
    width: 70%;
  }
  .foot_content {
    width: 100%;
    border-right: 0;
    padding: 0;
    margin-bottom: 1em;
  }
  .foot_inq{
    width: 100%;
    padding: 0;
  }
  .tel {
    word-break: break-all;
  }
  .foot_inq .inq_btn{
    margin: 0 auto 1em;
  }
}
	
/*ヘッダー
-------------------------------------*/
.header-box {
	display: none;
}	
/*お問い合わせ
-------------------------------------*/
.table th {
	width: 100%;
	display: block;
}	
.table td {
	display: block;
}
}