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


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

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

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

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

html {
	color: #222;
	}

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: 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: 120px 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;
	}

.btn {
	display: block;
	width: 300px;
	height: 70px;
	text-align: center;
	background-color: #1b3190;
	color: #FFF;
	font-weight: 500;
	line-height: 70px;
	transition: .2s;
	position: relative;
}

.btn::before {
	display: inline-block;
	content: "";
	width: 10px;
	height: 2px;
	background-color: #FFF;
	transform: rotate(45deg);
	position: absolute;
	right: 20px;
	top: 31px;
	transition: .2s;
}

.btn::after {
	display: inline-block;
	content: "";
	width: 10px;
	height: 2px;
	background-color: #FFF;
	transform: rotate(-45deg);
	position: absolute;
	right: 20px;
	bottom: 31px;
	transition: .2s;
}

.btn:hover {
	background-color: #d71108;
}

.btn:hover::before {
	right: 15px;
}

.btn:hover::after {
	right: 15px;
}

.h2 {
	font-size: 36px;
	font-weight: 500;
	margin-bottom: 25px;
}




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

.header__link {
	position: fixed;
	top: 0;
	left: 0;
	width: 360px;
	height: 80px;
	background-color: #FFF;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .2s;
}

.header__link:hover {
	opacity: .8;
}

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

.globalNav {
	position: fixed;
	top: 0;
	right: 0;
}

.globalNav__box {
	display: flex;
}

.globalNav__item {
	height: 80px;
	display: flex;
	align-items: center;
	margin-left: 40px;
}

.globalNav__link {
	color: #FFF;
	font-weight: 500;
	transition: .2s;
}

.globalNav__link:hover,
.globalNav__link.current {
	color: #d71108;
}

.globalNav__item:last-child {
	width: 180px;
	height: 80px;
}

.globalNav__item:last-child .globalNav__link {
	display: block;
	width: 100%;
	height: 100%;
	background-color: #1b3190;
	text-align: center;
	line-height: 80px;
	color: #FFF;
	font-weight: 500;
	transition: .2s;
}

.globalNav__item:last-child .globalNav__link:hover {
	background-color: #d71108;
}

.scroll.header {
	background-color: #FFF;
}

.scroll .globalNav__link {
	color: #222;
}

.scroll .globalNav__link:hover,
.scroll .globalNav__link.current {
	color: #d71108;
}

.scroll .globalNav__item:last-child .globalNav__link:hover {
	color: #FFF;
}



/* mv */
.mv {
	width: 100%;
	height: calc(100vh - 50px);
	background-size: cover;
	background-position: center center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.mv__h1 {
	font-size: 60px;
	font-weight: 500;
	color: #FFF;
	border-bottom: 7px solid #1b3190;
	padding-bottom: 5px;
}



/* breadcrumb */
.breadcrumb__box {
	display: flex;
	height: 50px;
	line-height: 50px;
	margin: 0 auto;
}

.breadcrumb__item {
	margin-right: 10px;
}

.breadcrumb__item:not(:first-child)::before {
	content: ">";
	margin-right: 10px;
	font-size: 14px;
}

.breadcrumb__link:hover {
	text-decoration: underline;
}



/* contact */
.contact {
	width: 100%;
	background-color: #1b3190;
}

.contact__ttl,
.contact__ttl span {
	color: #FFF;
	text-align: center;
	margin-bottom: 40px;
}

.contact__txt {
	color: #FFF;
	font-size: 20px;
	text-align: center;
}

.contact__time {
	color: #FFF;
	font-size: 15px;
	margin-top: 20px;
	text-align: center;
}

.contact__btn {
	width: 95%;
	max-width: 960px;
	border: 1px solid #FFF;
	margin: 20px auto 35px;
	background-color: transparent;
	color: #FFF;
}

.contact__btn::before {
	top: 30px;
}

.contact__btn::after {
	bottom: 30px;
}

.contact .sp {
	display: none;
}

.contact__btn:hover {
	color: #FFF;
}



/* footer */
.footer__map,
.footer__map iframe {
	display: block;
	width: 100%;
	height: 500px;
}

.footer {
	width: 100%;
	padding: 80px 0 30px 0;
	font-size: 13px;
	background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)),url("/img/common/bg_footer.jpg");
	background-size: cover;
	background-position: center center;
	}

