html{
  background: none;
}

body {
  width: 100%;
  padding-top: 0;
  box-sizing: border-box;
  background: none;
  overflow-x: hidden;
}

a{
  color: #231815;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.pc{display: none;}

#header{
	display: none;
}

#sp_header{
	display: flex;
  display:-webkit-flex;
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(top, #ffffff 0%, #f5f5f7 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #ffffff 0%,#f5f5f7 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #ffffff 0%,#f5f5f7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f5f5f7',GradientType=0 ); /* IE6-9 */
	padding: 10px 23px 10px 0;
}

#sp_header #gmenu_btm{
	position: relative;
	display: inline-block;
	width: 20%;
  min-width: 40px;
  padding: 10px 0 0 14px;
}

#sp_header h1{
	text-align: center;
	display: inline-block;
	width: 80%;
  text-indent: -60px;
}

#sp_header h1 img{
  width: 60%;
}

#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
}

#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 2px;/*線の太さ*/
  width: 30px;/*長さ*/
  border-radius: 3px;
  background: #666666;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span:before {
  bottom: -12px;
}
#nav-open span:after {
  bottom: -24px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
  overflow: auto;
  background-color: #f7f7f7;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  max-width: 60%;
  height: 100%;
  background: #fff;/*背景色*/
  transition: .3s ease-in-out;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);/*左に隠しておく*/
}

#nav-content li a{
  position: relative;
  display: block;
  text-decoration: none;
  border: 1px solid #efefef;
  padding: 20px 50px 20px 10px;
}

#nav-content li a:after{
  position: absolute;
  display: block;
  font-family: 'Font Awesome 5 Free';
  content: '\f105';
  font-weight: 900;
  color: #9bcac5;
  top: 37%;
  right: 10%;
}
/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
li.new_entry {
  font-weight: bold;
  padding-top: 30px;
}
li.new_entry a {
  font-weight: normal;
}

/********************************************/
/************** エントリーボタン **************/
/********************************************/

.entryBtn {
  padding: 5px 10px;
}

.entryBtn h2 {
  display: flex;
  font-size: 18px;
  font-weight: normal;
  align-items: center;
}
.entryBtn h2::before, .entryBtn h2::after {
  display: block;
  content: '';
  height: 1px;
  background-color: #333;
  flex-grow: 1;
}

.entryBtn h2::before {
  margin-right: .4em;
}
.entryBtn h2::after {
  margin-left: .4em;
}

a.rikunabi{
  position: relative;
  display: block;
  text-decoration: none;
  color: #333;
  border-radius: 5px;
  border: 1px solid #0068b7;
  padding: 13px 30px 13px 10px;
}

a.mynavi{
  position: relative;
  display: block;
  text-decoration: none;
  color: #333;
  border-radius: 5px;
  border: 1px solid #00adeb;
  padding: 21px 43px 20px 10px;
}

a.rikunabi,a.mynavi{
  display: flex;
  justify-content: center;
  align-items: baseline;
  height: 100%;
  box-shadow: 0 5px 0 rgba(206,206,206,1);
  margin-top: 12px;
}

a.tyuto {
  width: 100%;
  text-align: center;
  border: 1px solid #bf1c21;
  text-decoration: none;
  font-weight: bold;
  padding: 21px 20px;
  border-radius: 5px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-weight: normal;
  font-size: 20px;
  box-shadow: 0 5px 0 rgba(206,206,206,1);
  margin-top: 12px;
}

a.rikunabi::after,a.mynavi::after,a.tyuto::after{
  position: absolute;
  display: block;
  content: '';
  width: 9px;
  height: 14px;
  top: 50%;
  right: 15px;
  transform: translate(-5%, -50%);
  background-size: 100%;
}

a.rikunabi::after{background: url('../images/rikunavi_arrow.png') no-repeat;}
a.mynavi::after{background: url('../images/mynavi_arrow.png') no-repeat;}
a.tyuto::after{background: url('../images/old_arrow.png') no-repeat;}


/*********************************************************/
/*********************** コンテンツ ***********************/
/*********************************************************/
#mainSlider{
  width: 100%;
  height: auto;
}

.content,.content2{
  width: 100%;
  height: auto;
  padding: 60px 15px;
  box-sizing: border-box;
}

.chatch{
  width: 100%;
  line-height: 250%;
  padding: 20px 30px;
  box-sizing: border-box;
  text-align: center;
}

