@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%;
}
@media all and (max-width: 575px) {
    html {
        font-size: calc(1000vw / 375);
    }
}
@media all and (min-width: 576px)and (max-width: 959px) {
    html {
        font-size: 95.83%;
    }
}
@media all and (min-width: 960px)and (max-width: 1599px) {
    html {
        font-size: calc(1000vw / 1366);
    }
}
@media all and (min-width: 1600px) {
    html {
        font-size: 73.16%;
    }
}
body, table, input, textarea, select, option {
	font-family: "Noto Sans JP", sans-serif;
}
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: #1A1A1A;
	text-decoration: none;
	transition: 0.3s;
}
a:visited {
	color: #1A1A1A;
}
a:hover {
	color: #1A1A1A;
}
a:active {
	color: #1A1A1A;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	color: #1A1A1A;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}
.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}
#container {
	position: relative;
	text-align: left;
	overflow: clip;
}
#main {
	padding-top: 11.8rem;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (min-width: 960px) {
	.sp {
		display: none !important;
	}
}
@media all and (max-width: 959px) {
	body {
		min-width: inherit;
		font-size: 1.4rem;
	}
	#main  {
		padding-top: 8.8rem;
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    opacity: 1;
    visibility: visible;
    transition: all ease 0.3s;
}
#gHeader.hide {
    opacity: 0;
    visibility: hidden;
}
#gHeader::after {
	content: "";
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
    z-index: 1;
    background-color: rgba(26, 26, 26, 0.3);opacity: 0.3;
    opacity: 0;
    transition: height 0s linear 0.4s, opacity 0.3s linear 0.1s;
	pointer-events: none;
}
.naviOpen #gHeader::after {
	opacity: 1;
	pointer-events: auto;
}
#gHeader .hBox {
	padding: 0 2.4rem 1rem 2.4rem;
}
#gHeader .hBox h1 {
	margin-top: 2.1rem;
	width: 22.6rem;
}
#gHeader .hBox .menuBox {
	width: calc(100% - 24rem);
}
#gHeader .hBox .menuBox .linkList {
	margin-bottom: 0.8rem;
	justify-content: flex-end;
	gap: 0.8rem;
}
#gHeader .hBox .menuBox .linkList li {
	width: 12.4rem;
}
#gHeader .hBox .menuBox .linkList li a {
	padding: 0.5rem;
	min-height: 3.3rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	color: #FFF;
	font-size: 1.3rem;
	font-weight: 700;
	text-align: center;
	border-radius: 0 0 0.8rem 0.8rem;
	background-color: #E50012;
	box-sizing: border-box;
}
#gHeader .hBox .menuBox .linkList li a:hover {
	opacity: 0.7;
}
#gHeader .hBox .menuBox .linkList li:nth-child(2) a {
	background-color: #FA6055;
}
#gHeader .hBox .menuBox .linkList li:nth-child(3) a {
	background-color: #1A1A1A;
}
#gHeader .hBox .menuBox .linkList li a .num {
	padding-top: 0.2rem;
	display: inline-block;
	font-size: 1.6rem;
	font-family: "DM Sans", sans-serif;
	line-height: 1.2;
}
#gNavi {
	margin-left: auto;
	padding: 0.2rem 2rem 0.2rem;
	position: relative;
	z-index: 101;
	width: fit-content;	
}
#gNavi::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #FFF;
	border-radius: 8rem;
	border: 0.2rem solid #F0F2F5;
	content: '';
}
#gNavi > ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
#gNavi > ul > li,
#gNavi > ul > li > a {
	display: block;
}
#gNavi > ul > li {
	margin-left: 2.8rem;
}
#gNavi > ul > li.ml24 {
	margin-left: 2.4rem;
}
#gNavi > ul > li.ml32 {
	margin-left: 3.2rem;
}
#gNavi > ul > li:first-child {
	margin-left: 0;
}
#gNavi > ul > li > a {
	position: relative;
	padding: 1rem 0;
	height: 100%;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.3;
	box-sizing: border-box;
}
#gNavi > ul > li.on > a {
	color: #E50012;
}
#gNavi > ul > li.spec > a .sub {
	padding-right: 1.4rem;
}
#gNavi > ul > li.spec > a .sub::before {
	position: absolute;
	top: 1rem;
	right: -0.4rem;
	width: 1.4rem;
	height: 1.4rem;
	border: 1px solid #E9E9E9;
	border-radius: 50%;
	content: '';
	background-color: #FFF;
}
#gNavi > ul > li.spec > a .sub::after {
	margin-top: -0.4rem;
	position: absolute;
	top: 50%;
	right: 0;
	width: 0.8rem;
	height: 0.8rem;
	background: url(../img/common/icon01.png) no-repeat left top / 100%;
	content: '';
	transition: transform 1s cubic-bezier(.23,1,.32,1);
}
#gNavi > ul > li.on.spec > a .sub::after {
	background-image: url(../img/common/icon01_on.png);
}
#gNavi > ul > li.in > a {
	/* padding: 1rem 0.8rem; */
	position: relative;
	z-index: 1;
}
#gNavi > ul > li.in > a::before {
	position: absolute;
	top: 0.8rem;
	left: -0.8rem;
	right: -0.8rem;
	/* left: 0;
	right: 0; */
	height: 2rem;
	background-color: #F0F2F5;
	border-radius: 1.6rem;
	content: '';
	z-index: -1;
}
#gNavi .tabArea {
	padding: 3.4rem 1.4rem 0 3rem;
	position: absolute;
	z-index: -2;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	min-height: 39rem;
	border-radius: 2rem;
	border: 0.2rem solid #F0F2F5;
	background: linear-gradient(0deg, rgba(240, 242, 245, 0.50) 0%, rgba(240, 242, 245, 0.50) 100%), #FFF;
	box-sizing: border-box;
	overflow: clip;
	clip-path: inset(0% 0% 100% 0%);
	transition: clip-path 0.3s ease-out, z-index 0s linear 0.3s;
}
.naviOpen #gNavi .tabArea {
	clip-path: inset(0%);
}
#gNavi > ul > li.on.spec .tabArea {
	z-index: -1;
	transition: clip-path 0.3s ease-out, z-index 0s linear 0s;
}
#gNavi .tabArea .tabBox {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	height: 100%;
}
#gNavi .tabArea .tabBox .title {
	padding: 3.5rem 1rem 0 0;
	width: 14.2rem;
	font-weight: 700;
	border-right: 1px solid #D5D5D5;
	box-sizing: border-box;
}
#gNavi .tabArea .tabBox .subBox {
	width: calc(100% - 14.2rem);
	position: relative;
}
#gNavi .tabArea .tabBox .subBox .linkUl {
	padding: 3.5rem 2.4rem 0 3.2rem;
	width: 28.2rem;
	height: 100%;
	border-right: 1px solid #D5D5D5;
	box-sizing: border-box;
}
#gNavi .tabArea .tabBox .subBox .linkUl li {
	margin-bottom: 1.6rem;
}
#gNavi .tabArea .tabBox .subBox .linkUl li:last-child {
	margin-bottom: 0;
}
#gNavi .tabArea .tabBox .subBox .linkUl li a {
	display: block;
	color: #95A1BB;
	font-size: 1.4rem;
	background: url(../img/common/icon04.png) no-repeat right center / 1.3rem;
}
#gNavi .tabArea .tabBox .subBox .linkUl .subMenu {
	padding: 3.5rem 1.6rem 0 3.2rem;
	position: absolute;
	top: 0;
	right: 0;
	width: calc(100% - 28.2rem);
	box-sizing: border-box;
	opacity: 0;
	transition: opacity 0.2s linear;
}
#gNavi .tabArea .tabBox .subBox .linkUl > li.on .subMenu {
	opacity: 1;
}
@media all and (min-width: 960px) {
	#gNavi li a:hover {
		color: #E50012;
	}
	#gNavi li.spec a:hover .sub::after {
		transform: rotate(180deg);
	}
	#gNavi .tabArea .tabBox .subBox .linkUl li a:hover {
		color: #E50012;
		background-image: url(../img/common/icon03.png);
	}
	#gHeader .hBox .menuBox {
		display: block !important;
	}
}
@media all and (max-width: 959px) {
	#gHeader.on {
		background-color: #FFF;
	}
	#gHeader .hBox {
		padding: 0 5rem 2rem 1.5rem;
	}
	#gHeader .hBox h1 {
		margin-top: 2.1rem;
		width: 20.4rem;
	}
	#gHeader .menu {
		position: absolute;
		top: 1.5rem;
		right: 1.5rem;
		height: 4.9rem;
		width: 4.9rem;
		background-color: #FFF;
		border-radius: 50%;
		border: 1px solid #E9E9E9;
		box-sizing: border-box;
		cursor: pointer;
		z-index: 300;
		-webkit-transition: all .3s ease;
		transition: all .3s ease;
	}	
	#gHeader .menu span {
		margin-left: -1.1rem;
		background: #1A1A1A;
		border: none;
		height: 0.2rem;
		width: 2.2rem;
		position: absolute;
		top: 1.4rem;
		left: 50%;
		border-radius: 0.4rem;
		-webkit-transition: all .35s ease;
		transition: all .35s ease;
		cursor: pointer;
	}	
	#gHeader .menu span:nth-of-type(2) {
		top: 2rem;
	}	
	#gHeader .menu .txt {
		margin-left: -1.3rem;
		width: auto;
		height: auto;
		top: 2.3rem;
		font-size: 1rem;
		font-weight: 700;
		text-align: center;
		font-family: "DM Sans", sans-serif;
		background: transparent;
		letter-spacing: -0.02em;
	}
	#gHeader .menu.on .top {
		transform: translateY(0.3rem) translateX(0) rotate(18deg);
	}
	#gHeader .menu.on .bottom {
		transform: translateY(-0.3rem) translateX(0) rotate(-18deg);
	}
	#gHeader .hBox .menuBox {
		padding-bottom: 10rem;
		width: 32rem;
		position: absolute;
		top: 7.8rem;
		right: -100vw;
		height: fit-content;
		max-height: calc(100dvh - 7.8rem);
		overflow: auto;
		transition: all 0.5s;
		box-sizing: border-box;
	}
	#gHeader .hBox .menuBox.open {
		right: 0;
	}
	#gHeader .hBox .menuBox .addTitle {
		padding: 1.2rem 2.9rem 1.4rem;
		font-size: 1.6rem;
		font-weight: 700;
	}
	#gHeader .hBox .menuBox .linkList {
		padding: 0 3rem;
		display: block;
	}
	#gHeader .hBox .menuBox .linkList li {
		margin-bottom: 1.6rem;
		width: auto;
	}
	#gHeader .hBox .menuBox .linkList li:last-child {
		margin-bottom: 0;
	}
	#gHeader .hBox .menuBox .linkList li a {
		padding: 1.2rem 2rem 1.4rem !important;
		min-height: 5.8rem;
		font-size: 1.6rem;
		color: #E50012 !important;
		background: #FFF !important;
		border: 0.2rem solid #E50012;
		border-radius: 0.4rem;
	}
	#gHeader .hBox .menuBox .linkList li a .sub {
		padding-right: 3.3rem;
		position: relative;
		display: inline-block;
	}
	#gHeader .hBox .menuBox .linkList li a .sub::before {
		position: absolute;
		top: 0.2rem;
		right: 0;
		width: 2.3rem;
		height: 2.3rem;
		border-radius: 50%;
		border: 1px solid #D5D5D5;
		box-sizing: border-box;
		background: #FFF url(../img/common/icon21.png) no-repeat center center / 1rem;
		content: '';
	}
	#gHeader .hBox .menuBox .linkList li a::after {
		display: none !important;
	}
	#gHeader .hBox .menuBox .linkList li a .num {
		font-size: 1.8rem;
	}
	#gNavi {
		margin: 0;
		padding: 0 0 2.5rem;
		width: 100%;
		background-color: #FFF;
	}
	#gNavi::before {
		display: none;
	}
	#gNavi > ul {
		display: block;
	}
	#gNavi > ul > li,
	#gNavi > ul > li > a {
		display: block;
	}
	#gNavi > ul > li {
		margin-left: 0 !important;
		padding: 0;
	}
	#gNavi > ul > li > a {
		padding: 1.5rem 4.8rem 1.4rem !important;
		font-size: 1.6rem;
		color: #1A1A1A !important;
		background: url(../img/common/icon03.png) no-repeat right 3rem center / 1.3rem;
		border-bottom: 1px solid #D5D5D5;
	}
	#gNavi > ul > li:first-child > a {
		border-top: 1px solid #D5D5D5;
	}
	#gNavi > ul > li > a::after {
		margin-top: -0.3rem !important;
		display: block !important;
		position: absolute;
		top: 50%;
		left: 3rem;
		width: 0.8rem;
		height: 0.8rem;
		background: #1A1A1A !important;
		border-radius: 50%;
		content: '';
	}
	#gNavi > ul > li.spec > a {
		-webkit-user-select: none;
        -webkit-touch-callout: none;
		background: url(../img/common/icon19.png) no-repeat right 2.4rem center / 2.4rem;
	}
	#gNavi > ul > li.spec > a.on {
		background-image: url(../img/common/icon19_on.png);
	}
	#gNavi > ul > li.spec > a .sub::before {
		display: none;
	}
	#gNavi > ul > li.spec > a .sub::after {
		display: none;
	}
	#gNavi > ul > li.in > a::before {
		display: none;
	}
	#gNavi .tabArea {
		display: none;
		padding: 0;
		position: static;
		height: 100%;
		min-height: inherit;
		border-radius: 0;
		border: 0;
		background: transparent;
		clip-path: inset(0%);
	}
	#gNavi .tabArea .tabBox {
		display: block;
	}
	#gNavi .tabArea .tabBox .title {
		display: none;
	}
	#gNavi .tabArea .tabBox .subBox {
		width: auto;
	}
	#gNavi .tabArea .tabBox .subBox .linkUl {
		padding: 0;
		width: auto;
		height: 100%;
		border-right: none;
		box-sizing: border-box;
	}
	#gNavi .tabArea .tabBox .subBox .linkUl li {
		margin-bottom: 0;
	}
	#gNavi .tabArea .tabBox .subBox .linkUl li a {
		padding: 1.3rem 4.8rem 1.3rem 6.4rem;
		display: block;
		color: #1A1A1A !important;
		font-size: 1.6rem;
		font-weight: 700;
		border-bottom: 1px solid #D5D5D5;
		background: url(../img/common/icon03.png) no-repeat right 3rem center / 1.3rem;
	}
	#gNavi .tabArea .tabBox .subBox .linkUl li.spec {
		position: relative;
	}
	#gNavi .tabArea .tabBox .subBox .linkUl li.spec > a {
		background: none;
	}
	#gNavi .tabArea .tabBox .subBox .linkUl li.spec .clickBtn {
		padding: 1rem;
		position: absolute;
		top: 0.7rem;
		right: 1.8rem;
		width: 1.6rem;
		height: 1.7rem;
		border: none;
		box-sizing: content-box;
		background: url(../img/common/icon19.png) no-repeat center center / 2.4rem;
	}
	#gNavi .tabArea .tabBox .subBox .linkUl li.spec > a.on {
		background-image: url(../img/common/icon19_on.png);
	}
	#gNavi .tabArea .tabBox .subBox .linkUl .subMenu {
		display: none;
		padding: 0;
		position: static;
		width: auto;
		opacity: 1;
	}
	#gNavi .tabArea .tabBox .subBox .linkUl .subMenu .subList li a {
		font-size: 1.4rem;
	}
}
/*------------------------------------------------------------
	pagePath
------------------------------------------------------------*/
.pagePath {
	margin: 0 auto 2.8rem;
	max-width: 123.8rem;
	position: relative;
	z-index: 5;
}
.pagePath li,
.pagePath li a {
	display: inline-block;
	font-size: 1.4rem;
	font-weight: 700;
}
.pagePath li {
	margin-right: 0.5rem;
	color: #E50012;
}
.pagePath li:has(a) {
	color: #1A1A1A;
}
.pagePath li:last-child {
	margin-right: 0;
}
.pagePath li a {
	padding-right: 0.9rem;
}
.pagePath li a:hover {
	opacity: 0.7;
}
@media all and (max-width: 959px) {
	.pagePath {
		margin: 0 0 1.1rem;
		padding: 0 1.5rem;
		max-width: inherit;
	}
	.pagePath li,
	.pagePath li a {
		font-size: 1rem;
	}
}
/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
	margin-top: -13.7rem;
	padding: 20.1rem 0 4rem;
	position: relative;
	z-index: 5;
	background-color: #E50012;
}
#gFooter .pagePath {
	margin-bottom: 6.3rem;
	padding: 0.5rem 1.6rem 0.8rem;
	background-color: #FA6055;
	border-radius: 0.8rem;
}
#gFooter .pagePath li,
#gFooter .pagePath li a {
	color: #FFF;
	font-size: 1.4rem;
}
#gFooter .fBox {
	margin: 0 auto;
	max-width: 124rem;
	color: #FFF;
}
#gFooter .fBox .topBox {
	margin-bottom: 3.9rem;
}
#gFooter .fBox .topBox .lBox .fLogo {
	margin-bottom: 8.4rem;
	width: 33.9rem;
}
#gFooter .fBox .topBox .snsBox .title {
	margin-bottom: 1.4rem;
	font-weight: 700;
}
#gFooter .fBox .topBox .snsBox .snsList li {
	margin-right: 1.5rem;
}
#gFooter .fBox .topBox .snsBox .snsList li a {
	display: block;
	height: 2.5rem;
}
#gFooter .fBox .topBox .snsBox .snsList li a:hover {
	opacity: 0.7;
}
#gFooter .fBox .topBox .snsBox .snsList li a img {
	height: 100%;
}
#gFooter .fBox .topBox .rBox {
	width: 70.8rem;
}
#gFooter .fBox .topBox .rBox .fNavi {
	margin: 0 0 2.8rem 0;
	display: grid;
	grid-template-areas: "item1 item2 item2 item3 item4 item5"
						"item6 item6 item6 item7 item7 item5";
	grid-template-columns: 8.5rem 13.7rem 2.6rem 13.1rem 13.1rem 1fr;
    grid-template-rows: 0.92fr 1.08fr;
}
#gFooter .fBox .topBox .rBox .fNavi li:first-child {
	grid-area: item1;
}
#gFooter .fBox .topBox .rBox .fNavi li:nth-child(2) {
	grid-area: item2;
}
#gFooter .fBox .topBox .rBox .fNavi li:nth-child(3) {
	grid-area: item3;
}
#gFooter .fBox .topBox .rBox .fNavi li:nth-child(4) {
	grid-area: item4;
}
#gFooter .fBox .topBox .rBox .fNavi li:nth-child(5) {
	grid-area: item5;
}
#gFooter .fBox .topBox .rBox .fNavi li:nth-child(6) {
	grid-area: item6;
}
#gFooter .fBox .topBox .rBox .fNavi li:nth-child(7) {
	grid-area: item7;
}
#gFooter .fBox .topBox .rBox .fNavi li a {
	position: relative;
	color: #FFF;
	font-weight: 700;
}
#gFooter .fBox .topBox .rBox .fNavi > li > a::before {
	position: absolute;
	top: 50%;
	left: -1.2rem;
	transform: translateY(-50%);
	width: 0.8rem;
	height: 0.8rem;
	border-radius: 50%;
	background-color: #FFF;
	content: '';
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}
#gFooter .fBox .topBox .rBox .fNavi > li > a::after {
	position: absolute;
	bottom: 0.1rem;
	left: 0;
	width: 0;
	height: 1px;
	background-color: #FFF;
	content: '';
	transition: 0.3s;
}
#gFooter .fBox .topBox .rBox .fNavi .subUl {
	margin-top: 1rem;
}
#gFooter .fBox .topBox .rBox .fNavi .subUl li:not(:last-child) {
	margin-bottom: 1rem;
}
#gFooter .fBox .topBox .rBox .fNavi .subUl li a {
	opacity: 0.7;
	font-size: 1.4rem;
	font-weight: 700;
	position: relative;
}
#gFooter .fBox .topBox .rBox .fNavi .subUl li a.on {
	opacity: 1;
}
#gFooter .fBox .topBox .rBox .fNavi .subUl li a::before {
	position: absolute;
	top: 50%;
	left: -1.2rem;
	transform: translateY(-50%);
	width: 0.8rem;
	height: 0.8rem;
	border-radius: 50%;
	background-color: #FFF;
	content: '';
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}
#gFooter .fBox .topBox .rBox .fNavi .subUl li a::after {
	position: absolute;
	bottom: 0.1rem;
	left: 0;
	width: 0;
	height: 1px;
	background-color: #FFF;
	content: '';
	transition: 0.3s;
}
#gFooter .fBox .topBox .rBox .title {
	margin-bottom: 1.6rem;
}
#gFooter .fBox .topBox .rBox .linkList {
	display: flex;
	flex-wrap: wrap;
	gap: 2.4rem;
}
#gFooter .fBox .topBox .rBox .linkList li {
	width: calc((100% - 4.8rem) / 3);
}
#gFooter .fBox .topBox .rBox .linkList li a {
	min-height: 5.8rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	color: #FFF;
	font-weight: 700;
	border-radius: 0.4rem;
	text-align: center;
	border: 0.2rem solid #FFCFCB;
	background: #E50012;
	box-sizing: border-box;
}
#gFooter .fBox .topBox .rBox .linkList li a .num {
	padding-top: 0.3rem;
	font-size: 1.8rem;
	font-family: "DM Sans", sans-serif;
}
#gFooter .fBox .topBox .rBox .linkList li a .sub {
	padding-right: 3.3rem;
	position: relative;
	display: inline-block;
	transition: 0.3s;
}
#gFooter .fBox .topBox .rBox .linkList li a .sub::before {
	position: absolute;
	top: 0.2rem;
	right: 0;
	width: 2.3rem;
	height: 2.3rem;
	border-radius: 50%;
	border: 1px solid #D5D5D5;
	box-sizing: border-box;
	background: #FFF url(../img/common/icon21.png) no-repeat center center / 1rem;
	content: '';
}
#gFooter .fBox .bottomBox {
	padding-top: 3.9rem;
	border-top: 0.2rem solid rgba(213, 213, 213, 0.5);
}
#gFooter .fBox .bottomBox .linkUl {
	margin-bottom: 4.3rem;
}
#gFooter .fBox .bottomBox .linkUl li {
	margin-right: 2.2rem;
	display: inline-block;
}
#gFooter .fBox .bottomBox .linkUl li a {
	padding-right: 1.6rem;
	color: #FFF;
	font-size: 1.2rem;
	display: inline-block;
	background: url(../img/common/icon12.png) no-repeat right center / 1.2rem;
}
#gFooter .fBox .bottomBox .linkUl li a:hover {
	opacity: 0.7;
}
#gFooter .fBox .bottomBox .smlText {
	font-size: 1rem;
}
#gFooter .fBox .bottomBox address {
	padding-top: 0.3rem;
	font-size: 1.3rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	font-family: "DM Sans", sans-serif;
}
@media all and (min-width: 960px) {
	#gFooter .fBox .topBox .rBox .fNavi > li .spec {
		pointer-events: none;
	}
	#gFooter .fBox .topBox .rBox .linkList li a:hover {
		background-color: #FFF;
		color: #E50012;
	}
	#gFooter .fBox .topBox .rBox .linkList li a:hover .sub::before {
		background: #E50012 url(../img/common/icon21_over.png) no-repeat center center / 1rem;
	}
	#gFooter .fBox .topBox .rBox .fNavi .subUl li a:hover {
		opacity: 1;
	}
	#gFooter .fBox .topBox .rBox .fNavi > li > a:hover::before,
	#gFooter .fBox .topBox .rBox .fNavi .subUl li a:hover::before {
		opacity: 1;
		visibility: visible;
	}
	#gFooter .fBox .topBox .rBox .fNavi > li > a:hover::after,
	#gFooter .fBox .topBox .rBox .fNavi .subUl li a:hover::after {
		width: 100%;
	}
}
@media all and (max-width: 959px) {
	#gFooter {
		margin-top: -10.5rem;
		padding: 14.5rem 3rem 4rem;
	}
	#gFooter .pagePath {
		margin-bottom: 4rem;
		padding: 0.3rem 1.6rem 0.8rem;
	}
	#gFooter .pagePath li {
		margin-top: 0.5rem;
	}
	#gFooter .pagePath li a {
		font-size: 1.4rem;
	}
	#gFooter .fBox {
		margin: 0;
		max-width: inherit;
	}
	#gFooter .fBox .topBox {
		margin-bottom: 3.8rem;
		display: block;
	}
	#gFooter .fBox .topBox .lBox .fLogo {
		margin-bottom: 5rem;
		width: 31.5rem;
	}
	#gFooter .fBox .topBox .snsBox .title {
		margin-bottom: 1.5rem;
		font-size: 1.6rem;
	}
	#gFooter .fBox .topBox .rBox {
		margin-bottom: 3.8rem;
		width: auto;
	}
	#gFooter .fBox .topBox .rBox .fNavi {
		margin: 0 -3rem 2.8rem;
		display: block;
	}
	#gFooter .fBox .topBox .rBox .fNavi li a {
		padding: 1.3rem 4.8rem;
		display: block;
		font-size: 1.6rem;
		border-bottom: 1px solid #FFF;
		background: url(../img/common/icon02_over.png) no-repeat right 3rem center / 1.3rem;
	}
	#gFooter .fBox .topBox .rBox .fNavi > li.spec > a {
		-webkit-user-select: none;
        -webkit-touch-callout: none;
		background-image: url(../img/common/icon11_white.png);
		background-size: 1.6rem;
	}
	#gFooter .fBox .topBox .rBox .fNavi > li.spec > a.on {
		background-image: url(../img/common/icon11_white_on.png);
	}
	#gFooter .fBox .topBox .rBox .fNavi > li > a::before {
		left: 3rem;
		opacity: 1;
		visibility: visible;
	}
	#gFooter .fBox .topBox .rBox .fNavi > li > a::after {
		display: none;
	}
	#gFooter .fBox .topBox .rBox .fNavi .subUl {
		margin-top: 0;
		display: none;
	}
	#gFooter .fBox .topBox .rBox .fNavi .subUl li:not(:last-child) {
		margin-bottom: 0;
	}
	#gFooter .fBox .topBox .rBox .fNavi .subUl li a {
		padding: 1.3rem 6.4rem;
		opacity: 1;
		font-size: 1.6rem;
	}
	#gFooter .fBox .topBox .rBox .title {
		margin: 0 1.8rem 1.4rem;
		font-size: 1.6rem;
	}
	#gFooter .fBox .topBox .rBox .linkList {
		display: block;
	}
	#gFooter .fBox .topBox .rBox .linkList li {
		margin: 0 auto 2.4rem;
		width: auto;
		max-width: 27.9rem;
	}
	#gFooter .fBox .topBox .rBox .linkList li:last-child {
		margin-bottom: 0;
	}
	#gFooter .fBox .topBox .rBox .linkList li a {
		padding-bottom: 0.2rem;
		min-height: 6rem;
		font-size: 1.6rem;
		letter-spacing: 0.02em;
		box-sizing: border-box;
	}
	#gFooter .fBox .bottomBox {
		padding-top: 3.7rem;
	}
	#gFooter .fBox .bottomBox .lBox {
		display: block;
	}
	#gFooter .fBox .bottomBox .linkUl {
		margin-bottom: 3.9rem;
	}
	#gFooter .fBox .bottomBox .linkUl li {
		margin: 0 0 1.7rem;
		display: block;
	}
	#gFooter .fBox .bottomBox .linkUl li:last-child {
		margin-bottom: 0;
	}
	#gFooter .fBox .bottomBox address {
		margin-bottom: 4.2rem;
		padding-top: 0.3rem;
		font-size: 1rem;
		letter-spacing: 0;
	}
}
/*------------------------------------------------------------
	pageTitle
------------------------------------------------------------*/
.pageTitle {
	margin: 0 auto 12.8rem;
	max-width: 123.5rem;
	position: relative;
	z-index: 5;
}
.pageTitle .headLine02 {
	margin-bottom: 2.9rem;
}
.pageTitle .text {
	font-size: 2.4rem;
	font-weight: 700;
}
.pageTitle .title {
	margin-bottom: 2.4rem;
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.24;
	letter-spacing: 0.02em;
}
.pageTitle .smlText {
	font-size: 1.2rem;
	letter-spacing: 0.02em;
}
@media all and (max-width: 959px) {
	.pageTitle {
		margin: 0 1.5rem 6.5rem;
		max-width: inherit;
	}
	.pageTitle .headLine02 {
		margin-bottom: 3rem;
	}
	.pageTitle .text {
		font-size: 1.8rem;
	}
	.pageTitle .title {
		margin-bottom: 0.8rem;
		font-size: 1.6rem;
		line-height: 1.5;
		letter-spacing: 0;
	}
	.pageTitle .smlText {
		font-size: 1rem;
	}
}