@charset "UTF-8";
html {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
body {
  height: 100%;
  width: 100%;
  font-family: "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 13px;
  line-height: 1.8;
  color: #333;
  background-color: #fff;
}

a{
  color: #0C269F;
  text-decoration: none;
  outline: none;
}
a:hover{
  color: #4f6cf5;
}
table {
  font-size: inherit;
}
img {
  vertical-align: bottom;
}
p{
  margin-bottom: 15px;
}

#delaunay{
  display: none;
  position: fixed;
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  left: 0;
  /*border:1px solid #F00;*/
}
#obj{
  /*display: none;*/
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100%;
  box-sizing:border-box;
  background-color: transparent;
  /*background-image: url("/images/bg.png");
  background-size: cover;
  background-position: center center;*/
}

#globalHeader{
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  padding: 15px 20px;
  box-sizing:border-box;
  background-color: rgba(255, 255, 255, 0.95);
}

#companyName{
  display: inline-block;
  font-weight: normal;
  text-align: center;
  color: #999;
  font-size: 11px;
  letter-spacing: 0.05em;
  transition:all 0.6s linear;
}
#companyName.hide{
  opacity: 0;
}
#companyName.hide a{
  cursor: default;
}

#companyName a{
  color: inherit;
}
#companyName span{
  font-family: Times New Roman, "Hiragino Mincho ProN","ＭＳ Ｐ明朝","ＭＳ 明朝", serif;
  font-size: 24px;
  line-height: 1.1;
  color: #141414;
  display: block;
}



#globalHeader nav{
  position: absolute;
  right: 0;
  top: 0;
}
#globalHeader nav > ul{
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-top: 22px;
  margin-right: 5px;
  /*border:1px solid #F00;*/
}

#globalHeader nav ul li{
  display: inline-block;
  margin: 0 17px;
}

#globalHeader nav ul li ul{
  /*display: none;*/
  opacity: 0;
  position: fixed;
  z-index: -1;
  line-height: 20px;
  top: 48px;
  /*right: 5px;*/
  /*border:1px solid #f00;*/
  margin-top: -25px;
  transition: opacity 0.6s, margin-top 0.6s linear 0.2s;
  /*transform:translateX(-50%);*/
}
#globalHeader nav ul li.active ul{
  opacity: 1;
  margin-top: 0;
  transition: opacity 0.6s linear 0.2s, margin-top 0.6s;
}

#globalHeader nav ul li ul li{
  font-size: 85%;
  margin: 0 18px;
}

#globalHeader nav ul li a{
  color: inherit;
  display: block;
  position: relative;
  transition:all 0.3s;
}
#globalHeader nav ul li a.blank{
  background:url("/images/icon_blank.gif") right center no-repeat;
  padding-right: 15px;
}

#globalHeader nav ul li a:hover{
  color: #999;
}
#globalHeader nav ul li a:after{
  content: "]";
  opacity: 0;
  position: absolute;
  right: -8px;
  transition:all 0.3s;
}
#globalHeader nav ul li a:hover:after{
  opacity: 1;
  right: -12px;
}

#globalHeader nav ul li a:before{
  content: "[";
  opacity: 0;
  position: absolute;
  left: -8px;
  transition:all 0.3s;
}
#globalHeader nav ul li a:hover:before{
  opacity: 1;
  left: -12px;
}


.container{
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition:all 1.0s;
}

/*遷移時*/
.container.hide{
  opacity: 0;
  -webkit-transform:scale(0.95);
  transform:scale(0.95);
}

/*表示時*/
.container.none{
  opacity: 0;
  -webkit-transform:scale(0.95);
  transform:scale(0.95);
  transition:all 0.0s;
}

/*新卒採用ページではfixedの要素がずれるのでscaleなし*/
.nonscale.container.hide,
.nonscale.container.none{
  -webkit-transform:none;
  transform:none;
}



.contents{
  position: relative;
  box-sizing:border-box;
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 20px 70px;
}

h2#pageTitle{
  font-size: 22px;
  font-weight: normal;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}
h2#pageTitle span{
  display: block;
  font-size: 14px;
  letter-spacing: 0;
  color: #666;
}

h3.subTitle{
  font-size: 26px;
  font-weight: lighter;
  margin-bottom: 30px;
  line-height: 1.3;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
}

