@charset "UTF-8";

/* reset */

html, body, div, span, iframe,p,
h1,h2,h3,h4,h5,h6,
a, em, font, img, strong, sub, sup,
dl, dt, dd, ol, ul, li, fieldset,
label, table, caption, tr, td {
	text-align: left;
	line-height: 1;
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	list-style:none;
	text-decoration: none;
}

html {
	font-size: 62.5%; 
	scroll-padding-top: 62px;
}

img,video {
	max-width: 100%;
	height: auto;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

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

.clearfix { zoom: 1; }


* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}



body {
	color: #333;
	font-size: 16px;
	font-family: "Noto Serif JP", "Hiragino Mincho ProN", "YuMincho", serif;
}




/* -----　ヘッダー　-------------------------- */


header {
	position: fixed !important;
	width: 100%;
	height: 60px;
	margin-top: -60px;
	background: #fff;
*	border-bottom: 1px solid #004583;
	z-index:100; 
	transition: .5s;
}

header ul.headNav {
	display: flex;
	justify-content: space-between;
}
header ul.headNav > li:nth-child(1) {
	width: 170px;
}
header ul.headNav > li:nth-child(1) img {
	margin: 14px 10px 0;
}

header ul.headNav > li:nth-child(2) {
	position: relative;
}




/* ハンバーガー ---------------------------------------- */

header .navContainer {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

header .navBt {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	padding: 11px 15px;
	cursor: pointer;
	z-index: 2;
}

header .bar {
	display: block;
	width: 30px;
	height: 2px;
	margin: 8px 0;
	background: #000;
	transition: 0.5s;
}

/* ボタンクリック時のアニメーション */
header #toggle:checked ~ .navBt .bar:nth-child(1) {
	transform: rotate(45deg) translate(7px, 7px);
}
header #toggle:checked ~ .navBt .bar:nth-child(2) {
	opacity: 0;
}
header #toggle:checked ~ .navBt .bar:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* メニュートグルのスタイル */
header #toggle {
	display: none;
}

/* メニューのスタイル */
header .navList {
	position: fixed;
	top: 60px;
	right: -100%;
	width: 100%;
	max-width: 400px;
	height: 100%;
	background: #004583;
	transition: 0.5s;
	z-index: 1;
	overflow-y: auto;
}

/* チェック時のアニメーション */
header #toggle:checked ~ .navList {
	right: 0;
}

/* メニュー */
header .navList ul {
	list-style: none;
}

header .navList ul li a {
	display: block;
	color: #fff;
	font-size: 16px;
	padding: 22px 26px 21px;
	background: #004583;
	border-bottom: 1px solid #fff;
	transition: 0.3s;
}
header .navList ul li a:hover {
	color: #000;
	background: #fff;
}




/* 共通項目 */


.inner { padding:0 20px; }


#title {
	position: relative;
	width: 100%;
	height: 220px;
	margin: 60px 0;
}

#title h1 {
	color: #000;
	font-size: 24px;
	font-weight: 500;
	line-height:1.5;
	padding: 20px 0 0;
}

#title h2 {
	color: #000;
	font-size: 15px;
	font-weight: normal;
	font-weight: 300;
	padding: 0;
	letter-spacing: 0.05rem;
}



#content h2 {
	font-size: 20px;
	letter-spacing: 0.1em;
	color: #004583;
    margin: 0 0 32px;
    padding: 10px;
    background: #e6f3ff;
    border-radius: 4px;
}


#idx #content h2 {
	padding: 0;
	background: none;
	border-radius: none;
}




/* -----　フッター　-------------------------- */

footer {
	padding: 80px 0 0;
}

footer #toTop { position: relative; }

footer #toTop a {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	margin-bottom: 0;
	padding: 25px 0;
	background: #0071E3 url(/jp/img/common/bt_toTopSp.png) 50% 50% no-repeat;
	background-size: 52px auto;
	z-index: 8;
}

