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


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

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

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

/* 全体の設定 */
body {
	width: 100%;
	font-family: "游ゴシック体","YuGothic","游ゴシック","Yu Gothic","Hiragino Sans","ヒラギノ角ゴシック","メイリオ","Meiryo";
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
	min-width: 1200px;
	color: #222;
	background-color: #FFF;
	font-size: 15px;
	}

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;
	}
	
.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;
	}

.left {
	float: left;
	}

.right {
	float: right;
	}

.clearfix::after {
	content: ''; 
	display: block;
	clear: both; 
	}

.btn {
	display: block;
	width: 200px;
	height: 60px;
	background: #394C9F; /* ボタンの背景色 */
	position: relative;
	color: #FFF;
	line-height: 60px;
	text-align: center;
	font-weight: 600;
	margin: 0 auto;
	z-index: 0;
	}

.btn__white {
	background-color: transparent;
	border: 1px solid #FFF;
}

.btn:hover {
	color: #FFF;
	}

.btn span {
	position: relative;
	}

.btn::before {
	content: "";
	display: block;
	background-color: #263A84; /* ボタンにマウスオーバーしたときの背景色 */
	width: 0;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: .3s;
	-webkit-transition: .3s;
	}

.btn__white::before {
	background-color: #FFF;
}

.btn__white:hover {
	color: #394C9F;
}

.btn:hover::before {
	width: 100%;
	}

.btn::after {
	content: "▶︎";
	font-size: 8px;
	position: absolute;
	right: 10px;
	top: 0;
	transition: .3s;
	-webkit-transition: .3s;
	}

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

.h2 {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 35px;
	text-align: center;
	}

.h3 {
	font-size: 22px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
	}

.container {
	padding: 120px 0;
	}



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

.headerLogo__link {
	display: block;
	width: 220px;
	height: auto;
	position: absolute;
	left: 1%;
	top: 18px;
}

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

.fixed {
	background-color: rgba(255,255,255, .5);
	box-shadow: 0 0 3px #CCC;
}



/* globalNav */
.globalNav {
	position: absolute;
	top: 20px;
	right: 1%;
}

.globalNav__box {
	display: flex;
}

.globalNav__item {
	margin-left: 30px;
}

.globalNav__link {
	color: #FFF;
	font-weight: bold;
	height: 40px;
	line-height: 40px;
}

.fixed .globalNav__item:not(:last-child) .globalNav__link {
	color: #222;
}

.globalNav__btn {
	width: 150px;
}

.globalNav__btn::after {
	content: "";
}

.globalNav__item:not(:last-child) .globalNav__link {
	transition: .2s;
	padding-bottom: 5px;
}

.globalNav__item:not(:last-child) .globalNav__link:hover,
.current {
	border-bottom: 3px solid #394C9F!important;
}




/* mv */
.mv {
	width: 100%;
	height: 60vh;
	min-height: 600px;
	background-size: cover;
	background-position: center center;
}

.mv__wrapper {
	height: 100%;
	position: relative;
}

.mv__ttl {
	position: absolute;
	bottom: 0;
	right: 0;
	background-color: #FFF;
	font-size: 36px;
	font-weight: bold;
	padding: 10px 50px 5px 30px;
	border-top: 5px solid #394C9F;
}




/* breadcrumb */
.breadcrumb {
	margin-top: 15px;
}

.breadcrumb__box {
	display: flex;
}

.breadcrumb__item {
	margin-right: 10px;
}

.breadcrumb__item::after {
	content: ">";
	font-size: 16px;
	margin-left: 10px;
}

.breadcrumb__item:last-child::after {
	content: "";
}

.breadcrumb__link {
	font-size: 16px;
}

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




/* contact */
.contact {
	background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),url("/img/index/img_mv_index_01.jpg");
	background-size: cover;
	background-position: center center;
	text-align: center;
}

.contact__ttl {
	color: #FFF;
}

.contact__btn {
	margin-bottom: 40px;
	width: 95%;
	max-width: 960px;
	font-size: 16px;
} 

.contact__tel {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #FFF;
}

.contact__time {
	color: #FFF;
	font-weight: bold;
}

.contact__btn--tel {
	display: none;
}



/* map */
.map {
	width: 100%;
	height: 500px;
}

