@charset "UTF-8";

/* =======================================
    共通パーツ
======================================= */
/* ------ Reset -------*/
* {
  padding: 0;
  margin: 0;
}
ul {
  list-style: none;
}
img {
  vertical-align: bottom;
  max-width: 100%;
}
html,body {
  -webkit-text-size-adjust: 100%;
}

/* ------ Responsive -------*/
.pc {
  display: block;
}
.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  img{
    height: auto;
  }
}

/* =======================================
    共通CSS
======================================= */
/* ------各ブロック-------*/
html,body {
	height: 100%;
	margin: 0;
}
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
}


main > section {
	padding: 90px 0;
}
.container{
	padding-left: 15px;
	padding-right: 15px;
	box-sizing: border-box;
	max-width: 960px;
	margin: 0 auto;
	width: 100%;
}
.txt_box,.img_box{
	overflow:hidden;
	box-sizing: border-box;
	margin-bottom: 20px;
}
.txt_box:last-child,.img_box:last-child{
	margin-bottom: 0;
}
.parallax {
	background-attachment: fixed;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}
@media (max-width: 767px) {
	main > section {
		padding: 50px 0;
	}
	main {
		margin-bottom: 0
	}
	.parallax {
		background-position: centet tip !important;
	}
}


/* ------ fadeInUp -------*/
.fadeInUp{
  -webkit-transform: translateZ(0);
  /* display: none; */
  opacity: 0;
}
.fadeInUp.animated {
  /* アニメーションのプロパティを指定 */
  -webkit-transform: translateZ(0);
  animation-name: animated;
  animation-duration: 1s;
  animation-timing-function: ease;
  position: relative;
  opacity: 1;
}
@keyframes animated {
  from {
    opacity: 0;
    bottom: -20px;
  }
  to {
    opacity: 1;
    bottom: 0;
  }
}


/* ------ text -------*/
body{
	font-family: "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: normal;
	margin: 0px;
	padding: 0px;
	color: #333;
	font-style: normal;
	font-size: 14px;
	line-height: 1.6;
}

/* .sec-title_box */
.sec-title_box {
	text-align: center;
	margin-bottom: 50px;
}
.sec-title_box p{
	display: block;
	font-size: 13px;
	padding-top: 15px;
}

/*.ttl_main*/
.ttl_main{
	margin: 0;
	position: relative;
	letter-spacing: 1px;
	text-align: center;
}
.ttl_main img{
	width: 222px;
}
/*.ttl_topic*/
.ttl_topic{
	font-size: 20px;
	margin-bottom: 20px;
}

