@charset "utf-8";
/* CSS Document */

body,h1,h2,h3,p,img,table,a,ul,li{
	margin: 0;
	padding: 0;
	font-family: "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif"
}
img{
	width: 100%;
}
ul{
	list-style: none;
}
.clear{
	clear: both
}

.top_header{
	background: url("../image/header_bg.jpg");
	background-size: cover;
	background-position: center top;
}
.drawer_logo{
	display: block;
	padding-top: 30px;
	width: 60%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
}
.top_header_box{
	width: 100%;
	position: fixed;
	background: white;
	padding-top: 10px;
	margin-left: auto;
	margin-right: auto;
	z-index: 999;
	box-shadow: 0px 0px 5px gray
}
.top_header_logoarea{
	padding-bottom: 5px;
}
.logo{
	width: 40px;
	margin-left: auto;
	margin-right: auto;
}
.logoarea_right{
	display: none;
}
.menu_area{
	display: none;
}
.menu_ul{
	display: none;
}/* チェックボックスは非表示に */
.drawer-hidden {
  display: none;
}
.drawer{
	position: fixed;
	top:5px;
	right: 5px;
    z-index: 9999;
}

/* ハンバーガーアイコンの設置スペース */
.drawer-open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 9999;/* 重なり順を一番上に */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #1a9cd3;
  transition: 0.5s;
  position: absolute;
}

/* 三本線のうち一番上の棒の位置調整 */
.drawer-open span:before {
  bottom: 8px;
}

/* 三本線のうち一番下の棒の位置調整 */
.drawer-open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer-check:checked ~ .drawer-open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
  background: white;
}

#drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
  background: white;
}
  