/*固定*/
footer #toTop a.fix-animation {
	position: absolute;
	top: 0;
	bottom: auto;
	background: #0071E3 url(/jp/img/common/bt_toTopSp.png) 50% 50% no-repeat;
	background-size: 52px auto;
}



footer ul.fNav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 17px 20px 15px;
	background: #004583;
}
footer ul.fNav li {
	padding: 5px 10px;
}

footer .fLogo {
	text-align: center;
	padding: 20px 10px 10px;
	border-bottom: 1px solid #004583;
}
footer .fLogo img {
	width: 100%;
	max-width: 320px;
}

footer .copy {
	font-size: 12px;
	text-align: center;
	padding: 16px;
}






footer a { color: #fff; }



.useSP { display: inline; }
.usePC { display: none; }












/*media Queries PC
----------------------------------------------------*/
@media print, screen and (min-width:811px) {

body { *font-size: 18px; }


/* -----　ヘッダー　-------------------------- */

header {
	height: 84px;
	margin-top: -84px;
}

header ul.headNav {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
header ul.headNav > li:nth-child(1) {
	width: 230px;
}
header ul.headNav > li:nth-child(1) img {
	margin: 23px 20px 21px;
}

header ul.headNav > li:nth-child(2) {
	width: calc(100% - 230px);
}



header .navContainer,
header .navList {
	position: unset;
	background: none;
}

header .navList {
	max-width: unset;
}

header .navList ul {
	display: flex;
	justify-content: flex-end;
	padding: 32px 0 0;
}

header .navList ul li {
	padding: 0 17px;
}

header .navList ul li a {
	display: inline;
	position: relative;
	color: #000;
	font-size: 18px;
	padding: 0;
	background: none;
	border-bottom: none;
}
header .navList ul li:nth-child(1) a {
	background: none;
	border-top: none;
}
header .navList ul li a:hover {
	color: #3182c5;
	background: none;
	transition: .5s;
}
header .navList ul li a::after {
	position: absolute;
	bottom: -15px;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #3182c5;
	opacity: 0;
	visibility: hidden;
	transition: .5s;
}
header .navList ul li a:hover::after {
	bottom: -10px;
	opacity: 1;
	visibility: visible;
}


header #toggle,
header .navBt { display: none; }



/* 共通項目 */

.inner {
	max-width:1200px;
	margin: 0 auto;
	padding:0 20px;
}

/*media Queries 
----------------------------------------------------*/
@media print, screen and (min-width:1240px) {

.inner {
	padding:0;
}

}/* 1240px */

#title {
	height: 280px;
	margin: 84px 0 100px;
}

#title h1 {
	font-size: 36px;
	padding: 100px 0 0 60px;
}

#title h2 {
	font-size: 18px;
	padding: 0 0 0 60px;
}



#content h2 {
	max-width:900px;
	font-size: 26px;
	margin: 0 auto 40px;
    padding: 16px;
    border-radius: 6px;
}







/* -----　フッター　-------------------------- */

footer {
	padding: 80px 0 0;
}

footer #toTop a {
	display: none;
	position: fixed;
	left: auto;
	right: 0/*calc(50% - 640px)*/;
	bottom: 0;
	width: 40px;
	height: 120px;
	margin-bottom: 0;
	padding: 0;
	background: url(/jp/img/common/bt_toTop.png) 50% 50% no-repeat;
	background-size: 40px auto;
}
footer #toTop a:hover {
	background: #0071E3url(/img/common/bt_toTop_on.png) 50% 50%  no-repeat;
	background-size: 40px auto;
}

/*固定*/
footer #toTop a.fix-animation {
	top: -60px;
	background: #0071E3 url(/jp/img/common/bt_toTop.png) 50% 50% no-repeat;
	background-size: 40px auto;
}
footer #toTop a.fixRt { right: 0; }



footer ul.fNav {
	padding: 27px 0 25px;
}
footer ul.fNav li {
	padding: 0 19px;
}

footer .fLogo {
	padding: 25px 10px 18px;
}

footer .copy {
	padding: 20px 0 24px;
}



.useSP { display: none; }
.usePC { display: block; }




}/* media Queries 769 */