h3.subTitle > span{
	color: #777;
	font-size: 12px;
	display: block;
	font-family: "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif
}

.withSidebar{
  max-width: 100%;
}

.twoColumn{
  display: flex;
  /*justify-content: flex-end;*/
  justify-content: center;
  /*align-items: center;*/
}


.twoColumn .mainColumn{
  /*order: 2;*/
  width: calc(100% - 320px);
  max-width: 820px;
  /*border:1px solid #f00;*/
}


.twoColumn .subColumn{
  /*order: 1;*/
  margin-top: -15px;
  width: 120px;
  position: fixed;
  left: 20px;
}
.localNavigation{
  position: fixed;
  width: 120px;
  margin-top: 5px;
}
.localNavigation li{
  border-bottom: 1px dotted #ccc;
}

.localNavigation li a{
  display: block;
  padding: 8px 0;
  color: inherit;
  font-size: 90%;
  transition: all 0.3s;
}
.localNavigation li:first-child{
  border-top: 1px dotted #ccc;
}
.localNavigation li:first-child a{
  font-weight: bold;
  font-size: 110%;
}
/*.localNavigation li:not(:first-child) a{
  padding-left: 10px;
}*/
.localNavigation li a:hover{
  color: #999;
}


/*------------------------------------------------------------------------------
HOME
------------------------------------------------------------------------------*/
#home .contents{
  width: 100%;
  height: 100%;
  padding-top: 0;
}

#home .index{
  /*border:1px solid #F00;*/
  position: relative;
  width: 520px;
  top: 50%;
  left: 50%;
  padding-top: 20px;
  box-sizing:border-box;
  -webkit-transform:translate(-50%, -50%);
  transform:translate(-50%, -50%);
  overflow: hidden;
}

#home h1{
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
#home h1 span{
  font-family: Times New Roman, "Hiragino Mincho ProN","ＭＳ Ｐ明朝","ＭＳ 明朝", serif;
  font-size: 38px;
  display: block;
}



#home .index #links{
  overflow: hidden;
  margin-top: 70px;
}
#home .index section{
  width: 50%;
  float: left;
  text-align: center;
  padding: 0 10px;
  box-sizing:border-box;
}
#home .index section h2{
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
#home .index section p{
  margin-bottom: 20px;
}

#home .news{
  position: fixed;
  line-height: 14px;
  bottom: 10px;
  left: 10px;

}
#home .news li{
  margin-bottom: 10px;
}
#home .news li:last-child{
  margin-bottom: 0;
}
#home .news time{
  font-family: Times New Roman, "Hiragino Mincho ProN","ＭＳ Ｐ明朝","ＭＳ 明朝", serif;
  display: inline;
  margin-right: 7px;
  /*background-color: #B72727;*/
  background-color: #333;
  color: #fff;
  padding:2px 7px;
}
#home .news p{
  display: inline;
}
#home .news a{
  color: inherit;
  transition:all 0.3s linear;
}
#home .news a:hover{
  color: #666;
}
/*------------------------------------------------------------------------------
SHARE
------------------------------------------------------------------------------*/

h4{
  font-size: 18px;
  font-weight: normal;
}
.box{ margin-top: 80px; }
.box a{
  display: inline-block;
  margin: 0 20px;
}

#recruit dt,
#company dt{
  float: left;
  clear: both;
  width: 200px;
}
#recruit dd,
#company dd{
  position: relative;
  padding-left: 200px;
}




/*------------------------------------------------------------------------------
PHILOSOPHY
------------------------------------------------------------------------------*/
#philosophy .main{
  margin: 100px 0 0;
  text-align: center;
}
#philosophy .main p{ margin-bottom: 80px; }

#philosophy .sub h4, .sub ol{ margin: 25px 0; }
#philosophy .sub li{
  font-size: 16px;
  margin: 15px 0;
  /*margin-left: 2em;
  list-style-type: cjk-ideographic;*/
}

#philosophy .vision h4{
	font-size: 20px;
	/* font-weight: bold; */
}

#philosophy .credo p{
	font-size: 18px;
	font-weight: bold;
	text-align: center;
}


#philosophy .logoDesign{
  display: flex;
  /* align-items: center; */
}
#philosophy .logoDesign .imageBlock{
  width: 230px;
  padding-right: 65px;
  /* padding-left: 10px; */
  margin-top: 20px;
  box-sizing: border-box;
}
#philosophy .logoDesign .textBlock{
  width: calc(100% - 230px);
  font-size: 14px;
}


