@CHARSET "UTF-8";
/*
*** basic setting on css/normalize.css ***
*/


/* = common setting
-------------------------------------------------------------- */ 

*{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html{
	overflow-y: scroll;
}
body {
	margin: 0;
	overflow: hidden;
	font-size: 14px;
	font-weight: normal;
	font-family: 'Open Sans',YuGothicM, YuGothic, Meiryo,sans-serif;
	color: #000;
	line-height: 1.7;
	letter-spacing: 1px;
  -webkit-font-smoothing: antialiased;
  -webkit-font-feature-settings: 'palt' 1;
  font-feature-settings: 'palt' 1;
}
@font-face {
  font-family: YuGothicM;
  font-weight: normal;
  src: local('YuGothic-Medium'),
       local('Yu Gothic Medium'),
       local('YuGothic-Regular');
}
a {
	outline: none;
	color: #000;
	text-decoration: none;
	-webkit-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
img{
	max-width: 100%;
	height: auto;
	-webkit-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	vertical-align: bottom;
}
iframe{
	max-width: 100%;
}
h1,h2,h3,h4,h5,h6{
	font-weight: normal;
	margin: 0 0 20px;
}
ul,dl,dt,dd{
	margin: 0;
	padding: 0;
	font-weight: normal;
}
li{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
p{
	margin: 0 0 20px;
}
.sp_none{
	display: none;
}

.btn_link{
	background: #2a5dab;
	border: #2a5dab solid 1px;
	color: #fff;
	display: block;
	padding: 15px 20px;
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
	text-align: center;
  position: relative;
}
.btn_link:hover{
	transform: translateY(-5px);
  box-shadow: 0 12px 10px -6px rgba(0,0,0,.3);
  background: #00638b;
}

table{
	width: 100%;
	border-collapse: collapse;
  border-spacing: 0;
}
table tr{
  border-bottom: #000 solid 1px;
}
table tr:last-child{
  border: 0;
}
table th{
	padding: 10px;
	text-align: left;
  font-weight: normal;
  width: 40%;
  vertical-align: top;
}
table td{
	padding: 10px;
  font-size: 12px;
}
table td a{
  text-decoration: underline;
}
.inner_table tr{
  border: 0;
}
.inner_table th,
.inner_table td{
  padding: 0;
}
.txt_right{
	text-align: right;
}

/* Clearing floats */
.clear:after{
	clear: both;
}
.clear:before,
.clear:after{
	display: table;
	content: "";
}

.accordion dd{
	display: none;
}

.youtube_wrap{
  position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.youtube_wrap iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wrapper{
	width: 90%;
	max-width: 1050px;
	margin: 0 auto;
}

.fa-external-link-alt{
  font-size: 70%;
  margin-left: 5px;
}

/* =header
-------------------------------------------------------------- */

#site_header{
  position: relative;
  padding: 10px 5%;
}
#site_description{
  margin: 0 0 10px;
  font-size: 11px;
  padding-right: 100px;
  line-height: 1.3;
  height: 50px;
}
#header_logo{
  text-align: center;
  display: block;
  width: 250px;
  margin: 0 auto
}
#header_nav__btn{
	position: fixed;
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
	text-align: center;
	z-index: 9999;
  cursor: pointer;
  background: #00638b;
}
#header_nav__btn .border_wrap{
  position: absolute;
	left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
#header_nav__btn .border{
	width: 30px;
	height: 2px;
	background-color: #fff;
	border-radius: 2px;
  display: block;
  margin-bottom: 8px;
  transition: all .4s;
	box-sizing: border-box;
}
#header_nav__btn .border:last-child{
  margin: 0;
}
#header_nav__btn.open .border:nth-of-type(1) {
	-webkit-transform: translateY(10px) rotate(-45deg);
	transform: translateY(10px) rotate(-45deg);
}
#header_nav__btn.open .border:nth-of-type(2) {
	opacity: 0;
}
#header_nav__btn.open .border:nth-of-type(3) {
	-webkit-transform: translateY(-10px) rotate(45deg);
	transform: translateY(-10px) rotate(45deg);
}
#header_nav__inner{
  display: none;
	width: 100%;
	height: 100%;
	background: #00638b;
	z-index: 999;
	position: fixed;
	top: 0;
  left: 0;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
