@charset "UTF-8";
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.gHeader {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100%;
}
.gHeader_inner {
	max-width: none;
}
.gHeader_contents {
	position: relative;
}
.gHeader_title {
	width: 224px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	transform-origin: left center;
	transition-duration: .3s;
	transition-property: transform;
}
.gHeader_title > a {
	text-decoration: none;
	color: inherit;
	display: flex;
	height: 111px;
	align-items: center;
	transition-duration: .3s;
	transition-property: background-color, color;
}
.isMenuOpen .gHeader_title > a {
	color: var(--color-white);
}
.gHeader_title_img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	fill: currentColor;
}
.gNav {
	position: absolute;
	top: 0;
	right: 92px;
	width: calc(100% - 340px);
	transition-duration: .3s;
	transition-property: opacity, visibility;
	display: flex;
}
.gNav-scrolled {
	opacity: 0;
	visibility: hidden;
}
.gNav_list {
	list-style: none;
	display: flex;
	max-width: 716px;
	margin-left: auto;
	flex-grow: 1;
}
.gNav_list > li {
	flex-grow: 1;
	position: relative;
}
.gNav_list > li > a {
	text-decoration: none;
	color: inherit;
	display: flex;
	height: 111px;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.15em;
	text-indent: 0.15em;
}
.gMageNav {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	background-color: var(--color-soft-gray);
	border: 1px solid var(--color-text);
	border-radius: 12px;
	padding: 30px 29px 44px;
	margin-top: -25px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition-property: opacity, visibility;
	transition-duration: .5s;
	color: var(--color-text);
}
.gMageNav.isShow {
	opacity: 1;
	visibility: visible;
	pointer-events: inherit;
}
.gMageNav_list {
	list-style: none;
}
.gMageNav_list > li {}
.gMageNav_list > li > a {
	text-decoration: none;
	color: inherit;
	font-size: 15px;
	line-height: 36px;
	transition-duration: .3s;
	transition-property: background-color, color;
	display: block;
}
.gMenuBtn {
	display: block;
	width: 61px;
	height: 61px;
	border: 1px solid var(--color-text);
	border-radius: 50%;
	box-sizing: border-box;
	position: absolute;
	top: 25px;
	right: 0;
	z-index: 2;
	color: var(--color-text);
	transition-duration: .3s;
	transition-property: background-color, color, border-color;
}
.gMenuBtn[aria-expanded="true"] {
	border-color: var(--color-white);
	color: var(--color-white);
	background-color: rgba(255, 255, 255, 0);
}
.gMenuBtn_barWrap {
	display: block;
	width: 26px;
	margin: 0 auto;
}
.gMenuBtn_bar {
	display: block;
	height: 1px;
	background-color: currentColor;
	transition-duration: .3s;
	transition-property: transform;
}
.gMenuBtn_bar-no1 {}
.gMenuBtn_bar-no2 {
	margin: 7px 0;
}
.gMenuBtn_bar-no3 {}
.gMenuBtn[aria-expanded="true"] .gMenuBtn_bar-no1 {
	transform: translateY(8px) rotate(30deg);
}
.gMenuBtn[aria-expanded="true"] .gMenuBtn_bar-no2 {
	transform: scale(0, 1);
}
.gMenuBtn[aria-expanded="true"] .gMenuBtn_bar-no3 {
	transform: translateY(-8px) rotate(-30deg);
}
.gMenu {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 1;
	background-color: rgba(51, 51, 51, 0.85);
	color: var(--color-white);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition-property: opacity, visibility;
	transition-duration: .5s;
	box-sizing: border-box;
	padding-top: 129px;
	backdrop-filter: blur(8px);
}
.gMenu.isShow {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.gMenu_inner {
	display: flex;
	justify-content: flex-end;
	max-width: none;
}
.gMenu_list {
	list-style: none;
}
.gMenu_list > li {}
.gMenu_list > li > a {
	text-decoration: none;
	color: inherit;
	font-weight: 500;
	font-size: 16px;
	letter-spacing: 0.15em;
	display: flex;
	align-items: center;
	min-height: 50px;
	justify-content: flex-end;
	padding: 0 12px;
}
.gHeader_title_inner {
	display: block;
	position: relative;
	padding-bottom: var(--ratio-logo);
	width: 100%;
}
.gHeaderWrap {
	height: 111px;
	position: relative;
}
.gHeaderWrap::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-soft-gray);
	z-index: -2;
}
.gNav_list_text {
	display: block;
	position: relative;
}
.gNav_list_text::before {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	position: absolute;
	bottom: 100%;
	left: 50%;
	background-color: currentColor;
	border-radius: 50%;
	transform: translate(-50%, -50%) scale(0);
	transition-duration: .3s;
	transition-property: transform, opacity;
	opacity: 0;
}
a[aria-expanded="true"] .gNav_list_text::before {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}
.gFooter {
	background-color: var(--color-text);
	color: var(--color-white);
	font-size: 12px;
	line-height: 2;
	padding-top: 88px;
	padding-bottom: 67px;
	box-shadow: 0 100vh 0 100vh var(--color-text);
	overflow: hidden;
}
.gFooter_inner {
	position: relative;
	max-width: 1323px;
}
.gFooter_contents {
	position: relative;
	opacity: 0;
	transition-delay: .2s;
	transition-duration: 0.7s;
	transition-property: opacity;
}
.gFooter_contents.isShow {
	opacity: 1;
}
.gFooter_logo {
	max-width: 503px;
}
.gFooter_logo > a {
	text-decoration: none;
	color: inherit;
	display: block;
	transition-duration: .3s;
	transition-property: background-color, color;
}
.gFooter_logo_inner {
	display: block;
	position: relative;
	padding-bottom: var(--ratio-logo);
}
.gFooter_logo_img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	fill: currentColor;
}
.gFooter_cols {
	display: flex;
	margin-top: 89px;
}
.gFooter_col {}
.gFooter_col-txt {}
.gFooter_corp {
	margin-bottom: 16px;
}
.gFooter_corp_main {
	font-size: 16px;
	font-weight: inherit;
}
.gFooter_dList {
	list-style: none;
	margin-bottom: 2em;
}
.gFooter_dList:last-of-type {
	margin-bottom: 0;
}
.gFooter_dList > dt {}
.gFooter_dList > dd {}
.gFooter_snsList {
	list-style: none;
	position: absolute;
	top: 2px;
	right: 0;
}
.gFooter_snsList > li {}
.gFooter_snsList > li > a {
	text-decoration: none;
	color: inherit;
	font-family: var(--font-oswald);
	font-weight: 300;
	display: flex;
	align-items: center;
	font-size: 16px;
	padding: 12px 19px;
	justify-content: flex-end;
	transition-duration: .3s;
	transition-property: background-color, color;
}
.gFooter_snsList > li > a > .icon {
	display: block;
	font-size: 29px;
	margin-left: 29px;
}
.gFooter_col-link {
	width: calc(100% - 280px);
	margin-left: auto;
	max-width: 969px;
	padding-top: 23px;
}
.gFooter_cells {
	display: flex;
	justify-content: space-between;
}
.gFooter_cell {
	width: calc((100% - 28px) / 3);
	transition-duration: .3s;
	transition-property: width;
}
.gFooter_cell-no1 {}
.gFooter_link {
	height: 100%;
}
.gFooter_link > a {
	text-decoration: none;
	color: inherit;
	background-color: var(--color-sunset-gold);
	display: block;
	height: 100%;
	color: var(--color-text);
	min-height: 209px;
	line-height: 1;
	padding: 45px 15px 21px;
	box-sizing: border-box;
	transition-duration: .3s;
	transition-property: background-color, color;
	padding-left: 35px;
}
.gFooter_link > a::before {}
.gFooter_link > a::after {}
.gFooter_link_title {
	letter-spacing: 0.1em;
}
.gFooter_link_en {
	display: block;
	font-size: 32px;
	font-weight: 200;
	font-family: var(--font-oswald);
	letter-spacing: -0.025em;
	text-indent: -0.2em;
}
.gFooter_cell-no2 {}
.gFooter_tel {
	line-height: 1;
	height: 100%;
	background-color: var(--color-white);
	color: var(--color-text);
	box-sizing: border-box;
	padding: 35px 20px 22px;
}
.gFooter_tel_link {
	letter-spacing: -0.075em;
}
.gFooter_tel_link > a {
	text-decoration: none;
	color: inherit;
	font-size: 40px;
	font-weight: 200;
	font-family: var(--font-oswald);
}
.gFooter_tel_dList {
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.gFooter_tel_dList > dt {
	font-size: 32px;
	font-weight: 200;
	font-family: var(--font-oswald);
	letter-spacing: -0.025em;
}
.gFooter_tel_dList > dd {
	letter-spacing: 0.17em;
	transform: translateY(8%);
}
.gFooter_tel_dList-en > dd {
	letter-spacing: 0;
	max-width: 130px;
	margin-left: auto;
	line-height: 1.357142857;
	transform: none;
}
.gFooter_cell-no3 {}
.gFooter_copyright {
	color: var(--color-dark-gray);
	font-family: var(--font-montserrat);
	font-weight: 200;
	line-height: 1;
	margin-top: 9px;
}
.gFooter_copyright > small {
	font-size: inherit;
	display: block;
}
.gFooter_tel_dList_open {
	font-size: 14px;
}
.gFooter_link_inner {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
}
.gFooter_tel_inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	max-width: 245px;
	margin: 0 auto;
}
.gFooter_snsList_text {}
.gFrame {
	position: fixed;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
.gFrame_inner {
	height: 100%;
	max-width: 1409px;
}
.gFrame_contents {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	height: 100%;
	border-right: 1px solid rgba(6, 11, 21, 0.05);
}
.gFrame_cell {
	border-left: 1px solid rgba(6, 11, 21, 0.05);
}
.gFrame_cell-no1 {}
.gFrame_cell-no2 {}
.gFrame_cell-no3 {}
.gFrame_cell-no4 {}
.gFrame_cell-no5 {}
.gBody {
	padding-bottom: 140px;
}
.gHead {
	padding-top: 52px;
	padding-bottom: 59px;
	position: relative;
	margin-bottom: 90px;
}
.gHead::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-soft-gray);
	z-index: -2;
}
.gHead_inner {}
.gHead_cols {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}
.gHead_col {}
.gHead_col-pankuzu {}
.gPankuzu {}
.gPankuzu_inner {}
.gPankuzu_oList {
	list-style: none;
	font-size: 12px;
	display: flex;
	white-space: nowrap;
	justify-content: flex-end;
}
.gPankuzu_oList > li {
	display: flex;
	align-items: center;
}
.gPankuzu_oList > li > a {
	text-decoration: none;
	color: inherit;
	display: flex;
	min-height: 40px;
	align-items: center;
}
.gPankuzu_oList > li:nth-last-child(n+2)::after {
	content: "/";
	display: block;
	margin: 0 6px;
}
.gHead_col-title {}
.gHead_title {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.gHead_title_sub {
	display: block;
	font-family: var(--font-oswald);
	font-weight: 300;
	font-size: 90px;
	line-height: 1;
	letter-spacing: -0.04em;
	margin-bottom: 0.36em;
	text-indent: -.05em;
}
.gHead_title_main {
	display: block;
	font-size: 20px;
	letter-spacing: 0.2em;
	font-weight: normal;
	line-height: 1.4;
}
.gCursor {
	display: none;
	pointer-events: none;
	position: fixed;
	z-index: 2000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition-duration: .3s;
	transition-property: opacity;
	transition-delay: .2s;
}
.gCursor.isShow {
	opacity: 1;
}
.gCursor_item {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 20000;
	transform: translate(5px, 1px);
	transition-duration: .07s;
	transition-property: transform;
}
.gCursor_item-no1 {}
.gCursor_item-no2 {
	transition-delay: 0.001s;
}
.gCursor_item-no3 {
	transition-delay: 0.002s;
}
.gCursor_item-no4 {
	transition-delay: 0.003s;
}
.gCursor_item-no5 {
	transition-delay: 0.004s;
}
.gCursor_item-no6 {
	transition-delay: 0.005s;
}
.gCursor_item-no7 {
	transition-delay: 0.006s;
}
.gCursor_dot {
	display: block;
	width: 13px;
	height: 13px;
	background-color: var(--color-sunset-gold);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition-duration: .3s;
	transition-property: width, height, opacity;
}
.gCursor_dot-no1 {}
.gCursor_dot-no2 {
	transform: translate(-50%, -50%) scale(0.95);
	opacity: .9;
}
.gCursor_dot-no3 {
	transform: translate(-50%, -50%) scale(0.9);
	opacity: 0.8;
}
.gCursor_dot-no4 {
	transform: translate(-50%, -50%) scale(0.85);
	opacity: 0.7;
}
.gCursor_dot-no5 {
	transform: translate(-50%, -50%) scale(0.8);
	opacity: 0.6;
}
.gCursor_dot-no6 {
	transform: translate(-50%, -50%) scale(0.75);
	opacity: 0.5;
}
.gCursor_dot-no7 {
	transform: translate(-50%, -50%) scale(0.7);
	opacity: 0.4;
}
.gCursor[data-status] .gCursor_dot {
	width: 40px;
	height: 40px;
}
.gCursor_inner {
	transition-duration: .5s;
	transition-property: opacity;
}
[data-status] > .gCursor_inner {
	opacity: .5;
}
.isHover .gFooter_cell {
	width: calc((65% - 28px) / 2);
}
.isHover .gFooter_cell-no1 {
	width: 35%;
}
.gHeader-scrolled .gHeader_title {
	transform: scale(0.8);
}
.gBody-noPb {
	padding-bottom: 0;
}
.gHead-noMb {
	margin-bottom: 0;
}
.gBody-pt {
	padding-top: 75px;
}
.gPankuzu-recruit {
	padding-top: 50px;
}
.gHeaderWrap-full {
	height: auto;
}
.gHeaderWrap-white {
	color: var(--color-white);
}
.gMenuBtn-full {
	background-color: var(--color-soft-gray);
}
.gCursor_item_images {
	display: block;
	padding-bottom: 105.044%;
	position: relative;
}
.gCursor_item_imagesWrap {
	width: 300px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.gCursor_item_image {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition-duration: .3s;
	transition-property: opacity, visibility;
}
.gCursor[data-image="0"] .gCursor_item_image:nth-child(1) {
	opacity: 1;
	visibility: visible;
}
.gCursor[data-image="1"] .gCursor_item_image:nth-child(2) {
	opacity: 1;
	visibility: visible;
}
.gCursor[data-image="2"] .gCursor_item_image:nth-child(3) {
	opacity: 1;
	visibility: visible;
}
.gCursor_item_image > img {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.gCursor_item-image {}
.gMenu_scroll {
	max-height: calc(100vh - 129px);
	overflow: auto;
	box-sizing: border-box;
	padding-bottom: 50px;
}
.gFooter_col-txtEn {
	width: calc(100% - 360px);
}
.gFooter_col-linkEn {
	width: 334px;
	margin-left: auto;
}
.gFooter_cell-en1 {
	width: calc(100% - 20px);
	margin-left: auto;
}
.gFooter_cell-en2 {
	width: calc((100% - 12px) / 2);
}
.isHover .gFooter_cell-en1 {
	width: 100%;
}
.isHover .gFooter_cell-en2 {
	width: calc(47% - 6px);
}
.gNav_lngList {
	list-style: none;
	display: flex;
	align-items: center;
	letter-spacing: 0.15em;
	text-indent: -0.15em;
	margin-left: 12px;
}
.gNav_lngList > li {
	height: 100%;
	display: flex;
	align-items: center;
	font-weight: 500;
}
.gNav_lngList > li:nth-last-child(n+2)::after {
	content: "/";
	display: block;
}
.gNav_lngList > li > a {
	text-decoration: none;
	color: inherit;
	display: flex;
	height: 100%;
	align-items: center;
	padding: 0 7px;
}
.gNav_lngList_text {}
.gMenu_lngList {
	display: none;
	list-style: none;
}
.gMenu_lngList > li {}
.gMenu_lngList > li > a {}
.gMenu_lngList_text {}
.gNav_list-en {
	max-width: 610px;
}
.gFooter_tel_dList-en {
	align-items: flex-end;
}
.gCookieBanner {
	position: fixed;
	z-index: 999;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--color-text);
	color: var(--color-white);
	padding: 30px 0;
	visibility: hidden;
	opacity: 0;
	transition-duration: 1s;
	transition-property: opacity, visibility, transform;
	pointer-events: none;
	transform: translateY(100%);
}
.gCookieBanner.isShow {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}
.gCookieBanner_inner {
	max-width: 730px;
}
.gCookieBanner_cols {
	display: flex;
	align-items: center;
}
.gCookieBanner_col {}
.gCookieBanner_col-txt {
	width: calc(100% - 220px);
	margin-right: auto;
}
.gCookieBanner_text {
	font-size: 14px;
}
.gCookieBanner_col-btn {
	width: 200px;
}
.gCookieBanner_btn {
	border: 1px solid var(--color-white);
	background-color: var(--color-text);
	color: var(--color-white);
}
@media screen and (max-width:1199px) {
	.gFooter_tel_dList > dt {
		font-size: 23px;
	}
	.gFooter_tel_dList > dd {
		letter-spacing: 0.1em;
	}
	.gFooter_tel_link > a {
		font-size: 33px;
	}
	.gFooter_tel {
		padding-left: 15px;
		padding-right: 15px;
	}
	.gFooter_link > a {
		padding-left: 25px;
		padding-right: 25px;
	}
	.gFooter_tel_dList_open {
		font-size: inherit;
	}
	.gFooter_col-txtEn {}
	.gFooter_col-linkEn {
		margin-left: auto;
	}
	.gNav {
		right: 75px;
		width: calc(100% - 327px);
	}
	.gNav_lngList {
		margin-left: 5px;
	}
}
@media screen and (max-width:1049px) {
	.gFooter_tel_dList > dd {
		letter-spacing: 0.05em;
	}
}
@media screen and (min-width:1000px) and (hover:hover) {
	.gCursor {
		display: block;
	}
	.gCookieBanner_btn:hover {
		background-color: var(--color-white);
		color: var(--color-text);
	}
	.gHeader_title > a:hover {}
	.gNav_list > li > a:hover {}
	.gMageNav_list > li > a:hover {
		color: var(--color-sunset-gold);
	}
	.gMenuBtn:hover {
		background-color: var(--color-text);
		color: var(--color-white);
	}
	.gMenu_list > li > a:hover {}
	a:hover .gNav_list_text::before {
		transform: translate(-50%, -50%) scale(1);
		opacity: 1;
	}
	.gFooter_logo > a:hover {
		color: var(--color-sunset-gold);
	}
	.gFooter_snsList > li > a:hover {
		color: var(--color-sunset-gold);
	}
	.gFooter_link > a:hover {
		background-color: var(--color-white);
	}
	.gFooter_tel_link > a:hover {}
	.gPankuzu_oList > li > a:hover {}
}
@media screen and (max-width: 999px) {
	.gHeader {}
	.gHeader_inner {}
	.gHeader_contents {}
	.gHeader_title {
		width: 180px;
	}
	.gHeader_title > a {
		height: 90px;
	}
	.isMenuOpen .gHeader_title > a {}
	.gHeader_title_img {}
	.gNav {
		display: none;
	}
	.gNav-scrolled {}
	.gNav_list {}
	.gNav_list > li {}
	.gNav_list > li > a {}
	.gMageNav {}
	.gMageNav.isShow {}
	.gMageNav_list {}
	.gMageNav_list > li {}
	.gMageNav_list > li > a {}
	.gMenuBtn {
		width: 60px;
		height: 60px;
		top: 15px;
	}
	.gMenuBtn[aria-expanded="true"] {}
	.gMenuBtn_barWrap {}
	.gMenuBtn_bar {}
	.gMenuBtn_bar-no1 {}
	.gMenuBtn_bar-no2 {}
	.gMenuBtn_bar-no3 {}
	.gMenuBtn[aria-expanded="true"] .gMenuBtn_bar-no1 {}
	.gMenuBtn[aria-expanded="true"] .gMenuBtn_bar-no2 {}
	.gMenuBtn[aria-expanded="true"] .gMenuBtn_bar-no3 {}
	.gMenu {}
	.gMenu.isShow {}
	.gMenu_inner {
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-end;
	}
	.gMenu_list {}
	.gMenu_list > li {}
	.gMenu_list > li > a {}
	.gHeader_title_inner {}
	.gHeaderWrap {
		height: 90px;
	}
	.gHeaderWrap::before {}
	.gNav_list_text {}
	.gNav_list_text::before {}
	a[aria-expanded="true"] .gNav_list_text::before {}
	.gFooter {
		padding-top: 60px;
		padding-bottom: 45px;
	}
	.gFooter_inner {}
	.gFooter_contents {}
	.gFooter_logo {
		max-width: 370px;
	}
	.gFooter_logo > a {
		display: flex;
		height: 96px;
		align-items: center;
	}
	.gFooter_logo_inner {
		width: 100%;
	}
	.gFooter_logo_img {}
	.gFooter_cols {
		margin-top: 60px;
		justify-content: center;
	}
	.gFooter_col {}
	.gFooter_col-txt {}
	.gFooter_corp {}
	.gFooter_corp_main {}
	.gFooter_dList {}
	.gFooter_dList:last-child {}
	.gFooter_dList > dt {}
	.gFooter_dList > dd {}
	.gFooter_snsList {}
	.gFooter_snsList > li {}
	.gFooter_snsList > li > a {
		padding: 8px 0;
	}
	.gFooter_snsList > li > a > .icon {}
	.gFooter_col-link {
		max-width: 300px;
		padding: 0;
		margin-left: 50px;
	}
	.gFooter_cells {
		display: block;
	}
	.gFooter_cell {
		margin-top: 13px;
		width: auto;
	}
	.gFooter_cell-no1 {
		margin-top: 0;
	}
	.gFooter_link {}
	.gFooter_link > a {
		min-height: 0;
		padding: 10px 20px;
		text-align: center;
		font-size: 12px;
		height: 70px;
	}
	.gFooter_link > a::before {}
	.gFooter_link > a::after {}
	.gFooter_link_title {
		margin-bottom: 6px;
	}
	.gFooter_link_en {
		font-size: 19px;
	}
	.gFooter_cell-no2 {}
	.gFooter_tel {
		padding: 10px 20px;
		height: 70px;
	}
	.gFooter_tel_link {
		margin-bottom: 9px;
	}
	.gFooter_tel_link > a {
		font-size: 23px;
		display: block;
		text-align: center;
	}
	.gFooter_tel_dList {
		justify-content: center;
	}
	.gFooter_tel_dList > dt {
		font-size: 18px;
		margin-right: 1em;
	}
	.gFooter_tel_dList > dd {
		font-size: 11px;
	}
	.gFooter_cell-no3 {}
	.gFooter_copyright {
		text-align: center;
		margin-top: 45px;
	}
	.gFooter_copyright > small {}
	.gFooter_tel_dList_open {}
	.gFooter_link_inner {
		justify-content: center;
	}
	.gFooter_tel_inner {
		justify-content: center;
	}
	.gFooter_snsList_text {}
	.gFrame {}
	.gFrame_inner {}
	.gFrame_contents {}
	.gFrame_cell {}
	.gFrame_cell-no1 {}
	.gFrame_cell-no2 {}
	.gFrame_cell-no3 {}
	.gFrame_cell-no4 {}
	.gFrame_cell-no5 {}
	.gBody {}
	.gHead {}
	.gHead::before {}
	.gHead_inner {}
	.gHead_cols {}
	.gHead_col {}
	.gHead_col-pankuzu {}
	.gPankuzu {}
	.gPankuzu_inner {}
	.gPankuzu_oList {}
	.gPankuzu_oList > li {}
	.gPankuzu_oList > li > a {}
	.gPankuzu_oList > li:nth-last-child(n+2)::after {}
	.gHead_col-title {}
	.gHead_title {}
	.gHead_title_sub {
		font-size: 70px;
	}
	.gHead_title_main {
		font-size: 16px;
	}
	.gCursor {
		display: none;
	}
	.gCursor_item {}
	.gCursor_item-no1 {}
	.gCursor_item-no2 {}
	.gCursor_item-no3 {}
	.gCursor_item-no4 {}
	.gCursor_item-no5 {}
	.gCursor_item-no6 {}
	.gCursor_item-no7 {}
	.gCursor_dot {}
	.gCursor_dot-no1 {}
	.gCursor_dot-no2 {}
	.gCursor_dot-no3 {}
	.gCursor_dot-no4 {}
	.gCursor_dot-no5 {}
	.gCursor_dot-no6 {}
	.gCursor_dot-no7 {}
	.gCursor[data-status] .gCursor_dot {}
	.gCursor[data-status] {}
	.isHover .gFooter_cell {
		width: auto;
	}
	.gHeader-scrolled .gHeader_title {
		transform: scale(1);
	}
	.gBody-noPb {
		padding-bottom: 0;
	}
	.gHead-noMb {
		margin-bottom: 0;
	}
	.gBody-pt {}
	.gPankuzu-recruit {}
	.gHeaderWrap-full {
		height: auto;
	}
	.gMenu_lngList {
		display: flex;
		font-size: 16px;
		font-weight: 500;
	}
	.gMenu_lngList > li {
		display: flex;
		align-items: center;
	}
	.gMenu_lngList > li:nth-last-child(n+2)::after {
		content: "/";
		display: block;
		margin: 0 -5px;
	}
	.gMenu_lngList > li > a {
		display: flex;
		text-decoration: none;
		padding: 0 15px;
		height: 50px;
		align-items: center;
		position: relative;
	}
	.gMenu_lngList > li > a[aria-current="true"]::after {
		content: "";
		display: block;
		width: 30px;
		height: 1px;
		background-color: currentColor;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		margin-top: 15px;
	}
	.gMenu_lngList_text {}
	.gFooter_col-txtEn {
		width: auto;
		max-width: 330px;
	}
	.gFooter_col-linkEn {
		max-width: 300px;
		padding: 0;
		margin-left: 50px;
		align-self: flex-end;
	}
	.gFooter_cell-en1 {}
	.gFooter_cell-en2 {}
	.gFooter_tel_dList-en > dd {
		max-width: 170px;
		line-height: 1.2;
	}
	.gFooter_tel_link-en {
		margin-bottom: 3px;
	}
	.gCookieBanner {}
	.gCookieBanner.isShow {}
	.gCookieBanner_inner {}
	.gCookieBanner_cols {}
	.gCookieBanner_col {}
	.gCookieBanner_col-txt {}
	.gCookieBanner_text {}
	.gCookieBanner_col-btn {}
	.gCookieBanner_btn {}
}
@media screen and (max-width:767px) {
	.gHeader {}
	.gHeader_inner {}
	.gHeader_contents {}
	.gHeader_title {
		width: 189px;
	}
	.gHeader_title > a {
		height: 88px;
		box-sizing: border-box;
		padding-bottom: 5px;
	}
	.isMenuOpen .gHeader_title > a {}
	.gHeader_title_img {}
	.gNav {}
	.gNav-scrolled {}
	.gNav_list {}
	.gNav_list > li {}
	.gNav_list > li > a {}
	.gMageNav {}
	.gMageNav.isShow {}
	.gMageNav_list {}
	.gMageNav_list > li {}
	.gMageNav_list > li > a {}
	.gMenuBtn {
		width: 50px;
		height: 50px;
		top: 19px;
	}
	.gMenuBtn[aria-expanded="true"] {}
	.gMenuBtn_barWrap {
		width: 21px;
	}
	.gMenuBtn_bar {}
	.gMenuBtn_bar-no1 {}
	.gMenuBtn_bar-no2 {
		margin-top: 5px;
		margin-bottom: 5px;
	}
	.gMenuBtn_bar-no3 {}
	.gMenuBtn[aria-expanded="true"] .gMenuBtn_bar-no1 {
		transform: translateY(6px) rotate(30deg);
	}
	.gMenuBtn[aria-expanded="true"] .gMenuBtn_bar-no2 {}
	.gMenuBtn[aria-expanded="true"] .gMenuBtn_bar-no3 {
		transform: translateY(-6px) rotate(-30deg);
	}
	.gMenu {
		padding-top: 127px;
	}
	.gMenu.isShow {}
	.gMenu_inner {
		display: block;
	}
	.gMenu_list {}
	.gMenu_list > li {}
	.gMenu_list > li > a {
		font-size: 17px;
		min-height: 55px;
		justify-content: center;
		padding: 0;
		letter-spacing: 0.03em;
		text-indent: 0.03em;
	}
	.gHeader_title_inner {}
	.gHeaderWrap {
		height: 88px;
	}
	.gHeaderWrap::before {}
	.gNav_list_text {}
	.gNav_list_text::before {}
	a[aria-expanded="true"] .gNav_list_text::before {}
	.gFooter {
		font-size: 14px;
		line-height: 1.643;
		padding-top: 49px;
		padding-bottom: 59px;
	}
	.gFooter_inner {}
	.gFooter_contents {}
	.gFooter_logo {
		max-width: 237px;
	}
	.gFooter_logo > a {
		height: auto;
	}
	.gFooter_logo_inner {}
	.gFooter_logo_img {}
	.gFooter_cols {
		display: block;
		margin-top: 34px;
	}
	.gFooter_col {}
	.gFooter_col-txt {}
	.gFooter_corp {
		font-size: 14px;
		margin-bottom: 23px;
	}
	.gFooter_corp_main {
		font-size: inherit;
	}
	.gFooter_dList {
		margin-bottom: 24px;
	}
	.gFooter_dList:last-of-type {}
	.gFooter_dList:last-child {}
	.gFooter_dList > dt {}
	.gFooter_dList > dd {}
	.gFooter_snsList {
		position: relative;
		top: 0;
		margin-top: 15px;
	}
	.gFooter_snsList > li {}
	.gFooter_snsList > li > a {
		justify-content: flex-start;
		font-size: 16px;
		line-height: 22px;
		padding: 11px 0;
	}
	.gFooter_snsList > li > a > .icon {
		font-size: 22px;
		margin-left: 13px;
	}
	.gFooter_col-link {
		max-width: none;
		margin: 0;
		width: auto;
		margin-top: 31px;
	}
	.gFooter_cells {}
	.gFooter_cell {
		margin-top: 15px;
	}
	.gFooter_cell-no1 {}
	.gFooter_link {}
	.gFooter_link > a {
		font-size: 13px;
		height: 100px;
	}
	.gFooter_link > a::before {}
	.gFooter_link > a::after {}
	.gFooter_link_title {}
	.gFooter_link_en {
		font-size: 31px;
	}
	.gFooter_cell-no2 {}
	.gFooter_tel {
		height: 100px;
	}
	.gFooter_tel_link {}
	.gFooter_tel_link > a {
		font-size: 31px;
	}
	.gFooter_tel_link-en {
		margin-bottom: 7px;
	}
	.gFooter_tel_dList {}
	.gFooter_tel_dList > dt {
		font-size: 15px;
	}
	.gFooter_tel_dList > dd {
		font-size: 13px;
		transform: translateY(2%);
	}
	.gFooter_cell-no3 {}
	.gFooter_copyright {
		margin-top: 45px;
		font-size: 10px;
	}
	.gFooter_copyright > small {}
	.gFooter_tel_dList_open {}
	.gFooter_link_inner {}
	.gFooter_tel_inner {}
	.gFooter_snsList_text {}
	.gFrame {}
	.gFrame_inner {}
	.gFrame_contents {
		grid-template-columns: repeat(2, 1fr);
	}
	.gFrame_cell {}
	.gFrame_cell-no1 {}
	.gFrame_cell-no2 {}
	.gFrame_cell-no3 {
		display: none;
	}
	.gFrame_cell-no4 {
		display: none;
	}
	.gFrame_cell-no5 {}
	.gBody {
		padding-bottom: 60px;
	}
	.gHead {
		padding-top: 0;
		padding-bottom: 45px;
		margin-bottom: 45px;
	}
	.gHead::before {}
	.gHead_inner {}
	.gHead_cols {
		display: block;
	}
	.gHead_col {}
	.gHead_col-pankuzu {
		margin-bottom: 13px;
	}
	.gPankuzu {}
	.gPankuzu_inner {}
	.gPankuzu_oList {}
	.gPankuzu_oList > li {}
	.gPankuzu_oList > li > a {
		min-height: 30px;
	}
	.gPankuzu_oList > li:nth-last-child(n+2)::after {}
	.gHead_col-title {}
	.gHead_title {}
	.gHead_title_sub {
		font-size: 45px;
		margin-bottom: 5px;
		letter-spacing: 0;
		line-height: 55px;
	}
	.gHead_title_main {
		font-size: 16px;
		letter-spacing: 0.1em;
	}
	.gCursor {}
	.gCursor_item {}
	.gCursor_item-no1 {}
	.gCursor_item-no2 {}
	.gCursor_item-no3 {}
	.gCursor_item-no4 {}
	.gCursor_item-no5 {}
	.gCursor_item-no6 {}
	.gCursor_item-no7 {}
	.gCursor_dot {}
	.gCursor_dot-no1 {}
	.gCursor_dot-no2 {}
	.gCursor_dot-no3 {}
	.gCursor_dot-no4 {}
	.gCursor_dot-no5 {}
	.gCursor_dot-no6 {}
	.gCursor_dot-no7 {}
	.gCursor[data-status] .gCursor_dot {}
	.gCursor[data-status] {}
	.gHeader-scrolled .gHeader_title {}
	.gBody-noPb {
		padding-bottom: 0;
	}
	.gHead-noMb {
		margin-bottom: 0;
	}
	.gBody-pt {
		padding-top: 35px;
	}
	.gPankuzu-recruit {
		padding-top: 0;
		margin-bottom: 44px;
	}
	.gHeaderWrap-full {
		height: auto;
	}
	.gMenu_scroll {
		max-height: calc(100vh - 127px);
	}
	.gMenu_lngList {
		justify-content: center;
		font-size: 17px;
	}
	.gMenu_lngList > li {}
	.gMenu_lngList > li > a {}
	.gMenu_lngList_text {}
	.gFooter_col-txtEn {}
	.gFooter_col-linkEn {
		max-width: none;
		margin-left: 0;
		width: auto;
	}
	.gFooter_cell-en1 {
		margin-top: 31px;
	}
	.gFooter_cell-en2 {}
	.gFooter_tel_dList-en > dd {
		font-size: 10px;
		transform: none;
		max-width: none;
		margin-left: 0;
	}
	.gCookieBanner {
		padding: 20px 0;
	}
	.gCookieBanner.isShow {}
	.gCookieBanner_inner {}
	.gCookieBanner_cols {
		display: block;
	}
	.gCookieBanner_col {
		width: auto;
	}
	.gCookieBanner_col-txt {}
	.gCookieBanner_text {}
	.gCookieBanner_col-btn {
		width: 160px;
		margin-left: auto;
		margin-right: auto;
		margin-top: 12px;
	}
	.gCookieBanner_btn {
		min-height: 46px;
	}
}
@media screen and (max-width:374px) {}
