@charset "UTF-8";
@import url("grid.css");

body {
	font-size: 16px;
	font-family: "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif,Verdana, Roboto, "Droid Sans";
	line-height: 1.2;
	-webkit-text-size-adjust: 100%;
	color:#333;
	font-weight:normal;
}

/*ページ全体のフェードイン*/
body {
    animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}



/*2行目以降を1文字下げる*/
.indent-1 {
padding-left:1em;
text-indent:-1em;
}






img {
	max-width:100%;
	height: auto;/*高さ自動*/
}
a {
    display:block;
    color: #666;
    text-decoration-line: none;
}
a:hover { 
    color: #999;
}

/*ヘッダー
-------------------------------------*/
header {
	position: relative;
	background-image: linear-gradient(90deg, #006CFF, #000957 30% 70%, #006CFF);
	border-bottom: 2px solid #fff;
	box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.6);
}
.header h1 {
	font-weight:bold;
	color: #fff;
	letter-spacing: 0.2em;
}
@media screen and (max-width: 500px){
.header h1 {
	letter-spacing: 0.1em;
}
}
.header {
	/*display: flex;
    flex-direction: row;*/
    padding: 1.5rem 0 0.5rem;/* 2rem 0 0 0*/
	text-align: center;
}
.header-box {
	margin-left: auto;
	margin-top: 8px;
}
.contact-button {
	padding: 0.5rem 1rem;
	border: 2px solid #000;
	background-color: #E1E1E1
}
.header-box a {
	font-weight: bold;
	color: #000;
}
nav ul {
	display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
	margin: 1rem 0 0 0;
}
nav li {
	flex: 1 0 auto;
}
nav li a {
    text-decoration: none;
    text-align: center;
    width: 100%;
}
nav a:hover {
    background-color: #f7f7f7;    
}
nav a {
    padding: 0.5rem;
}

@media screen and (min-width: 768px){
/* PC時はMENUボタンを非表示 */
#open,#close {
    display: none !important;
}

#navi {
    display: block !important;
}
}

@media screen and (max-width: 768px){
.header {
	flex-direction: column;
    /*margin-bottom: 10px;*/
}
.header #open,#close  {
    position: absolute;
    top: 20px;
    right: 12px;
}
nav ul {
	flex-direction: column;
}
.header li {
	padding-top: 0;
}
/* スマホ時はMENUボタンを表示 */
#open,#close  {
    display: block;
    width: 50px;
    border: none;
    position: absolute;
    top: 20px;
    right: 12px;
}
/* スマホ時はメニューを非表示 */
#navi {
    display: none;
}
}
    
/*メイン画像
-------------------------------------*/
.mainimg img {
    width: 100vw;
}

/*メインコンテンツ
-------------------------------------*/
main {
    margin: 5rem 0 0 0;
}
section {
	margin: 5rem 0;
	padding: 3rem 0;
}
.gray-back {
	background-color: #f4f4f4;
}

/*キャッチコピー
-------------------------------------*/
.catch {
    text-align: center;
}
.catch h2 {
    padding-bottom: 1rem;
}
.under {
    border-bottom: 0.4rem solid #000;
    padding:0 1rem 1rem 1rem;
}
.center {
	text-align: center;
	margin-bottom: 4rem;
}

/*申し込みの流れ
-------------------------------------*/
.flow.row {
	margin-bottom: 3rem;
}

/*フッター
-------------------------------------*/
footer {
    background-color: #f7f7f7;
    padding: 5rem 0;
}
footer h4 {
    border-bottom: 3px solid #ccc;
}

/*お問い合わせ
-------------------------------------*/
.contact-box {
	border: 1px solid #ccc;
	text-align: center;
	padding: 2rem 0;
}
.table {
	margin: 4rem 0;
}
.table th {
	width: 250px;
}

