@charset "utf-8";

/*=====================================
layout.css
=====================================*/

@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Libre+Baskerville&display=swap');
@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP:400,600&display=swap');

/*-------------------------------------
 reset
-------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	max-width: 100%;
	line-height: 0;
	vertical-align: bottom;
}
iframe {
	vertical-align: bottom;
	border: 0;
}
table th,
table td {
	vertical-align: top;
}
input,
select,
textarea,
button {
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo;
	-webkit-appearance: none;
	-moz-appearance: none;
}
select::-ms-expand {
	display: none;
}
*, :after, :before {
	box-sizing: border-box;
}


/*-------------------------------------
 setting
-------------------------------------*/
body {
	position: relative;
	color: #2f3740;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo;
	font-size: 19px;
	font-weight: normal;
	line-height: 1.4;
	overflow-wrap: break-word;
	word-wrap: break-word;
	background: url(/common/images/bg01.png) repeat #fff;
	-webkit-text-size-adjust: 100%;
}
a {
	color: #2f3740;
	text-decoration: none;
}
a:hover{
	text-decoration: underline;
}
strong {
	font-weight: bold;
}
em {
	font-style: normal;
}
.forPC { display: block; }
.forSP { display: none; }
img.forPC, br.forPC, span.forPC { display: inline-block }


/*-------------------------------------
 layout
-------------------------------------*/
#wrapper {
	position: relative;
	overflow: hidden;
}
.inner {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 10px;
}
.inner:after {
	clear: both;
	display: block;
	content: "";
}


/*-------------------------------------
 header
-------------------------------------*/
#header {
	text-align: center;
}
#header .inner {
	max-width: inherit;
}
.headerLogo {
	padding: 22px 0 12px 0;
}
.headerNav ul {
	padding: 0 0 5px 0;
	letter-spacing: -0.5em;
	text-align: center;
}
.headerNav ul li {
	display: inline-block;
	margin: 0 18px;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: normal;
	vertical-align: top;
}
.headerNav ul li a {
	color: #063a77;
}
.headerFb {
	position: absolute;
	right: 105px;
	bottom: 7px;
	width: 32px;
}

.headerBtn {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1001;
	
}
.headerBtn .btn {
	position: relative;
	width: 90px;
	height: 180px;
	cursor: pointer;
	transition: all .4s;
	background: #fff;
}
.headerBtn .btn:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 90px;
	height: 90px;
	transition: all .4s;
	background: url(/common/images/menu_logo.png) no-repeat center center / 50px auto #063a77;
}
.headerBtn .btn p {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 15px;
	color: #9c8e63;
	font-family: 'Libre Baskerville', serif;
	font-size: 14px;
	text-align: center;
}
.headerBtn .btn span {
	position: absolute;
	left: 0;
	right: 0;
	display: block;
	width: 50px;
	height: 4px;
	margin: 0 auto;
	background: #063a77;
	transition: all .4s;
}
.headerBtn .btn span:nth-of-type(1) {
	bottom: 63px;
}
.headerBtn .btn span:nth-of-type(2) {
	bottom: 49px;
}
.headerBtn .btn.open span:nth-of-type(1) {
	-webkit-transform: translateY(10px) rotate(-20deg);
	transform: rotate(-20deg);
	bottom: 55px;
}
.headerBtn .btn.open span:nth-of-type(2) {
	-webkit-transform: translateY(-10px) rotate(20deg);
	transform: rotate(20deg);
	bottom: 55px;
}
/*.headerBtn .lang {
	display: flex;
	width: 90px;
	height: 30px;
	background: #fff;
}
.headerBtn .lang li {
	width: 50%;
	flex-shrink: 0;
}
.headerBtn .lang li a {
	display: block;
	color: #063a77;
	font-size: 13px;
	font-weight: bold;
	line-height: 30px;
	background: #9c8e63;
}
.headerBtn .lang li.current a {
	color: #b8a569;
	background: url(/common/images/lang_arw.png) no-repeat left center #063a77;
}*/
.headerBtn .lang {
	width: 90px;
}
.headerBtn .lang dt {
	padding: 30px 0 3px 0;
	cursor: pointer;
	color: #063a77;
	font-size: 11px;
	font-weight: bold;
	letter-spacing: 1px;
	text-align: center;
	background: url(/common/images/icn_lang01.png) no-repeat center 10px #e1edfa;
}
.headerBtn .lang dt.open {
	color: #b8a569;
	background-image: url(/common/images/icn_lang02.png);
	background-color: #063a77;
}
.headerBtn .lang dd {
	display: none;
}
.headerBtn .lang dd ul {
	text-align: left;
	background: rgba(47,55,64,0.9);
}
.headerBtn .lang dd ul li a {
	display: block;
	padding: 8px 2px 8px 10px;
	color: #fff;
	font-size: 11px;
	font-weight: bold;
}


