@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700&display=swap');
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
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, font, 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 {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
}

html {
	font-size: 62.5%;
}

body, table, input, textarea, select, option {
	font-family: "游ゴシック","Yu Gothic","游ゴシック体","YuGothic","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","Meiryo UI","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}

article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

:focus {
	outline: 0;
}

ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

img {
	vertical-align: top;
	max-width: 100%;
}

a,
a:link {
	color: #000032;
	text-decoration: none;
}

a:visited {
	color: #000032;
}

a:hover {
	color: #000032;
}

a:active {
	color: #000032;
}

/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	min-width: 1200px;
	color: #000032;
	font-size: 1.2rem;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}

#container {
	text-align: left;
	overflow: hidden;
}

#main {
	margin-bottom: 98px;
}

a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}

@media all and (min-width: 768px) {
	.sp {
		display: none !important;
	}
}

@media all and (max-width: 767px) {
	body {
		min-width: inherit;
		font-size: 1.35rem;
	}

	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	
	.pc {
		display: none !important;
	}
	
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
	
	#main {
		margin-bottom: 75px;
	}
	
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
	padding: 30px 50px 26px;
	position: relative;
}

#gHeader h1 {
	float: left;
}

#gHeader h1 img {
	width: 178px;
}

#gHeader .menu {
	margin: 11px 0 0 16px;
	float: right;
	cursor: pointer;
	position: relative;
	z-index: 500;
}

#gHeader .menu .close {
	display: none;
}

#gHeader .menu.on .close {
	display: block;
}

#gHeader .menu.on .open {
	display: none;
}

#gHeader .menu img {
	width: 42px;
}

#gHeader .hMail {
	margin-top: 12px;
	width: 150px;
	float: right;
}

#gHeader .hMail a {
	padding: 10px 5px 9px 42px;
	display: block;
	color: #fff;
	font-size: 1.15rem;
	border-radius: 15px;
	background: #000032 url(../../img/common/mail.svg) no-repeat left 19px center;
	background-size: 16px 10px;
	letter-spacing: 4px;
}

#gHeader .hMail a:hover {
	opacity: 0.7;
}

#gHeader .cover {
	z-index: 300;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	display: none;
}

#gHeader .cover.on {
	display: block;
}

#gHeader .menuBox {
	width: 400px;
	padding: 171px 40px 70px;
	position: absolute;
	box-sizing: border-box;
	right: -100%;
	top: 0;
	transition: right ease 0.3s;
	-webkit-transition: right ease 0.3s;
	z-index: 400;
	background-color: #000032;
}

#gHeader .menuBox.on {
	right: 0;
}

#gHeader .menuBox .menuUl li {
	border-bottom: 1px solid #fff;
}

#gHeader .menuBox .menuUl a {
	padding: 22px 0 16px 30px;
	display: block;
	color: #fff;
	font-size: 2rem;
	letter-spacing: 4px;
	background: url(../../img/common/sp_icon01.png) no-repeat left 4px top 31px;
}

#gHeader .menuBox .menuUl li:last-child a {
	padding: 20px 0 18px;
	background: none;
}

#gHeader .menuBox .menuUl li:last-child a img {
	width: 200px;
}

#gHeader .menuBox .menuUl a:hover {
	opacity: 0.7;
}
#gHeader .language {
	margin-left: 20px;
	float: right;
}
#gHeader .language p {
	margin: 0 0 5px;
	font-size: 1.6rem;
	font-weight: 500;
	text-align: center;
	font-family: 'Work Sans', sans-serif;
}
#gHeader .language select {
	padding: 2px 0 2px 10px;
	width: 96px;
	height: 24px;
	color: #222;
	font-weight: 500;
	border-radius: 0;
	font-size: 1.4rem;
	box-sizing: border-box;
	transition: all .3s ease-in-out;
    background: transparent;
    border: 1px solid #e5e5e5;
	background-color: transparent;
}
@media all and (max-width: 767px) {
	#gHeader {
		padding: 25px 17px 24px 24px;
	}

	#gHeader h1 img {
		width: 120px;
	}

	#gHeader .menu {
		margin: -2px 0 0 14px;
	}

	#gHeader .menu img {
		width: auto;
		height: 43px;
	}
	
	#gHeader .hMail {
		margin-top: -2px;
		width: auto;
	}
	
	#gHeader .hMail img {
		height: 43px;
	}

	#gHeader .hMail a {
		padding: 0;
		border-radius: 0;
		background: none;
	}
	
	#gHeader .menuBox {
		width: 100%;
		padding: 123px 58px 112px;
	}
	
	#gHeader .menuBox .menuLogo {
		position: absolute;
		left: 24px;
		top: 25px;
	}
	
	#gHeader .menuBox .menuLogo img {
		width: 120px;
	}
	
	#gHeader .menuBox .menuMail {
		position: absolute;
		top: 23px;
		right: 68px;
	}
	
	#gHeader .menuBox .menuMail img {
		height: 43px;
	}
	
	#gHeader .menuBox .menuUl a {
		font-size: 1.35rem;
		padding: 22px 0 16px 21px;
		background-size: 6px auto;
		background-position: left 4px top 27px;
	}
	
	#gHeader .menuBox .menuUl li:last-child a {
		padding: 20px 0 18px;
	}
	
	#gHeader .menuBox .menuUl li:last-child a img {
		width: 148px;
	}
	#gHeader .language {
		margin: -4px 0 0 10px;
	}
	#gHeader .language p {
		margin-bottom: 3px;
		font-size: 1.2rem;
	}
	#gHeader .language select {
		padding: 2px 0 2px 10px;
		width: 87px;
		height: 22px;
		font-size: 1.2rem;
	}
}
@media all and (max-width: 374px) {
	#gHeader h1 img {
		width: 100px;
	}
	#gHeader .language p {
		font-size: 1rem;
	}
	#gHeader .language select {
		width: 70px;
	}
}
/*------------------------------------------------------------
	パンクズリスト
------------------------------------------------------------*/
#pagePath {
	padding: 6px 0;
	background-color: #F2F2F2;
}