.main_navigation{
  padding: 60px 0;
}
.main_navigation li a{
	display: block;
	padding: 15px;
	position: relative;
  color: #fff;
  border-bottom: #aaa solid 1px;
}
.main_navigation li a i:not(.fa-external-link-alt){
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.sub_nav.open>a i::before{
  content: '\f068';
}
.sub_nav>a{
  pointer-events: none;
}
.sub_nav__inner{
  display: none;
}
.sub_nav__inner .wrapper{
  width: 100%;
  max-width: 1200px;
}
.sub_nav li a{
  padding-left: 30px;
  background: #aaa;
  border-bottom: #fff solid 1px;
}
.sub_nav__inner p{
  display: none;
}
#site_header .pc{
  display: none;
}
#header_tel{
  position: fixed;
  background: #f39800;
  color: #fff;
  width: 50px;
  height: 50px;
  top: 0;
  right: 50px;
  z-index: 999;
  text-align: center;
  font-size: 10px;
  display: flex;
  align-items: center;
  line-height: 1.4;
}
#header_tel .pc_none{
  width: 100%;
}
#header_tel i{
  font-size: 25px;
}
#nav_contact img{
  display: none;
}





/* =Footer
-------------------------------------------------------------- */

#site_footer{
  background: #fff;
  padding: 50px 0 20px;
}
#site_footer .wrapper{
  max-width: 1200px;
}
#footer_logo img{
  width: 250px;
}
#footer_left h2{
  font-size: 11px;
  margin: 0 0 10px;
}
#footer_left p{
  margin: 10px 0;
  font-size: 12px;
}
#footer_tel{
  font-size: 150%;
  display: block;
  text-align: center;
}
#footer_tel span{
  font-size: 30px;
}
#footer_map{
  margin: 30px 0;
}
#footer_map li a{
  display: block;
  padding: 10px;
  position: relative;
  border-bottom: #ccc solid 1px;
}
#footer_map li a i:not(.fa-external-link-alt){
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: #ccc;
}
#footer_map .footer_map__sub li a{
  padding-left: 30px;
  font-size: 90%;
}
#footer_map li#footer_contact a{
  border: 0;
  background: #2a5dab;
  display: block;
  width: 100%;
  max-width: 300px;
  padding: 10px 5px;
  text-align: center;
  color: #fff;
  margin: 20px auto;
}
#footer_map li#footer_contact a:hover{
  transform: translateY(-5px);
  box-shadow: 0 12px 10px -6px rgba(0,0,0,.3);
  background: #00638b;
}
#footer_contact a img{
  width: 30px;
}
#footer_copy{
  text-align: center;
  font-size: 12px;
  margin: 50px 0 0;
}






/* =top
-------------------------------------------------------------- */

