/* =================================
 * 2025.09 Arche.
================================= * /

/* =================================
 * Link img setting
================================= * /

/* img settings
---------------------------------------------------*/
	a[href] img {
		transition: transform var(--default-transition);
	}
	a[href]:hover img {
		transform: scale(1.03);
	}


/* =================================
 * drawerMenu_gNav setting
================================= * /
/* is_drawerMenu_gNav
---------------------------------------------------*/
	body.is_drawerMenu_gNav_active {
		overflow: hidden;
	}

/* drawerBtn_gNavWrap
---------------------------------------------------- */
	.drawerBtn_gNavWrap {
		display: none;
	}
@media screen and (max-width: 900px) {
	.drawerBtn_gNavWrap {
		order: 20;
		justify-self: end;
		width: 80px;
		display: flex;
		/*position: relative;*/
		
		/* オーバーレイの上に被せる */
		position: relative;
		inset: 0 0 auto auto;
		z-index: 10000;
	}
	.drawerBtn_gNavWrap button {
		/* clear */
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		color: inherit;
		font: inherit;
		background: transparent;
		border: none;
		border-radius: 0;
		cursor: pointer;

		/* reset */
		flex: 1 1 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		padding: 5px 20px;
		transition: background .18s ease;

		height: 90px;
		background: rgb(255 255 255 / .9);
	}
	.drawerBtn_gNavWrap button[aria-expanded="true"] {
			backdrop-filter: blur(10px);
	}
	@media (hover: hover) and (pointer: fine) {
		.drawerBtn_gNavWrap button:hover {
			backdrop-filter: blur(10px);
		}
	}
	.drawerBtn_gNavWrap button:focus-visible {
			backdrop-filter: blur(10px);
	}

	.drawerBtn_gNavWrap button .line {
		flex: 0 0 100%;
		display: block;
		position: relative;
		height: 3px;
		background: currentColor;
		margin: auto;
		transition: background .13s ease-in-out;
	}
			/* ≡ ライン */
			.drawerBtn_gNavWrap button .line::before,
			.drawerBtn_gNavWrap button .line::after {
				content: "";
				display: block;
				position: absolute;
				inset: 0;
				width: 100%;
				height: 3px;
				background: currentColor;
				transition: transform .18s ease-in-out;
			}
			.drawerBtn_gNavWrap button .line::before {	transform: translateY(-7px);}
			.drawerBtn_gNavWrap button .line::after {	transform: translateY(7px);}
			/* × ライン （グロナビアクティブ時） */
			.drawerBtn_gNavWrap button[aria-expanded="true"] .line {			background: rgb(255 255 255 / 0);}
			.drawerBtn_gNavWrap button[aria-expanded="true"] .line::before {	transform: rotate(135deg);}
			.drawerBtn_gNavWrap button[aria-expanded="true"] .line::after {		transform: rotate(-135deg);}

	.drawerBtn_gNavWrap button .label {
		/* cliphidden */
		position: absolute; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(0px 0px 99.99% 99.99%); overflow: hidden; width: 1px; height: 1px; white-space: nowrap; padding: 0; border: 0;
	}
	
	/* ウィンドウサイズを変えた瞬間はアニメーションさせない */
	body.is_drawerMenu_gNav_screenNarrow .drawerBtn_gNavWrap button {
		transition: background 0s;
	}
	body.is_drawerMenu_gNav_screenNarrow .drawerBtn_gNavWrap button .line {
		transition: background 0s;
	}
	body.is_drawerMenu_gNav_screenNarrow .drawerBtn_gNavWrap button .line::before,
	body.is_drawerMenu_gNav_screenNarrow .drawerBtn_gNavWrap button .line::after {
		transition: transform 0s;
	}
}

@media screen and (max-width: 900px) {
	.drawerBtn_gNavWrap {
		position: fixed;
		top: auto;
		bottom: 0;
		right: 0;
		z-index: 10000;
		width: 90px;
	}
}



/* =================================
 * template setting
================================= */

@media screen and (max-width: 900px) {
	.siteWrap {
		padding-bottom: 90px;
	}
}
/* siteHeaderWrap
---------------------------------------------------*/
	.siteHeaderWrap {
	}
	.siteHeaderWrap header.siteHeader {
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		margin: 0 auto;
	}