/*.ttl_item*/
.ttl_item {
	border-left: 5px solid #315287;
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: bold !important;
	line-height: 1.0;
	margin-bottom: 20px;
	padding-left: 10px;
}
main p{
	font-size:14px;
	margin-bottom: 15px;
}
main p:last-child{
	margin-bottom: 0;
}
@media (max-width: 767px) {
	main p{
		font-size:12px;
		margin-bottom: 10px;
	}
	th,td,li{
		font-size:12px;
	}
}
.text-center{
	text-align: center;
}
.white,.white p{color:#fff;}
.blue,.blue p{color:#5173AB;}
.gray,.gray p{color: #666;}

@media (max-width: 767px) {
	.sec-title_box{
		margin-bottom: 30px;
	}
	.sec-title_box p{
		font-size: 13px;
		padding-top: 5px;
	}
	/*.ttl_main*/
	.ttl_main img{
		width: 180px;
	}
	
	/*.ttl_topic*/
	.ttl_topic{
		font-size: 16px;
		margin-bottom: 15px;
	}
	
	/*.ttl_item*/
	.ttl_item{
		font-size: 14px;
		margin-bottom: 10px;
	}
}


/* ------ link ------- */
a {
	text-decoration: none;
	color: #fff;
}
a:link {
	color: #fff;
}
a:active {
	color: #fff;
}
a:hover {
	color: #fff;
	text-decoration: none;
}
a:visited {
	color: #fff;
}
body div a:active, body div a:focus {
	outline: none;
}
.txt_link{
	text-decoration: underline;
}

/* .btn */
.btn{
	display: block;
	font-size: 16px;
	padding: 20px 15px;
	width: 230px;

	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
@media (max-width: 767px) {
	.btn{
		padding: 15px;
		font-size: 14px;
	}
}

/* .btn_input */
.btn_input{
	display: block;
	width: 230px;
	border-radius: 0;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
.btn_input input{
	padding: 15px;
	font-size: 16px;
	font-weight: bold;
}
@media (max-width: 767px) {
	.btn_input input{
		padding: 12px;
		font-size: 13px;
	}
}

/* .btn_b */
.btn_b{
	border: 2px solid #000;
	color:#000 !important;
	position: relative;
}
.btn_b::after{
	content: '';
	background-image: url(../img/common/arrow_03.png) ;
	background-repeat: no-repeat;
	background-size: 15px auto;
	display: inline-block;
	position: absolute;
	top: calc(50% - 7.5px);
	right: 15px;
	width: 15px;
	height: 15px;
}
.btn_b:hover,
.btn_b:hover input{
	color: #fff !important;
}
.btn_b:hover::after{
	background-image: url(../img/common/arrow_04.png);
}
@media (max-width: 767px) {
	.btn_b::after{
		background-size: 12px auto;
		top: calc(50% - 6px);
		right: 10px;
	}
}

/* .btn_c (bの逆向き) */
.btn_c{
	border: 2px solid #000;
	color:#000 !important;
}
.btn_c::after{
	content: '';
	background-image: url(../img/common/arrow_05.png) ;
	background-repeat: no-repeat;
	background-size: 15px auto;
	display: inline-block;
	position: absolute;
	top: calc(50% - 7.5px);
	left: 15px;
	width: 15px;
	height: 15px;
}
.btn_c:hover,
.btn_c:hover input{
	color: #fff !important;
}
.btn_c:hover::after{
	background-image: url(../img/common/arrow_06.png);
}
@media (max-width: 767px) {
	.btn_c::after{
		background-size: 12px auto;
		top: calc(50% - 6px);
		left: 10px;
	}
}

/* btn-effect */
.btn-effect {
	vertical-align: middle;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	position: relative;
	/*display: inline-block;*/
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition-property: color;
	-moz-transition-property: color;
	-ms-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-moz-osx-font-smoothing: grayscale;
}
.btn-effect:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #000;
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 50%;
	-moz-transform-origin: 0 50%;
	-ms-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transition-property: transform;
	-moz-transition-property: transform;
	-ms-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	-moz-transition-duration: 0.3s;
	-ms-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	-moz-transition-timing-function: ease-out;
	-ms-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}
.btn-effect:hover, .btn-effect:focus, .btn-effect:active {
	color: #5277B3;
}
.btn-effect:hover:before, .btn-effect:focus:before, .btn-effect:active:before {
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}
.imghover:hover{
	opacity: 0.4;
	filter: alpha(opacity=60);
	-moz-opacity: 0.4;
	-webkit-transition: 0.4s ease-in-out;
	-moz-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}


/* ------テーブル デザイン------- */
table{
	box-sizing: border-box;
	width: 100%;
}

/* .tb_box */
.tb_box{
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 800px;
}
.tb_box tr th{
	padding: 25px 40px 25px 0;
	text-align:right;
	white-space:nowrap;
}
.tb_box tr td{
	padding: 25px 0 25px 40px;
	width: 73%;
}
@media (max-width: 767px) {
	.tb_box tr th{
		padding:10px 0 ;
		display: block;
		text-align:left;
		width:100%;
	}
	.tb_box tr td{
		border-bottom: 1px dotted #ddd !important;
		display: block;
		padding:0 0 15px;
		width: 100%;
	}
	.tb_box tr:last-child td{
		border-bottom: none  !important;
	}
}

/* ------ form ------- */
input{
	background: none;
}
input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 3px;
	box-sizing: border-box;
	font-size: 14px;
	padding: 8px;
	transition: all 0.3s ease 0s;
	width: 100%;
}
input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus{
	border: 1px solid #999;
	outline: none;
}
input[type="text"]:placeholder-shown,
input[type="number"]:placeholder-shown,
input[type="email"]:placeholder-shown,
input[type="tel"]:placeholder-shown,
textarea:placeholder-shown{
	color: #bbb;
}
input[type="text"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #bbb;
}
input[type="text"]:-moz-placeholder,
input[type="number"]:-moz-placeholder,
input[type="email"]:-moz-placeholder,
input[type="tel"]:-moz-placeholder,
textarea:-moz-placeholder{
	color: #bbb;
	opacity: 1;
}
input[type="text"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
textarea::-moz-placeholder{
	color: #bbb;
	opacity: 1;
}
input[type="text"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #bbb;
}
input[type="text"]:placeholder-shown,
input[type="number"]:placeholder-shown,
input[type="email"]:placeholder-shown,
input[type="tel"]:placeholder-shown,
textarea:placeholder-shown {
	color: #bbb;
}
input[type="submit"],
input[type="reset"],
input[type="button"]{
	border: none;
	cursor: pointer;
	width: 100%;
}
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus{
	outline: none;
}


/* .checkbox_box */
.checkbox_box{
  display: flex;
  align-items: center;
  font-size: 1.6rem;
}
input[type="checkbox"] {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  background-color: #fff;
  margin-right: 1em;
  vertical-align: -5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input[type="checkbox"]:checked:before {
  position: absolute;
  top: 0px;
  left: 4px;
  transform: rotate(50deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: '';
}
@media (max-width: 767px) {
  .checkbox_box{
    font-size: 14px
  }
}


/* ------Preloader------- */
#preloader {
	background-color: #fff;
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 9999;
}
/*Battery*/
.loder-box {
	/*background-color: rgba(0, 0, 0, 0.02);
	border-radius: 1px;*/
	height: 100px;
	left: 50%;
	margin-left: -64px;
	margin-top: -50px;
	position: absolute;
	top: 50%;
	width: 128px;
}
.battery {
	width: 60px;
	height: 25px;
	top: 35%;
	position: relative;
	margin: 0 auto;
	/*border: 1px #2E2E2E solid;
	border-radius: 2px;
	-webkit-animation: charge 5s linear infinite;
	-moz-animation: charge 5s linear infinite;
	animation: charge 5s linear infinite;*/
}
.battery:after {
/*	background-color: #2E2E2E;
	border-radius: 0 1px 1px 0;*/
	content: "";
	height: 10px;
	position: absolute;
	right: -5px;
	top: 7px;
	width: 3px;
}
/* @-webkit-keyframes charge {
 0% {
box-shadow: inset 0px 0px 0px #2E2E2E;
}
 100% {
box-shadow: inset 60px 0px 0px #2E2E2E;
}
}
 @-moz-keyframes charge {
 0% {
box-shadow: inset 0px 0px 0px #2E2E2E;
}
 100% {
box-shadow: inset 60px 0px 0px #2E2E2E;
}
}
 @keyframes charge {
 0% {
box-shadow: inset 0px 0px 0px #2E2E2E;
}
 100% {
box-shadow: inset 60px 0px 0px #2E2E2E;
}
}*/
@media (max-width: 767px) {
	.loder-box {
		height: 30px;
		left: 50%;
		margin-left: -30px;
		margin-top: -30px;
		position: absolute;
		top: 50%;
		width: 80px;
	}
}


/* ---ローディング 見た目--- */
.animation-5{
	width: 120px;
	height: 50px;
}
.animation-5 div{
	height:30px;
	width:10px;
	background-color: #5173ab;
	display:inline-block;
	margin-right:10px;
	-webkit-animation: animation5-bar 1s infinite;
	animation: animation5-bar 1s infinite;
}
.animation-5 .bar1{
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}
.animation-5 .bar2{
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}
.animation-5 .bar3{
	-webkit-animation-delay: 0.7s;
	animation-delay: 0.7s;
}
.animation-5 .bar4{
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
}
.animation-5 .bar5{
	-webkit-animation-delay: 0.9s;
	animation-delay: 0.9s;
}
@keyframes animation5-bar{
	30%{
		transform: scaleY(2);
	}
}
@media (max-width: 767px) {
	.animation-5{
		width:80px;
		height: 30px;
	}
	.animation-5 div{
		height:30px;
		width:8px;
		background-color: #5173ab;
		display:inline-block;
		margin-right:4px;
		-webkit-animation: animation5-bar 1s infinite;
		animation: animation5-bar 1s infinite;
	}
}


/* =======================================
    Header
======================================= */
#navigation {
	box-sizing: border-box;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background-color: rgba(82, 119, 179, 0.9);
	padding: 0 15px 0 30px;
	webkit-transition: all 0.8s ease 0s;
	-moz-transition: all 0.8s ease 0s;
	-ms-transition: all 0.8s ease 0s;
	-o-transition: all 0.8s ease 0s;
	transition: all 0.8s ease 0s;

	display: flex;
	justify-content: space-between;
	align-items: center;
}
#navigation.is-scrolled {
  background-color: rgba(82, 119, 179, 1);
}
#logo{
	line-height: 1;
}
#logo img {
	width: 110px;
	transition: width .25s ease;
}
@media (min-width: 768px) {
	#navigation {
		height: 80px;
	}
	#navigation.is-scrolled {
		height: 60px;
	}
}
@media (max-width: 767px) {
	#navigation {
		padding: 0;
		flex-direction: column;
	}
	.navbar-header{
		box-sizing: border-box;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0 10px 0 15px;
		height: 50px;
		width: 100%;
	}
	#logo img {
		width: 95px;
		padding-top: 3px;
	}
}