#front_slide{
  height: 300px;
}
.front_slide__box{
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 300px;
  position: relative;
  color: #fff;
  padding: 20px 0;
}
.front_slide__inner{
  position: relative;
  height: 100%;
  max-width: 1200px;
}
.front_slide__inner p{
  position: absolute;
  top: 0;
  left: 0;
  font-size: 12px;
  font-weight: bold;
}
.front_slide__inner p span{
  display: inline-block;
  padding: 2px 10px;
  border: #fff solid 1px;
  border-radius: 20px;
  font-size: 150%;
  margin-top: 5px;
}
.front_slide__title{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.front_slide__title h2{
  font-size: 16px;
  margin-bottom: 10px;
  line-height: 1.2;
  font-weight: bold;
}
.front_slide__title h2 span{
  font-size: 150%;
}
.front_slide__title .btn_link{
  width: 90%;
  margin: 0;
}
.front_slide__title .btn_link img{
  width: 25px;
  display: inline;
  vertical-align: middle;
  margin-right: 10px;
}

#front_nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}
#front_nav li{
  width: 50%;
}
.front_nav__box{
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  background: #008fc0;
  color: #fff;
  height: 150px;
}
#front_nav02{
  background: #64c0aa;
}
#front_nav03{
  background: #ebcc47;
}
#front_nav04{
  background: #eb6260;
}
#front_nav05{
  background: #f39800;
}
.front_nav__inner{
  width: 100%;
}
.front_nav__inner img{
  width: 80px;
}
.front_nav__inner p{
  font-size: 12px;
  margin: 10px 0 0;
}
.front_nav__inner .arrow{
  display: inline-block;
  background: #fff;
  width: 40px;
  height: 1px;
  position: relative;
  transition: .3s;
}
.front_nav__inner .arrow::before{
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  height: 1px;
  width: 10px;
  background: #fff;
  transform: rotate(45deg);
  transform-origin: bottom right;
}
.front_nav__box:hover{
	opacity: .8;
}
.front_nav__box:hover .front_nav__inner .arrow{
	transform: translateX(5px);
}
.page_section{
  padding: 30px 0;
}
.page_section h2{
  font-size: 20px;
  text-align: center;
  font-weight: bold;
}
#top_about01{
  max-width: 1200px;
}
#top_about01__inner{
  border: #c9a900 double 6px;
  padding: 20px 10px;
}
#top_about01__inner h2{
  line-height: 1.5;
  margin: 20px 0;
}
#top_about01__inner h2 span{
  font-size: 70%;
}
#top_about01__inner p{
  margin: 0;
}
#top_about01__inner p span{
  font-size: 130%;
}
#top_outline{
  margin-top: -120px;
  padding-top: 120px;
}
.map iframe{
  width: 100%;
  height: 300px;
}





/* =common
-------------------------------------------------------------- */

.page_header{
  background: #2a5dab;
  text-align: center;
  color: #fff;
  padding: 30px 0;
}
.page_title{
  margin: 0;
  font-size: 18px;
}
.header_icon{
  width: 50px;
  display: block;
  margin: 0 auto 10px;
}
.page_container{
  padding: 30px 0 50px;
}

.header_img{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 150px;
}

.bg{
	background: #f2f1f1;
}




/* =Contact
-------------------------------------------------------------- */

span.required{
  color: #a72126;
}
#contact_form{
  max-width: 800px;
}
#contact_form input[type="text"],
#contact_form input[type="email"],
#contact_form input[type="tel"],
#contact_form textarea{
  font-size: 16px;
  padding: 5px;
  background: #f7f8f8;
  border: 0;
  border-radius: 5px;
  line-height: 1.7;
  width: 100%;
}
#contact_form input[type="button"]{
  cursor: pointer;
  font-size: 18px;
  transition: .3s;
  outline: 0;
}
#contact_form dl{
  margin-bottom: 50px;
}
#contact_form dd{
  margin-bottom: 30px;
}
#contact_form dt{
  margin-bottom: 5px;
}
.error_blank{
  color: #a72126;
  font-weight: bold;
}
span.loading {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border-top: 5px solid rgba( 0, 0, 0, 0.5 );
	border-right: 5px solid rgba( 0, 0, 0, 0.5 );
	border-bottom: 5px solid rgba( 0, 0, 0, 0.5 );
	border-left: 5px solid #ffffff;
	-webkit-transform: translateZ( 0 );
	-ms-transform: translateZ( 0 );
	transform: translateZ( 0 );
	-webkit-animation: load-circle 1.0s linear infinite;
	animation: load-circle 1.0s linear infinite;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -30px;
	margin-left: -30px;
}
@-webkit-keyframes load-circle {
	0% {
		-webkit-transform: rotate( 0deg );
		transform: rotate( 0deg );
	}
	100% {
		-webkit-transform: rotate( 360deg );
		transform: rotate( 360deg );
	}
}