/*------------------------------------------------------------------------------
COMPANY
------------------------------------------------------------------------------*/
#company h4{ margin-bottom: 15px; }
#company .box{ text-align: center; }
#company .profile dd.MB10{
  padding-bottom: 5px;
  border-bottom: 1px dotted #eee;
}

#company .history{ margin: 100px 0 0; }
#company .history dt{ padding: 10px 0; }
#company .history dd{
  padding: 10px 0;
  border-bottom: 1px dotted #eee;
}
#company .csr{ margin: 0 auto; }

#company .csr h4 img{
  width: 280px;
  height: auto;
  margin: 10px 5px;
}
#company .csr .paracup {
	margin-top: 30px;
	text-align: center;
}

#company a.map{
  /*background-color: #333;*/
  border:1px solid #999;
  /*background:url("/images/icon_blank.gif") right center no-repeat;*/
  color: inherit;
  font-size: 11px;
  padding: 1px 10px 1px 10px;
  line-height: 1;
  margin-left: 10px;
  transition:all 0.3s linear;
}
#company a.map:hover{
  border:1px solid #333;
  background-color: #333;
  color: #fff;
}


/*------------------------------------------------------------------------------
RECRUIT
------------------------------------------------------------------------------*/
#recruit .mind h4{ margin: 20px 0 10px;}
#recruit .mind p{ margin-bottom: 40px; }
#recruit .box{ text-align: center; }
#recruit .box a:first-child{ margin-left: 0; }

#recruit .contact h4, #recruit .career h4{
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}

#recruit .entry{ margin: 30px 0; }
#recruit .entry p{ margin: 5px 0; font-size: 16px; }
#recruit .contact{ margin: 60px 0 0; }
#recruit .contact ul{
  margin-top: 20px;
  padding: 10px 0;
  /*font-size: 16px;*/
  border: solid #eee;
  border-width: 1px 0;
}
#recruit .fs20{
  font-size: 20px;
  font-family: "Times New Roman", Times, serif;
}
#recruit .career strong { font-size: 16px; }
#recruit .career dl { margin-bottom: 50px; }
#recruit .career .bold { font-weight: bold; }
#recruit .pcmt ul{ margin-top: 30px; }
#recruit .points, .pcmt { margin-top: 70px; }




.recruitIndex{
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
  /*justify-content: center;*/
}
.recruitIndex li{
  width: 33.33%;
  text-align: center;
  padding: 0 20px 10px;
  box-sizing: border-box;
}
.recruitIndex li a{
  width: 100%;
}

.entryButton{
  position: fixed;
  top: 115px;
  right: 15px;
  z-index: 999;
}
.entryButton a{
  font-size: 120%;
  width: 150px!important;
}

.entryButton a span:nth-child(2){
  background-color: #ffea00!important;
  border:none!important;
}
.entryButton a span:first-child{
  background-color: #ffcc00!important;
  border:none!important;
  color: #000!important;
}

.businessPoint{
  margin-top: 40px;
}

.paragraph li{
  margin-bottom: 40px;
  clear: both;
  /*padding-left: 20px;*/
}
.paragraphTitle{
  font-size: 125%;
  font-weight: bold;
  margin-bottom: 5px;
  position: relative;
}
/*.paragraphTitle::before{
  content: '';
  position: absolute;
  height: 1px;
  width: 14px;
  background-color: #666;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
}*/