@media screen and (min-width: 900.02px) and (max-width: 1200px) {
	.siteHeaderWrap header.siteHeader {
		flex-wrap: wrap;
	}
}
@media screen and (min-width: 900.02px) {
	.siteHeaderWrap {
		position: sticky;
		z-index: 1000;
		top: 0;
		background: rgba(255, 255, 255, .9);
		backdrop-filter: blur(15px);
		/*box-shadow: 0 0 5px 5px rgba(0, 0, 0, .05);*/
	}
}
@media screen and (max-width: 900px) {
	.siteHeaderWrap {
		margin-bottom: 0px;
	}
}


/* siteHeaderLogo */
	.siteHeaderLogo {
		width: min(17%, 330px);
		flex-shrink: 1;
		padding: 15px 5px;
	}

@media screen and (max-width: 1200px) {
	.siteHeaderLogo {
		width: 330px;
	}
}
@media screen and (max-width: 900px) {
	.siteHeaderLogo a {
		display: block;
		width: 70%;
		max-width: 300px !important;
	}
}


/* gNavWrap */
	.gNavWrap {
		flex-grow: 1;
		/*padding-bottom: 15px;*/
	}
	.gNav {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.gNav > li {
		position: relative;
		font-size: min(1.15em, 1.2vw);
		padding: 0 1em;
	}
	.gNav > li:not(:first-child)::before {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		display: block;
		width: 1px;
		height: 1.6em;
		background: #CCC;
	}
	.gNav > li a {
		display: block;
		padding-bottom: 5px;
	}
	.gNav > li > a::after {
		content: "";
		display: block;
		position: absolute;
		bottom: 0;
		left: 0.5em;
		width: calc(100% - 1em);
		height: 3px;
		background: rgb(var(--site-themeColor-mainColor)/ 1);
		transform: scaleX(0);
		transition: 0.3s all ease;
	}
	.gNav > li:not([aria-current="page"]) > a:hover::after {
		transform: scaleX(1);
	}
	.gNav > li[aria-current="page"] > a::after {
		transform: scaleX(1);
	}


	.gNav ul li a {
		transition: all var(--default-transition);
		position: relative;
		display: flex;
		font-size: 0.9em;
		align-items: flex-start;
		padding: 0.5em 1em;
	}
	.gNav ul li a::before {
		content: "";
		display: block;
		margin-top: 0.5em;
		border: 6px solid transparent;
		border-left-color: rgb(var(--site-themeColor-mainColor));
	}
	.gNav ul li a:hover {
		transform: translateX(3px);
	}

@media screen and (min-width: 900.02px) {
	.gNav ul {
		position: absolute;
		left: 0;
		width: 13em;
		top: 100%;
	}
	/*.gNav ul::before {
		content: "";
		display: block;
		height: 15px;
		background: transparent;
	}*/
	.gNav ul li {
		background: #FFF;
	}
	.gNav ul li a:hover {
		background: rgb(0 0 0 /.05);
	}

	
	.gNav ul {
		transition: clip-path var(--default-transition);
		clip-path: inset(0 0 100% 0);
	}
	.gNav > li:hover ul {
		clip-path: inset(0 0 0 0);
	}
}
@media screen and (min-width: 900.02px) and (max-width: 1200px) {
	.gNavWrap {
		width: 100%;
		order: 3;
		padding: 1.8em 0 15px;
	}
	.gNav > li {
		position: relative;
		font-size: min(1.15em, 2.2vw);
		padding: 0 1em;
	}
}

@media screen and (max-width: 900px) {
	.gNavWrap {
		display: block;
		position: fixed;
		top: 0;
		bottom: 0;
		right: -100%;
		z-index: 9970;
		width: 90%;
		height: 100vh;
		/*min-height: calc(100lvh + 1px);*/
		overflow-y: auto;
		/*overscroll-behavior-y: none;*/ /* none=バウンドしない */
		color: #FFF;
		margin-left: auto;
		transition: all .4s ease;
		padding: 2em 2em 90px;
		background: rgb(var(--site-themeColor-mainColor));
	}
	body.is_drawerMenu_gNav_screenNarrow .gNavWrap {
		transition: right 0s; /* ウィンドウサイズを変えた瞬間はアニメーションさせない */
	}
	.gNavWrap[aria-hidden="true"] {
		right: -100%;
		visibility: hidden;
	}
	.gNavWrap[aria-hidden="false"] {
		right: 0px;
		visibility: visible;
	}

	.gNav {
		display: flex;
		flex-direction: column;
		width: 100%;
		align-items: flex-start;
		/*background-color: rgb(var(--site-themeColor-mainColor));*/
	}
	.gNav li {
		position: relative;
		width: 100%;
		font-size: max(1.0em, 3vw);
		padding: 0 0em;
		border-bottom: 1px solid rgb(255 255 255 / .3);
	}
	.gNav li a {
		position: relative;
		display: block;
		width: 100%;
		padding: 0.5em 1em;
	}
	.gNav li[aria-current="page"] a {
		/*background: rgb(var(--site-themeColor-mainColor_hover)/ .5);*/
	}
	.gNav li a::before {
		content: "";
		display: inline-block;
		margin-right: 0.3em;
		border: 5px solid transparent;
		border-left-color: rgb(255 255 255 / .5);
	}
	.gNav li:not(:first-child)::before {
		display: none;
	}
	
	.gNav li a::after {
		display: none !important;
	}
	
	.gNav li ul li {
		display: block;
		width: auto;
		margin-left: 2em;
		border-top: 1px dotted rgb(255 255 255 / .3);
		border-bottom: none;
	}
	.gNav li ul li a {
		font-size: 0.8em;
		padding: 0.2em 0 0.2em 0.5em;
	}
	.gNav li ul li a::before {
		border-left-color: rgb(var(--site-themeColor-mainColor_hover));
	}


	@media (hover: hover) and (pointer: fine) {
		.gNav li a:hover {
			background-color: rgb(var(--site-themeColor-mainColor_hover));
		}
		.gNav li ul li a:hover {
			background: rgb(255 255 255 /.9)
		}
	
		/* -- overlay（SP時の背景カバー_JSで生成） -- */
		.gNavWrapOverlay {
			display: block;
			position: fixed;
			inset: 0;
			z-index: 9960;
			width: 100%;
			background: rgb(102 100 100 / .5);
			cursor: pointer;
		}
		.gNavWrap[aria-hidden="true"] + .gNavWrapOverlay {
			visibility: hidden;
			opacity: 0;
			/*transition: visibility 0s ease calc(.4s + .1s),
						opacity .4s ease;*/
		}
		.gNavWrap[aria-hidden="false"] + .gNavWrapOverlay {
			height: 100lvh;
			visibility: visible;
			opacity: 1;
			transition: visibility 0s ease,
						opacity .4s ease;
		}
	}
}

/* hContactBtn */
	.hContactBtn {
		width: min(17%, 330px);
		flex-shrink: 1;
	}
	.hContactBtn a {
		display: flex;
		column-gap: min(15px, 0.5vw);
		height: 90px;
		justify-content: center;
		align-self: stretch;
		align-items: center;
		color: #FFF;
		font-size: min(1.15em, 1.0vw);
		background: rgb(var(--site-themeColor-mainColor));
		padding: 0 min(20px, 1vw);

		transition: all var(--default-transition);
	}
	.hContactBtn a:hover {	background-color: rgb(var(--site-themeColor-mainColor_hover));}
	.hContactBtn a i {
		display: block;
		aspect-ratio: 25 / 18;
		width: min(25px, 1.2vw);
		background: url("../images/share/ico_req.svg") 0 0 no-repeat;
		background-size: contain;
	}


@media screen and (min-width: 900.02px) and (max-width: 1200px) {
	.hContactBtn {
		width: 330px;
	}
	.hContactBtn a {
		font-size: 1.8vw;
	}
	.hContactBtn a i {
		width: 25px;
	}
}
@media screen and (max-width: 900px) {
	.hContactBtn {
		position: fixed;
		bottom: 0;
		z-index: 10000;
		max-width: none;
		width: calc(100% - 90px);
	}
	.hContactBtn a {
		column-gap: min(15px, 1vw);
		font-size: min(2em, 4.3vw);
		background-color: rgb(var(--site-themeColor-mainColor_hover));
	}
	.hContactBtn a:hover {	background-color: rgb(var(--site-themeColor-mainColor));}
	.hContactBtn a i {
		aspect-ratio: 25 / 18;
		width: min(50px, 3.5vw);
	}
}




/* pageContentsWrap
---------------------------------------------------*/
	.pageContentsWrap {
		position: relative;
	}

/* pageTop */
	.pageContentsWrap .pageTop {
		opacity: 0;
		z-index: 500;
		pointer-events: none;
		position: fixed;
		bottom: 10px;
		right: 10px;
		display: block;
		width: 50px;
		height: 50px;
		background: rgb(var(--site-themeColor-mainColor));
		border-radius: 50%;
		transition: all var(--default-transition);
	}
	.pageContentsWrap .pageTop.is-view {
		opacity: 1;
		pointer-events: all;
	}
	.pageContentsWrap .pageTop a {
		display: block;
		width: 100%;
		height: 100%;
		background: rgb(var(--site-themeColor-mainColor));
		border-radius: 50%;
	}

	.pageContentsWrap .pageTop::before {
		pointer-events: none;
		content: "";
		position: absolute;
		top: 0%;
		left: 50%;
		display: block;
		width: 0;
		height: 0;
		transform: translate(-50%, 25%);
		border: solid transparent;
		border-width: 12px 8px;
		border-bottom-color: #FFF;	
	}

@media screen and (max-width: 900px) {
	.pageContentsWrap .pageTop {
		bottom: 100px;
	}
}


/* sectionWrap
---------------------------------------------------*/
	.sectionWrap {
		padding: var(--site-marpad-XS) 0 var(--site-marpad-XL);
	}
	.sectionWrap.tabPage {
		padding-bottom: var(--site-marpad-XXS);
	}



/* sectionHeader
---------------------------------------------------*/
	.sectionHeader {
		margin-bottom: var(--site-marpad-XS);
	}




/* sectionCont
---------------------------------------------------*/
	.sectionCont {
		width: var(--site-sizeContentWide-M);
		max-width: var(--site-sizeMaxWidth-M);
		margin: 0 auto;
	}





/* featureBnrWrap
---------------------------------------------------*/
	.featureBnrWrap {
		text-align: center;
		background: #cacaca;
		padding: var(--site-marpad-XS) 0;
	}

	.featureBnrCont {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-wrap: wrap;
		gap: 30px;
		width: var(--site-sizeContentWide-L);
		max-width: 1380px;
		margin: 0 auto;
	}
	.featureBnrCont p {
		width: calc((100% - 30px)/2);
		max-width: 680px;
	}
@media screen and (max-width: 900px) {
	.featureBnrCont {
		flex-direction: column;
		gap: 10px;
	}
	.featureBnrCont p {
		width: 100%;
	}
}


/* siteFooterWrap
---------------------------------------------------*/
	.siteFooterWrap {
		padding: var(--site-marpad-XXS) 0 var(--site-marpad-XXS);
	}
	.siteFooterWrap footer.siteFooter {
		display: flex;
		justify-content: space-between;
		width: var(--site-sizeContentWide-L);
		/*max-width: var(--site-sizeMaxWidth-M);*/
		margin: 0 auto;
	}

/* siteOwnerUnit */
	.siteFooterWrap .siteOwnerUnit .siteOwner {
		display: flex;
		flex-direction: column;
		margin-bottom: 0.8em;
	}
	.siteFooterWrap .siteOwnerUnit .siteOwner strong{
		font-family: var(--site-font_family-serif);
		font-size: 1.4em;
		font-weight: bold;
	}
	.siteFooterWrap .siteOwnerUnit .copyright {
		font-size: 0.8em;
	}

	/* privacyMark */
	.siteFooterWrap .privacyMark {
		display: flex;
		align-items: center;
	}
	.siteFooterWrap .privacyMark span img {
		max-width: 94px;
	}
	.siteFooterWrap .privacyMark p {
		max-width: 280px;
		font-size: 0.8em;
		padding-left: 20px;
	}
@media screen and (max-width: 900px) {
	.siteFooterWrap footer.siteFooter {
		flex-direction: column;
	}
	.siteFooterWrap .privacyMark {
		display: none;
	}
	.siteFooterWrap .siteOwnerUnit {
		order: 1;
	}
}