@keyframes load-circle {
	0% {
		-webkit-transform: rotate( 0deg );
		transform: rotate( 0deg );
	}
	100% {
		-webkit-transform: rotate( 360deg );
		transform: rotate( 360deg );
	}
}

#thanks_mess p{
  margin-bottom: 50px;
}

#confirm_field{
  display: none;
  margin-top: -100px;
  padding-top: 100px;
}
#confirm_field h2{
  font-size: 16px;
  text-align: center;
  background: #64c0aa;
  color: #fff;
  padding: 20px 5px;
}
#confirm_submit{
  display: flex;
  justify-content: center;
}
#confirm_submit li{
  width: 50%;
  max-width: 350px;
  padding: 0 5px;
}
#confirm_cancel_button{
  background: #aaa;
  border: #aaa solid 1px;
}





/* =consultant
-------------------------------------------------------------- */

#page_consultant .header_img{
  background-image: url('../images/consultant/header.jpg');
}
#page_consultant .page_header{
  background: #eb6260;
}

#consultant_section p{
  text-align: center;
  margin-bottom: 30px;
}
#consultant_list{
  margin-bottom: 50px;
}
#consultant_list li{
  border: #eb6260 solid 2px;
  padding: 20px 10px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
}
#consultant_list li#consultant_list__tel{
  border: 0;
  background: #e6e6e6;
  font-size: 14px;
}
#consultant_list__tel span{
  font-size: 150%;
}





/* =working
-------------------------------------------------------------- */

#page_working .header_img{
  background-image: url('../images/working/header.jpg');
}
#page_working .page_header{
  background: #64c0aa;
}

.working_intro__box{
  margin-bottom: 30px;
}
.working_example h2{
  text-align: left;
	border-bottom: #000 solid 1px;
	font-size: 18px;
	line-height: 1.5;
	padding-bottom: 5px;
}
.working_example__box{
	margin-bottom: 30px;
}
.working_example__box h3{
	font-size: 16px;
	font-weight: bold;
	color: #8fc31f;
	margin-bottom: 10px;
}
.working_example__box p{
	margin: 20px 0 0;
	font-size: 12px;
}

#works_type .wrapper{
	background: #fff;
	width: 100%;
	padding: 30px 5%;
	max-width: 1200px;
}
#works_type__table{
	font-size: 12px;
	max-width: 900px;
	margin: 0 auto;
}
#works_type__table th{
	border: #000 solid 1px;
	padding: 10px;
}
#works_type__table th span{
	font-size: 80%;
}
#works_type__table td{
	border: #000 solid 1px;
	padding: 10px;
}
#works_type__table thead{
	background: #e6e6e6;
}





/* =traning
-------------------------------------------------------------- */

#page_training .header_img{
  background-image: url('../images/training/header.jpg');
}
#page_training .page_header{
  background: #008fc0;
}

.page_nav li{
	margin-bottom: 10px;
}
.page_nav li a{
	padding-left: 30px;
}
.page_nav li a i{
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
}
.page_nav li a{
	background: #008fc0;
	border: #008fc0 solid 1px;
}
.page_nav li:last-child a{
	background: none;
	color: #008fc0;
}
.page_nav li p{
	text-align: center;
	font-size: 12px;
	margin: 5px 0 0;
}