/* メニューのデザイン*/
.drawer-content {
  width: calc(80% - 60px);
	padding: 20px 30px;
  height: 100%;
  position: fixed;
  top: 0;
  right: -83%;/* メニューを画面の外に飛ばす */
  z-index: 999;
	background: linear-gradient(135deg,#1a9cd3,#004a83);
  transition: .5s;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked ~ .drawer-content {
  right: 0;/* メニューを画面に入れる */
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  transition: .3s linear;
  transform: scale(0);
  opacity: 0;
	z-index: 9998;
}
#drawer-check:checked ~ .overlay {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
	z-index: 9998;
}
.drawer-item a{
	color: white;
	margin-bottom: 7px;
	display: block;
	text-decoration: none
}
.menu_title{
	float: left;
	background: url("../image/arrow.png");
	background-size: auto 90%;
	background-position: center right;
	background-repeat: no-repeat;
	font-size: 14px;
	padding-right: 30px;
}
.menu_li{
	float: left;
	font-size: 14px;
	padding-left: 30px;
	padding-right: 30px;
	border-right: 2px solid white;
}
.menu_li_last{
	float: left;
	font-size: 14px;
	padding-left: 30px;
}
.menu_ul li a{
	color: white;
	font-weight: bold;
	text-decoration: none;
}
.top_header_area{
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	padding-top: 180px;
}
.header_title{
	font-size: 5.3vw;
	padding-top: 80px;
	text-align: center;
	padding-bottom: 120px;
	color: white;
	text-shadow: 0px 0px 10px gray
}
.header_text{
	font-size: 16px;
	color: white;
	margin-top: 10px;
	text-shadow: 0px 0px 10px gray;
	padding-bottom: 100px;
	
}
.sp_none{
	display: none;
}
.scroll_area{
	display: block;
	width: 100px;
	height: 60px;
	margin-left: auto;
	margin-right: auto;
}
.scroll{
	width: 100px;
	display: block;
position : absolute;
}
.wrap{
	padding-top: 60px;
	padding-bottom: 60px;
}
.wrap_area{
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}
.sp_br{
	display: none;
}
.top_contents_box{
	width: 95%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 100px;
}
.top_contents_box_image{
	width: 100%;
}
.top_contents_box_right{
	width: 100%;
}
.top_contents_box_left{
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}
.sp_none{
	display: none;
}
.top_contents_box_title{
	font-size: 24px;
	margin-top: 20px;
	margin-bottom: 10px;
  color: #ACB6E5;
  background: -webkit-linear-gradient(0deg,#1a9cd3,#004a83);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.g_bottom_title{
	margin-left: auto;
	margin-right: auto;
	text-align: center
}
.g_bottom_text{
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	font-size: 14px;
}
.service{
	position: relative;
	overflow: hidden;
	padding: 100px 0 200px ;
}

.service:before {
  content: '';
  position: absolute;
  top: 0;
  width: 140%;
  height: 60%;
  margin: 3% -10% 0;
	background: #1a9cd3;
	background-size: cover;
	background-position: center;
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: center center;
  -webkit-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
  z-index: -1;
}
.service_title{
	color: white;
	font-weight: bold;
	font-size: 28px;
	text-align: center;
}
.service_line{
	background: white;
	height: 30px;
	width: 2px;
	margin-top: 10px;
	margin-left: auto;
	margin-right: auto;
}
.service_wrap{
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}
.service_box{
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 40px;
}
.service_box_title{
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	margin-top: 10px;
	margin-bottom: 10px;
}
.service_box_text{
	text-align: center;
	font-size: 14px;
}
.company{
	background: url("../image/company_bg.jpg");
	background-position: center;
	background-size: cover;
	padding-top: 80px;
	padding-bottom: 80px;
	margin-top: 80px;
}
.company_box{
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
		
}
.company_logo{
	width: 120px;
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
}
.company_table{
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	color: white;
	margin-top: 30px;
	font-size: 14px;
	border-collapse: collapse
}
.company_table th{
	padding-bottom: 20px;
	width: 25%;
	border-bottom: 1px solid #d3d3d4;
	padding-top: 20px;
}
.company_table td{	
	padding-bottom: 20px;
	border-bottom: 1px solid #d3d3d4;
	padding-top: 20px;
}
.company_table a{
	color: white;
	text-decoration: none;
}
.recruit{
	position: relative;
	overflow: hidden;
	padding: 80px 0 200px ;
	margin-top: 80px;
}
.recruit:before {
  content: '';
  position: absolute;
  top: 0;
  width: 140%;
  height: 60%;
  margin: 3% -10% 0;
	background: #1a9cd3;
	background-size: cover;
	background-position: center;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: rotate(2deg);
  -ms-transform: rotate(2deg);
  transform: rotate(2deg);
  z-index: -1;
}
.recruit_wrap{
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	padding-top:240px;
	background: url("../image/recruit.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-top: -160px;
}
.recruit_left{
	width: 60%;
	background: white;
	padding: 30px;
	box-shadow: 0px 0px 10px gray;
}
.recruit_left_inner{
	border-left: 5px solid #1a9cd3;
	padding-left: 15px;
}
.recruit_title{
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 15px;
}
.recruit_bottan{
	background: linear-gradient(90deg,#1a9cd3,#004a83);
	color: white;
	text-decoration: none;
	font-weight: bold;
	display: block;
	width: 80%;
	letter-spacing: 2px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	padding-right: 10px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
	text-align: center;
}
.recruit_bottan span{
	display: block;
	background: url("../image/arrow.png");
	background-position: right center;
	background-repeat: no-repeat;
	background-size: auto 80%;
}
.news{
	background: #ececec;
	padding-top: 60px;
	padding-bottom: 60px;
	margin-top: 80px;
}
.news_title{
	color: #1a9cd3;
	font-weight: bold;
	font-size: 28px;
	text-align: center;
}
.news_line{
	background:#1a9cd3;
	height: 30px;
	width: 3px;
	margin-bottom: 50px;
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
}
.news_ul{
	width: 500px;
	margin-left: auto;
	margin-right: auto;
}
.news_ul li{
	border-top: 1px solid #d3d3d4;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
	padding-right: 20px;
}
.news_ul li:last-child{
	border-bottom: 1px solid #d3d3d4;
}
.news_ul li a{
	text-decoration: none;
}
.day{
	color: #2f2725;
	font-size: 14px;
	background: url("../image/arrow2.png");
	padding-left: 20px;
	background-size: auto 100%;
	background-repeat: no-repeat;
	padding-right: 30px;
}
.news_text{
	font-weight: bold;
	color: #2f2725;
}
.contact{
	background: url("../image/contact_bg.jpg");
	background-position: center;
	background-size: cover;
	padding-top: 80px;
	padding-bottom: 80px
}
.contact_title{
	color: white;
	font-weight: bold;
	text-align: center;
	font-size: 28px;
}
.contact_time{
	font-size: 18px;
	color: white;
	text-align: center;
	margin-top: 30px;
}
.contact_time span{
	display: block;border: 1px solid white;
	width: 180px;
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
}
.contact_tel{
	background: linear-gradient(90deg,#1a9cd3,#004a83);
	color: white;
	text-decoration: none;
	font-weight: bold;
	display: block;
	width: calc(90% - 20px);
	letter-spacing: 2px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	font-size: 20px;
	padding-right: 10px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
	text-align: center;
}
.contact_tel span{
	display: block;
	background-position: leftcenter;
	background-repeat: no-repeat;
	background-size: auto 100%;
}
.footer{
	background: #1a1a1a;
	padding-top: 30px;
}
.footer_border{
	border-top: 2px solid #333333;
	border-bottom: 2px solid #333333;
}
.footer_area{
	width: 90%;
	margin-left: auto;
	padding-top: 40px;
	padding-bottom: 40px;
	margin-right: auto;
	text-align: center
}
.footer_text{
	line-height: 40px;
}
.footer_text a{
	color: white;
	display: block;
	float: left;
	text-decoration: none;
	padding-left: 10px;
	padding-right: 10px;
	font-weight: bold;
}
.footer_logo{
	width: 50px;
	margin-top: 30px;
	margin-left: auto;
	margin-right: auto;
}
.copy{
	color: white;
	font-size: 12px;
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
}
.modal-open{
}
.modal-content {
    position:fixed;
    display:none;
    z-index:2;
    width:60%;
	height: 100%;
	overflow: scroll;
    margin:0;
    padding:10px 20px;
    border:2px solid #aaa;
    background:#fff;
}
.modal-content html{
height:100%;}

.modal-content p {
}

.modal-overlay {
    z-index:1;
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:120%;
    background-color:rgba(0,0,0,0.75);
}
.modal-open:hover {
}
.modal-close {
    color:white;
	background: black;
	padding-top: 10px;
	padding-bottom: 10px;
	text-decoration: none;
	margin-left: auto;
	text-align: center;
	display: block;
	width: 100px;
	font-size: 12px;
	margin-right: auto;
}
.pc_br{
	display: none;
}