.actionIndex{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.actionIndex li{
  width: calc(25% - 3px);
  margin-bottom: 20px;
  overflow: hidden;
}
.actionIndex li a{
  position: relative;
  display: block;
  color: inherit;
}
.actionIndex li a::after{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /*background-color: rgba(0,0,0,0.5);*/
  z-index: 2;
  transition: all 0.5s;
}

.actionIndex li .photo{
  overflow: hidden;
  margin-bottom: 5px;
}
.actionIndex li img{
  width: 100%;
  display: block;
  transition: all 0.5s;
  /*clip-path: ellipse(0 100% at left);*/
}
/*.actionIndex li h4{
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  color: #fff;
  text-align: center;
  transform: translateY(-50%);
  font-size: 14px;
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
  z-index: 3;
}*/
.actionIndex li h4{
  text-align: center;
  font-size: 12px;
  line-height: 1.3;
}

/*.actionIndex li a:hover::after{
  background-color: rgba(0,0,0,0.1);
}*/
.actionIndex li a:hover img{
  transform: scale(1.1);
  /*clip-path: ellipse(150px 100% at left);*/
}


.actionContent{
  display: flex;
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  background-color: rgba(255,255,255,0.95);
  z-index: 999;
  opacity: 0;
  transition: left 0s 0.5s, opacity 0.5s;
}
.actionContent:target{
  left: 0;
  opacity: 1;
  transition: left 0s 0s, opacity 0.5s;
}

.actionContent .frame{
  position: relative;
  max-width: 900px;
  width: calc(100% - 40px);
  background-color: #fff;
  padding: 25px;
  box-sizing:border-box;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  transform: scale(0.95);
  transition: all 0.5s;
}
.actionContent:target .frame{
  transform: scale(1);
}
.actionContent .frame .close{
  position: absolute;
  top: -45px;
  right: 0;
  font-size: 26px;
}
.actionContent .frame .close a{
  color: inherit;
}

.actionContent .frame .inner{
  max-height: 340px;
  overflow-y: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.actionContent .inner .textBlock{
  width: calc(50% - 15px);
  padding-right: 15px;
  box-sizing: border-box;
}
.actionContent .inner .textBlock h4{
  margin-bottom: 10px;
}
.actionContent .inner img{
  width: calc(50% - 15px);
}


.interviewIndex{
  display: flex;
  flex-wrap: wrap;
}
.interviewIndex li{
  width: 50%;
  box-sizing: border-box;
  text-align: center;
  padding: 0 10px;
  margin-bottom: 60px;
}
.interviewIndex li a{
  display: block;
  color: inherit;
  transition: all 0.5s;
}
.interviewIndex li a:hover{
  opacity: 0.7;
}
.interviewIndex li a:hover img{
  transform: scale(1.1);
}
.interviewIndex li .photo{
  /*Safariではみ出す対応*/
  position: relative;
  z-index: 1;


  width: 180px;
  margin: 0 auto 10px;
  border-radius: 50%;
  overflow: hidden;
}
.interviewIndex li img{
  width: 100%;
  display: block;
  transition: all 0.5s;
}
.interviewIndex li h4{
  line-height: 1.4;
  font-size: 20px;
}
.interviewIndex li p{
  line-height: 1.4;
  margin-bottom: 5px;
  font-size: 90%;
}
.interviewIndex li .catch{
  font-size: 115%;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
  display: inline-block;
  color: #666;
  /*border:1px solid #f00;*/
}
.interviewIndex li .catch::before{
  content: '“';
  /*font-size: 30px;*/
  color: #ccc;
  margin-right: 8px;
}
.interviewIndex li .catch::after{
  content: '”';
  /*font-size: 30px;*/
  color: #ccc;
  margin-left: 5px;
}




.profile{
  position: relative;
  margin-bottom: 50px;
  display: flex;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.profile .photo{
  /*display: inline-block;*/
  width: 30%;
}
.profile .photo img{
  width: 100%;
}
.profile .text{
  background-color: #fff;
  padding: 20px 30px;
  width: 70%;
  box-sizing: border-box;
  line-height: 1.5;
}
.profile .text h4{
  font-weight: bold;
  font-size: 150%;
}
.profile .text .position{
  margin-top: 5px;
  font-size: 90%;
}
.profile .text p{
  position: relative;
  margin: 20px 0 0;
  padding-top: 20px;
}
.profile .text p::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 1px;
  background-color: #999;
}

.interviewDetail .imagePhoto{
  float: right;
  width: 320px;
  margin: 0 0 15px 30px;
}



.discussionHeader{
  position: relative;
}
.discussionHeader .catch{
  position: absolute;
  width: 100%;
  text-align: center;
  top: 30px;
  font-size: 115%;
  line-height: 2;
  /*font-weight: bold;*/
}
.discussionHeader img{
  width: 100%;
  /*clip-path: ellipse(100px 100px at center);*/
}

.discussionHeader .participant{
  width: 100%;
  position: absolute;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
}
.discussionHeader .participant li{
  width: 180px;
  margin: 0 3%;
  padding: 20px 10px;
  box-sizing: border-box;
  background-color: rgba(255,255,255,0.95);
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  text-align: center;

}
.discussionHeader .participant li .initial{
 font-size: 130%;
 font-weight: bold;
 margin-bottom: 10px;
 line-height: 1.2;
}
.discussionHeader .participant li p{
 font-size: 90%;
 margin-bottom: 0;
 line-height: 1.4;
}


.discussion{
  margin-top: 50px;
}
.discussion li{
  position: relative;
  margin-bottom: 80px;
}
.discussion li p{
  margin-top: 10px;
  margin-bottom: 30px;
  position: relative;
  padding-left: 65px;
}

/*.discussion li .paragraphTitle{
  font-size: 130%;
}*/
.discussion li p span{
  position: relative;
  display: inline-block;
  padding: 15px 25px;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 0 0 3px rgba(0,0,0,0.3);
  border-radius: 10px;
}
.discussion li p span::before{
  content: "";
  position: absolute;
  left: -22px;
  top: 15px;
  box-sizing: border-box;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-right: 14px solid #fff;
  z-index: 2;
}
.discussion li p span::after{
  content: "";
  position: absolute;
  left: -25px;
  top: 15px;
  box-sizing: border-box;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-right: 14px solid #000;
  z-index: 1;
  filter: blur(1px);
  opacity: 0.10;
}

.discussion li p::before{
  position: absolute;
  top: 45px;
  left: 0;
  text-align: center;
  width: 40px;
  font-size: 11px;
}
.discussion li p::after{
  content: '';
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 0;
  background-size: 100% auto;
  border-radius: 50%;
}

.discussion li p.nk::before{
  content: "N.K";
}
.discussion li p.nk::after{
  background-image: url('/images/recruit/discussion_nk.jpg');
}
.discussion li p.ns::before{
  content: "N.S";
}
.discussion li p.ns::after{
  background-image: url('/images/recruit/discussion_ns.jpg');
}
.discussion li p.sh::before{
  content: "S.H";
}
.discussion li p.sh::after{
  background-image: url('/images/recruit/discussion_sh.jpg');
}
.discussion .image{
  margin-top: 50px;
  display: flex;
  align-items: flex-start;
}
.discussion .image img{
  width: calc(50% - 6px);
  margin: 3px;
}


/*------------------------------------------------------------------------------
CONTACT
------------------------------------------------------------------------------*/
#contact .form { margin-top: 80px; }
#contact .info {
  width: 100%;
  height: 140px;
  background: #f8f8f8;
  display: table;
  border-collapse: separate;
  border-spacing: 10px 10px;
  text-align: center;
  margin-bottom: 40px;
}
#contact .info li {
  background: #fff;
  width: 300px;
  height: 100px;
  vertical-align: middle;
  display: table-cell;
}
#contact .info strong{
  font-size: 20px;
  font-family: "Times New Roman", Times, serif;

}
#contact p { margin: 20px 0; text-align: center; }
#contact table {
  width: 100%;
  height: auto;
  margin-top: 30px;
  border-collapse:separate;
  border-spacing:10px;
}
#contact tr {
  display: block;
}
#contact th {
  width: 180px;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #B72727;
}
#contact td {
  /*width: 500px;*/
  padding-left: 30px;
}
#contact .red { color: #f00; }
#contact .clear { clear: both; }
#contact input, #contact textarea {
  background: #F1F1F1 none repeat scroll 0% 0%;
  border: medium none;
  margin: 0 5px;
  padding: 15px 20px;
  font-family: "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}