#training_system__txt{
	margin-bottom: 30px;
}
.training_intro__box{
	margin-bottom: 30px;
}
.training_system__wrap{
	width: 100%;
}
.training_system__box{
	background: #fff;
	padding: 20px 5%;
	margin-bottom: 30px;
	width: 100%;
	max-width: 1300px;
}
.training_system__box h3{
	font-size: 18px;
	text-align: center;
}
.training_system__box h4{
	font-size: 16px;
	margin-bottom: 5px;
}
#training_system03 table th,
#training_system03 table td,
#care_about02 table th,
#care_about02 table td{
	border: #000 solid 1px;
	width: 50%;
	text-align: center;
	vertical-align: middle;
	font-size: 12px;
}
#training_system03 p{
	margin: 5px 0 0;
	font-size: 12px;
}
#training_system04{
	background: #fffcd1;
}
#training_system04 table{
	margin-bottom: 3px;
}
#training_system04 table th{
	border: #000 solid 1px;
	text-align: center;
	vertical-align: middle;
	font-size: 12px;
	width: 40%;
}
#training_system04 table td{
	background: #fff;
	border: #000 solid 1px;
	text-align: center;
	vertical-align: middle;
	font-size: 12px;
}
#training_system04 table.good th{
	background: #d3dee5;
}
#training_system04 table.good td{
	background: #eff8fe;
}





/* =care
-------------------------------------------------------------- */

#page_care .header_img{
  background-image: url('../images/care/header.jpg');
}
#page_care .page_header{
  background: #f39800;
}

#care_intro{
	background: #f8f6e4;
}
#care_intro .page_nav{
	margin: 30px 0;
}
#care_about__header p{
	text-align: center;
	margin-bottom: 30px;
}
.care_about__txt{
	margin-bottom: 30px;
}
.care_about__txt h3{
	font-size: 18px;
	position: relative;
	padding-left: 60px;
}
.care_about__txt h3 span{
	background: #f39800;
	color: #fff;
	display: inline-block;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.care_about__txt p.small{
	font-size: 80%;
}
.care_about__inner{
	position: relative;
	width: 100%;
	max-width: 1600px;
	margin: 0 auto 50px;
}




.regulation_block{
  margin-bottom: 40px;
}
.page_section .regulation_block h2{
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
}
.regulation_block p{
  margin-bottom: 10px;
  text-indent: -1em;
  padding-left: 1em;
}
.regulation_block p a{
  color: #2a5dab;
  text-decoration: underline;
}
.regulation_block p a:hover{
  text-decoration: none;
}
.regulation_block p a i{
  display: inline;
}

#link_regulations{
  margin-top: 30px;
  max-width: 600px;
}




/* =RWD
-------------------------------------------------------------- */