.footer__wrapper {
	display: flex;
}

.footer__left {
	width: 30%;
	height: 100%;
	padding-right: 50px;
	border-right: 1px solid #DDD;
	}

.footer__logo {
	display: block;
	width: 100%;
	max-width: 300px;
	height: auto;
	margin-bottom: 25px;
	}

.footer__name {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 5px;
	color: #FFF;
	}

.footer__link {
	font-size: 13px;
	margin-bottom: 15px;
	}

.footer__link a,
.footer__info {
	color: #FFF;
}

.footer__copyright {
	font-size: 14px;
	text-align: center;
	margin-top: 30px;
	color: #FFF;
	}

.footer__right {
	width: 70%;
	padding-left: 80px;
	}

.footer__nav {
	display: flex;
}

.footer__right ul li a {
	color: #FFF;
}

.footer__right ul li {
	line-height: 2;
	}

.footer__right > ul > li {
	width: 25%;
	}

.footer__right > ul > li > ul > li {
	font-weight: bold;
	font-size: 13px;
	margin-bottom: 5px;
	}
	
.footer__right ul li ul li ul li {
	font-size: 12px;
	font-weight: normal;
	}

.footer__right ul li ul li ul li::before {
	content: "-";
	color: #FFF;
}

.footer__right > ul > li > ul li ul {
	margin-top: 5px;
}

.footer__right ul li ul li ul li::before {
	content: "-";
	margin-right: 5px;
	}

.footer__right a:hover {
	text-decoration: underline;
}






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

タブレットの設定 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 */
.globalNav {
	display: none;	
}
	
.scroll.header {
	background-color: transparent;
}
	

	

}

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

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

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

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

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

.pc {
	display: none;
	}

.sp {
	display: block;
	}

.wrapper,
.wrapper_small {
	width: calc(100% - 40px);
	}

.btn {
	width: 70%;
	height: 50px;
	font-weight: 500;
	line-height: 50px;
}

.btn::before {
	width: 7px;
	height: 1px;
	top: 22px;
}

.btn::after {
	width: 7px;
	height: 1px;
	bottom: 22px;
}

.btn:hover::after {
	right: 15px;
}
	
.h2 {
	font-size: 20px;
	margin-bottom: 15px;
}




/* header */
.header {
	height: 50px;
}

.header__link {
	position: fixed;
	top: 0;
	left: 0;
	width: 210px;
	height: 50px;
}

.header__logo {
	width: auto;
	height: 24px;
}
	
	
	
/* mv */
.mv {
	width: 100%;
	height: 300px;
}

.mv__h1 {
	font-size: 24px;
	border-bottom: 3px solid #1b3190;
	padding-bottom: 3px;
}
	
	
	
/* contact */
.contact__btn {
	margin: 10px auto 15px;
}
	
.contact__btn::before {
	top: 22px;
}
	
.contact__btn::after {
	bottom: 21px;
}
	
.contact .sp {
	display: flex;
	justify-content: center;
}
	
.contact__time {
	margin-top: 10px;		
}

	
	
	
/* footer */
.footer__map,
.footer__map iframe {
	height: 300px;
}
	
.footer {
	padding: 50px 0 30px 0;
	font-size: 12px;
	}

.footer__left {
	width: 100%;
	padding-bottom: 10px;
	border-bottom: none;
	text-align: center;
	padding-right: 0;
	border-right: none;
	}

.footer__logo {
	width: 80%;
	height: auto;
	margin: 0 auto 15px auto;
	}

.footer__name {
	font-size: 12px;
	font-weight: bold;
	margin-bottom: 5px;
	}
	
.footer__link {
	font-size: 11px;
}
	
.footer__copyright {
	width: 100%;
	font-size: 11px;
	text-align: center;
	margin-top: 0px;
	}

.footer__right {
	display: none;
	}


}