@charset "utf-8";
/* CSS Document */

@import url("print.css") print;

html,
body {
	font-family: "Hiragino Maru Gothic W4 JIS2004", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
	height: 100%;
}

.bs-sidebar.affix {
  position: static;
}
@media (min-width: 992px) {
.bs-sidebar .nav > .active > ul {
  display: block;
}
/* Widen the fixed sidebar */
.bs-sidebar.affix,
.bs-sidebar.affix-bottom {
  width: 213px;
}
.bs-sidebar.affix {
  position: fixed; /* Undo the static from mobile first approach */
  top: 80px;
}
.bs-sidebar.affix-bottom {
  position: absolute; /* Undo the static from mobile first approach */
}
.bs-sidebar.affix-bottom .bs-sidenav,
.bs-sidebar.affix .bs-sidenav {
  margin-top: 0;
  margin-bottom: 0;
}
}
@media (min-width: 1015px){
header {
	display: none;
}
.main {
	margin-left: 250px;
}
}
/* スマホ・iPadなど */
@media screen and (max-width: 1014px) {
.sidebar-nav {
	display: none;
}
}

.clear {
	clear: both;
	height: 0;
	line-height: 0;
	margin: 0;
	padding: 0;
}
img {
	max-width: 100%;
}


/*-----------------------------------------------
/* header
/*---------------------------------------------*/
header .navbar {
	margin-bottom: 10px;
}
header h1 {
	margin-top: 0;
  display: none;
}
.nav > li > ol {
	margin-left: 20px;
	padding-left: 0;
}
.nav > li > ol > li > a {
	display: block;
	padding: 6px 10px;
}
.nav > li.nav2nd {
	padding: 10px 10px 5px 15px;
}
.nav > li.nav2nd > ol {
	margin-left: 10px;
}

/* スマホ・iPadなど */
@media screen and (max-width: 1014px) {
header .navbar-nav > li {
	float: none;
	display: inline-block;
	vertical-align: top;
	margin-bottom: 5px;
}
header .navbar-nav > li > a {
	padding: 6px 10px;
}
header .navbar-nav ol li {
	list-style: none;
}
}
@media screen and (max-width: 640px) {
header .navbar-nav > li {
	display: block;
	margin-bottom: 0;
}
}


/*-----------------------------------------------
/* layout
/*---------------------------------------------*/
.sidebar-nav {
	line-height: 110%;
	width: 250px;
	height: 100%;
	box-shadow: 3px 0 3px #CCC;
	padding: 0 10px;
  box-sizing: border-box;
 /* overflow: auto;*/
  overflow-y: scroll;
  
}
.sidebar-nav h1 {
	text-align: center;
}
.sidebar-nav a {
	color: #000;
}
.sidebar-nav ol {
	margin-left: 35px;
	padding-left: 0;
}
.sidebar-nav ol li {
	list-style: none;
}


/*-------------common class------------*/
h2.title {
	font-family: 'Open Sans', sans-serif;
	line-height: 130%;
	text-align: center;
}
h2.title span {
	font-family: "Hiragino Maru Gothic W4 JIS2004", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: lighter;
	display: block;
	font-size: 50%;
}
h3.subtitle {
	color: #FFF;
	background: #1C5EAA;
	padding: 10px 0;
	text-align: center;
	margin-bottom: 20px;
}


/* footer & company
/*------------------------------------*/
.company {
	padding: 0 20px;
}
.company .row {
	max-width: 1080px;
	margin: 0 auto;
}
.company .row .col-sm-4 {
	font-size: 120%;
	line-height: 160%;
	margin-bottom: 20px;
}
.company .row .col-sm-4.col-center {
	border-right: solid 1px #CCC;
}
.company .row .col-sm-4 h4 {
	font-weight: bold;
}
.company .row .col-sm-4 input {
	max-width: 100%;
	height: auto;
}
.company h3 {
	border-bottom: solid 1px #000;
	margin-bottom: 12px;
	padding-bottom: 10px;
}
.company .box {
	width: 80%;
	margin: 30px auto 50px;
}
.company .box img.pull-left {
	margin-right: 15px;
	margin-bottom: 15px;
}


/*-----------------------------------------------
/* footer
/*---------------------------------------------*/
.pagetop {
}
footer {
	background: #f3f3f3;
	margin-top: 20px;
	padding: 30px 0;
	text-align: center;
}
footer ul {
	overflow: hidden;
}
footer ul li {
	list-style: none;
	display: inline-block;
	margin-right: 20px;
}
footer p.copyright {
	font-size: 85%;
	color: #7f7f7f;
	margin-top: 50px;
}


/*-----------------------------------------------
/* 画像をクリックするとポップアップで拡大表示
/*---------------------------------------------*/
.lb {
    display: flex;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,.7);
    opacity: 0;
    transition: .3s opacity ease;
    pointer-events: none;
    z-index: 100;
}

.lb img {
    width: auto !important;
    max-height: 100%!important;
    cursor: pointer;
}

.lb img,
.lb iframe {
    transform: scale(.85);
    transition: .3s all ease;
}

.lb:target {
    opacity: 1;
    pointer-events: auto;
    z-index: 101;
}

.lb:target img,
.lb:target iframe {
    transform: scale(1);
}

/* なんちゃって閉じるボタン*/
.lb::before,.lb::after {
    display: block;
    position: fixed;
    content: "";
    width: 24px;
    height:3px;
    top: 24px;
    right: 12px;
    background: #fff;
    border-radius: 4px;
}
.lb::before {
    transform: rotate(-315deg);
}
.lb::after {
    transform: rotate(315deg);
}

/*-----------------------------------------------
/* 会社概要・スタッフ紹介
/*---------------------------------------------*/

.staff_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.staff_img {
  margin-right: 15px;
}

.staff_explanation_inner {
  display: flex;
  flex-wrap: wrap;
}

.staff_name h4 {
  margin: 0;
}

.message_pc h6,.message_sp h6 {
  font-size: 14px;
}

@media screen and (max-width: 767px){
.staff_inner{
  flex-wrap: nowrap;
  }
  
 .staff_img {
    width: 40%;
  }
  
  .staff_explanation {
    width: 60%;
  }
  .message_pc {
    display: none;
  }
}

@media screen and (min-width: 768px){
  .message_sp {
    display: none;
  }
  }