/* .navbar-toggle */
.navbar-toggle{
	border: none;
	border-radius: 0;
	padding: 8px 10px !important;
	background: none;
}
.navbar-toggle .icon-bar {
	background-color: #fff;
	display: block;
	width: 22px;
	height: 2px;
	margin: 4px auto;
	border-radius: 1px;
	transition: background-color .3s;
}
@media (min-width: 768px) {
	.navbar-toggle{
		display: none;
	}
}

/* .nav-menu */
#navigation .nav-menu li a{
	font-size: 15px;
	padding: 10px 25px;
	letter-spacing: 1px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
.navbar-inverse .navbar-nav > li > a.current {
  color: #183564 !important;
}
@media (min-width: 768px) {
	#navigation .nav-menu{
		display: flex;
	}
	#navigation .nav-menu li a:hover{
		opacity: 0.8;
	}
}
@media (max-width: 1000px) {
	#navigation .nav-menu li a{
		padding: 10px 15px;
	}
}
@media (max-width: 767px) {
	#navigation nav{
		width: 100%;
	}
	#navigation .nav-menu {
		display: block;
		overflow: hidden;
		max-height: 0;
		background-color: rgba(106,140,191,0.92);
		width: 100%;
		transition: max-height .3s ease;
	}
	#navigation .nav-menu li a{
		display: block;
		font-size: 14px;
		padding: 10px 20px;
		width: 100%;
	}
	#navigation .nav-menu li:nth-child(1){
		padding-top: 10px;
	}
	#navigation .nav-menu li:last-child{
		padding-bottom: 10px;
	}
	@media (prefers-reduced-motion: reduce) {
		#navigation .nav-menu { transition: none; }
	}
}


