@charset "utf-8";
/* CSS Document */

/*--------------------------------------------*/
/*モバイル*/
/*--------------------------------------------*/


body {
	color: #333;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	padding-top: 60px;
}

body:before{
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-1;
	width:100%;
	height:100vh;
	background:url(../images/flags.jpg) center no-repeat;
	background-size:cover;
}


.clearfix::after {
	content: "";
	display: block;
	clear: both;
	height: 0;
}


/*ヘッダー*/
.siteTitle {
	text-align: center;
}

.navbar {
	width: 100%;
	padding: 0.5rem 1.5rem;
}


/*jumbotron*/
.jumbotron {
	margin-bottom: 0.5rem;
	padding: 4rem 0;
	background-color: transparent;
}

.jumbotron h1 {
	font-size: 25px;
	text-align: center;
	text-shadow:2px 2px 3px #0d0d0c;
}

.jumbotron p {
	font-size: 14px;
	text-align: center;
	text-shadow:2px 2px 3px #0d0d0c;
}


/*メイン*/

.container {
	padding-left: 0;
	padding-right: 0;
}

.breadcrumb {
	font-size: 10px;
	margin-bottom: 10px;
	background-color: transparent;
}

main section {
	padding: 40px 10px;
}

/*背景パターン画像*/
/*main section:nth-child(1) {
	background-color: rgba(255,255,255,0.8);
}*/
main section:nth-child(1) {
	background: url(../images/pattern_2.gif) repeat;
}
main section:nth-child(2) {
	background: url(../images/bg_yellow.gif) repeat;
}
main section:nth-child(3) {
	background: url(../images/bg_green.gif) repeat;
}
main section:nth-child(4) {
	background: url(../images/bg_orange.gif) repeat;
}
main section:nth-child(5) {
	background: url(../images/bg_blue.gif) repeat;
}

main section:nth-child(1) .container {
	background-color: #fff;
}

main .container {
	padding-top: 20px;
	padding-bottom: 10px;
} 

main h2 {
	width: 100%;
	background-color: #fff;
	border: 2px solid orange;
	color: #333;
	font-size: 22px;
	/*font-weight: bold;*/
	margin-bottom: 30px;
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
	position: relative;
}

/*見出しのフキダシ*/
main h2:before {
	content: "";
	border: 12px solid transparent;
	border-top: 12px solid #fff;
	position: absolute;
	right: 50%;
	bottom: -22px;
	margin-right: -12px;
	z-index: 2;
}

main h2:after {
	content: "";
	border: 12px solid transparent;
	border-top: 12px solid orange;
	position: absolute;
	right: 50%;
	bottom: -25px;
	margin-right: -12px;
}

/*見出しのキャラクター画像位置*/
section:nth-of-type(odd) h2 img {
	position: absolute;
	top: -20px;
	left: 5px;
	width: 40px;
	height: auto;
}

section:nth-of-type(even) h2 img {
	position: absolute;
	top: -20px;
	right: 5px;
	width: 40px;
	height: auto;
}



/*本文の文字サイズ*/
article p {
	font-size: 1rem;
}

/*フッター*/

footer {
	background-color: #fbbd5d;
	color: #333;
	z-index: 1;
	margin-top: 150px;
}

footer .container {
	padding-left: 15px;
	padding-right: 15px;
}

footer .company {
	padding-top: 20px;
}

footer .company img {
	
}


footer .telfax {
	padding-left: 20px;
}

footer .footer_map {
	margin-bottom:10px;
}

/*フッターナビ*/
footer ul {
	padding-left: 0;
}

footer li {
	list-style-type: none;
}

footer li a {
	color: #333;
}

footer li a:hover {
	color: #0056a8;
}


/*footer .submenu {
	padding-left: 0.8em;
}*/

.footer_bottom {
	background: #f7931e;
	padding-top: 20px;
}

/* copyright */
.copyright {
  padding: 5px;
  color: #333;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}


/*ページトップへ戻るボタン*/
#pageTopBtn {
	bottom: 10px;
	right: 20px;
	position: fixed;
	z-index:100;
	width: 50px;
	height: 50px;
}


