@charset "utf-8";
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
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, figcaption, figure, section, footer, header, main, hgroup, menu, nav, summary {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
}

/* 主要なテキスト要素 */
/* h1, h2, h3, h4, h5, h6, p, span, div, a, li, button, input, textarea {
    font-size: max(1em, 16px);
} */


p{
	font-size: max(1rem, 16px);
}


@media all and (min-width: 897px) and (max-width: 1919px) {
	html {
		font-size: calc(1000vw / 1920);
	}
}
@media all and (max-width: 389px) {
	html {
		font-size: calc(1000vw / 390);
	}
}
body, table, input, textarea, select, option {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
}
article, aside, canvas, details, figcaption, figure, footer, header, main, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
chrome_annotation {
	border: none !important;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
	max-width: 100%;
    height: auto;
}
address {
	font-style: normal;
}
a,
a:link {
	color: #2E2E2E;
	text-decoration: none;
	transition: 0.3s;
}
a:visited {
	color: #2E2E2E;
}
a:hover {
	color: #2E2E2E;
}
a:active {
	color: #2E2E2E;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	color: #2E2E2E;
	font-size: 1.8rem;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background: url("../img/common/bg01.jpg") repeat left top / 5rem;
}
body.menu-open {
	overflow: hidden;
}
p {
	line-height: 1.9;
	letter-spacing: 0.1em;
}
.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}
#container {
	text-align: left;
	position: relative;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (min-width: 897px) {
	.sp {
		display: none !important;
	}
	.mainBox {
		padding-left: 48rem;
	}
}
@media all and (max-width: 896px) {
	body {
		min-width: inherit;
		font-size: 1.4rem;
	}
	p {
		letter-spacing: 0;
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader .hBox h1 a span {
	font-size: 65%;
	display: block;
}

#gHeader {
	color: #2E2E2E;
	width: calc(100% - 3rem);
	position: fixed;
	top: 2rem;
	left: 1.5rem;
	z-index: 99;
	background: rgba(255, 255, 255, 0.3);
}
#gHeader a {
	color: #2E2E2E;
}
#gHeader .hBox {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-left: 4.9rem;
}
#gHeader .rightBox {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
#gHeader .logo {
	margin-top: -0.2rem;
	font-weight: 500;
	font-size: 2.2rem;
	letter-spacing: 0.1em;
}
#gHeader .comBtn {
	margin: -1px -1px -1px 0;
}
#gHeader .comBtn a {
	width: 23.2rem;
}
@media all and (max-width: 896px) {

	#gHeader .hBox h1 a span {
		font-size: 2.2vw;
		line-height: 1.2;
	}

	#gHeader .hBox {
		display: block;
		padding-left: 0;
	}
	#gHeader {
		padding: 2rem 2rem 2.8rem ;
		width: 100%;
		top: 0;
		left: auto;
		background: transparent;
	}
}

#gNavi {
	margin-right: 3.8rem;
	flex: 1;
}
#gNavi .naviUl {
	display: flex;
	justify-content: flex-end;
	font-size: 1.8rem;
	font-weight: 500;
	gap: 5.9rem;
	letter-spacing: 0.11em;
}
#gNavi .naviUl li {
	position: relative;
}
#gNavi .naviUl > li > a {
	padding: 0.6rem 0 0.4rem;
	display: inline-block;
	position: relative;
	vertical-align: top;
}
#gNavi a::before {
	width: 100%;
	height: 0.3rem;
	border-radius: 1rem;
	background-color: #3E549E;
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0;
	transition: 0.3s;
}
#gNavi .on > a::before {
	opacity: 1;
}
#gNavi .dropBox {
	width: 25rem;
	position: absolute;
	top: 100%;
	left: -0.3rem;
	font-family: "Noto Sans JP", sans-serif;
	padding-top: 2.1rem;
	display: none;
}
#gNavi .dropBox ul {
	padding: 0.4rem 0;
	border-radius: 1rem;
	background: #3E549E;
}
#gNavi .dropBox a {
	padding: 1.8rem 3.1rem 1.9rem;
	display: block;
	color: #fff;
	font-size: 2.2rem;
	font-weight: 500;
	background: url("../img/common/icon10.png") no-repeat right 2.5rem center / 1.5rem auto;
}
#gNavi .dropBox ul li {
	border-bottom: 1px solid #fff;
}
#gNavi .dropBox ul li:last-child {
	border-bottom: none;
}
@media all and (min-width: 897px) {
	#gNavi a:hover:before {
		opacity: 1;
	}
	#gNavi .dropBox a:hover {
		opacity: 0.7;
	}
	#gNavi .dropBtn:hover > a::before {
		opacity: 1;
	}
	#gNavi .dropBtn:hover .dropBox {
		display: block;
	} 
}