/*コピーライト
-------------------------------------*/
.copyright {
    text-align: center;
    padding: 1rem 0;
    background-color: #000;
}
.copyright a {
    color: #fff;
    text-decoration: none;
	display: inline;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
}
#pagetop a {
    display: block;
    background: #000;
    color: #fff;
    width: 50px;
    padding: 5px;
    text-align: center;
	border-radius: 50px;
}
#pagetop a:hover {
    background: #666;
}

/* 幅768px以下の表示
-------------------------------------*/
@media screen and (max-width: 768px){
	
/*ヘッダー
-------------------------------------*/
.header-box {
	display: none;
}	
/*お問い合わせ
-------------------------------------*/
.table th {
	width: 100%;
	display: block;
}	
.table td {
	display: block;
}
}









/*フェードイン2　スクロールでふわっと*/
.fade_up {
    opacity : 0;
    transform : translate(0, 5px);
    transition : all 0.7s;
}
.fade_up.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

/*フェードイン3　fuwatto"1" ""内の数を変えると順番に、同数だと一緒にふわっとする*/
.fuwatto-wrap [class*='fuwatto'] {
  opacity: 0;
  transform: translate(0, 10px);
  transition: all 0.9s;
}
.fuwatto-wrap [class*='fuwatto'].f-act {
  opacity: 1;
  transform: translate(0, 0); 
}

.fadeInUp {
  opacity : 0;
  transform: translateY(20px);
  transition: 2s;
}



.t1 {
	font-size:1.2em;
	color: #666;
}
.t2 {
	font-size:1.5em;
}
.t3 {
	font-size:1.8em;
}
@media screen and (max-width: 600px) {
.t1 {
	font-size:1em;
}
.t2 {
	font-size:1.2em;
}
.t3 {
	font-size:1.8em;
}
}
@media screen and (max-width: 500px) {
.t1 {
	font-size:1em;
}
.t2 {
	font-size:1.1em;
}
.t3 {
	font-size:1.2em;
}
}


/*文字の影----------------*/
.shadow {
    text-shadow:2px 2px 2px rgba(0,0,0,0.5);
}


	
*, *:before, *:after {
	box-sizing: border-box;
}


.col2{
	width: 480px;
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
}
.col2 > div{
	width: 50%;
	padding: 1em;
	margin: 0 auto;
}
.col2 > div > div{
	position: relative;
	margin: 0 auto;
	text-align: center;
}
@media screen and (max-width: 480px) {
.col2{
	width: 100%;
}
.col2 > div{
	width: 100%;
}
}