/* =======================================
    Footer
======================================= */
footer{
	padding: 20px 0;
	background-color: #5173ab;
	text-align: center;
}
footer p{
	color: #fff;
	font-size: 80%;
}


/*================================================
   以下、トップページcss
==================================================*/
/* ------ メインイメージ new ------- */
#mainvisual{
	background-image: url(../img/mainimg_pc.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}
.caption-content{
	text-align: center;
}
.caption-content h2 {
	color: #fff;
	font-size: 52px;
	font-weight: 400;
	margin-bottom: 25px;
	margin-top: 200px;
	text-transform: uppercase;
}
.caption-content > span{
	display: block;
	font-size: 18px;
	text-transform: capitalize;
}
/* The duplicate parts/slices */
.sl-content-slice {
	overflow: hidden;
	position: absolute;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	background: #fff;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	opacity : 1;
}
/* Horizontal slice */
.sl-slide-horizontal .sl-content-slice {
	width: 100%;
	height: 50%;
	left: -200px;
	-webkit-transform: translateY(0%) scale(1);
	-moz-transform: translateY(0%) scale(1);
	-o-transform: translateY(0%) scale(1);
	-ms-transform: translateY(0%) scale(1);
	transform: translateY(0%) scale(1);
}
.sl-slide-horizontal .sl-content-slice:first-child {
	top: -200px;
	padding: 200px 200px 0px 200px;
}
.sl-slide-horizontal .sl-content-slice:nth-child(2) {
	top: 50%;
	padding: 0px 200px 200px 200px;
}

/* Vertical slice */
.sl-slide-vertical .sl-content-slice {
	width: 50%;
	height: 100%;
	top: -200px;
	-webkit-transform: translateX(0%) scale(1);
	-moz-transform: translateX(0%) scale(1);
	-o-transform: translateX(0%) scale(1);
	-ms-transform: translateX(0%) scale(1);
	transform: translateX(0%) scale(1);
}
.sl-slide-vertical .sl-content-slice:first-child {
	left: -200px;
	padding: 200px 0px 200px 200px;
}
.sl-slide-vertical .sl-content-slice:nth-child(2) {
	left: 50%;
	padding: 200px 200px 200px 0px;
}
/* Content wrapper */
/* Width and height is set dynamically */
.sl-content-wrapper {
	position: absolute;
}
.sl-content {
	width: 100%;
	height: 100%;
}


/*追記*/
#main_logo{
	width: 240px;
}
#main_arrow{
	width: 50px;
}
.caption-content .blue {
	margin-bottom: 120px;
	font-size: 24px;
}
.caption-content .gray {
	font-size: 16px;
	margin: 0 auto 120px;
}
.caption-content .gray span{
	font-weight: bold;
	color: #5173ab;
	padding:0 3px;
}

@media (max-width: 767px) {
	#main_logo{
		width: 180px;
	}
	#main_arrow{
		width: 30px;
	}
	.caption-content h2 {
		font-size: 18px;
		margin: 150px auto 10px;
	}
	.caption-content .blue{
		font-size: 14px;
		margin-bottom: 50px;
	}
	.caption-content .gray {
		margin-bottom: 30px;
		font-size: 12px;
		padding: 0 10px;
		line-height: 1.8;
	}

}


