@charset "utf-8";

:root {
	--navy: 28, 52, 124;
}

/* header
*****************************************/
.header01 {
	width: calc(100% - 90px);
	margin-left: calc(-50% + 45px);
	position: fixed;
	left: 50%;
	transform: translateY(20px);
	z-index: 999;
}
body.index .header01 {
	opacity: 0;
	visibility: hidden;
	transform: translateY(-30px);
	transition: opacity .2s,visibility .2s,transform .2s;
}
body.index .header01.is-show {
	opacity: 1.0;
	visibility: visible;
	transform: translateY(20px);
}
.header01 > .inner01 {
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.70);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 11px 22px 9px 18px;
}
.header01 > .inner01 > .button01 {
	display: none;
}
.header01 .block01 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.header01 .block01 .logo01 {
	width: 142px;
	display: block;
}
.header01 .block01 .logo01 > a {
	display: block;
}
.header01 .block01 .logo01 span {
	display: block;
	line-height: 0;
	text-align: center;
}
.header01 .block01 .logo01 span:nth-child(2) {
	margin-top: 4px;
}
.navArea01 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 10px 50px;
}
.globalNavi01 > ul {
	display: flex;
	gap: 10px 24px;
}
.globalNavi01 > ul li {
	
}
.globalNavi01 > ul li:nth-child(2) {
	display: none;
}
.globalNavi01 ul li a {
	text-decoration: none;
	transition: color .3s;
}
.globalNavi01 > ul li a > .text02 {
	display: none;
}
.globalNavi01 > ul li > ul {
	display: none;
}
.copyrights01 {
	display: none;
}
.globalList01 > li {
	min-width: 118px;
}
.globalList01 > li:not(:first-child) {
	display: none;
}
.globalList01 > li > a {
	padding: 3px 10px 5px 4px;
	border-radius: 8px;
	background: rgba(216, 216, 216, 0.40);
	display: flex;
	align-items: center;
	text-decoration: none;
	font-size: 1.3rem;
	gap: 0 10px;
	color: rgba(var(--navy),1.0);
	overflow: hidden;
	position: relative;
}
.globalList01 > li > a > .icon01 {
	position: relative;
	width: 33px;
	height: 33px;
	border-radius: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.globalList01 > li > a::before  {
	position: absolute;
	content: "";
	top: 5px;
	left: 5px;
	width: 40px;
	height: 40px;
	background: #fff;
	border-radius: 7px;
	transform: scale(1);
	transition: transform 0.1s ease, background 0.4s ease;
}
.header01 .globalList01 > li > a::before {
	width: 33px;
	height: 33px;
	top: 3.5px;
	left: 3.5px;
}
.globalList01 > li > a > .icon01 > img {
	position: relative;
	z-index: 1;
}
.globalList01 > li:nth-child(1) > a > .icon01 > img {
	left: -2px;
	top: -1px;
}
.globalList01 > li > a > .text01 {
	position: relative;
	z-index: 2;
}
.globalList01 > li > a > .text01 > span {
	display: none;
}
.globalList02 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	position: relative;
	gap: 0 26px;
}
.globalList02 {
	display: none;
}
.globalList02::before {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(270deg, #FF792F -2.33%, #FB529F 32.32%, #7245F3 58.08%);
	content: "";
}
.globalList02 > li > a {
	display: block;
	line-height: 0;
	height: 100%;
	transition: opacity .3s;
}
.globalList02 > li > a > img {
	width: auto;
	height: 100%;
}
.header01 > .inner01 .block02 > .text01 {
	display: none;
}
@media (hover: hover) {
	.globalNavi01 ul li a:hover span {
		font-weight: 700;
	}
	.globalList01 > li > a:hover::before {
		transition: width 0.4s ease, background 0.2s ease;
		background: radial-gradient(352.9% 160.76% at 115.66% -17.55%, #FF792F 6.25%, #FB529F 41.83%, #7245F3 68.27%);
		width: calc(100% - 10px);
		opacity: .2;
	}
	.header01 .globalList01 > li > a:hover::before {
		width: calc(100% - 8px);
	}
	.globalList02 > li > a:hover {
		opacity: .7;
	}
}
@media screen and (max-width: 767px) {
	.header01 {
		width: 100%;
		transform: translateY(3.73vw);
		height: 16vw;
		backdrop-filter: blur(3px);
		-webkit-backdrop-filter: blur(3px);
		margin-left: 0;
		left: 0;
	}
	.header01.is-active {
		background: rgba(244, 244, 244, 0);
		top: 0 !important;
		height: 100vh;
		transform: translateY(0);
	}
	body.index .header01.is-active {
		opacity: 1.0;
	}
	body.index .header01.is-show {
		top: 3.73vw;
		transform: translateY(0);
	}
	body.index .header01.is-show.is-active {
		top: 0;
	}
	body:has(.header01.is-active) {
		overflow: hidden;
		height: 100vh;
	}
	.header01 > .inner01 {
		height: 0;
		background: none;
		padding: 0;
		backdrop-filter: blur(0);
		-webkit-backdrop-filter: blur(0);
		z-index: -1;
		position: relative;
	}
	.header01.is-active > .inner01 {
		top: 3.73vw;
	}
	.header01.is-active > .inner01 {
		z-index: 1;
		height: calc(100svh + 3.73vw);
	}
	.header01 > .inner01::before {
		position: absolute;
		top: -20vw;
		left: 50%;
		transform: translateX(-50%);
		width: 100vw;
		height: 0;
		background: rgba(244, 244, 244, 0.80);
		content: "";
		z-index: -1;
		opacity: 0;
		visibility: hidden;
	}
	.header01.is-active > .inner01::before {
		opacity: 1.0;
		visibility: visible;
		height: 120vh;
		transition: height .3s;
	}
	.header01 > .inner01 > .button01 {
		position: absolute;
		z-index: 100;
		display: grid;
		grid-template-columns: repeat(3, 1.06vw);
		grid-template-rows: repeat(3, 1.06vw);
		gap: 1.06vw;
		width: 5.3vw;
		height: 5.3vw;
		border: none;
		cursor: pointer;
		padding: 0;
		top: 5.5vw;
		right: 8.2vw;
		background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MSIgaGVpZ2h0PSI0MSIgdmlld0JveD0iMCAwIDQxIDQxIiBmaWxsPSJub25lIj48Y2lyY2xlIGN4PSI0LjY0ODQ0IiBjeT0iNC4xMzcyMSIgcj0iNCIgZmlsbD0iIzFDMzQ3QyIvPjxjaXJjbGUgY3g9IjQuNjQ4NDQiIGN5PSIyMC4xMzcyIiByPSI0IiBmaWxsPSIjMUMzNDdDIi8+PGNpcmNsZSBjeD0iNC42NDg0NCIgY3k9IjM2LjEzNzIiIHI9IjQiIGZpbGw9IiMxQzM0N0MiLz48Y2lyY2xlIGN4PSIyMC42NDg0IiBjeT0iNC4xMzcyMSIgcj0iNCIgZmlsbD0iIzFDMzQ3QyIvPjxjaXJjbGUgY3g9IjIwLjY0ODQiIGN5PSIyMC4xMzcyIiByPSI0IiBmaWxsPSIjMUMzNDdDIi8+PGNpcmNsZSBjeD0iMjAuNjQ4NCIgY3k9IjM2LjEzNzIiIHI9IjQiIGZpbGw9IiMxQzM0N0MiLz48Y2lyY2xlIGN4PSIzNi42NDg0IiBjeT0iNC4xMzcyMSIgcj0iNCIgZmlsbD0iIzFDMzQ3QyIvPjxjaXJjbGUgY3g9IjM2LjY0ODQiIGN5PSIyMC4xMzcyIiByPSI0IiBmaWxsPSIjMUMzNDdDIi8+PGNpcmNsZSBjeD0iMzYuNjQ4NCIgY3k9IjM2LjEzNzIiIHI9IjQiIGZpbGw9IiMxQzM0N0MiLz48L3N2Zz4=") no-repeat 0 50%/100%;
	}
	.header01.is-active > .inner01 > .button01 {
		/*top: 9vw;*/
		background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDEiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDQxIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHJlY3QgeD0iMC4yNzM0MzgiIHk9IjAuNDIzNDYyIiB3aWR0aD0iNDAiIGhlaWdodD0iNiIgcng9IjMiIGZpbGw9IiMxQzM0N0MiLz48L3N2Zz4=") no-repeat 0 50%/100%;
	}
	.header01 .block01 {
		display: block;
		height: 100%;
		overflow-y: auto;
		padding-bottom: 15vw;
	}
	.header01 .block01 > .block02 {
		overflow-y: auto;
		opacity: 0;
		height: 0;
		visibility: hidden;
		width: 86.66vw;
		margin-inline: auto;
		transform: translateY(10px);
	}
	.header01.is-active .block01 > .block02 {
		transform: translateY(0);
		height: auto;
		opacity: 1.0;
		visibility: visible;
		transition: transform .3s .3s,opacity .3s .3s,visibility .3s .3s;
	}
	.header01 .block01 .logo01 {
		width: 93.33%;
		z-index: 1;
		padding: 4.4vw 4.8vw;
		backdrop-filter: blur(5px);
		-webkit-backdrop-filter: blur(5px);
		border-radius: 15px;
		background: rgba(244, 244, 244, 0.80);
		margin-inline: auto;
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
	}
	/*.header01.is-active  .block01 .logo01 {
		top: 3.73vw;
	}*/
	.header01 .block01 > .block02 > .text01 {
		display: block;
		text-align: center;
		margin-top: 1.86vw;
	}
	.header01 .block01 > .block02 > .text01 > a {
		text-decoration: none;
		font-size: 3.2vw;
		color: rgba(var(--navy),1.0);
	}
	.header01 .block01 .logo01::before {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: -1;
		content: "";
	}
	.header01 .block01 .logo01 > a {
		width: 28.2vw;
		display: block;
	}
	.header01 .block01 .logo01 span:nth-child(2) {
		margin-top: .8vw;
		width: 24.53vw;
		margin-inline: auto;
	}
	.navArea01 {
		display: block;
		margin-top: 20vw;
	}
	.globalNavi01 > ul {
		display: block;
	}
	.globalNavi01 > ul > li {
		padding-bottom: 4.2vw;
		border-bottom: solid 1px rgb(var(--navy));
	}
	.globalNavi01 > ul li:nth-child(2) {
		display: block;
	}
	.globalNavi01 > ul > li a {
		color: rgba(var(--navy),1.0);
	}
	.globalNavi01 > ul > li > a {
		text-decoration: none;
		padding-top: 6vw;
		display: block;
		position: relative;
	}
	.globalNavi01 > ul > li > a::before {
		position: absolute;
		top: calc(50% + 2.5vw);
		right: 1.4vw;
		width: 2.4vw;
		height: 1.8vw;
		background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxMiIgdmlld0JveD0iMCAwIDE4IDEyIiBmaWxsPSJub25lIj48cGF0aCBkPSJNMTUuNzE4OCAxLjgxOTM1TDguNzE4NzUgOS44MTkzNUwxLjcxODc1IDEuODE5MzUiIHN0cm9rZT0iIzFDMzQ3QyIgc3Ryb2tlLXdpZHRoPSIzIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz48L3N2Zz4=") no-repeat 0 0/100%;
		transition: transform .2s;
		content: "";
	}
	.globalNavi01 > ul > li.is-open > a::before {
		transform: scale(1,-1);
	}
	.globalNavi01 > ul li a > .text01 {
		display: none;
	}
	.globalNavi01 > ul li a > .text02 {
		display: flex;
		flex-wrap: wrap;
		align-items: baseline;
		font-weight: 700;
		font-size: 4.266vw;
		column-gap: 4vw;
		letter-spacing: 0;
	}
	.globalNavi01 > ul li a > .text02 > span {
		font-size: 2.66vw;
		font-weight: 500;
		letter-spacing: .05em;
		position: relative;
		top: -1px;
	}
	.globalNavi01 > ul li > ul {
		display: block;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.2s cubic-bezier(0.65, 0, 0.35, 1);
	}
	.globalNavi01 > ul li > ul > li:first-child {
		margin-top: 3.33vw;
	}
	.globalNavi01 > ul li > ul > li:last-child {
		margin-bottom: 1.5vw;
	}
	.copyrights01 {
		display: block;
		margin-top: 8.6vw;
		text-align: center;
		letter-spacing: .02em;
	}
	.copyrights01 > .text01 {
		color: rgb(var(--navy));
		font-size: 3.2vw;
	}
	.copyrights01 > .text02 {
		color: rgba(var(--navy),.5);
		font-size: 2.66vw;
		margin-top: -0.6vw;
	}
	.globalList01 {
		margin-top: 14.66vw;
	}
	.globalList01 > li {
		min-width: inherit;
		width: 66.66vw;
		margin-inline: auto;
	}
	.globalList01 > li:not(:first-child) {
		display: block;
		margin-top: 4.8vw;
	}
	.globalList01 > li > a {
		padding: 1.33vw 2.66vw 1.33vw 1.33vw;
		border-radius: 9px;
		background: #fff;
		font-size: 4.266vw;
		gap: 0 6.66vw;
		font-weight: 500;
	}
	.globalList01 > li > a::before {
		content: none;
	}
	.globalList01 > li > a > .icon01 {
		position: relative;
		width: 13.33vw;
		height: 13.33vw;
		z-index: 1;
		background: none;
		border-radius: 8px;
		overflow: hidden;
	}
	.globalList01 > li > a > .icon01::before {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: radial-gradient(137.54% 78.99% at 59.72% 22.99%, #FF792F 6.25%, #FB529F 41.83%, #7245F3 68.27%);
		opacity: .2;
		z-index: -1;
		content: "";
	}
	.globalList01 > li:nth-child(1) > a > .icon01 > img {
		width: 6.66vw;
		position: relative;
		left: -1px;
		top: -1px;
	}
	.globalList01 > li:nth-child(2) > a > .icon01 > img {
		width: 8vw;
		position: relative;
		left: -1px;
		top: -1px;
	}
	.globalList01 > li > a > .text01 > span {
		display: inline;
	}
	.globalList02 {
		display: flex;
		margin-top: 18.66vw !important;
		gap: 1.33vw 5.33vw !important;
		padding-bottom: 6.66vw !important;
	}
	.globalList02::before {
		height: .533vw !important;
	}
	.globalList02 > li:nth-child(1) {
		height: 4.4vw !important;
	}
	.globalList02 > li:nth-child(2) {
		height: 4.53vw !important;
	}
	.globalList02 > li:nth-child(3) {
		height: 5.06vw !important;
	}
}