.map iframe {
	display: block;
	width: 100%;
	height: 100%;
}



/* footer */
.footer {
	padding: 70px 0;
	display: flex;
	flex-direction: row-reverse;
}

.footer__left {
	width: 30%;
	padding-right: 60px;
	border-right: 1px solid #000;
}

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

.footer__logo {
	display: block;
	width: 60%;
	height: auto;
	margin-bottom: 20px;
}

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

.footer__url {
	font-size: 12px;
	margin-bottom: 20px;
}

.footer__copyright {
	font-size: 12px;
}

.footer__box {
	width: 100%;
	overflow: hidden;
}

.footerParent {
	float: left;
	width: 25%;
}

.footerParent__item {
	margin-bottom: 7px;
}

.footerParent__link {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 10px;
}

.footerChildren__item {
	margin-top: 5px;
}

.footerChildren__link {
	font-size: 14px;
}

.footerChildren__link::before {
	content: "-";
	margin-right: 3px;
}

.footerParent__link:hover,
.footerChildren__link: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;
	}
	
	
	
/* header */
.header {
	height: 70px;
}

.headerLogo__link {
	top: 13px;
}


/* globalNav */
.globalNav {
	display: none;
}


	
	
/* footer */
.footer {
	padding: 70px 0;
	display: block;
}

.footer__left {
	width: 100%;
	padding-right: 0;
	padding-top: 50px;
	border-right: none;
	border-top: 1px solid #000;
	text-align: center;
}

.footer__right {
	width: 100%;
	padding-left: 0;
	padding-bottom: 50px;
}

.footer__logo {
	width: 50%;
	max-width: 300px;
	height: auto;
	margin: 0 auto 25px auto;
}

	

}



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

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

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

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

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

.pc {
	display: none;
	}

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

.left {
	float: none;
	}

.right {
	float: none;
	}

.h2 {
	font-size: 20px;
	margin-bottom: 20px;
	font-weight: bold;
	}
	
.h3 {
	font-size: 16px;
	margin-bottom: 10px;
	}

.btn {
	width: 80%;
	height: 50px;
	line-height: 50px;
	}

.container {
	padding: 50px 0 60px 0;
	}

	
	
/* header */
.header {
	height: 60px;
	background-color: #FFF;
	box-shadow: 0 0 3px #CCC;
}

.headerLogo__link {
	width: auto;
	height: 30px;
	top: 15px;
}

.headerLogo__img {
	display: block;
	width: auto;
	height: 30px;
}
	
.fixed {
	background-color: rgba(255,255,255, 1);
}
	
	
	
/* mv */
.mv {
	height: 250px;
	min-height: auto;
	margin-top: 60px;
}

.mv__ttl {
	font-size: 20px;
	padding: 5px 20px 3px 15px;
	border-top: 3px solid #394C9F;
}

	
	
/* contact */
.contact__btn {
	margin-bottom: 20px;
	width: calc((100% - 40px)*0.8);
	font-size: 14px;
} 

.contact__btn--tel {
	display: block;
}



/* map */
.map {
	height: 300px;
}
	
	
	
/* footer */
.footer {
	padding: 40px 0;
	display: block;
}

.footer__left {
	padding-top: 0;
	border-top: none;
}

.footer__right {
	display:  none;
}

.footer__logo {
	width: 50%;
	max-width: 200px;
	margin: 0 auto 15px auto;
}
	
.footer__url {
	margin-bottom: 10px;
}
	
	
	
/* iOSでのデフォルトスタイルをリセット */
input[type=submit],input[type=button],input[type=text],input[type=mail],input[type=reset],textarea {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	box-sizing: border-box;
	cursor: pointer;
	}

/* セレクトボックスのCSS */
select {
	height: 50px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: white;
	border: 1px solid #CCC;
	border-radius: 5px;
	display: inline-block;
	padding-left: 15px;
	background-image:
	linear-gradient(45deg, transparent 50%, #FFF 50%),
	linear-gradient(135deg, #FFF 50%, transparent 50%),
	linear-gradient(to right, #d06112, #d06112);
	background-position:
	calc(100% - 24px) 21px,
	calc(100% - 18px) 21px,
	100% 0;
	background-size:
	6px 6px,
	6px 6px,
	50px 50px;
	background-repeat: no-repeat;
	}



}