#preface{
  width: 100%;
  background-color: #eeedee;
  text-align: center;
}
#preface h2{
  font-weight: bold;
  color: #231815;
  text-decoration: underline;
  padding-bottom: 5px;
  font-size: 150%;
  margin-bottom: 37px;
}

#preface p > strong{
  font-size: 15px;
  font-weight: bold;
  line-height: 200%;
}

#preface p + p{
  margin-top: 35px;
}

.chatch{
  width: 100%;
  background-color: #231815;
}

.chatch p{
  color: #fff;
  font-size: 25px;
  font-weight: bold;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.scroll_go{
  margin: 30px auto 19px;
}
#works{
  text-align: center;
}

#works h2{
  font-size: 19px;
  font-weight: bold;
}

#detail .boxWrap{
  display: flex;
  display:-webkit-flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-content: space-around;
  box-sizing: border-box;
  margin:5px 0px 0px 0px;

}

#detail #point .boxWrap:last-child{
  margin-bottom: 0;
}

#detail .boxWrap .box-m.width6:first-child{
  width: 50%;
  box-sizing: border-box;
  padding-right: 2px;
}

#detail .boxWrap .width6{
  width: 50%;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#detail .box-m {
  display: table;
}

a.s-btm{
  position: relative;
  border: 1px solid #7a7a7a;
  color: #242424;
  font-weight: bold;
  font-size: 120%;
  padding: 25px 30px 25px 25px;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

a.s-btm::after{
  position: absolute;
  display: block;
  content: '';
  width: 25px;
  height: 25px;
  background: url('../images/chevron-right_black.svg') no-repeat;
  top: 50%;
  right: 3%;
  transform: translate(-3%,-50%);
  background-size: 25px;
}

a.s-btm:hover{
  background-color: #e1e1e1;
}

a.m-btm img,#point img{
  width: 100%;
  height: auto;
}

a.m-btm{
  display: block;
  width: 100%;
  box-sizing: border-box;
  border-radius: 5px;
  border: 1px solid #d9d9d9;
  overflow: hidden;
  text-decoration: none;
  transition: 0.2s;
}

a.m-btm:hover{
  opacity: 0.7;
  color: #231815;
  transition: 0.2s;
}

a.m-btm .text{
  padding: 10px;
}

a.m-btm h3{
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 150%;
}

a.m-btm p{
  font-size: 14px;
}

a.l-btm{
  position: relative;
  display: block;
  width: 100%;
  box-sizing: border-box;
  font-weight: bold;
  font-size: 22px;
  text-decoration: none;
  text-align: center;
  transition: 0.2s;
  padding: 20px 25px 20px 20px;
}



#recruit_menu{
  margin-bottom: 80px;
}

#topics{
  background-color: #eeedee;
}

#topics h2{
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 3px;
  margin-bottom: 33px;
  text-align: center;
}

#topics h2 span{
  font-size: 14px;
}

.topics_detail{
  display: block;
  line-height: 170%;
}

dl.topics_detail + dl.topics_detail{
  margin-top: 15px;
}

.topics_detail dt{
  width: 40%;
  box-sizing: border-box;
  text-align: right;
  float: left;
}

.topics_detail dd{
  width: 60%;
  box-sizing: border-box;
  text-align: left;
  float: right;
  padding-left: 5%;
}

.topics_detail:after,.topics_detail:before{
  content: '';
  display: table;
}

.topics_detail:after{
  clear: both;
}

#works .boxWrap{
  display: block;
}

#works .box-m + .box-m {
  margin-left: 0;
  margin-top: 30px;
}

#works .width6{
  width: 100%;
}

#works .boxWrap img{
  width: 100%;
}

.pc{
  display: none;
}

.sp{
  display: block;
}

#point{
  margin-top: 55px;
}

#point .m-btm img{
  width: 100%;
  height: auto;
}

#detail #entry .boxWrap .box-m.width6{
  width: 100%;
}

#detail #entry .boxWrap .box-m.width6:first-child{
  padding: 0;
}





#footbox a {
    color: #fff;
}

#footer {
  color: #fff;
    background-color: #231815;
  padding: 10px;
  max-width: 100%;
}

#footer ul#footerNavi {
    display: none;
}

#copyright{
  color: #ababab;
  font-size: 10px;
  text-align: center;
}
/* 余白スタイル */
.m-t0{
  margin-top: 0 !important;
}
.m-t10{
  margin-top: 10px !important;
}
.m-t20{
  margin-top: 20px !important;
}
.m-t30{
  margin-top: 30px !important;
}
.m-t40{
  margin-top: 40px !important;
}
.m-t50{
  margin-top: 50px !important;
}
.m-t60{
  margin-top: 60px !important;
}
.m-t70{
  margin-top: 70px !important;
}
.m-t80{
  margin-top: 80px !important;
}