/*-------- section#service --------*/
#service{
	background-image: url(../img/bg_service_pc.jpg);
	padding: 0;
	background-size: 100% auto;
}
#service .overlay {
	background:url(../img/bg_vision_top.png) no-repeat bottom -1px center;
	background-size: 100% auto;
	padding: 110px 0 100px;
}

#service .container{
	max-width: 100%;
	width: 98%;
}
.service-icon img{
	width: 150px;
	margin-bottom: 20px;
}

#service ul{
	display: flex;
	justify-content: center;
}
#service li.service-item {
	border: 3px solid transparent;
	padding: 2%;
	margin: 0 1%;
	width: 31%;
	box-sizing: border-box;
	text-align: center;
}
#service li.service-item:hover {
	border: 3px solid #fff;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
#service .ttl_topic{
	background-color: #315287;
	box-sizing: border-box;
	padding: 4px 20px;
	color: #fff;
	margin: 0 auto;
	max-width: 10em;
	width: 100%;
	text-align: center;
	margin-bottom: 30px;
}
#service p{
	color:#fff;
}
@media (max-width: 767px) {
	#service{
		background: url(../img/bg_service_pc.jpg) no-repeat top center,#5B7EB6;
	}
	#service .overlay{
		background-size: 100% auto;
		padding: 80px 0 60px;
	}
	#service .container{
		width: 100%;
	}
	#service ul{
		flex-direction: column;
	}
	#service li.service-item {
		border: 3px solid #fff;
		padding: 15px 10px;
		margin: 0 auto 20px;
		width: 100%;
	}
	#service li.service-item:last-child{
		margin-bottom: 0;
	}
	#service .ttl_topic{
		margin-bottom: 10px;
	}
	.service-icon img{
		margin-bottom: 10px;
	}
}

/*-------- section#vision --------*/
#vision{
	background:url(../img/bg_company_top.png) no-repeat bottom center;
	background-size: 100% auto;
	padding: 90px 0 120px;
}
#vision .txt_box{
	text-align: center;
}
#vision .ttl_topic{
	text-align: center;
	font-weight: bold !important;
}
@media (min-width: 768px) {
	#vision .txt_box p{
		margin-bottom: 0;
	}
}
@media (max-width: 767px) {
	#vision{
		background:url(../img/bg_company_top_sp.png) no-repeat bottom center;
		background-size: 100% auto;
		padding: 70px 0 50px;
		margin-top: -20px
	}
	#vision .txt_box{
		margin: 0 auto;
		text-align: left;
		width: 92%;
	}
	#vision .ttl_topic{
		font-size: 15px;
		font-weight: bold !important;
	}
}


/*-------- section#company --------*/
#company{
	background: #F9F9F9;
}
#company .tb_box{
	background: #fff;
	box-shadow: 0 0 3px #ccc;
	padding: 30px;
}
#company .tb_box tr th{
	padding: 20px 40px;
	border-right: solid 1px #ccc !important;
}
@media (max-width: 767px) {
	#company{
		padding: 60px 0 50px;
	}
	#company .tb_box{
		padding: 10px 20px;
	}
	#company .tb_box tr th{
		padding: 10px 0;
		border-right: none !important;
	}
}


/*-------- section#news --------*/
#news{
	background-image: url(../img/bg_news_pc.jpg);
	padding: 0;
	background-size: 100% auto;
}
#news .overlay {
	background: url(../img/bg_company_bottom.png) no-repeat top center,
		url(../img/bg_contact_top.png) no-repeat bottom center;
	background-size: 100% auto;
	padding: 110px 0;
}
#news .sec-title_box p{
	color: #fff;
}
/*news_list*/
#news_list{
	padding: 0;
	max-width: 800px;
	margin: 0 auto;
}
#news_list li{
	color: #fff;
	margin-bottom: 15px;
	list-style: none;
	overflow: hidden;
}
#news_list li a{
	overflow: hidden;
}
#news_list p{
	float:right;
	width: 70%;
	color: #fff;
}
#news_list a:hover{
	opacity: 0.6;
	filter: alpha(opacity=60);
	-moz-opacity: 0.4;
	-webkit-transition: 0.4s ease-in-out;
	-moz-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
}
@media (max-width: 767px) {
	#news{
		background: url(../img/bg_news_pc.jpg) no-repeat,#000;
		background-size: auto 100% ;
		background-position: center top;
	}
	#news .overlay{
		padding:60px 0 60px;
		background-size: 100% auto;
	}
	#news_list{
		margin: 0 auto;
		width: 96%;
	}
	#news_list p{
		width: 100%;
		float: none;
	}
}