#contact input[name="company"], #contact input[type="email"], textarea{
  width: 500px;
}
#contact .submit {
  text-align: center;
  margin-bottom: 50px;
}
#contact .submit p { padding-top: 30px; }
#contact .submit input{
  background: #000;
  color: #fff;
  padding: 5px 40px;
  font-size: 16px;
  cursor: pointer;
}
#contact .submit input:hover{
  opacity: 0.5;
}
#contact .send{
  text-align: center;
  margin-top: 100px;
}



/*------------------------------------------------------------------------------
SERVICE
------------------------------------------------------------------------------*/
.panelwrap{
  display: flex;
  flex-wrap:wrap;
}

.panelwrap h4{
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 1px;
  text-align: center;
  padding-top: 115px;
  line-height: 1.4;
}
.panelwrap h4 span{
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 11px;
  padding: 0;
  margin-top: 0;
  display: block;
}

.panelwrap .bgImage{
  width: calc(50% - 18px)!important;
  height: 265px;
  background-repeat: no-repeat;
  background-size: cover;
  box-sizing: border-box;
  margin-bottom: 36px;
  position:relative;
}
.panelwrap .bgImage:nth-child(odd){
  margin-right: 18px;
}
.panelwrap .bgImage:nth-child(even){
  margin-left: 18px;
}