/* menuBtn02 */
.menuBtn02 {
	width: 7rem;
  	height: 7rem;
	color: #554449;
	background-color: #fff;
	cursor: pointer;
	transition: 0.3s;
	position: fixed;
	top: 1rem;
	right: 1rem;
	z-index: 999;
  	border-right: none;
	border: 1px solid #554449;
}
.menuBtn02 .menu {
	margin: -1rem 0 0 0;
	position: absolute;
	top: 50%;
	left: 50%;
	height: 2.4rem;
	width: 3.2rem;
	z-index: 100;
	transform: translate(-50%, -50%);
}
.menuBtn02 .menu span {
	background: #554449;
	border: none;
	height: 0.3rem;
	width: 100%;
	position: absolute;
	top: 0;
	right: 0;
	border-radius: 5rem;
	cursor: pointer;
	border-radius: 0.5rem;
	transition: 0.3s;
}
.menuBtn02 .menu span:nth-of-type(2) {
	top: 0.5rem;
	opacity: 0;
}
.menuBtn02 .menu span:nth-of-type(3) {
	top: 1rem;
}
.menuBtn02.active .menu .top {
	transform: translateY(0.51rem) translateX(-0.1rem) rotate(20deg) !important;
	z-index: 10 !important;;
}
.menuBtn02.active .menu .middle {
	opacity: 0;
}
 .menuBtn02.active .menu .bottom {
	transform: translateY(-0.5rem) translateX(-0.06rem) rotate(-20deg) !important;
}
.menuBtn02 .menu .txt {
	margin-top: 0;
	font-size: 1.6rem;
	display: block;
	position: absolute;
	top: 100%;
	left: 50%;
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: 0.1em;
	transform: translateX(-50%);
}
.menuBtn02 .menu .txt small {
	display: block;
}

/* menuBox */
.menuBox {
	width: 100%;
	height: 100%;
	color: #fff;
	position: fixed;
	top: 0;
	right: 0;
	overflow-y: auto;
	background: #3E549E;
	z-index: 99;
	display: none;
	transform: translateX(100%);
	transition: transform 0.3s ease-in-out;
}
.menuBox.active {
	display: block;
	transform: translateX(0);
}
.menuBox .innerBox {
	padding: 11.8rem 5rem 10rem 5rem;
}
.menuBox a {
	color: #fff;
}
.menuBox address {
	text-align: center;
	margin-top: 5.8rem;
	letter-spacing: 0.15em;
}
.menuBox .innerBox {
	padding: 9.2rem 5.2rem 10rem;
}
.menuBox .comNavi02 .link {
	color: #fff;
	border-color: #fff;
}
.menuBox .comLinkUl a {
	height: 8rem;
	color: #3E549E;
	background-color: #fff;
	font-size: 2.2rem;
	font-weight: 700;
	border-color: #fff;
}
.menuBox .comLinkUl {
	margin: 7rem -3.5rem 0;
}
.menuBox .comLinkUl .sml {
	font-size: 1.6rem;
	font-weight: 500;
}
.menuBox .comLinkUl .item01 a {
	padding-top: 0.5rem;
	font-size: 2.4rem;
	height: 10rem;
}
.menuBox .comLinkUl .txt img {
	width: 4rem;
}
.menuBox .comLinkUl .item01 .txt img {
	top: -0.2rem;
}
.menuBox .comLinkUl .item01 .sml {
	margin-top: 0.1rem;
	letter-spacing: 0.1em;
}

/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter .fBox {
	display: flex;
	justify-content: space-between;
}
#gFooter .fImg {
	width: 69rem;
}
#gFooter .fImg img {
	width: 100%;
}
#gFooter .flexBox {
	flex: 1;
	display: flex;
	margin: 12.1rem 0 0 2rem;
	max-width: calc(50% + 23.2rem);
}
#gFooter .leftBox {
	width: 32.1rem;
}
#gFooter .fTxt {
	margin: 7.3rem 0 0 -1.2rem;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 1.5;
}
#gFooter .fBtm {
	color: #fff;
	display: flex;
	justify-content: center;
	background-color: #3E549E;
	gap: 0 10.3rem;
	letter-spacing: 0.1em;
	padding: 0.4rem 13.5rem 0.4rem 0;
}
#gFooter .fBtm a {
	color: #fff;
}
#gFooter address {
	font-size: 1.4rem;
	font-weight: 500;
}
#gFooter .link {
	margin-top: -0.2rem;
	font-size: 1.6rem;
	font-weight: 500;
}
@media all and (min-width: 897px) {
	#gFooter .fBtm a:hover {
		opacity: 0.7;
	}
}
@media all and (max-width: 896px) {
	#gFooter .fBtm {
		padding-right: 0;
		gap: 0 4.3rem;
	}
	#gFooter address {
		font-size: 1.2rem;
	}
	#gFooter .fBox {
		margin: 0 2rem 3rem;
		display: block;
	}
	#gFooter .flexBox {
		flex: 1;
		display: block;
		margin: 0;
		max-width: inherit;
	}
	#gFooter .leftBox {
		width: auto;
	}
	#gFooter .link {
		margin-top: 0;
		font-size: 1.2rem;
	}
	#gFooter .fTxt {
		margin: 2.3rem 0 0;
		font-size: 1.4rem;
	}
	#gFooter .fLogo img {
		width: 19rem;
	}
	#gFooter {
		padding-top: 3rem;
	}
}

.pageTop {
	width: 5rem;
	position: fixed;
	bottom: 3.5rem;
	right: 2rem;
	z-index: 20;
}
.pageTop a {
	display: block;
}
@media all and (min-width: 897px) {
	.pageTop a:hover {
		opacity: 0.7;
	}
}