@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: 374px) {
	html {
		font-size: calc(1000vw / 375);
	}
}
body, table, input, textarea, select, option {
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
}
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: inherit;
	text-decoration: none;
	transition: 0.3s;
}
a:visited {
	color: inherit;
}
a:hover {
	color: inherit;
}
a:active {
	color: inherit;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	min-width: 1180px;
	color: #2C2C2C;
	font-size: 1.6rem;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}
body.fixed {
	position: fixed;
	width: 100%;
}
#container {
	position: relative;
	text-align: left;
	overflow-wrap: anywhere;
}
#main {
	margin-bottom: 10rem;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (min-width: 897px) {
	body.fixed {
		overflow-y: scroll;
	}
	.sp {
		display: none !important;
	}
}
@media all and (max-width: 896px) {
	body {
		min-width: inherit;
		font-size: 1.4rem;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
	padding: 0 4rem 0 5.8rem;
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	background: rgba(255, 255, 255, 0.8);
	z-index: 200;
}
#gHeader .logo {
	margin-top: 3.7rem;
	width: 20rem;
}
#gHeader .logo a {
	display: block;
}
#gHeader .logo img {
	width: 100%;
}
#gNavi {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
#gNavi .hBtnList {
	display: flex;
	gap: 0.1rem;
}
#gNavi .hBtnList li {
	width: 11rem;
	min-height: 3.5rem;
}
#gNavi .hBtnList li a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.3rem;
	font-weight: 700;
	gap: 1rem;
	background: #F05712;
}
#gNavi .hBtnList .item02 a:not(:hover) {
	background-color: #928D92;
}
#gNavi .hBtnList .item03 a:not(:hover) {
	background-color: #406190;
}
#gNavi .hBtnList li:first-child a {
	border-radius: 0 0 0 0.2rem;
}
#gNavi .hBtnList li:last-child a {
	border-radius: 0 0 0.2rem 0;
}
#gNavi .hBtnList li a .icon {
	width: 1.4rem;
	line-height: 0;
	filter: brightness(0) invert(1);
	transition: filter 0.3s;
}
#gNavi .naviList {
	margin-right: -0.6rem;
	display: flex;
}
#gNavi .naviList li {
	position: relative;
}
#gNavi .naviList li a {
	padding: 1.5rem 1.6rem 1.9rem;
	display: block;
	font-size: 1.4rem;
	font-weight: 400;
	position: relative;
}
#gNavi .naviList li a.hasChild::after {
	margin-left: -0.3rem;
	width: 1.2rem;
	position: absolute;
	left: 50%;
	bottom: 0.8rem;
	transform: translateX(-50%);
	background: url(../img/common/icon04.png) no-repeat center center / 100%;
	aspect-ratio: 12/7;
	content: '';
	transition: background 0.3s;
}
#gNavi .naviList .subList {
	padding: 1rem;
	width: fit-content;
	max-width: fit-content;
	position: absolute;
	left: 50%;
	top: 100%;
	transform: translateX(-50%);
	white-space: nowrap;
	background: rgba(255, 255, 255, 0.8);
	display: none;
}
#gNavi .naviList .subList li {
	margin-bottom: 0.7rem;
}
#gNavi .naviList .subList li:last-child {
	margin-bottom: 0;
}
#gNavi .naviList .subList li a {
	display: block;
	padding: 0 0 0 1em;
	text-indent: -1em;
}
@media all and (min-width: 897px) {
	.menuBox {
		display: block !important;
	}
	#gNavi .hBtnList li a:hover {
		color: #F05712;
		background-color: #fff;
	}
	#gNavi .hBtnList li a:hover .icon {
		filter: none;
	}
	#gNavi .naviList li a:hover {
		color: #F05712;
	}
	#gNavi .naviList li a.hasChild:hover::after {
		background-image: url(../img/common/icon05.png);
	}
	#gNavi .naviList li.on a.hasChild {
		color: #F05712;
	}
	#gNavi .naviList li.on a.hasChild::after {
		background-image: url(../img/common/icon05.png);
	}
}
@media all and (min-width: 897px) and (max-width: 1179px) {
	#gHeader {
		padding: 0 3.39vw 0 4.915vw;
		gap: 1.695vw;
		font-size: 1.356vw;
	}
	#gHeader .logo {
		margin-top: 3.136vw;
		width: 16.949vw;
	}
	#gNavi .hBtnList li {
		width: 9.322vw;
		min-height: 2.966vw;
	}
	#gNavi .hBtnList li a {
		font-size: 1.102vw;
	}
	#gNavi .hBtnList li a .icon {
		width: 1.186vw;
	}
	#gNavi .naviList {
		margin-right: -0.508vw;
	}
	#gNavi .naviList li a {
		padding: 1.271vw 1.356vw 1.61vw;
		font-size: 1.186vw;
	}
	#gNavi .naviList li a.hasChild::after {
		margin-left: -0.254vw;
		width: 1.017vw;
		bottom: 0.678vw;
	}
	#gNavi .naviList .subList {
		padding: 0.847vw;
	}
	#gNavi .naviList .subList li {
		margin-bottom: 0.593vw;
	}
	#gNavi .naviList .subList li:last-child {
		margin-bottom: 0;
	}
}
@media all and (max-width: 896px) {
	#gHeader {
		padding: 2rem;
		position: relative;
	}
	#gHeader .logo {
		margin-top: 0;
	}
	.menu {
		width: 4rem;
		height: 4rem;
		position: fixed;
		right: 1.2rem;
		top: 1.2rem;
		background: #F05712;
		cursor: pointer;
		z-index: 300;
	}
	.menu span {
		width: 1.8rem;
		height: 0.2rem;
		position: absolute;
		left: 1.1rem;
		top: 1.3rem;
		background: #fff;
		transition: 0.3s;
	}
	.menu span:nth-child(2) {
		top: 1.9rem;
	}
	.menu span:nth-child(3) {
		top: 2.5rem;
	}
	.menu.on span {
		width: 2.3rem;
	}
	.menu.on span:nth-child(1) {
		transform: translate(-0.3rem, 0.6rem) rotate(42deg);
	}
	.menu.on span:nth-child(2) {
		opacity: 0;
	}
	.menu.on span:nth-child(3) {
		transform: translate(-0.3rem, -0.6rem) rotate(-42deg);
	}
	.menuBox {
		width: 100%;
		height: 100%;
		position: fixed;
		right: 0;
		top: 0;
		background: #fff;
		overflow-y: auto;
		z-index: 200;
		display: none;
	}
	#gNavi {
		padding: 2rem 2rem 4.5rem;
		display: block;
	}
	#gNavi .logo {
		margin: 0 0 5.5rem;
		width: 20rem;
	}
	#gNavi .hBtnList {
		margin: 0 1rem 1.7rem;
		gap: 1.4rem;
	}
	#gNavi .hBtnList li {
		width: calc((100% - 2.8rem) / 3);
		min-height: 7.2rem;
	}
	#gNavi .hBtnList li a {
		font-size: 1.5rem;
		border-radius: 0.4rem;
		flex-direction: column;
		align-items: center;
	}
	#gNavi .hBtnList li:first-child a {
		border-radius: 0.4rem;
	}
	#gNavi .hBtnList li:last-child a {
		border-radius: 0.4rem;
	}
	#gNavi .hBtnList .item02 a {
		background-color: #928D92;
	}
	#gNavi .hBtnList .item03 a {
		background-color: #406190;
	}
	#gNavi .hBtnList li a .icon {
		margin-top: 0.8rem;
		width: 2.4rem;
	}
	#gNavi .hBtnList li:nth-child(2) a {
		gap: 0.6rem;
	}
	#gNavi .hBtnList li:nth-child(2) a .icon {
		width: 2.7rem;
		margin-top: 0.4rem;
	}
	#gNavi .hBtnList li:nth-child(3) a {
		gap: 0.7rem;
	}
	#gNavi .hBtnList li:nth-child(3) a .icon {
		margin-top: 0.4rem;
		width: 2.3rem;
	}
	#gNavi .naviList {
		margin: 0 1rem 3.3rem;
		flex-wrap: wrap;
		text-align: center;
		border-top: 0.1rem solid #C7C7C7;
	}
	#gNavi .naviList li {
		width: 100%;
		border-bottom: 0.1rem solid #C7C7C7;
	}
	#gNavi .naviList li a {
		padding: 1.5rem 1.2rem;
	}
	#gNavi .naviList li a.hasChild {
		text-align: left;
	}
	#gNavi .naviList li a.hasChild::after {
		display: none;
	}
	#gNavi .naviList .subList {
		margin-top: 0.5rem;
		padding: 0 1.4rem 1.8rem;
		width: 100%;
		max-width: 100%;
		position: relative;
		left: auto;
		top: auto;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 1rem 0;
		transform: none;
		white-space: initial;
		background: transparent;
	}
	#gNavi .naviList .subList li {
		margin-bottom: 0;
		border: none;
	}
	#gNavi .naviList .subList li:nth-child(2n-1) {
		width: 44%;
	}
	#gNavi .naviList .subList li:nth-child(2n) {
		width: 56%;
	}
	#gNavi .naviList .subList li a {
		display: block;
		padding: 0;
		text-indent: 0;
		font-weight: 400;
		text-align: left;
	}
	#gNavi .naviList .item06,
	#gNavi .naviList .item07 {
		width: 50%;
	}
	#gNavi .naviList .item06 {
		border-right: 0.1rem solid #C7C7C7;
	}
	#gNavi .naviList .item06 a,
	#gNavi .naviList .item07 a {
		padding: 0.5rem;
		width: 100%;
		height: 100%;
		min-height: 5.1rem;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#gNavi .naviList .item06 a .sm,
	#gNavi .naviList .item07 a .sm {
		font-size: 1.3rem;
	}
	#gNavi .snsList {
		gap: 1.8rem;
	}
	#gNavi .snsList li a {
		display: flex;
		align-items: center;
		gap: 0.9rem;
		font-size: 1.2rem;
		font-weight: 400;
		letter-spacing: 0.08em;
	}
	#gNavi .snsList li .icon {
		width: 2.1rem;
		flex-shrink: 0;
	}
}
/*------------------------------------------------------------
	pagePath
------------------------------------------------------------*/
#pagePath {
	padding: 11.7rem 0 7.7rem;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 2;
}
#pagePath li {
	display: inline;
}
#pagePath li:not(:last-child):after {
	margin: 0 0.8rem 0 1.3rem;
	width: 0.6rem;
	display: inline-block;
	vertical-align: 0;
	aspect-ratio: 12/17;
	background: url(../img/common/icon06.png) no-repeat center center / 100%;
	content: '';
}
#pagePath li a:hover {
	opacity: 0.7;
}
@media all and (max-width: 896px) {
	#pagePath {
		padding: 3.2rem 0 4.5rem;
		min-height: 12.5rem;
	}
}
/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
	padding-bottom: 4.6rem;
}
#gFooter .ctaBox {
	margin-bottom: 9.6rem;
	display: flex;
	align-items: flex-start;
}
#gFooter .ctaBox .heading {
	margin-bottom: 4.6rem;
	font-weight: 700;
}
#gFooter .ctaBox .heading .en {
	margin-bottom: 1.1rem;
	display: block;
}
#gFooter .ctaBox .heading .en img {
	width: 23rem;
}
#gFooter .ctaBox .text {
	margin-bottom: 1.4rem;
	font-size: 1.8rem;
	line-height: 2;
	letter-spacing: 0.04em;
}
#gFooter .ctaBox .tel {
	margin-bottom: 1.3rem;
	font-size: 3.4rem;
}
#gFooter .ctaBox .tel a {
	margin-left: 2.5rem;
	font-size: 4.6rem;
	letter-spacing: 0.04em;
}
#gFooter .ctaBox .time {
	margin-right: 1.1rem;
	text-align: right;
	letter-spacing: 0.04em;
}
#gFooter .ctaBox .linkList {
	margin-left: auto;
	width: 41.8rem;
	border-top: 0.1rem solid #fff;
}
#gFooter .ctaBox .linkList li {
	border-bottom: 0.1rem solid #fff;
}
#gFooter .ctaBox .linkList li a {
	padding: 3.2rem 5rem 3.2rem 2.5rem;
	display: flex;
	gap: 2rem;
	align-items: center;
	position: relative;
	font-size: 1.8rem;
	font-weight: 400;
	letter-spacing: 0.04em;
}
#gFooter .ctaBox .linkList li a .icon {
	width: 2.8rem;
	display: block;
	line-height: 1;
	flex-shrink: 0;
}
#gFooter .ctaBox .linkList li a .comArrow {
	border-color: #fff;
	right: 2.2rem;
}
#gFooter .ctaBox .sub01,
#gFooter .ctaBox .sub02 {
	color: #fff;
}
#gFooter .ctaBox .sub01 {
	margin-left: -2.9rem;
	width: calc(50% + 2.9rem);
	padding: 6.9rem 4rem 6.9rem 10.8rem;
	order: 1;
	background: #406190;
}
#gFooter .ctaBox .sub01 .innerBox {
	max-width: 40rem;
}
#gFooter .ctaBox .sub02 {
	margin: 7rem -4rem 0 0;
	width: calc(50% + 4rem);
	padding: 10.4rem 13.2rem 8.9rem 4rem;
	background: #F05712;
}
#gFooter .fBox {
	margin: 0 auto;
	width: 110rem;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 5.9rem 0;
}
#gFooter .fLogoBox {
	padding-left: 1.7rem;
	width: 40rem;
}
#gFooter .fLogo {
	width: 33.6rem;
	margin-bottom: 3.4rem;
}
#gFooter .fLogo a {
	display: block;
}
#gFooter .fInfoTxt {
	font-size: 1.2rem;
	letter-spacing: 0.04em;
	line-height: 1.8333;
}
#gFooter .fNaviBox {
	width: calc(50% + 7.8rem);
	display: flex;
}
#gFooter .fNaviBox .listBox {
	width: 52%;
	display: flex;
}
#gFooter .fNaviBox .listBox01 {
	width: 48%;
}
#gFooter .fNaviBox .fNaviList {
	width: 40%;
	display: flex;
	flex-direction: column;
	gap: 2.2rem;
}
#gFooter .fNaviBox .list01 {
	width: 60%;
}
#gFooter .fNaviBox .list03 {
	width: 42%;
}
#gFooter .fNaviBox .list04 {
	width: 58%;
}
#gFooter .fNaviBox .fNaviList li a {
	width: fit-content;
	max-width: 100%;
	display: block;
	font-size: 1.4rem;
	font-weight: 700;
}
#gFooter .fNaviBox .fNaviList li a:hover {
	opacity: 0.7;
}
#gFooter .fNaviBox .fNaviList li a[href="#"] {
	pointer-events: none;
	cursor: default;
}
#gFooter .fNaviBox .fNaviList .subList {
	margin-top: 1.3rem;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}