#service .service_office {
  background-image: url(../images/service/service_office.jpg);
}

#service .service_store {
  background-image: url(../images/service/service_store.jpg);
}

#service .service_solution {
  background-image: url(../images/service/service_solution.jpg);
}

#service .service_pm {
  background-image: url(../images/service/service_pm.jpg);
}

#service .service_renovation {
  background-image: url(../images/service/service_renovation.jpg);
}

#service .service_share {
  background-image: url(../images/service/service_share.jpg);
}

/*リンクバナー*/
#service ul.slidebanner {
  position:absolute;
  top:200px;
  left:50%;
  color:#ffffff;
  text-align:center;
  width:100%;
  margin-left:-200px;
}

#service ul.slidebanner li {
  position:relative;
  width:130px;
  display:inline-block;
  margin-left:20px;
  margin-right:20px;
}

#service ul.slidebanner li a {
  display:block;
  color: #f3f7f8;
  width:100%;
  height:100%;
  padding-top:5px;
  padding-bottom:5px;
  overflow:hidden;
  position:relative;
}

#service ul.slidebanner span.lefttop {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 5px;
  height: 5px;
  background: transparent;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

#service ul.slidebanner span.leftbottom {
  position: absolute;
  bottom: -7px;
  left: -7px;
  width: 5px;
  height: 5px;
  background: transparent;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

#service ul.slidebanner span.righttop {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 5px;
  height: 5px;
  background: transparent;
  border-top: 1px solid #FFFFFF;
  border-left: 1px solid #FFFFFF;
  transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
}

#service ul.slidebanner span.rightbottom {
  position: absolute;
  bottom: -7px;
  right: -7px;
  width: 5px;
  height: 5px;
  background: transparent;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  transform: rotate(0deg);
  -webkit-transform: rotate(270deg);
}

#service span.caption {
  text-align: center;
  position: absolute;
  /*background: #000;*/
  width: 100%;
  height: 100%;
  z-index: 2;
  left: 0;
  bottom: -100%;
  -webkit-transition: .3s;
  transition: .3s;
  opacity: 0.8;
  font-size: 34px;
  line-height: 1;
}

#service .service_office span.caption{
  background-color: #2333a9;
}

#service .service_store span.caption{
  background-color:  #a92523;
}

#service .service_solution span.caption{
  background-color: #9256dd;
}

#service .service_pm span.caption{
  background-color: #21ae38;
}

#service .service_renovation span.caption{
  background-color: #ea8715;
}

#service .service_share span.caption{
  background-color: #e4c30a;
}

#service ul.slidebanner li a:hover span.caption {
  bottom:0;
  left:0;
}

#service .panelwrap {
  overflow:hidden;
}

#service .panelwrap + hr {
  border-width:8px 0 0 0;
  border-color:#ebebeb;
  opacity:0.5;
  margin-bottom: 22px;
}

#service .kensaku {
  background-image: url(../images/service/service_kensaku.jpg?0);
  width: 100%;
  height: 90px;
  text-align: center;
}

#service .kensaku p {
  display: inline-block;
  font-size: 17px;
  color: #fff;
  padding-left: 35px;
  line-height: 90px;
  background:url(../images/service/arrow.png) left center no-repeat;
}

/*------------------------------------------------------------------------------
STORE
------------------------------------------------------------------------------*/

#store ul li span {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 2px solid #a92523;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

#store ul li ul li {
  margin-top:10px;
  margin-bottom:50px;
}

#store h4 {
	font-size: 16px;
	margin-bottom: 50px;
}

/*------------------------------------------------------------------------------
SOLUTION
------------------------------------------------------------------------------*/

#solution ul li span {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
  font-size: 17px;
  font-weight: bold;
  border-bottom: 2px solid #9256dd;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

#solution ul li ul li {
  margin-top:10px;
  margin-bottom:50px;
}

#solution h4 {
	font-size: 16px;
	margin-bottom: 50px;
}