.col_1{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.col_1 > div{
	width: 100%;
	margin: 0 auto;
}
.col_1 > div > div{
	position: relative;
	overflow: hidden;
	margin: 0 auto;
}
@media screen and (max-width: 960px) {
	.col_1 > div{
		width: 100%;
	}

.col_1 > div > div{
	position: relative;
	overflow: hidden;
}
}

.qa{
	width: 1000px;
	margin: 0 auto;
	font-size: 1.3em;
}
@media screen and (max-width: 1024px) {
.qa{
	width: 700px;
}
}
@media screen and (max-width: 750px) {
.qa{
	width: 100%;
	font-size: 1.2em;
}
}

/*企業検索部分*/
.company{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.company > div{
	width: 25%;
	padding: 10px;
	/*margin: 0 auto; 中央揃え*/
}
.company > div > div{
	position: relative;
	overflow: hidden;
	border: thin solid #ccc;
	text-align: center;
	padding: 1em;
	background-color: #fff;
	height: 100px;
}
.company a {
  display: block;
}
.company img{
	display: block;
	padding: 1em;
	position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%)
}
@media screen and (max-width: 960px) {
	.company > div{
		width: 25%;
		padding: 5px;
	}
	.company > div > div{
	height: 80px;
}
}
@media screen and (max-width: 480px) {
	.company > div{
		width: 50%;
		padding: 5px;
	}
	.company > div > div{
	height: 80px;
}
	.company img{
	max-width: 150px;
}
}
@media screen and (max-width: 400px) {
	.company > div{
		width: 100%;
		padding: 5px;
	}
	.company > div > div{
	height: 80px;
}
	.company img{
	max-width: 200px;
}
}



/*Q&A　画像サイズ*/
article img {
	max-width: 400px;
	margin: 0 auto;
	text-align: center;
	padding: 1em;
	}
@media screen and (max-width: 500px) {
article img {
	max-width: 100%;
	margin: 0 auto;
	text-align: center;		
	}
}


/* 概要部分
----------------------------------------------------------------*/
.list dl {
padding: 2em 0 0;
border-bottom: 1px solid #ccc;
}

.list dt {
width: 100%;
background-color: #ccc;
text-align: center;
padding: 0.5em 0;
}
.list dd {
text-align: center;
padding: 0.5em 0;
}

@media screen and (min-width: 768px) {
.list dl {
padding: 1em 0 0.7em;
}
.list dt {
clear: left;
float: left;
width: 3em;
background-color: #E4E4E4;
text-align: center;
}
.list dd {
margin-left: 4em;
text-align: left;
}
}

/* 概要部分
----------------------------------------------------------------*/
.list ul {
padding: 0.5em 0;
list-style-type: square;
	max-width: 800px;
	margin: 0 auto;
}

.list li {
text-align: left;
padding-left:0.8em;
text-indent:-0.8em;
margin: 0 auto;
line-height: 1.3em;
padding-bottom: 1em;
}

.box1 {
	max-width: 800px;
	margin: 0 auto;
}


/*画像切り替え
--------------パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important;
	margin: 0 auto;
	}
.sp { display: none !important;
	}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 567px) {
.pc { display: none !important; }
.sp { display: block !important;
	margin: 0 auto;
	}
}
@media only screen and (max-width: 300px) {
.sp { display: block !important;
	width: 100%;
	}
}


.box {
	max-width: 800px;
	margin: 0 auto;
	text-align: left;
}

@media screen and (max-width: 500px) {
.box {
	max-width: 100%;
}
}
#shosai table{
  box-sizing: border-box;
  border-collapse:collapse;
  margin: 0 auto;
  text-align: left;
  width: 100%;
}
#shosai table th,
#shosai table td{
  border: 1px solid #999;
  padding: 1em;
}
#shosai table th{
  background: #eee;
	vertical-align: middle;
	width: 16%;
	text-align: center;
}
#shosai table td{
  background: #fff;
}
#shosai table ul {
    list-style: none;
	margin: 0;
}
#shosai table li {
  text-indent: -1em;
  padding-left: 1em;
	margin: 0;
}
#shosai table li::before {
  content: '・';
}
#shosai table p+p {
    margin-top: 0.5em;
}
#shosai table li+li {
    margin-top: 0.5em;
}
@media (max-width: 800px) {
    #shosai table{
      width: 100%;
    }
    #shosai table th,
    #shosai table td{
      display: block;
		font-size: 1.1em;
    }
    #shosai table td{
		text-align: center;
    }
	#shosai a{
	font-size: 1.1em;
}
    #shosai table th,
    #shosai table td{
      border-top: none;    
    }
#shosai table th{
	width: 100%;
}
    #shosai table tr:first-child th{
      border-top: 1px solid #999;
    }
  }
@media screen and (max-width: 500px){
    #shosai table td{
		text-align: left;
    }
	#shosai table th,
	#shosai table td{
		padding: 0.5em;
	}
}
@media (max-width: 400px) {
    #shosai table th,
    #shosai table td{
		font-size: 1em;
    }
	#shosai a{
	font-size: 1em;
}
  }


.flexbox {
  display: flex;
  width: auto;
	/*align-items:flex-end; /*下揃え*/
}
.flexbox .item1 {
  flex: 0 0 3em;
	/*padding: 0 0 1em;*/
}
.flexbox .item2 {
  flex: 1;
	margin-bottom: 1em;
}
