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


/******************************************************

PC設定 1200px以上の場合に適用 

*******************************************************/

/* 全体の設定 */

html {
	color: #222;
	}

body {
	width: 100%;
	font-family: 'Hiragino Sans', YuGothic, 'Yu Gothic medium', Meiryo, 'sans-serif';
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
	min-width: 1200px;
	font-size: 16px;
	}

a {
	text-decoration: none;
	color: #222;
	cursor: pointer;
	}

p {
	color: #222;
	line-height: 1.8;
	}

img {
	border: none;
	}

* {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	}

.container {
    padding: 130px 0;
}
	
.wrapper {
	width: 95%;
	max-width: 1200px;
	margin: 0 auto;
	}

.wrapper_small {
	width: 95%;
	max-width: 960px;
	margin: 0 auto;
	}

.pc {
	display: block;
	}

.sp {
	display: none;
	}



/* header */
.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9000;
}

.header__left {
	position: absolute;
	top: 0;
	left: 0;
	background-color: #022347;
	padding: 30px;
	border-radius: 0 0 10px 0;
	z-index: 1000;
	transition: .2s;
}

.header__left:hover {
	background-color: #013772;
}

.header__logo {
	display: block;
	width: 60px;
	height: auto;
}

.header__nav {
	width: 100%;
	height: 80px;
	box-shadow: 0 0 5px #DDD;
	position: absolute;
	right: 0;
	top: 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	z-index: 10;
}

.header__nav-box {
	display: flex;
	margin-right: 0.5%;
}

.header__nav-item {
	margin-left: 20px;
	display: flex;
	align-items: center;
}

.header__nav-link {
	font-size: 15px;
	font-weight: 600;
}

.header__nav-link:hover {
	color: #013772;
}

.header__nav-item:last-child .header__nav-link {
	background-color: #ea8000;
	display: inline-block;
	color: #FFF;
	padding: 10px 25px;
	border-radius: 30px;
	transition: .2s;
}

.header__nav-item:last-child .header__nav-link:hover {
	background-color: #f46800;
}





	
	
/******************************************************

タブレットの設定 960px~1199pxの場合に適用 

*******************************************************/

@media screen and (max-width: 1199px){

/* 全体の設定 */
body {
	max-width: 1199px;
	min-width: 100%;
	}
	


	
	

}





/******************************************************

タブレットの設定 768px~959pxの場合に適用 

*******************************************************/

@media screen and (max-width: 959px){

/* 全体の設定 */
body {
	max-width: 959px;
	min-width: 100%;
	}
	
	
	
/* header */
.header__nav {
	display: none;
}

	

}



	
/******************************************************

SPの設定 767px以下の場合に適用 

*******************************************************/

@media screen and (max-width: 767px){

/* 全体の設定 */
body {
	max-width: 767px;
	font-size: 14px;
	}
	
.container {
    padding: 70px 0;
}

.pc {
	display: none;
	}

.sp {
	display: block;
	}

.wrapper,
.wrapper_small {
	width: calc(100% - 40px);
	}
	
	
	
/* header */
.header__left {
	padding: 15px;
	border-radius: 0 0 7px 0;
}

.header__logo {
	width: 30px;
}



}