/*------------------------------------------------------------------------------
PM
------------------------------------------------------------------------------*/
#pm ul li span {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
  font-size: 17px;
  font-weight: bold;
  border-bottom: 2px solid #21ae38;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

#pm ul li ul li {
  margin-top:10px;
  margin-bottom:50px;
}

#pm h4 {
	font-size: 16px;
	margin-bottom: 50px;
}


/*------------------------------------------------------------------------------
OFFICE
------------------------------------------------------------------------------*/

#office section.consulting {
  overflow:hidden;
}
#office section.management {
  margin-bottom:130px;
}
#office section.management h3 {
  border-bottom: 2px solid #2333a9;
  display:inline-block;
  padding-bottom: 5px;
  margin-bottom:30px;

}
#office section > h3 {
  font-size: 18px;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
}


#office section.banner > h3 {
  text-align: center;
  margin-left:auto;
  margin-right:auto;
  margin-bottom:60px;
  overflow: hidden;
  text-align: center;
}

#office section.banner > h3 span {
    display: inline-block;
    padding: 0 0.5em;
    position: relative;
}

#office section.banner > h3 span:before,#office section.banner > h3 span:after {
    border-top: 1px solid;
    content: "";
    position: absolute;
    top: 50%;
    width: 8em;
}

#office section.banner > h3 span:before {
	right:100%;
}
#office section.banner > h3 span:after {
	left:100%;
}

#office section > h3 + hr {
  border-width: 2px 0 0 0;
  border-style: solid;
  border-color: #B72727;
  width:217px;
  padding-bottom: 6px;
  text-align:left;
  margin-left:0;
}
#office section.consulting > h3 {
  border-bottom: 2px solid #2333a9;
  display: inline-block;
  padding-bottom: 5px;
  float: left;
}


#office section.consulting .consultingwrap {
  margin-top:100px;
  margin-bottom:10px;
  position:relative;
  overflow:hidden;

  display:-webkit-flex;
  display:flex;

  -webkit-flex-wrap:wrap;
  flex-wrap:wrap;
}


#office section.consulting .consultingwrap div {
  float: left;
  width:50%;
  text-align:center;
  overflow:hidden;
  margin-bottom:100px;
}

#office section.consulting img {
  margin-bottom:10px;
}

#office section.consulting h4 {
  margin-bottom:15px;
}

#office section.consulting .consultingwrap p {
  font-size: 12px
}

#office section.consulting .consultingwrap div:nth-child(odd) {
	border-right: 2px solid #E8E8E8;
	padding-right:40px;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	float:left;
}

#office section.consulting .consultingwrap div:nth-child(even) {
	padding-left:40px;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	float:right;
}

#office section.consulting hr.topline {
  transform: rotate(90deg);
  width:250px;
  position:absolute;
  top:110px;
  left:0;
  right:0;
  border-color: #F8F8F8;
  opacity:0.5;
  display:none;
}

#office section.consulting hr.bottomline {
  transform: rotate(90deg);
  width:250px;
  position:absolute;
  bottom:230px;
  left:0;
  right:0;
  border-color: #F8F8F8;
  opacity:0.5;
  display:none;
}

#office section.consulting hr.leftline {
  transform: rotate(180deg);
  width:350px;
  position:absolute;
  left:0;
  top:42%;
  border-color: #F8F8F8;
  opacity:0.5;
}

#office section.consulting hr.rightline {
  transform: rotate(180deg);
  width: 350px;
  position: absolute;
  right: 0;
  top: 42%;
  border-color: #F8F8F8;
  opacity:0.5;
}


#office section div p {
  text-align:left;
}

#office .banner {
  margin-bottom:100px;
}

#office .banner p {
  font-size:11px;
  text-align:right;
}

#office .bannerwrap div {
  display:inline-block;
  width:25%;
  margin-bottom:30px;
  text-align:center;
}
#office .bannerwrap div img {
  width:85%;
  text-align:center;
}

#office .bannerwrap div img {
  vertical-align:middle;
}


#office .casebigbanner {
  width:100%;
  height:90px;
  background-image:url(../images/service/office/casebigbanner.png?0);
  text-align:center;
}

#office .casebigbanner a{
  color: #fff;
}

#office .casebigbanner h3 {
  font-size:17px;
  display: inline-block;
  font-weight: normal;
  padding-left: 35px;
  line-height: 90px;
  background:url(../images/service/arrow.png) left center no-repeat;
}

