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


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

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

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

/* 全体の設定 */

html {
	color: #333;
	}

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: #333;
	cursor: pointer;
	}

p {
	color: #333;
	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;
	}

.h2 {
	font-size: 80px;
	font-weight: 600;
	font-family: Arial, Helvetica, "sans-serif";
}

.h2 span {
	font-size: 24px;
	display: block;
	color: #4e7ca3;
	margin-bottom: 40px;
}

.btn {
	display: block;
	width: 320px;
	height: 70px;
	background-color: #1c447a;
	text-align: center;
	line-height: 70px;
	color: #FFF;
	font-weight: 600;
	border-radius: 35px;
	position: relative;
	transition: .2s;
}

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

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

.btn:hover {
	background-color: #4e7ca3;
}

.btn:hover::before,
.btn:hover::after {
	right: 27px;
}



/* header */
.header {
	width: 100%;
	height: 100px;
	position: fixed;
	top: 0;
	left: 0;
	border-bottom: 0.5px solid #AAA;
	z-index: 9000;
	transition: .2s;
}

.header__link {
	display: block;
	width: 291px;
	height: 51px;
	background-image: url("/img/common/logo_white.png");
	background-size: cover;
	position: absolute;
	top: 25px;
	left: 1.5%;
	transition: .2s;
}

.header__link:hover {
	opacity: .8;
}

.globalNav {
	height: 100px;
	position: absolute;
	right: 0;
	top: 0;
}

.globalNav__box {
	display: flex;
}

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

.globalNav__link {
	line-height: 100px;
	color: #FFF;
	font-weight: 500;
	transition: .2s;
	position: relative;
}

.globalNav__link::after {
	display: inline-block;
	content: "";
	width: 100%;
	height: 2px;
	background-color: #1c447a;
	position: absolute;
	left: 0;
	bottom: 30px;
	opacity: 0;
	transition: .2s;
}

.globalNav__link:hover::after {
	opacity: 1;
}

.globalNav__item:last-child .globalNav__link {
	width: 160px;
	height: 100px;
	background-color: #e6e638;
	text-align: center;
	line-height: 100px;
	color: #333;
	font-weight: 18px;
	transition: .2s;
}

.globalNav__item:last-child .globalNav__link:hover {
	background-color: #1c447a;
	color: #FFF;
}

.globalNav__item:last-child .globalNav__link::after {
	display: none;
}



/* header Scroll */
.header.scroll {
	background-color: #FFF;
	border-bottom: none;
	box-shadow: 0 0 5px #AAA;
	height: 80px;
}

.scroll .header__link {
	background-image: url("/img/common/logo.png");
	top: 15px;
}

.scroll .globalNav {
	height: 80px;
}

.globalNav__box {
	display: flex;
}

.scroll .globalNav__item {
	height: 80px;
}

.scroll .globalNav__link {
	line-height: 80px;
	color: #333;
}

.scroll .globalNav__link::after {
	bottom: 20px;
}

.scroll .globalNav__item:last-child .globalNav__link {
	height: 80px;
	line-height: 80px;
}



/* mvLower */
.mvLower {
	width: 100%;
	height: 700px;
	background-position: center center;
	background-size: cover;
	position: relative;
}

.mvLower__overlay {
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.4);
	display: flex;
	justify-content: center;
	align-items: center;
}

.mvLower__h1 {
	font-size: 80px;
	font-weight: 600;
	font-family: Arial, Helvetica, "sans-serif";
	text-align: center;
	margin-top: 100px;
	padding: 10px 50px 20px 50px;
	background-color: #FFF;
	line-height: 1.3;
	border-radius: 10px;
	border-bottom: 5px solid #1c447a
}

.mvLower__h1 span {
	display: block;
	font-size: 22px;
	color: #1c447a;
}



/* 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;
	color: #999;
}

.breadcrumb__link {
	font-size: 16px;
	color: #999;
}

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



/* footer_contact */
.footer__contact {
	text-align: center;
	background: linear-gradient(to right,#1c447a,#4e7ca3);
}

.footer__contact-h2 {
	color: #FFF;
}

.footer__contact-h2 span {
	color: #FFF;
}

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

.footer__contact-item {
	width: 47%;
}

.footer__contact-link {
	border: 1px solid #FFF;
	transition: .2s;
	display: flex;
	align-items: center;
	width: 100%;
	height: 120px;
	border-radius: 10px;
	color: #FFF;
	font-size: 40px;
	font-family: Arial, Helvetica, "sans-serif";
	font-weight: 600;
	position: relative;
	text-align: left;
}

.footer__contact-link:hover {
	background-color: #FFF;
	color: #1c447a;
}

.footer__contact-item:first-child .footer__contact-link {
	padding-left: 100px;
	line-height: 1.4;
}

.footer__contact-item:first-child .footer__contact-link::before {
	display: inline-block;
	content: "";
	width: 46px;
	height: 49px;
	background-image: url("/img/common/icon_footer_contact-tel.png");
	background-size: cover;
	position: absolute;
	left: 35px;
	transition: .2s;
}

.footer__contact-item:first-child .footer__contact-link:hover::before {
	background-image: url("/img/common/icon_footer_contact-tel_hover.png");
}

.footer__contact-link span span {
	font-size: 16px;
	font-weight: 400;
	display: block;
}

.footer__contact-item:last-child .footer__contact-link {
	padding-left: 60px;
	font-size: 24px;
}

.footer__contact-link::after {
	display: inline-block;
	content: "";
	width: 20px;
	height: 17px;
	background-image: url("/img/common/arrow_footer_contact.png");
	background-size: cover;
	position: absolute;
	right: 25px;
	transition: .2s;
}

.footer__contact-link:hover::after {
	background-image: url("/img/common/arrow_footer_contact_hover.png");
	right: 20px;
}



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



/* footer */
.footer {
	background-color: #1c447a;
	width: 100%;
	height: auto;
	position: relative;
	padding: 130px 0;
}

.footer__upper {
	padding: 0 50px;
	display: flex;
	justify-content: space-between;
}

.footer__upper-left {
	width: 40%;
}

.footer__logo {
	display: block;
	width: 290px;
	height: auto;
	margin-bottom: 30px;
}

.footer__txt {
	font-size: 13px;
	color: #FFF;
}

.footer__nav {
	display: flex;
}

.footer__nav > li {
	margin-left: 50px;
}

.footer__nav > li > ul > li {
	line-height: 2.2;
}

.footer__nav > li > ul > li > a {
	font-size: 13px;
	color: #FFF;
	font-weight: 500;
}

.footer__nav > li > ul > li > ul > li > a {
	font-size: 12px;
	color: #FFF;
}

.footer__nav > li > ul > li > ul > li > a:before {
	content: "-";
	margin-right: 5px;
}

.footer__copyright {
	margin: 50px 50px 0 50px;
	border-top: 0.5px solid #FFF;
	padding-top: 30px;
	color: #FFF;
}



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

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

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

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

/* 全体の設定 */
body {
	max-width: 1199px;
	min-width: 100%;
	}
	
	
	
/* header */
.globalNav__item {
	margin-left: 25px;
}

.globalNav__link {
	font-size: 15px;
}

.globalNav__link:hover::after {
	opacity: 1;
}

.globalNav__item:last-child .globalNav__link {
	width: 140px;
	font-weight: 16px;
}



	
	

	
	

}



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

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

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

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

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