/*#daybox*/
.daybox{
	overflow: hidden;
	width: 28%;
	float: left;
	margin-bottom: 10px;
}
.daybox span{
	display: block;
	float: left;
	text-align: left;
	width: 6em;
	font-size: 15px;
}
.daybox span.category {
	background-color: #fff;
	color: #000;
	font-size: 13px;
	text-align: center;
	margin-left: 20px;
	width: 7em;
}
@media (max-width: 767px) {
	.daybox{
		width: 100%;
		float: none;
	}
	.daybox span.category{
		 margin-left: 0px;
	}
	#news_list li{
		margin-bottom: 15px;
		padding-bottom: 15px;
		border-bottom: 1px solid #666;
	}
	#news_list li:last-child{
		border-bottom: none;
	}
	#consent_txt{
		margin: 20px auto 0!important;
	}
}


/*-------- section#contact --------*/
#contact{
	margin-top: 0;
}
@media (max-width: 767px) {
	#contact{
		padding: 70px 0;
		margin-top: -20px;
	}
}


/* =======================================
    配下ぺージ 共通 
======================================= */
.ttl_page{
	background:url(../img/common/bg_ttl_page.jpg) no-repeat top center;
	font-size: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 265px;
	text-align: center;
	text-shadow: 0 0px 8px rgba(0, 0, 0, 0.8);
	letter-spacing: -1px;
	font-weight: bold;
	color: #fff;
}
.ttl_page span{
	padding-top: 70px;
}
#main_box{
	min-height: 500px;
	overflow:hidden;
	padding: 0 0 100px;
	margin: 40px auto 0;
}
@media (max-width: 767px) {
	.ttl_page{
		font-size: 22px;
		height: 180px;
	}
	.ttl_page span{
		padding-top: 50px;
	}
	#main_box{
		width: 100%;
		min-height: 100%;
		margin: 20px auto 0;
		padding: 0 0 50px
	}
}

/* #topicPath */
#topicPath{
	box-sizing: border-box;
	margin: 10px auto 0;
	padding: 0 15px;
	max-width: 960px;
}
#topicPath li, #detail_topicPath li {
	color: #333;
	display: inline;
	font-size: 12px;
	list-style-type: none;
	padding-top: 3px;
}
#topicPath li.home_icon, #detail_topicPath li.home_icon {
	background: rgba(0, 0, 0, 0) url(../img/common/icon_home_pc.gif) no-repeat scroll left center / 14px auto;
	padding-left: 20px;
}
#topicPath li a {
	background: rgba(0, 0, 0, 0) url("../img/common/arrow_03.png") no-repeat scroll right center / 12px auto;
	color: #333;
	margin-right: 5px;
	padding-right: 20px;
	text-decoration: underline;
}
#topicPath li a:hover{text-decoration: none; opacity:1;}
@media (max-width: 767px) {
	#topicPath ul{
		width: 100%;
		overflow: hidden;
		box-sizing: border-box;
	}
	#topicPath li span{
		word-break: break-all !important;
	}
}



/*================================================
   以下、お問い合わせ
==================================================*/
/* .contact_box */
.contact_box p.text_top{
	margin: 0 auto 30px;
	text-align: center;
}
.contact_box .tb_box{
	box-shadow: none;
	padding: 0;
}
.contact_box .tb_box tr th,
.contact_box .tb_box tr td{
	border-bottom: 1px dotted #ccc !important;
}
.contact_box .tb_box tr:first-child th,
.contact_box .tb_box tr:first-child td{
	border-top: 1px dotted #ccc !important;
}
.contact_box .tb_box tr th{
	padding: 25px 0;
}
@media (max-width: 767px) {
	.contact_box .tb_box{
		margin: 0 auto;
		width: 96%;
	}
	.contact_box .tb_box tr th{
		padding: 10px 0 ;
		border-right:none !important;
	}
	.contact_box .tb_box tr th{
		border-bottom: none !important;
	}
	.contact_box .tb_box tr:first-child td{
		border-top: none !important;
	}
}

/* .error */
.error{
	color: #B70000;
	font-size: 90%;
	margin-top: 5px;
}

/* .required */
.required{
	color: #fff;
	background: #5173ab;
	font-size: 80%;
	display: inline-block;
	font-weight: bold;
	padding: 0 10px;
	margin-left: 1.5em;
}