#office .scroll {
	color: #000;
	font-size: 14px;
}

#office .headWrapper {
  position: relative;
  overflow: hidden;
}


#office .results {
  position: absolute;
  top: 30px;
  right: 10px;
}

#office h4 {
	font-size: 16px;
	margin-bottom: 50px;
}




/*------------------------------------------------------------------------------
PRIVACY POLICY
------------------------------------------------------------------------------*/
#privacy h4{
	margin-bottom: 10px;
}

#privacy p{
	margin-bottom: 40px;
}


/*------------------------------------------------------------------------------
NEWS
------------------------------------------------------------------------------*/
#news .entries{
  margin-top: -80px;
}

#news article{
  position: relative;
  padding-top: 80px;
  /*padding-bottom: 30px;
  border-bottom: 1px solid #ededed;
  margin-bottom: 50px;*/
}

#news article:not(:first-child):after{
  content:"";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 40px;
  background-color: #ededed;
}

#news article:last-child{
  /*border:1px solid #F00;*/
  border-bottom: none;
  margin-bottom: 0;
}
#news article header{
  margin-bottom: 20px;
  position: relative;
  line-height: 20px;
  font-size: 120%;
}
#news article header time{
  font-family: Times New Roman, "Hiragino Mincho ProN","ＭＳ Ｐ明朝","ＭＳ 明朝", serif;
  position: absolute;
  padding-right: 15px;
  border-right:1px solid #666;
  top: 0;
  left: 0;
}
#news article header h3{
  padding-left: 6.5em;
  font-weight: normal;
}

#news article dl{
  position: relative;
  margin: 10px 0 20px;
}
#news article dt{
  position: absolute;
}
#news article dd{
  padding-left: 6em;
}







#footer{
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 5px 15px;
  /*background-color: #fff;*/
  color: #999;
  font-size: 10px;
  z-index: 10;
}

#footer a{
	color: #999;
  margin-right: 10px;
}



/*helper*/
.visible-sp{
  display: none!important;
}


.back{
  margin: 40px 0 0;
}
.back a{
  position: relative;
  font-size: 140%;
  font-family: Times New Roman, "Hiragino Mincho ProN","ＭＳ Ｐ明朝","ＭＳ 明朝", serif;
  color: #888;
  padding-left: 25px;
  line-height: 1.2;
  transition:all 0.3s;
}
.back a:after{
  content: "←";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
}
.back a:hover{
  opacity: 0.7;
}


.button {
  position: relative;
  -ms-perspective: 300px;
  -webkit-perspective: 300px;
  perspective: 300px;
  display: block;
  height: 40px;
  width: 200px;
  margin: 10px auto;
  letter-spacing: 0.1em;
}
.button.large{
  width: 280px;
}
.button span {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #333;
  text-align: center;
  line-height: 40px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;

  transition: all 0.3s;
}
.button span:nth-child(1) {
  background-color: #333;
  color: #fff;
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -webkit-transform-origin: 50% 50% -20px;
  transform-origin: 50% 50% -20px;
}
.button span:nth-child(2) {
  background-color: #fff;
  color: #333;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-transform-origin: 50% 50% -20px;
  transform-origin: 50% 50% -20px;
}
.button:hover span:nth-child(1) {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
}

.button:hover span:nth-child(2) {
  background-color: #333;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  z-index: -1;
}




/*.textBtn a:hover{
  letter-spacing: 0.15em;
}*/

.MB5{
  margin-bottom:5px;
}
.MB10{
  margin-bottom:10px;
}
.MB20{
  margin-bottom:20px;
}
.MB30{
  margin-bottom:30px;
}
.MT5{
  margin-top:5px;
}
.MT10{
  margin-top:10px;
}
.MT20{
  margin-top:20px;
}
.MT30{
  margin-top:30px;
}
.ML5{
  margin-left:5px;
}
.ML10{
  margin-left:10px;
}
.ML20{
  margin-left:20px;
}
.ML30{
  margin-left:30px;
}
.MR5{
  margin-right:5px;
}
.MR10{
  margin-right:10px;
}
.MR20{
  margin-right:20px;
}
.MR30{
  margin-right:30px;
}

.TR{
  text-align: right;
}
.TC{
  text-align: center;
}
.TL{
  text-align: left;
}