/*-------------------------------------
 gNav
-------------------------------------*/
.gNav {
	display: grid;
	place-items: center;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	height: 100vh;
	background: rgba(47,55,64,0.9);
	overflow: auto;
	box-sizing: border-box;
}
.gNav .inner {
	width: 100%;
	max-width: 1054px;
	padding: 50px 10px;
	box-sizing: border-box;
}
.gNavMenu {
	display: flex;
	align-items: center;
}
.gNavLogo {
	width: 310px;
}
.gNavGroup {
	padding: 0 0 0 120px;
}
.gNavList ul {
	display: table;
	width: 100%;
}
.gNavList ul li {
	display: table-row;
}
.gNavList ul li .title,
.gNavList ul li ul {
	display: table-cell;
	vertical-align: top;
}
.gNavList ul li .title {
	padding: 15px 23px 15px 0;
	color: #b8a569;
	font-family: 'Libre Baskerville', serif;
	font-size: 23px;
	text-align: right;
}
.gNavList ul li ul {
	padding: 12px 0;
}
.gNavList ul li ul li {
	display: block;
	padding: 7px 0;
	color: #fff;
	font-size: 15px;
	font-weight: bold;
}
.gNavList ul li ul li a {
	color: #fff;
}
.gNavList .btnFb {
	display: inline-block;
	padding: 8px 20px;
	font-family: 'Libre Baskerville', serif;
	font-size: 16px;
	font-weight: normal;
	border: 1px solid #fff;
}
.gNavList .btnFb:before {
	content: "";
	display: inline-block;
	width: 12px;
	height: 23px;
	margin: 0 10px 0 0;
	vertical-align: bottom;
	background: url(/common/images/icn_fb01.png) no-repeat 0 0 / 100% auto;
}
.gNavBtn,
.gNavLang {
	display: none;
}
.gNavCopyright {
	padding: 30px 0 0 0;
	color: #fff;
	font-family: 'Libre Baskerville', serif;
	font-size: 12px;
	text-align: center;
}


/*-------------------------------------
 sideNav
-------------------------------------*/
/*.sideNav {
	position: fixed;
	top: 50%;
	left: 10px;
	z-index: 999;
	width: 70px;
	font-size: 10px;
	line-height: 1;
	text-align: center;
	transform: translateY(-50%);
}
.sideTel {
	margin: 0 0 30px 0;
}
.sideMail {
	margin: 0 0 10px 0;
}
.sideLang li a {
	display: block;
	padding: 10px 0;
	
}
.sideLang li.current a {
	background: url(/common/images/lang_arw.png) no-repeat right 10px center #063a77;
}*/

/*-------------------------------------
 visualArea
-------------------------------------*/
.visualArea {
	position: relative;
	text-align: center;
}
.visualArea .visual {
	position: relative;
	overflow: hidden;
}
.visualArea.visualShort .visual {
}
.visualArea .visual img {
}
.visualArea .title {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	max-width: 1740px;
	margin: 0 auto;
	padding: 30px 0 30px 0;
	color: #cdbd8a;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-size: 36px;
	font-weight: 600;
	line-height: 1.3;
	background: rgba(6,58,119,0.9);
}
.visualArea .title em {
	font-size: 38px;
}
.visualArea .subtitle {
	display: block;
	color: #fff;
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo;
	font-size: 18px;
}

.visualArea .tab {
	margin: 20px 0 -30px 0;
}
.visualArea .tab ul {
	display: flex;
	align-items: center;
	max-width: 1185px;
	margin: 0 auto;
}
.visualArea .tab ul li {
	width: 20%;
	padding: 0 2px 0 3px;
	font-size: 20px;
	text-align: center;
}
.visualArea .tab ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	padding: 2px 5px;
	color: #bfcddd;
	font-family: 'Noto Sans JP', sans-serif;
	text-align: center;
	text-decoration: none;
	background: #295283;
}
.visualArea .tab ul li.current a {
	color: #063a77;
	border-top: 6px solid #b8a569;
	background: url(/common/images/bg01.png) repeat;
}