/* .privacy_check_box */
.privacy_check_box{
	margin-top: 30px;
}
.privacy_check_box div{
	display: flex;
	align-items: center;
	justify-content: center;
}
.privacy_check_box a.txt_link{
	color: #333;
}
.privacy_check_box .error{
	text-align: center;
}

/* .link_box */
.link_box{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
}
.link_box .btn_input{
	margin: 0 20px
}
@media (max-width: 767px) {
	.link_box .btn_input{
		margin: 0 10px;
	}
}

/* .ttl_form */
.ttl_form{
	font-size: 20px;
	margin-bottom: 1em;
	text-align: center;
}
@media (max-width: 767px) {
	.ttl_form{
		font-size: 16px;
	}
}


/*-------- 確認ページ --------*/
.confirm_box{
	padding-top: 50px;
}
@media (max-width: 767px) {
	.confirm_box{
		padding-top: 30px;
	}
	.confirm_box .link_box{
		justify-content: space-between;
	}
	.confirm_box .link_box .btn_input {
		margin: 0;
		width: 45%;
	}
}


/*-------- 完了ページ --------*/
.thanks_box {
	padding-top: 50px;
}
.thanks_box p{
	text-align: center;
}
@media (max-width: 767px) {
	.thanks_box {
		padding-top: 30px;
	}
}


/*================================================
   以下、ニュースページ#page_news
==================================================*/
#page_news #news_box{
	overflow:hidden;
	padding-top:20px;
	margin:20px auto 0;
	width: 900px;
}
#page_news #news_box p{
	color: #333 !important;
}
@media (max-width: 767px) {
	#page_news #news_box{
		width:100%;
		margin:0;
		padding:0;
	}
	#news_box .detail_box{
		min-height: 200px !important;
		padding: 0 2%;
		width: 100%;
		box-sizing: border-box;
	}
}

/*---------メインコンテンツ---------*/
#page_news #main_box{
	float:left;
	width: 660px;
	margin-top:0;
}
#page_news .list_box li{
	overflow: hidden;
	border: 1px solid #ddd;
	/*background-color: #f6f6f6;*/
	padding: 20px;
	box-sizing: border-box;
	margin-bottom: 30px;
}
#page_news .news_title{
	font-size: 120%;
	font-weight: bold;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #ddd;
}
.day-cat_box{
	overflow: hidden;
	margin-bottom: 5px;
}
.day-cat_box span.day{
	float: left;
	color: #5173ab;
	font-weight: bold;
}
.day-cat_box span.category {
	background-color: #5173ab;
	color: #fff;
	font-size: 13px;
	text-align: center;
	margin-left: 20px;
	width: 7em;
	float: right;
	display: block;
}
.daybox span.cat_no,
.day-cat_box span.cat_no{
	display: none !important;
}
@media (max-width: 767px) {
	/*ニュースページ共通*/
	#page_news #main_box{
		float:none;
		width: 94%;
		margin:20px 3% 0;
		padding-bottom:30px;
		padding-top:5px;
	}
	#page_news #main_box p{font-size:12px;}

	#page_news .list_box li{
		padding:15px;
		margin-bottom: 15px;
	}
	#page_news .news_title{
		padding-bottom: 8px;
		margin-bottom: 8px;
		font-size: 14px;
		font-weight: bold !important;
	}
	.day-cat_box{
		margin-bottom: 8px;
	}
}


/*---------サイドメニュー---------*/
#page_news #side_box{
	width: 198px;
	float:right;
	border: 1px solid rgba(0, 0, 0, 0.1);
}
#page_news #side_box h3{
	padding:10px;
	font-size:120%;
	text-align: center;
	background: rgba(0, 0, 0, 0.1);
	color:#050e2b;
	font-weight:bold;
}
#page_news #side_box h3 span{
	display: block;
	font-size: 80%;
}
#page_news ul#side_nav{margin:0;}
#page_news #side_box li{
	margin:0;
	padding:15px 10px;
	border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
}
#page_news #side_box li:last-child{
	border-bottom:none;
}
#page_news #side_box li a{
	display:block;
	background:url(/img/common/arrow_03.png) no-repeat scroll right center;
	background-size:10px auto;
	text-decoration:none;
	color: #333 !important;
}
#page_news #side_box li a:hover{
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all  0.5s ease;
	opacity:0.3;
}
@media (max-width: 767px) {
	#page_news #side_box{
		width: 100%;
		float:none;
	}
	#page_news #side_box li{background:rgba(255, 255, 255, 0.8);}
}


/*---------ページャー・ボタン---------*/
/*続きを読む*/
#main_box .detail_page{text-align:right;}
#main_box .detail_page a {
	text-decoration:none;
	background:url(../img/common/arrow_03.png) no-repeat scroll left center;
	background-size:10px auto;
	padding-left:15px;
	color: #000;
}
#main_box .detail_page a:hover{
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all  0.5s ease;
	opacity:0.3;
}