#pagePath ul {
	width: 1000px;
	margin: 0 auto;
}

#pagePath li {
	margin-right: 3px;
	display: inline;
	font-weight: bold;
	letter-spacing: 2px;
}

#pagePath a {
	padding-right: 7px;
}

#pagePath a:hover {
	opacity: 0.7;
}

@media all and (max-width: 767px) {
	#pagePath {
		padding: 10px 17px;
	}

	#pagePath ul {
		width: auto;
	}

	#pagePath li {
		font-size: 1.1rem;
	}

}

/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
	padding: 50px 0;
	background-color: #000;
}

#gFooter .fBox {
	width: 1000px;
	margin: 0 auto;
}

#gFooter .fLogo {
	width: 162px;
	float: left;
}

#gFooter .fR {
	margin-top: -3px;
	width: 615px;
	float: right;
}

#gFooter .fNavi {
	margin: 0 0 11px;
	display: flex;
	justify-content: space-between;
}

#gFooter .fNavi a {
	padding-right: 11px;
	color: #fff;
	font-size: 1rem;
	background: url(../../img/common/icon03.png) no-repeat right center;
	background-size: 5px auto;
	letter-spacing: 3px;
}

#gFooter .fNavi a:hover {
	opacity: 0.7;
}

#gFooter .fInner {
	padding-top: 11px;
	border-top: 1px solid #333;
}

#gFooter .fSns {
	width: 138px;
	float: left;
}

#gFooter .fSns a:hover {
	opacity: 0.7;
}

#gFooter .copyright {
	margin-top: 3px;
	float: right;
	color: #fff;
	font-size: 1rem;
	letter-spacing: 1px;
}

@media all and (max-width: 767px) {
	#gFooter {
		padding: 75px 0;
	}

	#gFooter .fBox {
		width: auto;
	}

	#gFooter .fLogo {
		width: 136px;
		margin: 0 auto;
		float: none;
	}

	#gFooter .fR {
		margin-top: 10px;
		width: auto;
		float: none;
	}

	#gFooter .fNavi {
		display: block;
		padding-bottom: 28px;
		margin: 71px 53px 24px;
		border-bottom: 1px solid #E6E6E6;
	}

	#gFooter .fNavi li {
		display: block;
	}

	#gFooter .fNavi li:not(:last-child) {
		margin: 0 0 33px;
	}

	#gFooter .fNavi a {
		padding: 0 0 0 18px;
		font-size: 1.5rem;
		background: url(../../img/common/sp_icon01.png) no-repeat left center;
		background-size: 6px auto;
		letter-spacing: 4.5px;
	}
	
	#gFooter .fInner {
		padding-top: 0;
		border-top: none;
	}

	#gFooter .fSns {
		width: 148px;
		margin: 0 auto;
		float: none;
	}

	#gFooter .copyright {
		margin-top: 23px;
		float: none;
		text-align: center;
	}
	
}

@media all and (-ms-high-contrast:none){
	#gHeader .menuBox .menuUl a {
		padding-top: 24px;
		padding-bottom: 14px;
	}
	
	#gFooter .fNavi a {
		background-position: right top 2px;
	}
	
	#pagePath {
		padding: 8px 0 4px;
	}
}