@media screen and (min-width: 768px){
  .pc_none{
		display: none;
	}
	.sp_none{
		display: block;
	}
	a[href*="tel:"] {
    pointer-events: none !important;
    cursor: default !important;
    text-decoration: none !important;
  }
  #site_header{
    padding: 5px 5%;
    height: 50px;
    background: #fff;
  }
  #site_description{
    height: auto;
    margin: 0;
  }
  #header_logo{
    margin: 0;
  }
  #footer_tel{
    display: inline;
    text-align: left;
  }
  #header_tel{
    width: auto;
    height: auto;
    right: 60px;
    top: 10px;
    background: none;
    color: #000;
    font-size: 12px;
    position: absolute;
  }
  #header_tel .sp_none span{
    font-size: 20px;
  }
  #site_footer__inner{
    display: flex;
  }
  #footer_map{
    margin: 0 0 0 auto;
  }
  #footer_map li{
    margin-bottom: 20px;
  }
  #footer_map li a{
    display: inline;
    border: 0;
    padding: 0;
  }
  #footer_map li a:hover{
    text-decoration: underline;
  }
  #footer_map .footer_map__sub li{
    margin-bottom: 5px;
    padding-left: 10px;
  }
  #footer_map .footer_map__sub li a{
    padding: 0;
  }
  #footer_map li a i:not(.fa-external-link-alt){
    display: none;
  }
  #footer_copy{
    text-align: left;
  }
  #footer_map li#footer_contact a:hover{
    text-decoration: none;
  }
  #front_slide{
    height: 450px;
  }
  .front_slide__box{
    height: 450px;
    padding: 30px 0 50px;
  }
  .front_slide__inner p{
    font-size: 20px;
  }
  .front_slide__inner p span{
    padding: 5px 20px;
    border-radius: 50px;
  }
  .front_slide__title h2{
    font-size: 28px;
  }
  .front_nav__box{
    height: 200px;
  }
  .front_nav__inner p{
    font-size: 16px;
  }
  #top_about01__inner{
    text-align: center;
  }
  #top_about02{
    text-align: center;
  }
  #top_outline__map{
    display: flex;
    align-items: flex-end;
  }
  #top_outline__map .map{
    width: 70%;
  }
  #top_outline__map p{
    width: 30%;
    padding-left: 20px;
    margin: 0;
  }
  table th{
    width: 20%;
  }
  .page_section{
    padding: 50px 0;
  }
  .page_container{
    padding: 50px 0 80px;
  }
  .page_header{
    padding: 50px 0;
  }
  #contact_form p{
    text-align: center;
    margin-bottom: 50px;
  }
  #contact_form dl{
    margin-bottom: 50px;
    overflow: hidden;
  }
  #contact_form dt{
    clear: both;
    float: left;
    width: 25%;
    font-size: 16px;
    padding: 20px 0;
  }
  #contact_form dd{
    float: right;
    width: 75%;
    padding: 20px 0;
    margin: 0;
  }
  #thanks_mess p{
    text-align: center;
  }
  #consultant_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #consultant_list li{
    width: 31%;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
  }
  #consultant_list li#consultant_list__tel{
    width: 65.5%;
  }
  .consultant_list__inner{
    width: 100%;
  }
  .header_wrap{
    display: flex;
    flex-direction: row-reverse;
  }
  .page_header{
    width: 40%;
  }
  #page_contact .page_header{
    width: 100%;
  }
  .header_img{
    width: 60%;
    height: auto;
  }
  #consultant_list li{
    height: 130px;
  }
	.working_intro__box{
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
	.working_intro_txt{
		width: 50%;
	}
	.working_intro__box img{
		width: 45%;
	}
	#working_intro02{
		flex-direction: row-reverse;
		align-items: flex-end;
		margin-top: -50px;
	}
	#works_type__table th{
		width: 45%;
	}
	.page_nav{
		display: flex;
		justify-content: center;
	}
	.page_nav li{
		padding: 0 5px;
	}
	.page_nav li a{
		width: auto;
		max-width: 100%;
		padding: 10px 30px;
		margin: 0;
	}
	.training_intro__box{
		position: relative;
		padding-bottom: 150px;
	}
	.training_intro__txt{
		background: #fff;
		padding: 20px;
		width: 70%;
		position: relative;
		z-index: 5;
	}
	.training_intro__box img{
		position: absolute;
		bottom: 0;
		z-index: 1;
		width: 60%;
		right: 0;
	}
	#training_intro02{
		padding-bottom: 50px;
	}
	#training_intro02 .training_intro__txt{
		margin: 0 0 0 auto;
	}
	#training_intro02 img{
		right: auto;
		left: 0;
	}
	.training_system__wrap{
		max-width: 1300px;
		display: flex;
		justify-content: space-between;
	}
	.training_system__wrap .training_system__box{
		width: 49%;
		padding: 20px;
	}
	#training_system01 p{
		text-align: center;
	}
	#care_intro{
		text-align: center;
	}
	.care_about__txt{
		width: 65%;
	}
	.care_about__img{
		width: 30%;
		position: absolute;
		bottom: 0;
		right: 0;
	}
	#care_about02 .care_about__txt{
		margin: 0 0 0 auto;
	}
	#care_about02 .care_about__img{
		bottom: auto;
		right: auto;
		top: 0;
		left: 0;
	}
	.care_about__inner{
		margin: 0 auto 80px;
	}
}
@media screen and (min-width: 1024px){
  body{
    font-size: 16px;
  }
  #front_slide{
    height: 650px;
  }
  .front_slide__box{
    height: 650px;
    padding: 30px 0 50px;
  }
  .front_slide__inner p{
    font-size: 26px;
  }
  .front_slide__inner p span{
    padding: 5px 20px;
    border-radius: 50px;
  }
  .front_slide__title h2{
    font-size: 40px;
    margin-bottom: 20px;
  }
  .front_slide__title .btn_link{
    font-size: 18px;
    max-width: 400px;
  }
  .front_nav__box{
    height: 350px;
  }
  .front_nav__inner img{
    width: 150px;
  }
  .front_nav__inner p{
    font-size: 20px;
    margin: 20px 0;
  }
  .page_section h2{
    font-size: 30px;
    margin-bottom: 30px;
  }
  #top_about01__inner{
    padding: 50px 10px;
  }
  #top_about01__inner p{
    font-size: 18px;
    line-height: 40px;
  }
  #top_about02 p{
    font-size: 18px;
    line-height: 2;
    margin-bottom: 30px;
  }
  table th{
    font-size: 18px;
    padding: 20px 0;
  }
  .inner_table th{
    font-size: 16px;
  }
  table td{
    font-size: 16px;
    padding: 20px;
  }
  .page_header{
    padding: 80px 0;
  }
  .page_title{
    font-size: 24px;
  }
  .header_icon{
    width: 100px;
    margin-bottom: 30px;
  }
  #contact_form{
    padding: 80px 0 150px;
  }
  #confirm_field h2{
    font-size: 24px;
  }
  #consultant_list li{
    font-size: 22px;
    height: 160px;
  }
  #consultant_list li#consultant_list__tel{
    font-size: 22px;
  }
  #consultant_section p{
    font-size: 18px;
    margin-bottom: 50px;
  }
	#working_intro h2{
		margin-bottom: 50px;
	}
	.working_intro_txt p{
		font-size: 18px;
		margin-bottom: 30px;
	}
	.working_example__box{
		margin-bottom: 50px;
	}
	.working_example__box h3{
		font-size: 24px;
		margin-bottom: 30px;
	}
	#works_type .wrapper{
		padding: 50px 0;
	}
	#works_type__table{
		font-size: 16px;
	}
	.training_intro__txt{
		font-size: 18px;
		padding: 30px;
	}
	.training_intro__box{
		padding-bottom: 200px;
		margin-bottom: 80px;
	}
	#training_intro02{
		padding-bottom: 80px;
	}
	#training_system__txt{
		font-size: 18px;
	}
	.training_system__box{
		padding: 50px;
		margin-bottom: 50px;
	}
	.training_system__box h3{
		font-size: 30px;
	}
	#training_system01 p{
		font-size: 20px;
		margin-bottom: 50px;
	}
	#training_system02 h3{
		margin-bottom: 50px;
	}
	.training_system__wrap .training_system__box{
		padding: 50px;
	}
	#training_system03 table th, 
	#training_system03 table td,
	#training_system04 table th,
	#training_system04 table td,
	#care_about02 table th,
	#care_about02 table td{
		font-size: 14px;
		padding: 10px;
	}
	#training_system03 p{
		font-size: 14px;
	}
	.training_system__box h4{
		font-size: 18px;
	}
	.page_nav li a{
		font-size: 20px;
		padding: 10px 80px;
	}
	.care_about__img{
		bottom: auto;
		top: 0;
	}
	#care_intro p{
		font-size: 18px;
	}
	#care_about__header p{
		font-size: 18px;
		margin-bottom: 50px;
	}
	.care_about__txt h3{
		font-size: 27px;
		margin-bottom: 30px;
	}
	.care_about__txt p{
		font-size: 18px;
		margin-bottom: 30px;
	}
	.care_about__inner{
		margin-bottom: 100px;
	}
  .regulation_block p{
    font-size: 14px;
  }
}