.m-b0{
  margin-bottom: 0 !important;
}

.m-b10{
  margin-bottom: 10px !important;
}
.m-b20{
  margin-bottom: 20px !important;
}
.m-b30{
  margin-bottom: 30px !important;
}
.m-b40{
  margin-bottom: 40px !important;
}
.m-b50{
  margin-bottom: 50px !important;
}
.m-b60{
  margin-bottom: 60px !important;
}
.m-b70{
  margin-bottom: 70px !important;
}
.m-b80{
  margin-bottom: 80px !important;
}
.m-b90{
  margin-bottom: 90px !important;
}
.m-b100{
  margin-bottom: 100px !important;
}

.p-t10{
  padding-top: 10px !important;
}
.p-t20{
  padding-top: 20px !important;
}
.p-t30{
  padding-top: 30px !important;
}
.p-t40{
  padding-top: 40px !important;
}
.p-t50{
  padding-top: 50px !important;
}
.p-t60{
  padding-top: 60px !important;
}
.p-t70{
  padding-top: 70px !important;
}
.p-t80{
  padding-top: 80px !important;
}

.p-b10{
  padding-bottom: 10px !important;
}
.p-b20{
  padding-bottom: 20px !important;
}
.p-b30{
  padding-bottom: 30px !important;
}
.p-b40{
  padding-bottom: 40px !important;
}
.p-b50{
  padding-bottom: 50px !important;
}
.p-b60{
  padding-bottom: 60px !important;
}
.p-b70{
  padding-bottom: 70px !important;
}
.p-b80{
  padding-bottom: 80px !important;
}

/* 採用メッセージ */

.spto_busyo {
  margin:10px 
  }

.content {
    width: 100%;
    height: auto;
    padding: 5px 15px;
    box-sizing: border-box;
}

#detail .content{
  padding: 40px 15px;
}

.content_header h2{
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  text-decoration: underline;
  margin-bottom: 40px;
}

.content_header p.chatchCopy{
  display: inline;
  background: linear-gradient(rgba(207,207,207,0) 50%, #cfcfcf 100%);
  font-size: 26px;
  line-height: 41px;
  text-align: center;
  font-weight: bold;
}

.content_header p{
  font-size: 20px;
}

.mainV {
    margin-bottom: 50px;
}

.mainV img,.sub_content img{
  width: 100%;
  height: auto;
}

/* メンバー紹介 */

#member .boxWrap {
  display: flex;
  display:-webkit-flex;
  flex-wrap: nowrap;
  flex-direction: row;
  flex-grow: 1;
  align-content: space-around;
}

#member .boxWrap + .boxWrap{
  margin-top: 20px;
}

#member .box-m {
    box-sizing: border-box;
    text-align: left;
}

#member .box-m + .box-m {
    margin-left: 20px;
}

#member .width6 {
    width: 50%;
}

.memberDetail + .memberDetail{
  margin-top: 25px;
}

/* メンバーの１日 */
#workDetail .width6{
  width: 50%;
}

#workDetail .boxWrap {
  display: flex;
  display:-webkit-flex;
  display:-webkit-flex;
  flex-wrap: nowrap;
  flex-direction: row;
  flex-grow: 1;
  align-content: space-around;
}

#workDetail .boxWrap + .boxWrap{
  margin-top: 10px;
}

#workDetail .box-m + .box-m {
    margin-left: 20px;
}

.t-c{
  text-align: center;
}

/* スムーススクロールボタン */
.smooth > a{
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  text-indent: -9999px;
  background: url("../images/toTop_btn.png") no-repeat;
  background-size: 50px;
  z-index: 99;
}

/* 新卒採用ページコンテンツ幅管理 */
.freshers_content{
 margin:5px;
 }
 
 .left2{
 font-size:1.25em;
 font-weight:900;
   }
   
   
   /* ペルソナのテーブルを縦にしてはば100％ */
td.noborder {
    display: block;
}

table.perusona1 {
    width: auto;
}

 p.rtop{
  font-size: 1.0em;
    font-weight: 600;
    line-height: 170%;
    font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

 h2.rtop{
    font-weight: bold !important;
    text-decoration: none !important;
    color: #231815 !important;
    padding-bottom: 5px !important;
    font-size: 1.31em !important;
    margin-bottom: 25px !important;
    font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.width9{
  width: 100%;
}