.header__link {
	display: block;
	width: 228px;
	height: 40px;
	top: 20px;
}

.globalNav {
	display: none;
}
	
	
	
/* header Scroll */
.scroll .header__link {
	top: 20px;	
}

	
	
/* footer_contact */
.footer__contact-item {
	width: 48%;
}

.footer__contact-link {
	font-size: 30px;
}

.footer__contact-item:first-child .footer__contact-link {
	padding-left: 80px;
}

.footer__contact-item:first-child .footer__contact-link::before {
	width: 35px;
	height: 37px;
	left: 30px;
}

.footer__contact-link span span {
	font-size: 14px;
	font-weight: 400;
	display: block;
}

.footer__contact-item:last-child .footer__contact-link {
	padding-left: 30px;
	font-size: 20px;
}
	
	
	
/* footer */
.footer__upper {
	padding: 0 50px;
	display: block;
	justify-content: space-between;
}

.footer__upper-left {
	width: 100%;
	margin-bottom: 50px;
	text-align: center;
}

.footer__logo {
	margin: 0 auto 30px auto;
}

.footer__txt {
	font-size: 13px;
	color: #FFF;
}
		
.footer__upper-right {
	display: flex;
	justify-content: center;
}

.footer__nav {
	display: flex;
}

.footer__copyright {
	text-align: center;
}


	

	

}

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

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);
	}
	
.h2 {
	font-size: 32px;
}

.h2 span {
	font-size: 12px;
	margin-bottom: 25px;
}

.btn {
	width: 240px;
	height: 55px;
	line-height: 55px;
}

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

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

.btn:hover {
	background-color: #4e7ca3;
}

.btn:hover::before,
.btn:hover::after {
	right: 17px;
}
	
	
	
/* header */
.header {
	height: 60px;
}

.header__link {
	display: block;
	width: 171px;
	height: 30px;
	top: 15px;
}

	

/* header Scroll */
.header.scroll {
	height: 60px;
}

.scroll .header__link {
	top: 15px;
}
	
	
	
/* mvLower */
.mvLower {
	height: 250px;
}

.mvLower__h1 {
	font-size: 32px;
	padding: 7px 20px 10px 20px;
	background-color: #FFF;
	line-height: 1.4;
	border-radius: 5px;
	border-bottom: 3px solid #1c447a;
	margin-top: 70px;
}

.mvLower__h1 span {
	font-size: 14px;
}
	
	
	


	
	
/* footer_contact */
.footer__contact-box {
	display: block;
}

.footer__contact-item {
	width: 100%;
	max-width: 400px;
	margin: 0 auto 20px auto;
}

.footer__contact-link {
	height: 80px;
	border-radius: 5px;
	font-size: 24px;
}

.footer__contact-item:first-child .footer__contact-link {
	padding-left: 60px;
}

.footer__contact-item:first-child .footer__contact-link::before {
	left: 15px;
}

.footer__contact-link span span {
	font-size: 14px;
	font-weight: 400;
	display: block;
}

.footer__contact-item:last-child .footer__contact-link {
	padding-left: 20px;
	font-size: 18px;
}

.footer__contact-link::after {
	width: 15px;
	height: 13px;
	right: 20px;
}

.footer__contact-link:hover::after {
	background-image: url("/img/common/arrow_footer_contact_hover.png");
	right: 15px;
}

	
	
/* footer__map */
.footer__map iframe {
	height: 300px;
}

	
	
/* footer */
.footer {
	padding: 60px 0;
}

.footer__upper {
	padding: 0 20px;
}
	
.footer__logo {
	width: 200px;
	margin-bottom: 20px;
}

.footer__txt {
	font-size: 12px;
	color: #FFF;
}
	
.footer__txt a {
	color: #FFF;
}
	
.footer__upper-left {
	margin-bottom: 20px;
}
	
.footer__upper-right {
	display: none;
}

.footer__copyright {
	margin: 10px 20px;
	border-top: 0.5px solid #FFF;
	padding-top: 10px;
	font-size: 12px;
}
	
	


}