@media screen and (min-width: 1100px){
  #page{
    padding-top: 100px;
  }
  #site_header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    box-shadow: 0 2px 3px rgba(0,0,0,.2);
  }
  #header_left{
    margin: 0 auto 0 0;
  }
  #site_description{
    padding: 0;
  }
  #header_nav__btn{
    display: none;
  }
  #header_nav{
    align-self: flex-end;
    padding-bottom: 20px;
  }
  #header_nav__inner{
    display: block;
    position: static;
    background: none;
    overflow: visible;
    z-index: -1;
  }
  .main_navigation{
    display: flex;
    justify-content: center;
    padding: 0;
  }
  .main_navigation li{
    margin: 0 20px;
  }
  .main_navigation li a{
    color: #000;
    border: 0;
    display: inline;
    padding: 10px 0;
    font-size: 14px;
  }
  .main_navigation li a::after{
    content: '';
    border-right: 8px solid transparent;
    border-bottom: 10px solid #00638b;
    border-left: 8px solid transparent;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: .3s;
  }
  .main_navigation li:hover a::after{
    opacity: 1;
  }
  .main_navigation li a i:not(.fa-external-link-alt){
    display: none;
  }
  .sub_nav>a{
    pointer-events: auto;
  }
  .sub_nav__inner{
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #00638b;
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
  }
  .sub_nav:hover .sub_nav__inner{
    opacity: 1;
    visibility: visible;
  }
  .sub_nav__inner .wrapper{
    display: flex;
    align-items: center;
  }
  .sub_nav__inner p{
    margin: 0;
    color: #fff;
    display: block;
    width: 15%;
    text-align: center;
    font-size: 20px;
  }
  .sub_nav ul{
    display: flex;
    flex-wrap: wrap;
  }
  .sub_nav ul li{
    width: 33.33%;
    padding: 5px 10px;
    margin: 0;
  }
  .sub_nav ul li a{
    display: block;
    border: #fff solid 1px;
    text-align: center;
    width: 100%;
    padding: 10px;
    background: none;
    color: #fff;
  }
  .sub_nav ul li a::after,
  #nav_contact a::after{
    content: none !important;
  }
  .sub_nav ul li a:hover{
    background: rgba(255,255,255,.3);
  }
  #site_header .pc{
    display: block;
  }
  #site_header .sp{
    display: none;
  }
  #nav_contact{
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    height: 100%;
  }
  #nav_contact a{
    color: #fff;
    background: #2a5dab;
    display: flex;
    align-items: center;
    text-align: center;
    height: 100%;
    width: 100px;
    font-size: 12px;
  }
  #nav_contact a:hover{
    background: #00638b;
  }
  #nav_contact a span{
    width: 100%;
  }
  #nav_contact a img{
    display: block;
    width: 40px;
    margin: 0 auto 5px;
  }
  #header_tel{
    position: static;
    width: auto;
    height: auto;
    background: none;
    color: #000;
    font-size: 18px;
  }
  #header_tel .sp_none span{
    font-size: 30px;
  }
  #header_right{
    margin: 0 0 0 auto;
    padding-right: 90px;
  }
  #header_right p{
    margin: 0;
    font-size: 12px;
  }
  #footer_map ul{
    display: flex;
  }
  #footer_map ul.footer_map__sub{
    display: block;
  }
  #footer_map li{
    margin-right: 20px;
  }
  #footer_map ul.footer_map__sub li{
    margin: 0;
  }
  #footer_map li#footer_contact{
    margin: 0;
  }
  #footer_map li#footer_contact a{
    font-size: 14px;
    padding: 20px;
    margin: 0;
  }
  #footer_left h2{
    font-size: 14px;
  }
  #footer_logo img{
    width: 350px;
  }
  #footer_left p{
    font-size: 14px;
  }
}


@media screen and (min-width: 1300px){
  #site_description{
    font-size: 12px;
    margin-bottom: 10px;
    padding: 0;
  }
  #header_logo{
    width: 380px;
  }
  #nav_contact a{
    width: 140px;
  }
  #header_right{
    padding-right: 140px;
  }
  .main_navigation li a{
    font-size: 16px;
  }
  #footer_map li{
    margin-right: 50px;
  }
}