#gFooter .fNaviBox .fNaviList .subList li a {
	padding-left: 1.6rem;
	font-size: 1.2rem;
	font-weight: 400;
	position: relative;
}
#gFooter .fNaviBox .fNaviList .subList li a::before {
	width: 0.8rem;
	height: 0.2rem;
	position: absolute;
	left: 0;
	top: 0.9rem;
	background: #F05712;
	content: '';
}
#gFooter .copyright {
	width: 100%;
	text-align: right;
	font-size: 1rem;
	letter-spacing: 0.2em;
}
@media all and (max-width: 896px) {
	#gFooter {
		padding-bottom: 5rem;
	}
	#gFooter .ctaBox {
		margin-bottom: 10rem;
		display: block;
	}
	#gFooter .ctaBox .heading {
		margin-bottom: 1.3rem;
		letter-spacing: 0.04em;
	}
	#gFooter .ctaBox .heading .en {
		margin-bottom: 0.8rem;
	}
	#gFooter .ctaBox .heading .en img {
		width: 13rem;
	}
	#gFooter .ctaBox .text {
		margin-bottom: 1.3rem;
		font-size: 1.4rem;
	}
	#gFooter .ctaBox .tel {
		margin-bottom: 0.5rem;
		font-size: 1.6rem;
	}
	#gFooter .ctaBox .tel a {
		margin-left: 1rem;
		font-size: 2.6rem;
	}
	#gFooter .ctaBox .time {
		margin-right: 0;
		max-width: 21.6rem;
	}
	#gFooter .ctaBox .linkList {
		margin-left: 0;
		width: auto;
	}
	#gFooter .ctaBox .linkList li a {
		padding: 2.2rem 5rem 2rem 1.8rem;
		font-size: 1.4rem;
		gap: 1.5rem;
	}
	#gFooter .ctaBox .linkList li a .icon {
		width: 2rem;
	}
	#gFooter .ctaBox .linkList li a .comArrow {
		right: 1.2rem;
	}
	#gFooter .ctaBox .sub01 {
		margin-left: 2rem;
		width: auto;
		padding: 6rem;
		position: relative;
		z-index: 1;
	}
	#gFooter .ctaBox .sub01 .innerBox {
		max-width: initial;
	}
	#gFooter .ctaBox .sub02 {
		margin: -4.1rem 2rem 0 0;
		width: auto;
		padding: 8rem 2rem 5.9rem;
	}
	#gFooter .fBox {
		margin: 0 2rem;
		width: auto;
		display: block;
	}
	#gFooter .fLogoBox {
		margin-bottom: 5.6rem;
		padding-left: 0;
		width: auto;
	}
	#gFooter .fLogo {
		width: 25.6rem;
		margin: 0 auto 2.8rem;
	}
	#gFooter .fInfoTxt {
		text-align: center;
	}
	#gFooter .fNaviBox {
		margin: 0 1rem 6rem;
		width: auto;
		flex-wrap: wrap;
	}
	#gFooter .fNaviBox .listBox {
		width: 50%;
		display: block;
	}
	#gFooter .fNaviBox .listBox01 {
		width: 50%;
		display: block;
	}
	#gFooter .fNaviBox .fNaviList {
		width: auto;
		gap: 2.4rem;
	}
	#gFooter .fNaviBox .list01 {
		margin-bottom: 2.3rem;
		width: auto;
	}
	#gFooter .fNaviBox .list03 {
		margin-bottom: 2.3rem;
		width: auto;
	}
	#gFooter .fNaviBox .list04 {
		width: auto;
	}
	#gFooter .fNaviBox .fNaviList li a {
		font-size: 1.3rem;
	}
	#gFooter .copyright {
		text-align: center;
	}
}