/*-------------------------------------
 contentsArea
-------------------------------------*/
.contentsArea {
}

/* 
-------------------------------------*/
.article,
.section {
	padding: 60px 0 30px 0;
}
.article:after,
.section:after {
	clear: both;
	display: block;
	content: "";
}


/*-------------------------------------
 pagetopArea
-------------------------------------*/
.pagetopArea {
	position: relative;
}
.pagetopArea p {
	position: fixed;
	bottom: 110px;
	right: 10px;
	z-index: 10;
}
.pagetopArea a {
	display: block;
	width: 50px;
	height: 50px;
	text-decoration: none;
	text-indent: 100%;
	white-space: nowrap;
	border-radius: 50%;
	background: url(/common/images/pagetop.png) no-repeat center center #9c8e63;
	overflow: hidden;
}


/*-------------------------------------
 footer
-------------------------------------*/
#footer {
	border-top: 1px solid #063a77;
}
.footerLogo {
	padding: 30px 0 25px 0;
	letter-spacing: -0.5em;
	text-align: center;
}
.footerLogo li {
	display: inline-block;
	width: 90px;
	margin: 0 18px;
	letter-spacing: normal;
	vertical-align: top;
}
.footerLogo li:nth-child(2) {
	width: 114px;
}
.footerCopyright {
	padding: 0 0 30px 0;
	color: #403d3d;
	font-family: 'Libre Baskerville', serif;
	font-size: 12px;
	text-align: center;
}















/*-------------------------------------------------------------------
 Media Queries
-------------------------------------------------------------------*/


/* SP layout
-------------------------------------------------------------------*/
@media screen and (max-width: 960px) {

.forPC { display: none !important; }
.forSP { display: block; }
img.forSP, br.forSP, span.forSP { display: inline-block }

body {
	font-size: 14px;
	background-size: 50px 50px;
}

/*-------------------------------------
 layout
-------------------------------------*/
.inner {
	padding: 0 10px;
}


/*-------------------------------------
 header
-------------------------------------*/
#header {
	height: 50px;
	text-align: left;
}
.headerLogo {
	width: auto;
	padding: 0;
}
.headerLogo img {
	width: 78px;
}


.headerBtn .btn {
	width: 50px;
	height: 50px;
	background: #063a77;
}
.headerBtn .btn:before {
	display: none;
}
.headerBtn .btn p {
	bottom: 5px;
	font-size: 8px;
}
.headerBtn .btn span {
	position: absolute;
	left: 0;
	right: 0;
	display: block;
	width: 28px;
	height: 2px;
	margin: 0 auto;
	background: #fff;
	transition: all .4s;
}
.headerBtn .btn span:nth-of-type(1) {
	top: 13px;
	bottom: auto;
}
.headerBtn .btn span:nth-of-type(2) {
	top: 21px;
	bottom: auto;
}
.headerBtn .btn.open span:nth-of-type(1) {
	-webkit-transform: translateY(10px) rotate(-20deg);
	transform: rotate(-20deg);
	top: 16px;
}
.headerBtn .btn.open span:nth-of-type(2) {
	-webkit-transform: translateY(-10px) rotate(20deg);
	transform: rotate(20deg);
	top: 16px;
}
.headerBtn .lang {
	display: none;
}