/* #next_prev */
#next_prev {
	overflow: hidden;
	font-size:13px;
	border-top: 1px solid #ddd;
	margin: 30px 0;
}
#next_prev a{
	font-weight:bold;
	display: block;
	border: 1px solid #ddd;
	color: #333;
	font-size: 14px !important;
	padding: 15px 0;
	margin-top: 30px;
}
#next_prev a#nextpage{
	display:block;
	float: right;
	width:22%;
}
#next_prev a#prevpage{
	display:block;
	float: left;
	width:22%;
}
	#prevpage:hover,
	#nextpage:hover{
		text-decoration:none;
		-webkit-transition: all 0.5s ease;
		-moz-transition: all 0.5s ease;
		-o-transition: all 0.5s ease;
		transition: all  0.5s ease;
		background:rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
	#next_prev {
		overflow: hidden;
		font-size:13px;
		border-top: 1px solid #ddd;
		margin: 20px 0;
	}
	#next_prev a{
		font-weight:bold;
		display: block;
		border: 1px solid #ddd;
		color: #333;
		font-size: 12px !important;
		padding: 15px 0;
		margin-top: 20px;
	}
	#next_prev a#nextpage{
		display:block;
		float: right;
		width:40%;
	}
	#next_prev a#prevpage{
		display:block;
		float: left;
		width:40%;
	}
}


/* pager */
.pager:disabled{
	border:none;
}
.pager{
	text-align:center;
}
a.page-numbers,
.pager .current{
	background:rgba(0,0,0,0.02);
	border: 1px solid #ccc;
	padding:2px 8px;
	margin:0 2px;
	color: #f6f6f6;
}
.pager a.page-numbers{
	color:#aaa;
}
.pager .current{
	color:#333;
	background:#FFF;
	border: 1px solid #ccc;
}
a.page-numbers:hover,
.pager .current:hover{
	color:#FFF;
	background:#aaa;
}
@media (max-width: 767px) {
	.pager{
		width: 100%;
	}
	.pager ul{margin-bottom: 0;}
	.pager a.page-numbers,
	.pager .current{
		padding: 5px 8px;
		font-size: 12px;
	}
}

/*記事詳細のimg*/
#news_box .alignleft {
	margin: 0 20px 10px 0;
}
#news_box .alignright {
	margin: 0 0 10px 20px;
}
#news_box .aligncenter{
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	#news_box .alignleft {
		float: none;
		display: block;
		margin: 20px auto;
	}
	#news_box .alignright {
		float: none;
		display: block;
		margin: 20px auto;
	}
	#news_box .aligncenter{
		margin: 20px auto;
	}
}


/* =======================================
    プライバシーポリシー
======================================= */
#privacy_box{
	padding-top: 50px;
}
#privacy_box .txt_box {
	margin: 0 auto 40px;
}
#privacy_box .txt_box p{
	font-size: 16px;
	text-align: center;
}
#privacy_box ul{
	border: 1px solid #ddd;
	padding: 40px 40px 0;
}
#privacy_box li {
	margin-bottom: 40px;
}
#privacy_box p{
	text-align: left ;
}
#privacy_box .s_ul{
	background: #f6f6f6 none repeat scroll 0 0;
	border: medium none;
	box-sizing: border-box;
	padding: 20px;
	width: 700px;
}
#privacy_box .s_ul li{
	list-style:disc !important;
	margin-bottom: 5px;
	margin-left: 20px;
}
@media (max-width: 767px) {
	#privacy_box{
		padding-top: 30px;
	}
	#privacy_box .txt_box {
		margin-bottom: 20px;
	}
	#privacy_box .txt_box p{
		font-size: 12px;
		text-align: left;
	}
	#privacy_box ul{
		border: 1px solid #ddd;
		padding: 20px 20px 0;
	}
	#privacy_box li {
		margin-bottom: 30px;
	}
	#privacy_box li p{
		margin: 0;
		width: 100%;
		font-size: 12px !important;
	}
	#privacy_box .s_ul{
		padding: 10px;
		width: 100%;
		margin: 20px 0 30px;
	}
	#privacy_box .s_ul li{
		font-size: 12px;
	}
}


/* =======================================
    .page_404
======================================= */
.page_404 {
	font-size: 130%;
	font-weight: bold;
	padding-top: 100px;
	text-align: center;
	height:100%;
	min-height: 100%;
}
@media (max-width: 767px) {
	.page_404{
		height:100%;
	}
	.page_404 p{
		padding-top: 50px;
	}
}