#pageTopBtn a {
	background-color: #0056a8;
	border-radius: 50px;
	color: #fff;
	display: block;
	font-size: 24px;
	font-weight: bold;
	line-height: 50px;
	opacity: 0.8;
	text-align: center;
	text-decoration: none;
	width: 100%;
	height: 100%;
}

#pageTopBtn a:hover {
	opacity: 1;
}






/*--------------------------------------------*/
/*スマホ横/タブレット（576px～）*/
/*--------------------------------------------*/

@media only screen and (min-width: 576px) {

	body {
		/*padding-top: 60px;*/
	}


 	/*メイン*/

	main section {
		/*margin-bottom: 2rem;*/
	}
	





}








/*--------------------------------------------*/
/*スマホ横/タブレット横/PC/(768px～)*/
/*--------------------------------------------*/

@media (min-width: 768px) {

	/*ヘッダー*/


	/*jumbotron*/
	.jumbotron h1 {
		font-size: 40px;
	}

	.jumbotron p {
		font-size: 16px;
	}


 	/*メイン*/

	.breadcrumb {
		font-size: 12px;
		margin-bottom: 20px;
	}

	main h1 {
		margin-bottom: 30px;
	}
	
	main h2 {
		width: 75%;
		font-size: 25px;
		margin: 0 auto 30px;
		padding-top: 15px;
		padding-bottom: 15px;
		margin-bottom: 50px;
	}
	
	/*見出しのフキダシ*/
	main h2:after {
		bottom: -26px;
	}
	
	/*見出しのキャラクター画像位置*/
	section:nth-of-type(odd) h2 img {
		position: absolute;
		top: -20px;
		left: 5px;
		width: 60px;
		height: auto;
	}

	section:nth-of-type(even) h2 img {
		position: absolute;
		top: -20px;
		right: 5px;
		width: 60px;
		height: auto;
	}

	

	/*フッター*/

	footer .location {
		font-size: 12px;
	}

	footer .location,
	footer .telfax {
		padding-left: 0;
	}
	
	footer .footer_middle {
		background: url(../images/hasu_kaeru.png) no-repeat right bottom;
	}

	footer li {
		font-size: 12px;
		line-height: 2;
	}

	/*ページトップへ戻るボタン*/
	#pageTopBtn {
		bottom: 50px;
		right: 40px;
	}


	#pageTopBtn a {
		/*font-size: 18px;*/
	}



}

/*--------------------------------------------*/
/*スマホ/スマホ横/タブレット横/PC/(769px～)*/
/*--------------------------------------------*/


@media only screen and (min-width: 769px) {

	body {
		padding-top: 0;
	}
}


/*--------------------------------------------*/
/*タブレット横/PC/(992px～)*/
/*--------------------------------------------*/


@media (min-width: 992px) {

	body {
		padding-top: 0;
	}

	/*ヘッダーナビ*/
	header .title {
		padding: 5px 20px;
	}

	header span {
		vertical-align: bottom;
	}

	.navbar-expand-lg .navbar-nav .nav-link {
		padding-left: 2rem;
		padding-right: 2rem;
	}


	/*ナビアニメーション*/
	/* transition */
	.navDrawr {
		transition: all 0.3s ease;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		z-index: 999999;
	}


	/* Fixed */
	.navDrawr.fixed {
		margin-top: 0;
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 999999;
	}



	/*jumbotron*/
	.jumbotron {
		padding: 6rem 2rem;
	}


	/*メイン*/
	.breadcrumb {
		margin-bottom: 15px;
	}
	
	main h2 {
		width: 60%;
		border: 3px solid orange;
		font-size: 30px;
		/*margin-bottom: 30px;*/
		padding-top: 15px;
		padding-bottom: 15px;
	}




	/*フッター*/

	footer .location {
		font-size: 16px;
	}

	footer li {
		font-size: 14px;
		line-height: 1.8;
	}

	footer .contact{
		width: 60%;
	}
	
	/*ページトップへ戻るボタン*/
	#pageTopBtn {
		bottom: 50px;
		right: 80px;
	}


	/* copyright */
	.copyright {
		padding: 15px;
		font-size: 15px;
	}


}



/*--------------------------------------------*/
/*PC(1200px～)*/
/*--------------------------------------------*/

@media only screen and (min-width: 1200px) {


	/*jumbotron*/
	.jumbotron {
		padding: 8rem 2rem;
	}


}