/*-------------------------------------
 gNav
-------------------------------------*/
.gNav {
	display: block;
	bottom: auto;
}
.gNav .inner {
	padding: 0 10px 50px;
}
.gNavMenu {
	flex-direction: column;
}
.gNavLogo {
	padding: 44px 0 30px 0;
	width: 180px;
}
.gNavGroup {
	width: 100%;
	padding: 0;
}
.gNavList {
	width: 100%;
	padding: 0;
}
.gNavList ul li .title,
.gNavList ul li ul {
	width: 50%;
}
.gNavList ul li .title {
	padding: 0 9px 17px 0;
	font-size: 16px;
}
.gNavList ul li ul {
	padding: 0 0 15px 9px;
}
.gNavList ul li ul li {
	padding: 3px 0 4px 0;
	font-size: 13px;
}
.gNavList .btnFb {
	padding: 6px 15px;
	font-size: 14px;
}
.gNavList .btnFb:before {
	width: 10px;
	height: 20px;
	margin: 0 10px 0 0;
}
.gNavBtn {
	display: flex;
	padding: 10px 0 0 0;
}
.gNavBtn .item {
	width: 50%;
	padding: 0 9px 0 0;
	text-align: right;
}
.gNavBtn .item:nth-child(even) {
	padding: 0 0 0 9px;
	text-align: left;
}
.gNavBtn a,
.gNavBtn span {
	display: inline-block;
	height: 34px;
	padding: 7px 15px;
	cursor: pointer;
	color: #fff;
	font-family: 'Libre Baskerville', serif;
	font-size: 14px;
	font-weight: normal;
	white-space: nowrap;
	border: 1px solid #fff;
}
.gNavBtn .btnLang:before {
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	margin: 2px 10px 0 0;
	vertical-align: top;
	background: url(/common/images/icn_lang03.png) no-repeat 0 0 / 100% auto;
}
.gNavBtn .btnLang.open {
	color: #b8a569;
	border: 1px solid #063a77;
	background-color: #063a77;
}
.gNavBtn .btnLang.open:before {
	background-image: url(/common/images/icn_lang04.png);
}
.gNavBtn .btnFb:before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 20px;
	margin: 0 10px 0 0;
	vertical-align: bottom;
	background: url(/common/images/icn_fb01.png) no-repeat 0 0 / 100% auto;
}
.gNavLang {
	display: none;
	margin: 0 -10px;
}
.gNavLang ul {
	padding: 22px 10px;
	text-align: center;
	background: #063a77;
}
.gNavLang ul li a {
	display: inline-block;
	padding: 3px 0;
	color: #fff;
	font-size: 13px;
}
.gNavCopyright {
	padding: 25px 0 20px 0;
	font-size: 10px;
}


/*-------------------------------------
 sideNav
-------------------------------------*/
/*.sideNav {
	display: none;
}*/

/*-------------------------------------
 visualArea
-------------------------------------*/
.visualArea .visual {
	height: 250px;
}
.visualArea .visual img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}
.visualArea .title {
	padding: 20px 0 12px 0;
	font-size: 15px;
}
.visualArea .title em {
	font-size: 21px;
}
.visualArea .subtitle {
	font-size: 14px;
}
.visualArea.visualShort .visual {
	height: 200px;
}
.visualArea.visualShort .visual img {
	width: 100%;
	height: 200px;
}

.visualArea .tab {
	margin: 10px 0 -12px 0;
}
.visualArea .tab ul {
	margin: 0 -1px;
}
.visualArea .tab ul li {
	padding: 0 1px;
	font-size: 12px;
}
.visualArea .tab ul li a {
	height: 42px;
	padding: 0;
}
.visualArea .tab ul li.current a {
	border-top: 5px solid #b8a569;
	background-size: 50px 50px;
}

/*-------------------------------------
 contentsArea
-------------------------------------*/
.contentsArea {
}
.article,
.section {
	padding: 30px 0 30px 0;
}

/*-------------------------------------
 pagetopArea
-------------------------------------*/
.pagetopArea p {
	bottom: 100px;
}
.pagetopArea a {
	bottom: 10px;
	width: 40px;
	height: 40px;
}


/*-------------------------------------
 footer
-------------------------------------*/
.footerLogo {
	padding: 25px 0 18px 0;
}
.footerLogo li {
	width: 73px;
	margin: 0 15px;
}
.footerLogo li:nth-child(2) {
	width: 91px;
}
.footerCopyright {
	padding: 0 0 20px 0;
	font-size: 10px;
}








}



/* 
-------------------------------------------------------------------*/


@media screen and (min-width: 1570px) {

}
@media screen and (min-width: 1180px) {
.visualArea {
	padding: 0 90px;
}
.visualArea .title {
	left: 90px;
	right: 90px;
}

}



/* PC layout
-------------------------------------------------------------------*/
@media screen and (min-width: 961px) {


a img,
.hover,
.gNav ul li a,
.pagetopArea p,
.visualArea .tab ul li a,
.headerBtn .lang li a {
	text-decoration: none;
	transition: all 0.1s linear;
	-webkit-transition: all 0.1s linear;
	-moz-transition: all 0.1s linear;
	backface-visibility: hidden;
}
a:hover img,
.hover:hover,
.gNav ul li a:hover,
.pagetopArea p:hover,
.visualArea .tab ul li a:hover,
.headerBtn .lang li a:hover {
	opacity: 0.7;
}


}



