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


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

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

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

/* 全体の設定 */
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);

html {
	color: #000;
	}

body {
	width: 100%;
	font-family: 'Noto Sans Japanese',YuGothic,'Yu Gothic',"meiryo","sans-serif","lucida grande","hiragino kaku gothic proN";
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
	min-width: 940px;
	font-size: 14px;
	}

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

p {
	color: #000;
	line-height: 1.6;
	}

img {
	border: none;
	}

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

.wrapper {
	width: 95%;
	max-width: 940px;
	margin: 0 auto;
	}

.pc {
	display: block;
	}

.sp {
	display: none;
	}



/* header */
.header {
	width: 100%;
	height: 84px;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #FFF;
	z-index: 9000;
	box-shadow: 0 0 10px #CCC;
}

.header__logo {
	display: block;
	width: auto;
	height: 30px;
	position: absolute;
	top: 27px;
	left: 2%;
	transition: .2s;
}

.header__logo:hover {
	opacity: .8;
}

.globalNav {
	height: 20px;
	position: absolute;
	right: 2%;
	top: 34px;
}

.globalNav__box {
	display: flex;
}

.globalNav__item {
	margin-left: 20px;
}

.globalNav__link {
	color: #012E53;
	font-weight: 500;
}



/* secondmenu */
.secondmenu {
	width: 100%;
	margin-top: 154px;
}

.secondmenu__box {
	margin: 0 100px 0 auto;
	display: flex;
	justify-content: space-between;
}

.secondmenu__item {
	width: 32%;
}

.secondmenu__link {
	display: block;
	position: relative;
	transition: .2s;
}

.secondmenu__link:hover {
	opacity: .8;
}

.secondmenu__img {
	display: block;
	width: 100%;
	height: auto;
}

.secondmenu__link span {
	position: absolute;
	left: 14px;
	bottom: 14px;
	font-size: 21px;
	color: #FFF;
	font-style: italic;
	font-family: futura;
	text-shadow: 0 3px 6px #000;
}



/* pageTitle */
.pageTitle {
	font-size: 70px;
	font-family: futura;
	font-style: italic;
	margin-bottom: 84px;
}

.pageTitle__jp {
	font-style: normal;
	font-size: 18px;
	font-weight: 600;
	margin-left: 35px;
	vertical-align: 10px;
}




/* main */
.main {
	width: 100%;
	padding: 100px 0 140px 0;
}



/* footer */
.footer__cta {
	width: 100%;
	padding: 50px 0;
	background-color: #9AA4AB;
}

.footerCta__box {
	display: flex;
	justify-content: space-between;
}

.footerCta__item {
	width: 45.4%;
}

.footerCta__link {
	background-color: #FFF;
	width: 100%;
	height: 120px;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 25px;
	font-weight: 600;
	color: #002E54;
	transition: .2s;
}

.footerCta__link:hover {
	background-color: #002E54;
	color: #FFF;
}

.footerCta_jp {
	font-size: 14px;
	display: block;
}

.footerCta__txt {
	text-align: center;
}

.footer {
	width: 100%;
	padding-top: 70px;
	background-color: #002E54;
}

.footer__wrapper {
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding-bottom: 50px;
}

.footer__left {
	width: 215px;
	margin-left: 7%;
}

.footer__logo {
	display: block;
	width: 100%;
	height: auto;
	margin-top: 30px;
}

.footer__right {
	margin-right: 7%;
}

.footer__nav {
	display: flex;
}

.footerNav__item {
	margin-left: 80px;
}

.footerNavChildren__item {
	line-height: 2.4;
}

.footerNavChildren__link {
	font-size: 16px;
	color: #FFF;
}

.footer__copyright {
	border-top: 1px solid #FFF;
	height: 55px;
	line-height: 55px;
	text-align: center;
	color: #FFF;
}




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

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

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

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

/* 全体の設定 */
body {
	max-width: 939px;
	min-width: 100%;
	}
	
	
	
/* secondmenu */
.secondmenu__box {
	margin: 0 auto;
}
	
	
}

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

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

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

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

/* 全体の設定 */
body {
	max-width: 767px;
	}

.pc {
	display: none;
	}

.sp {
	display: block;
	}

.wrapper,
.wrapper_small {
	width: calc(100% - 40px);
	}
	
	
	
/* header */
.header {
	height: 42px;
	box-shadow: 0 0 7px #CCC;
}

.header__logo {
	display: block;
	width: auto;
	height: 20px;
	position: absolute;
	top: 10px;
	left: 2%;
}
	
	
	
/* secondmenu */
.secondmenu {
	margin-top: 63px;
}

.secondmenu__box {
	margin: 0 auto;
}

.secondmenu__item {
	width: 31%;
}

.secondmenu__link span {
	position: absolute;
	left: 5px;
	bottom: 5px;
	font-size: 13px;
	color: #FFF;
}



/* pageTitle */
.pageTitle {
	font-size: 35px;
	font-family: futura;
	font-style: italic;
	margin-bottom: 35px;
}

.pageTitle__jp {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-left: 0;
	margin-top: 3px;
}




/* main */
.main {
	width: 100%;
	padding: 50px 0 70px 0;
}


	
	
/* footer */
.footer__cta {
	padding: 20px 0;
}

.footerCta__item {
	width: 47%;
}

.footerCta__link {
	height: 80px;
	font-size: 20px;
}

.footerCta_jp {
	font-size: 10px;
}

.footerCta__txt {
	text-align: center;
}

.footer {
	padding-top: 20px;
}

.footer__wrapper {
	width: 100%;
	display: block;
	padding-bottom: 40px;
}

.footer__left {
	width: 100%;
	margin-left: 0;
}

.footer__logo {
	margin: 0 auto 30px auto;
	width: 45%;
}

.footer__right {
	width: 100%;
	margin: 0 auto;
}

.footer__nav {
	display: flex;
	justify-content: space-between;
	width: 45%;
	margin: 0 auto;
}

.footerNav__item {
	margin-left: 0;
	width: 45%;
}

.footerNavChildren__item {
	line-height: 2;
}

.footerNavChildren__link {
	font-size: 10px;
}

.footer__copyright {
	font-size: 10px;
	height: 40px;
	line-height: 40px;
}




}