@charset "utf-8";

:root {
	/*font*/
	--font_def: 'Noto Sans JP', sans-serif;
	--font_mont: 'Montserrat', sans-serif;

	/*color*/
	--white: #fff;
	--black: #000;
	--black_text: #333;
	--blue: #40699e;
	--blue_light: #708fb6;
	--blue_dark: #104486;
	--red: #E50012;
	--gold: #90712B;
	--gray_darkest: #333;
	--gray_dark: #666;
	--gray: #9F9F9F;
	--gray_light: #E2E5E9;
	--gray_lightest: #F4F4F6;
	--gray_line: #ccc;

	/*size*/
	--header_h: 60px;
	--max_w: 1120px;
	--easing: cubic-bezier(.8,0,.4,1);
	--border_r: 8px;
}

/* 
 * Reset
 * ==================================================================================================== */
*,
*:before,
*:after {
	margin: 0;
	padding: 0;
	border: 0;
	font-style: normal;
	vertical-align: baseline;
	box-sizing: border-box;
}

html {
	font-size: 1px;
	max-height: 100vh;
	overflow-y: scroll;
	overflow-x: hidden;
	cursor: default;
}

.g-body {
	color: var(--black_text);
	font-size: 16rem;
	font-family: var(--font_def);
	line-height: 1;
	letter-spacing: 0;
	overflow-wrap: break-word;
	-webkit-text-size-adjust: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
}

input,
textarea,
button,
select,
option,
textarea {
	font-family: var(--font_def);
	margin: 0;
	padding: 0;
	outline: none;
	border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}

ol,
ul {
	list-style: none;
}

table,
th,
td {
	border-collapse: collapse;
	border-spacing: 0;
}

a:link,
a:before,
a:after,
a img,
a svg,
input[type='image'],
input[type='submit'],
button,
button:before,
button:after,
object,
object:before,
object:after {
	color: var(--black_text);
	text-decoration: none;
	transition: .2s var(--easing);
}

a:visited {
	color: var(--gray);
}

a:hover {
	color: var(--red);
}

a:hover img {
	opacity: .8;
}

a:focus {
	outline: none;
}

a:focus-visible,
button:focus-visible {
	outline-style: dotted;
	outline-color: var(--red);
	outline-width: medium;
	outline-offset: 3px;
	transition: 0s;
	border-radius: var(--border_r);
}

img {
	width: 100%;
	max-width: none;
	height: auto;
}

svg {
	width: 100%;
	height: auto;
}

button {
	margin:0;
	padding:0;
	border:0;
	background:transparent;
}

sup {
	font-size: calc(1em / 5 * 4);
	line-height: 1;
	letter-spacing: .1em;
	vertical-align: text-top;
}

sub {
	font-size: calc(1em / 1.5);
	line-height: 1;
	letter-spacing: .1em;
	margin-inline: .1em;
	vertical-align: baseline;
}

strong,
em,
b {
	font-weight: 600;
}

::selection {
	background: #b3d4fc;
}

.u-show_mobile_small {
	display: none !important;
}

.u-show_mobile {
	display: none !important;
}

.u-hide_mobile_small {
	display: block !important;
}

.u-hide_mobile {
	display: block !important;
}

.u-show_tablet {
	display: none !important;
}

.u-hide_tablet {
	display: block !important;
}

.u-flow_line > * {
	padding-bottom: .175em;
	background: linear-gradient(var(--red), var(--red)) no-repeat bottom right / 0 1px;
	transition: background-size .6s 0s var(--easing);
}

.no-touch .u-flow_line:hover > * {
	color: var(--red);
	background-position: bottom left;
	background-size: 100% 1px;
	transition: background-size .2s .2s var(--easing);
}

.u-contents:not(:first-child) {
	margin-top: 50px;
}

.u-contents.-bg_gray {
	background-color: var(--gray_lightest);
}

.u-contents.-slash {
	padding: 60px 0;
	position: relative;
}

.u-contents.-slash:after {
	content: '';
	width: 260px;
	aspect-ratio: 49 / 50;
	margin: -94px 0 0 -50px;
	display: block;
	background: url(/_assets/images/common/img_seven_01_black.svg) no-repeat left top / contain;
	position: absolute;
	top: 0;
	left: calc(50% - (var(--max_w) / 2));
	opacity: .065;
	z-index: 0;
}

.u-contents.-slash > * {
	position: relative;
	z-index: 10;
}

.u-inner {
	max-width: calc(var(--max_w) + (40px * 2));
	margin-inline: auto;
	padding-inline: 40px;
}

.u-cover {
	background: rgba(0,0,0,.5);
	position: fixed;
	visibility: hidden;
	opacity: 0;
	transition: .3s var(--easing);
	z-index: 100;
	inset: 0;
}

/*icon*/
a[target='_blank'] {
	font-weight: 600;
}

a[target='_blank']:after {
	content: '';
	vertical-align: baseline;
	width: 1em;
	aspect-ratio: 1;
	margin-inline: .45em;
	margin-bottom: -.05em;
	display: inline-block;
	background: url("/_assets/images/common/icon_blank_01_red.svg") no-repeat center / contain;
}

a[target='_blank'].blank_none:after {
	display: none;
}

.u-icon {
	font-weight: 600;
	display: inline-block;
	position: relative;
}

.u-icon.-arrow:after {
	content: '';
	vertical-align: middle;
	width: 34px;
	aspect-ratio: 1;
	margin: -.2em 0 0 8px;
	border: 1px solid var(--red);
	border-radius: 100vmax;
	display: inline-block;
	background: var(--white) url("/_assets/images/common/arrow_02_red.svg") no-repeat center;
}

.no-touch .u-icon.-arrow:hover:after {
	background-color: var(--red);
	background-image: url("/_assets/images/common/arrow_02_white.svg");
}

.u-icon.-arrow.-down:after {
	rotate: 90deg;
}

.u-icon.-arrow.-small {
	margin-right: .25em;
}

.u-icon.-arrow.-small:after {
	width: .75em;
	height: .75em;
	margin-left: .25em;
	border: 0;
	background-size: contain;
}

.no-touch .u-icon.-arrow.-small:hover:after {
	background-color: transparent;
	background-image: url("/_assets/images/common/arrow_02_red.svg");

}

a[href$='.pdf'] {
	font-weight: 600;
}

a[href$='.pdf']:after {
	width: 1.125em;
	height: 1.1875em;
	margin-bottom: -.15em;
	background-image: url("/_assets/images/common/icon_pdf_01_red.svg");
}

/*button*/
.u-button > *,
.u-button > *:link,
.u-button > *:visited {
	color: var(--black);
	font-weight: 500;
	line-height: 1.6;
	min-width: calc(100% / 3);
	padding: 20px 45px 20px 20px;
	border: 1px solid var(--red);
	border-radius: 100vmax;
	overflow: hidden;
	transform: translateZ(0);
	transition: .1s .3s var(--easing);
}

.no-touch .u-button > *:hover {
	color: var(--white);
	transition:
		color .3s .1s var(--easing)
	;
}

.u-button > *:before {
	content: '';
	width: calc(100% + 1em);
	height: calc(100% + 1em);
	margin: -.5em 0 0 -.5em;
	display: block;
	background: var(--red);
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 100vmax;
	translate: -100% 0;
	transition:
		translate .3s .1s var(--easing)
	;
	will-change: translate;
	z-index: 0;
}

.u-button > *:after {
	position: absolute;
	top: 50%;
	right: 16px;
	translate: 0 calc(-50% + .15em);
	z-index: 10;
	transition: .1s .1s var(--easing);
}

.u-button > *.u-icon.-arrow:after {
	margin-top: -.1em;
}

.no-touch .u-button > *:hover:before {
	translate: 0;
	transition:
		translate .6s .1s var(--easing)
	;
}

.no-touch .u-button > *.u-icon.-arrow:hover:after {
	border-color: var(--white);
	background-image: url("/_assets/images/common/arrow_02_white.svg");
	transition: .2s .4s var(--easing);
}

.u-button > * > * {
	position: relative;
	z-index: 10;
}

.u-button.-white > *,
.u-button.-white > *:link,
.u-button.-white > *:visited {
	color: var(--white);
	border-color: var(--white);
}

.u-button.-white > *:before {
	background-color: var(--white);
}

.no-touch .u-button.-white > *:hover {
	color: var(--red);
	animation: a-button_white_hover 0s .6s linear both;
}

@keyframes a-button_white_hover {
	0% {
		background: rgba(255,255,255,0);
	}
	100% {
		background: rgba(255,255,255,1);
	}
}

.u-button.-white > .u-icon.-arrow:after {
	border-color: var(--white);
	background-color: transparent;
	background-image: url("/_assets/images/common/arrow_02_white.svg");
}

.no-touch .u-button.-white > .u-icon.-arrow:hover:after {
	background-color: var(--red);
	background-image: url("/_assets/images/common/arrow_02_white.svg");
}

.u-button > .u-icon[href$='.pdf']:after {
	margin-top: -.15em;
	margin-bottom: auto;
	background-color: transparent;
	background-image: url("/_assets/images/common/icon_pdf_01_red.svg");
	border: 0;
	border-radius: 0;
	transition: .1s .1s var(--easing);
}

.no-touch .u-button > .u-icon[href$='.pdf']:hover:after {
	margin-top: -.15em;
	margin-bottom: auto;
	background-image: url("/_assets/images/common/icon_pdf_01_white.svg");
	background-color: transparent;
	transition: .1s .5s var(--easing);
}

/* Template Flex */
.u-flex {
	display: flex;
	flex-wrap: wrap;
}

.u-flex.-center {
	justify-content: center;
}

.u-flex.-right {
	justify-content: flex-end;
}

.u-flex.-middle {
	align-items: center;
}

.u-flex.-bottom {
	align-items: flex-end;
}

.u-flex.-reverse {
	flex-direction: row-reverse;
}

.u-flex.-between {
	justify-content: space-between;
}

.u-flex > * {
	margin: 0 16px 16px 16px;
}

.u-flex.-row {
	margin-inline: -16px;
}

.u-flex.-row1 > * { width: calc(100% / 1 - (16px * 2)); }
.u-flex.-row2 > * { width: calc(100% / 2 - (16px * 2)); }
.u-flex.-row3 > * { width: calc(100% / 3 - (16px * 2)); }
.u-flex.-row4 > * { width: calc(100% / 4 - (16px * 2)); }
.u-flex.-row5 > * { width: calc(100% / 5 - (16px * 2)); }
.u-flex.-row6 > * { width: calc(100% / 6 - (16px * 2)); }
.u-flex.-row7 > * { width: calc(100% / 7 - (16px * 2)); }

.u-flex.-row2_1 > *:nth-child(odd) { width: calc(100% / 3 * 2 - (16px * 2)); }
.u-flex.-row2_1 > *:nth-child(even) { width: calc(100% / 3 - (16px * 2)); }

.u-flex.-row1_2 > *:nth-child(odd) { width: calc(100% / 3 - (16px * 2)); }
.u-flex.-row1_2 > *:nth-child(even) { width: calc(100% / 3 * 2 - (16px * 2)); }

.u-flex.-row3_1 > *:nth-child(1) { flex-grow: 1; }
.u-flex.-row3_1 > *:nth-child(n + 2) { width: calc(100% / 4 - (16px * 2)); }

.u-flex.-row2 > *:nth-child(-n + 2) { margin-top: 0; }
.u-flex.-row3 > *:nth-child(-n + 3) { margin-top: 0; }
.u-flex.-row4 > *:nth-child(-n + 4) { margin-top: 0; }
.u-flex.-row5 > *:nth-child(-n + 5) { margin-top: 0; }
.u-flex.-row6 > *:nth-child(-n + 6) { margin-top: 0; }
.u-flex.-row7 > *:nth-child(-n + 7) { margin-top: 0; }

.u-flex > * > .u-table_corner:nth-child(1) {
	margin-top: -5px;
}

.u-flex.-row .u-text:first-child {
	margin-top: -.5em;
}

.u-flex > * .u-on_imagezoom.u-icon.-arrow + .u-text {
	margin-top: 10px;
} 

.u-border_radius {
	border-radius: var(--border_r);
}

/* Template List */
.u-list {
	margin-top: 20px;
}

/*
.u-list + * {
	margin-top: 40px;
}
*/

.u-list li {
	line-height: 1.8;
	padding-left: 1em;
	position: relative;
}

.u-list li:not(:first-child) {
	margin: .5em 0 0;
}

.u-list li:before {
	content: '';
	width: .5em;
	height: .5em;
	margin: .725em 0 0;
	background: var(--red);
	border-radius: 100vmax;
	position: absolute;
	top: 0;
	left: 0;
}

.u-list.-num {
	display: table
}

.u-list.-num li {
	padding-left: 0;
}

.u-list.-num li:before {
	display: none;
}

.u-list.-num li > * {
	display: table-cell;
}

.u-list.-num li > *:first-child {
	color: var(--red);
	font-weight: 600;
	padding: 0 .35em 0 0;
}

.u-list.-note {
	display: table
}

.u-list.-note li {
	font-size: 14rem;
	line-height: 1.8;
	padding-left: 0;
}

.u-list.-note li > * {
	display: table-cell;
}

.u-list.-note li > *:first-child {
	font-size: 14rem;
	font-weight: 400;
	padding: 0 .35em 0 0;
}

.u-list.-note li:before {
	display: none;
}

.u-list--inline li {
	display: inline-block;
}

.u-list--inline li:nth-child(n + 1) {
	margin-right: 1em;
}

/* Template Table */
.u-intoScroll-desc {
	display: none;
}

.u-table {
	position: relative;
}

.u-table caption {
	font-size: 16rem;
	text-align: left;
	width: 100%;
	padding: 0 0 .75em;
	display: block;
}

.u-table_corner {
	margin-top: 40px;
}

.u-table_corner + * {
	margin-top: 30px;
}

.u-table_corner + .u-table_corner {
	margin-top: 60px;
}

.u-table_corner .u-table {
	margin: 5px 0 0;
	table-layout: fixed;
	border-bottom: 1px solid var(--gray_light);
}

.u-table_corner .u-table tbody,
.u-table_corner .u-table thead {
	border-top: 1px solid var(--gray_light);
}

.u-table_corner th {
	font-weight: 500;
	line-height: 1.8;
	text-align: center;
	vertical-align: middle;
	padding: 15px 20px;
	background: var(--gray_lightest);
	border-bottom: 1px solid var(--gray_light);
	border-right: 1px solid var(--gray_light);
	position: relative;
}

.u-table_corner th small {
	font-size: 14rem;
}

.u-table_corner td {
	line-height: 1.8;
	vertical-align: middle;
	padding: 15px 20px;
	border-bottom: 1px solid var(--gray_light);
	border-right: 1px solid var(--gray_light);
	position: relative;
}

.u-table_corner td:last-child {
	border-right: 0;
}

.u-table_corner tr:last-of-type td {
	border-bottom: 0;
}

.u-table_corner td > *:nth-child(1) {
	margin-top: 0;
}

.u-table_corner td .u-list {
	margin-top: .25em;
}

.u-table_head th {
	padding-inline: .5em;
	background: var(--gray_lightest);
}

.u-table_head.bg_gray_light th  {
	padding-inline: .5em;
	background: var(--gray_light);
}

.u-table_head th {
	border-right: 1px solid var(--gray_light);
}

.u-table_head th:last-of-type {
	border-right: 0;
}

.u-table_head.bg_gray_light th {
	border-right: 1px solid var(--gray_lightest);
}

.u-table_head.bg_gray_light th:last-of-type {
	border-right: 0;
}

.u-table_corner .border-left-none {
	border-left: 0;
}

.u-table_corner .border-left {
	border-left: 1px solid var(--gray_line) !important;
}

.u-table_corner .border-right {
	border-right: 1px solid var(--gray_line) !important;
}

.u-table_corner.-compact th,
.u-table_corner.-compact td {
	line-height: 1.35;
	padding: .45em .5em .5em .5em;
}

.u-table_corner .u-icon_arrow_basic--after:after {
	vertical-align: -.45em;
	transform-origin: top left;
	transform: scale(.85);
}

.u-table .u-font--rl {
	letter-spacing: .5em;
}

.u-table .u-font--rl {
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	white-space: pre;
	display:inline-block;
}

.u-table_corner .u-align_center th {
	text-align: center;
	padding-right: 1em;
	padding-left: 1em;
}

.u-table_corner .u-align_center td {
	text-align: center;
	padding-right: .5em;
	padding-left: .5em;
}

.u-table_corner th sup {
	font-weight: 400;
}

.u-table_corner .u-icon--pdf:after,
.u-table_corner .u-icon--window:after {
	vertical-align: -.2em;
}

.u-table_corner .u-table small {
	vertical-align: baseline;
}

.u-table_corner .plane th,
.u-table_corner .plane td {
	padding: 0 .25em 0 0;
	border: 0;
}

.u-intoScroll__inner {
	overflow-x: auto;
	overflow-y: visible;
	position: relative;
	-webkit-overflow-scrolling: touch;
}

.u-table + .u-table_caption {
	margin-top: 10px;
}

/*title*/
.u-title_grande {
	color: var(--red);
}

.u-title_grande:before {
	content: attr(data-en);
	font-family: var(--font_mont);
	font-size: 60rem;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
	margin: -.15em 0 0 -.055em;
	display: block;
}

.u-title_grande > * {
	font-size: 18rem;
	font-weight: 700;
}

.u-title_grande + * {
	margin-top: 30px;
}

.u-title_hi {
	margin: 50px 0 0;
	padding: 0 0 .5em 0;
	border-bottom: 3px solid var(--gray_lightest);
	position: relative;
}

.u-title_hi + * {
	margin-top: 40px;
}

/*irp*/
.irp-year .u-title_hi + .items,
.u-title_hi + .u-news_list,
.u-title_hi + #irp-schedule-1,
#irp-irnews-schedule .u-title_hi + .items {
	margin-top: 20px;
}

#irp-stock {
	width: 100%;
}

.u-title_hi:first-child {
	margin-top: 0;
}

.u-title_hi:after {
	content: '';
	width: 50px;
	height: 3px;
	background: var(--red);
	position: absolute;
	bottom: 0;
	left: 0;
	translate: 0 3px;
}

.u-title_hi > * {
	font-size: 28rem;
	font-weight: 400;
	line-height: 1.6;
}

.u-title_mid {
	margin-top: 40px;
	position: relative;
}
.u-title_mid + * {
	margin-top: 20px;
}

.u-title_mid:first-child {
	margin-top: 0;
}

.u-title_mid > * {
	font-size: 24rem;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: .025em;
}

.u-title_low {
	margin-top: 40px;
	padding: 0 0 0 14px;
	position: relative;
}

/*
.u-title_low + * {
	margin-top: 40px !important;
}
*/

.u-title_low:after {
	content: '';
	width: 4px;
	height: calc(100% - (.3em * 2));
	display: block;
	background: var(--red);
	position: absolute;
	top: 50%;
	left: 0;
	translate: 0 calc(-50% + .05em);
}

.u-title_low:first-child {
	margin-top: 0;
}

.u-title_low > * {
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: .025em;
}

.u-title_small {
	margin-top: 40px;
	position: relative;
}

.u-title_small:first-child {
	margin-top: 0;
}

/*
.u-title_small + * {
	margin-top: 15px;
}
*/

.u-title_small > * {
	font-size: 18rem;
	line-height: 1.8;
}

.u-title_small + * {
	margin-top: 20px;
}

/* Template Image */
figcaption {
	font-size: 14rem;
	line-height: 1.6;
	margin: .75em 0 0;
}

.u-lead {
	font-size: 20rem;
	font-weight: 500;
	line-height: 1.8;
	margin-top: 40px;
}

.g-main-body > .u-contents:first-of-type .u-lead:first-child {
	margin-top: 0;
}

.u-text {
	line-height: 1.8;
	margin-top: 20px;
}

.u-text + .u-table_corner {
	margin-top: 2em;
}

.g-main-body > .u-contents:first-of-type .u-text:first-child {
	margin-top: 0;
}

.u-align_left {
	text-align: left !important;
}

.u-align_center {
	text-align: center !important;
}

.u-align_right {
	text-align: right !important;
}

.u-align_middle {
	vertical-align: middle !important;
}

.u-box {
	border-top: 2px solid var(--red);
	background: var(--gray_lightest);
	margin: 70px 0 0;
	padding: 40px 50px;
	position: relative;
}

.u-box + * {
	margin-top: 50px;
}

.u-box_title {
	font-size: 16rem;
	line-height: 1.75;
}

.u-box_title:before {
	content: attr(data-en);
	font-family: var(--font_mont);
	font-size: 26rem;
	font-weight: 600;
	letter-spacing: .05em;
	margin: 0 0 .25em;
	display: block;
}

.u-box_title + * {
	margin-top: .75em;
}

/*map*/
.u-map_panel {
	aspect-ratio: 4 / 3;
	background: var(--gray_lightest);
	position: relative;
	border-radius: var(--border_r);
	overflow: hidden;
	transform: translateZ(0);
}

.u-map_panel iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	inset: 0;
}

/*news*/
.u-news_list .item {
	padding: 1.5em 0;
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--gray_light);
}

.u-news_list .item:last-child {
	border-bottom: 0;
}

.u-news_list .time {
	color: var(--black);
	font-size: 15rem;
	line-height: 1.6;
	white-space: nowrap;
	width: 8.25em;
}

.u-news_list .category {
	text-align: center;
	width: calc(5.25em + .75em);
	padding: 0 .75em 0 0;
}

.u-news_list .category > * {
	color: var(--white);
	font-size: 13rem;
	font-weight: 600;
	letter-spacing: .1em;
	white-space: nowrap;
	height: 24px;
	padding: 0 0 .1em;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: var(--gray);
	border-radius: 100vmax;
}

.u-news_list .category.-unkou > * {
	background-color: var(--red);
}

.u-news_list .category.-kaiji > * {
	background-color: var(--black);
}

.u-news_list .category.-kessan > * {
	background-color: var(--gray_dark);
}

.u-news_list .category.-co > * {
	background-color: var(--gray);
}

.u-news_list .category.-update > * {
	background-color: var(--blue_dark);
}

.u-news_list .text {
	font-size: 15rem;
	line-height: 1.6;
	width: calc(100% - (5.25em + 9em));
	padding: 0;
	position: relative;
	flex-grow: 1;
}

.u-news_list .text a {
	font-weight: 400;
	margin: -.5em 0;
	padding: .5em 60px .5em 0;
	display: block;
	position: static;
}

.u-news_list .text a.u-icon:after {
	margin: 0;
	position: absolute;
	top: 50%;
	right: 0;
	translate: 0 -50%;
}

.u-news_list .text a[href$='.pdf']:after {
	width: 30px;
	height: 32px;
	margin-right: 3px;
}


.u-news_list .u-icon_arrow:link {
	color: var(--black);
	text-indent: 0;
	padding-left: 0;
}

.u-news_list .u-icon_arrow:before {
	display: none;
}

.u-news_list .u-text {
	line-height: 1.8;
}

.u-news_list .no_result_message {
	text-align: center;
}

/*西暦選択*/
.u-news_list .dropmenu {
	width: 240px;
	position: absolute;
	z-index: 50;
}

.u-news_list .dropmenu + * {
	padding-top: calc(58px + 30px);
}

.u-news_list .dropmenu li {
		position: relative;
}

.u-news_list .dropmenu li a {
	height: 58px;
	margin: 0;
	padding: 0 16px .25em;
	display: flex;
	align-items: center;
	background: var(--white);
	border: 1px solid var(--gray_light);
	border-radius: 4px;
	cursor: pointer;
	position: relative;
}

.no-touch .u-news_list .dropmenu li a:hover {
	text-decoration: none;
}

.u-news_list .dropmenu li a:after {
	content: '';
	width: 12px;
	height: 14px;
	margin: 0 18px 0 0;
	background: url("/_assets/images/common/arrow_02_red.svg") no-repeat center / contain;
	display: inline-block;
	position: absolute;
	right: 0;
	top: calc(50% - .1em);
	translate: 0 -50%;
	rotate: 90deg;
}

.u-news_list .dropmenu li.active_sp a:after {
	rotate: 270deg;
}

.u-news_list .dropmenu li ul {
	position: absolute;
	width: 100%;
	z-index: 9999;
	top: 100%;
	left: 0;
	max-height: calc(40px * 6);
	overflow-y: auto;
	border-radius: 0 0 4px 4px;
}

.u-news_list .dropmenu li ul li {
	overflow: hidden;
	height: 0;
}

.u-news_list .dropmenu li ul li a {
	height: 40px;
	border-top: 0;
	border-bottom: 0;
	border-radius: 0;
	transition: .2s var(--easing);
}

.no-touch .u-news_list .dropmenu li ul li a:hover {
	background-color: var(--gray_lightest);
}

.u-news_list .dropmenu li ul li a:after {
	content: none;
}

.u-news_list .dropmenu li ul li:first-child a {
	border-top: none;
}

.u-news_list .dropmenu li.active_sp > a {
	border-radius: 4px 4px 0 0;
	border-bottom-color: var(--white);
}


.u-news_list .dropmenu li.active_sp ul {
	border-bottom: 1px solid var(--gray_light);
}

.u-news_list .dropmenu li.active_sp ul li {
	overflow: visible;
	height: 40px;
}

/*anchor-menu*/
.u-anchor {
	margin-top: 50px;
}

.u-anchor + * {
	margin-top: 50px;
}

.u-anchor_menu {
	padding: 20px;
	border: 1px solid var(--gray_light);
	border-radius: var(--border_r);
}

.u-anchor_menu .items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.u-anchor_menu .item {
	padding: 10px 25px;
}

.u-anchor_menu .item > * {
	line-height: 1.6;
	padding: 0 42px 0 0;
}

.u-anchor_menu .item > *:after {
	margin-top: 0;
	position: absolute;
	top: 50%;
	right: 0;
	translate: 0 -50%;
}

/*on imagezoom*/
.u-on_imagezoom .u-on_imagezoom_inner {
	position: relative;
	overflow: hidden;
	transform: translateZ(0);
}

.u-on_imagezoom .u-on_imagezoom_inner + * {
	margin-top: 10px;
}

.u-on_imagezoom .u-on_imagezoom_inner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: scale .3s ease;
}

.no-touch .u-on_imagezoom:hover .u-on_imagezoom_inner img {
	scale: 1.075;
	opacity: 1;
	transition: scale .6s ease;
}

.u-on_imagezoom.u-icon.-arrow:after {
	display: none;
}

.u-on_imagezoom.u-flow_line:hover .u-on_imagezoom_inner {
	background: none;
}

.u-on_imagezoom .u-flow_line > * {
	padding-bottom: .175em;
	background: linear-gradient(var(--red), var(--red)) no-repeat bottom right / 0 1px;
	transition: background-size .6s 0s var(--easing);
}

.no-touch .u-on_imagezoom:hover .u-flow_line > * {
	color: var(--red);
	background-position: bottom left;
	background-size: 100% 1px;
	transition: background-size .2s .2s var(--easing);
}

.u-on_imagezoom.u-icon.-arrow .u-text {
	padding-right: calc(32px + 10px);
	position: relative;
}

.u-on_imagezoom.u-icon.-arrow .u-text:after {
	content: '';
	vertical-align: middle;
	width: 34px;
	height: 34px;
	margin: -.2em 0 0 8px;
	border: 1px solid var(--red);
	border-radius: 100vmax;
	display: inline-block;
	background: var(--white) url(/_assets/images/common/arrow_02_red.svg) no-repeat center;
	transition: .2s var(--easing);
	position: absolute;
	top: 0;
	right: 0;
}

.no-touch .u-on_imagezoom.u-icon.-arrow:hover .u-text:after {
	background-color: var(--red);
	background-image: url("/_assets/images/common/arrow_02_white.svg");
}

/*acc*/
.u-acc {
	margin-top: 20px;
}

.u-acc .button {
	font-size: 16rem;
	text-align: left;
	width: 100%;
	min-height: 60px;
	padding: .5em 30px;
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--gray);
	position: relative;
}

.u-acc .button:after {
	content: '';
	width: 100%;
	height: 1px;
	display: block;
	background: var(--red);
	position: absolute;
	bottom: -1px;
	left: 0;
	z-index: 10;
	transform-origin: right;
	scale: 0 1;
	transition: scale .6s .2s var(--easing);
}

.u-acc .button > .icon {
	width: 34px;
	height: 34px;
	margin: calc(60px - (60px / 2)) 30px 0 0;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	border-radius: 100vmax;
	border: 1px solid var(--red);
	translate: 0 -50%;
	transition: .2s var(--easing);
}

.no-touch .u-acc .button:hover {
	color: var(--red);
}

.no-touch .u-acc .button:hover:after {
	transform-origin: left;
	scale: 1 1;
}

.no-touch .u-acc .button:hover > .icon {
	background-color: var(--red);
}

.u-acc .button > .icon:before,
.u-acc .button > .icon:after {
	content: '';
	width: 12px;
	height: 1px;
	display: block;
	background: var(--red);
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50%;
	transition: .2s var(--easing);
}

.no-touch .u-acc .button:hover > .icon:before,
.no-touch .u-acc .button:hover > .icon:after {
	background-color: var(--white);
}

.u-acc .button > .icon:after {
	rotate: 90deg;
}

.u-acc .button.active {
	border-bottom: 1px solid var(--gray_light);
}

.u-acc .button.active > .icon:after {
	rotate: 180deg;
}

.u-acc .button + .details {
	display: none;
}

.u-acc .button + .details .inner {
	padding: 25px 30px 30px;
	border-bottom: 1px solid var(--gray);
}

.u-acc .button + .details .inner > *:first-child {
	margin-top: 0;
}

.u-acc .button.disable {
	color: inherit;
	text-decoration: none;
	pointer-events: none;
}

.u-acc .button.disable:after {
	display: none;
}

/*tab panel*/
.u-tab_buttons {
	display: flex;
	justify-content: space-between;
}

.u-tab_button {
	background: var(--gray_lightest);
	border-top: 1px solid var(--gray);
	flex-grow: 1;
	position: relative;
}

.u-tab_button:after {
	content: '';
	width: 100%;
	height: 100%;
	display: block;
	background: linear-gradient(var(--white), var(--white)) no-repeat bottom right / 0 100%;
	transition:
		background-size .4s .2s var(--easing)
	;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

.u-tab_button.active:after {
	background-position: bottom left;
	background-size: 100% 100%;
	transition:
		background-size .4s .2s var(--easing)
	;
}

.u-tab_button > button {
	font-size: 14rem;
	font-weight: 500;
	width: 100%;
	min-height: 58px;
	display: flex;
	border-left: 1px solid var(--gray);
	border-bottom: 1px solid var(--gray);
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 10;
}

.u-tab_button:last-child > button {
	border-right: 1px solid var(--gray);
}

.u-tab_button > button:after {
	content: '';
	width: 100%;
	height: 3px;
	display: block;
	background: linear-gradient(var(--red), var(--red)) no-repeat bottom right / 0 100%;
	transition:
		background-size .4s .2s var(--easing)
	;
	position: absolute;
	top: 0;
	left: 0;
}

.no-touch .u-tab_button > button:hover {
	color: var(--red);
}

.u-tab_button.active > button {
	color: var(--red);
	border-bottom-color: var(--white);
}

.u-tab_button.active > button:after {
	background-position: bottom left;
	background-size: 100% 100%;
	transition:
		background-size .4s .2s var(--easing)
	;
}

.u-tab_panel_group{
	margin: 30px 0 0;
} 

.u-tab_contents {
	max-width: var(--max_w);
	opacity: 0;
	visibility: hidden;
	position: absolute;
	z-index: -1;
	transition: opacity 0s 0s var(--easing);
}

.u-tab_contents.active {
	opacity: 1;
	visibility: visible;
	position: relative;
	z-index: 0;
	transition: opacity .2s 0s var(--easing);
}

/*kv*/
.u-kv {
	padding: 250px 0 0;
	background: var(--gray_lightest);
	position: relative;
	overflow: hidden;
	transform: translateZ(0);
}

.u-kv:after {
	content: '';
	width: 490px;
	margin: 0 0 0 -70px;
	aspect-ratio: 89 / 100;
	display: block;
	background: url("/_assets/images/common/img_seven_01_white.svg") no-repeat left top / contain;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	opacity: .125;
}

.p-sub .u-kv:after {
	opacity: .5;
}

.u-kv_pagetitle {
	width: 100%;
	max-width: calc(var(--max_w) + (40px * 2));
	margin-top: calc(var(--header_h) / 2);
	padding-inline: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	z-index: 50;
}

.u-kv_pagetitle em {
	font-size: 40rem;
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: .075em;
	font-feature-settings: "palt";
}

.u-kv_pagetitle.white em {
	color: var(--white);
	text-shadow: 0 0 5px rgba(0,0,0,.25);
}

.u-kv_image {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.u-kv_image img {
	height: 100%;
	object-fit: cover;
}

.ceo_name {
	vertical-align: -.075em;
	display: inline-block;
}

.ceo_name img {
	width: auto;
	height: .925em;
}

.p-index.p-local .u-kv {
	padding-top: 400px;
}

.p-index.p-local .u-kv_pagetitle {
	text-align: inherit;
	width: calc(var(--max_w) + (40px * 2));
	padding-inline: 40px;
	margin: 0;
	left: 50%;
	translate: -50% 0;
}

.p-index.p-local .u-kv_pagetitle:before {
	content: attr(data-en);
	font-family: var(--font_mont);
	font-size: 60rem;
	font-weight: 500;
	white-space: nowrap;
	margin: 0 0 0 -.05em;
	display: block;
}

.p-index.p-local .u-kv_pagetitle.white:before {
	color: var(--white);
}

.p-index.p-local .u-kv_pagetitle em {
	font-size: 18rem;
	font-weight: 500;
	margin: .25em 0 0;
	display: block;
}

.g-wrapper {
	padding: 0 0 100px;
	position: relative;
	z-index: 0;
}

.g-main-body > *:first-child {
	margin-top: 0;
}

.g-breadcrumb {
	font-size: 13rem;
	line-height: 1.35;
	margin: 15px 0 0;
}

.g-breadcrumb_items {
	display: flex;
	flex-wrap: wrap;
}

.g-breadcrumb_item {
	margin: 5px 0 0;
	position: relative;
}

.g-breadcrumb_item:not(:last-of-type) {
	padding: 0 1.5em 0 0;
}

.g-breadcrumb_item:not(:last-of-type):after {
	content: '/';
	margin: 0;
	display: block;
	position: absolute;
	top: 0;
	right: .5em;
	opacity: .5;
}

.g-breadcrumb_item a {
	color: var(--gray_darkest);
}

.no-touch .g-breadcrumb_item a:hover {
	text-decoration: underline;
}

.g-breadcrumb_item.-linknone,
.g-breadcrumb_item:last-child a {
	color: var(--gray);
	text-decoration: none;
	pointer-events: none;
}

.g-breadcrumb.-white a {
	color: var(--white);
}

.g-breadcrumb.-white .g-breadcrumb_item:not(:last-of-type):after {
	color: var(--white);
}

.g-breadcrumb_item.-linknone,
.g-breadcrumb_item:last-child a {
	color: var(--gray);
}

.g-container {
	padding: 50px 0 0;
}

/*header*/
.g-header_mobile_menu {
	display: none;
}

.g-header {
	letter-spacing: .05em;
	font-feature-settings: "palt";
	width: calc(100% - (20px * 2));
	height: var(--header_h);
	margin: 20px;
	background: var(--white);
	position: fixed;
	border-radius: calc(var(--header_h) / 2);
	box-shadow: 0 0 20px 0 rgba(0,0,0,.15);
	top: 0;
	left: 0;
	z-index: 300;
	transition: border-radius .1s .35s var(--easing);
}

.active_pulldown .g-header {
	border-radius: calc(var(--header_h) / 2) calc(var(--header_h) / 2) 0 0;
	transition:
		border-radius .1s 0s linear
	;
}

.g-header_logo {
	width: 200px;
	margin: 0 0 0 15px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
}

.g-header_logo a:hover img {
	opacity: .5;
}

.g-header_sub {
	margin: 0 14px 0 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	position: absolute;
	top: 50%;
	right: 0;
	translate: 0 -50%;
}

.g-header_links_items {
	display: flex;
	justify-content: flex-end;
}

.g-header_links_item {
	margin: 0 0 0 10px;
}

.g-header_links_items a {
	color: var(--white);
	font-size: 14rem;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	height: 34px;
	padding: 0 .8em .1em;
	border-radius: 100vmax;
	background: var(--gray_darkest);
	border: 1px solid var(--gray_darkest);
	display: flex;
	align-items: center;
}

.no-touch .g-header_links_items a:hover {
	color: var(--black_text);
	background-color: var(--white);
}

.g-header_links_items a:before {
	content: '';
	width: 1.45em;
	height: 1.45em;
	margin: 0 .25em -.1em 0;
	display: inline-block;
	background: url("/_assets/images/common/icon_schedule_white.svg") no-repeat center / cover;
}

.no-touch .g-header_links_items a:hover:before {
	background-image: url("/_assets/images/common/icon_schedule_gray.svg");
}

.g-header_links_items .-inquiry a {
	background-color: var(--red);
	border: 1px solid var(--red);
}

.g-header_links_items .-inquiry a:hover {
	color: var(--red);
	background-color: var(--white);
}

/*g-navi*/
.g-navi {
	width: calc(100% - 200px - 200px - 15px);
	margin: 0 200px 0 0;
	position: absolute;
	top: 50%;
	right: 0;
	translate: 0 -50%;
	transition: .3s ease;
	opacity: 1;
	visibility: visible;
}

.g-navi_menu_items {
	width: 100%;
	display: flex;
	justify-content: flex-end;
}

.g-navi_menu_item {
	height: var(--header_h);
	margin: 0 0 0 36px;
	display: flex;
	align-items: center;
	position: relative;
}

.g-navi_menu_item:first-child {
	margin-left: 0;
}

.g-navi_menu_item a {
	color: var(--black_text);
	font-size: 16rem;
	font-weight: 500;
	line-height: 1.35;
	text-decoration: none;
	position: static;
}

.no-touch .g-navi_menu_item.active a {
	color: var(--red);
	text-decoration: none;
}

.g-navi_menu_item a[target='_blank']:after {
	background-image: url("/_assets/images/common/icon_blank_01_gray.svg");
}

.g-navi_menu_item > a:before {
	content: '';
	width: calc(100% + 7px + 3px);
	height: 3px;
	margin: 0 -3px 0 -7px;
	display: block;
	background: var(--red);
	position: absolute;
	bottom: 0;
	left: 0;
	transform-origin: right;
	transform: scale(0,1);
	transition: transform .4s var(--easing);
}

.g-navi_menu_item > a:hover:before,
.g-navi_menu_item.active > a:before,
.g-navi_menu_item > a.active_focus:before {
	transform-origin: left;
	transform: scale(1,1);
	transition: transform .4s var(--easing);
}

.g-navi_menu_item .u-icon.-arrow:after {
	content: '';
	vertical-align: middle;
	width: 7px;
	height: 12px;
	margin: -.15em 0 0 8px;
	border: 0;
	display: inline-block;
	background-image: url("/_assets/images/common/arrow_01_gray.svg");
	rotate: 90deg;
}

.g-navi_menu_item .u-icon.-arrow:hover:after {
	background-color: transparent;
	background-image: url("/_assets/images/common/arrow_01_gray.svg");
}

.g-navi_menu_item.active .u-icon.-arrow:after {
	rotate: 270deg;
}

/*gnavi pulldown*/
.g-navi_pulldown {
	width: 100%;
	margin-top: var(--header_h);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 250;
	transition: top .3s ease;
}

.g-navi_pulldown .opener i {
	display: none;
}

.g-navi_pulldown .off_gnavi {
	display: none;
}

.g-navi_pulldown_inner {
	width: 100%;
	max-height: calc(100vh - var(--header_h));
	border-top: 1px solid var(--gray_light);
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,0);
	overflow-y: auto;
	opacity: 0;
	visibility: hidden;
	clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
	transition:
		opacity .15s 0s,
		clip-path .2s 0s var(--easing)
	;
}

.g-navi_pulldown_inner.active {
	opacity: 1;
	visibility: visible;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	transition:
		opacity .5s .2s,
		clip-path .4s .15s var(--easing)
	;
}

.g-navi_pulldown_inner_child {
	max-width: calc(var(--max_w) + (40px * 2));
	margin-inline: auto;
	padding: 35px 46px 46px;
	position: relative;
}

.g-navi_pulldown .title a {
	color: var(--black);
	font-size: 18rem;
	font-weight: 600;
	letter-spacing: .075em;
}

.g-navi_pulldown .title a.-linknone {
	pointer-events: none;
}

.g-navi_pulldown .title a.-linknone.u-icon_arrow:before {
	display: none;
}

.no-touch .g-navi_pulldown .title a:hover {
	text-decoration: none;
}

.g-navi_pulldown .title a > *:after,
.g-header_mobile_menu .title a > *:after {
	content: ' トップ';
}

.g-navi_pulldown .title .u-icon_arrow:before {
	width: 36px;
	height: 36px;
	margin: 0 12px 0 0;
}

.g-navi_pulldown .title + * {
	margin: 0 -20px;
	display: flex;
	flex-wrap: wrap;
}

.g-navi_pulldown .category {
	width: calc(100% / 4);
	padding-inline: 20px;
}

.g-navi_pulldown .g-navi_pulldown_inner.-sustainability .category {
	width: calc(100% / 3);
}

.g-navi_pulldown .category .category_title {
	color: var(--black);
	font-size: 16rem;
	font-weight: 500;
	margin: 1.35em 0 0;
	display: block;
	border-bottom: 1px solid var(--gray_light);
}

.g-navi_pulldown .category .category_title:after {
	width: .85em;
	height: .85em;
	margin: 1em 5px 0 0;
	position: absolute;
	top: 0;
	right: 0;
}

.g-navi_pulldown .category .category_title > span {
	margin: 0 0 -1px;
	padding: 1em 0;
	display: block;
	position: relative;
	z-index: 10;
}

.g-navi_pulldown .category .category_title.u-on_imagezoom.u-icon.-arrow:after {
	display: block;
}

.g-navi_pulldown .category .category_title.u-on_imagezoom {
	border-bottom: 0;
}

.g-navi_pulldown .category .category_title.u-on_imagezoom .u-on_imagezoom_inner {
	height: 90px;
	margin: 1px 0 0;
	border-top: 1px solid var(--gray_light);
}

.g-navi_pulldown .category .category_title.u-on_imagezoom .u-on_imagezoom_inner img {
	height: 90px;
	object-fit: cover;
}

.g-navi_pulldown .category .category_title.u-on_imagezoom .u-on_imagezoom_inner img.object_pos_top {
	object-position: top center;
}

.g-navi_pulldown .-sustainability .category .category_title.u-on_imagezoom .u-on_imagezoom_inner,
.g-navi_pulldown .-sustainability .category .category_title.u-on_imagezoom .u-on_imagezoom_inner img {
	height: 130px;
}

.g-navi_pulldown .category .category_title.u-on_imagezoom > span {
	margin-bottom: -2px;
}

.g-navi_pulldown .category .category_title.no_link {
	pointer-events: none;
}

.g-navi_pulldown .category .category_title.no_link:after {
	display: none;
}

.g-navi_pulldown .category > * {
	flex: 1;
}

.g-navi_pulldown .category > * > ul {
	padding: 0 0 0 0;
}

.g-navi_pulldown .category > * > ul > li .u-icon-arrow:before {
	margin: 0;
	position: absolute;
	top: .05em;
	left: 0;
}

.g-navi_pulldown .category > * > ul > li > ul > li {
	letter-spacing: 1.5;
	margin-top: 1em;
}

.g-navi_pulldown .category > * > ul > li > ul > li > a {
	color: var(--black_text);
	font-size: 15rem;
	font-weight: 400;
}

.g-navi_pulldown .category > * > ul > li > ul > li > a:after {
	display: none;
}

.g-navi_pulldown .opener {
	visibility: hidden;
	position: absolute;
}

.g-navi_base {
	width: calc(100% - (20px * 2));
	margin-top: var(--header_h);
	background: var(--white);
	position: fixed;
	top: 20px;
	left: 20px;
	z-index: 120;
	border-radius: 0 0 calc(var(--header_h) / 2) calc(var(--header_h) / 2);
	transition:
		padding .4s 0s var(--easing);
	;
	will-change: padding;
}

.active_pulldown .g-navi_base {
	transition:
		padding .4s .15s var(--easing)
	;
}

/*close button*/
.g-navi_pulldown_close {
	width: 36px;
	height: 36px;
	position: absolute;
	top: 90px;
	right: 28px;
	cursor: pointer;
	transition: opacity .2s .6s var(--easing);
	z-index: 300;
	opacity: 0;
	visibility: hidden;
}

.g-navi_pulldown_close:before,
.g-navi_pulldown_close:after {
	content: '';
	width: 100%;
	height: 2px;
	margin: 20% 0 0;
	display: block;
	background: var(--red);
	border-radius: 100vmax;
	position: absolute;
	top: 0;
	left: 0;
	transition: .2s 0s var(--easing);
	transform-origin: center;
}

.g-navi_pulldown_close span {
	color: var(--red);
	font-size: 11rem;
	font-weight: 500;
	text-align: center;
	white-space: nowrap;
	width: 100%;
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
}


/*active*/
.active_pulldown {
	/*overflow-y: hidden;*/
}

.active_pulldown .g-navi_pulldown_close:before,
.active_pulldown .g-navi_pulldown_close:after {
	transition: .2s .8s var(--easing);
}

.g-navi_menu_item.active a.arrow:before,
.g-navi_menu_item a.arrow.active_focus:before {
	transform: translate(-50%, 0) scaleX(1);
}
	
.g-navi_menu_item.active a.arrow:after {
	transform: translate(0, -50%) rotate(180deg);
}

.active_pulldown .u-cover {
	opacity: 1;
	visibility: visible;
	z-index: 110;
}

.active_pulldown .g-navi-pulldown:after {
/*	width: 880px;*/
	visibility: visible;
	opacity: 1;
	transition: .2s .2s;
}

.is-gnavipulldown_search .g-navi-pulldown:after {
	width: 0;
	opacity: 0;
}


.active_pulldown .g-navi_pulldown_close {
	visibility: visible;
	opacity: 1;
}

.active_pulldown .g-navi_pulldown_close:before,
.active_pulldown .g-navi_pulldown_close:after {
	rotate: 25deg;
}

.active_pulldown .g-navi_pulldown_close:after {
	rotate: -25deg;
}

.active_pulldown .g-navi-menu-item a {
	color: #fff;
}

.active_pulldown .g-header-menu__item svg {
	fill: #fff;
}

.active_pulldown .g-header-menu__item.active svg {
	fill: #eb5c01;
}

.no-touch.active_pulldown .g-header-menu__item > *:hover svg {
	fill: #eb5c01;
}

.active_pulldown .g-navi-base {
	transform: translate(0,0);
}

.is-gnavi-scroll {
	overflow: hidden;
}

.is-gnavi-scroll .g-navi-pulldown {
	height: calc(100vh - 90px);
	overflow-y: scroll;
	transition: 0s;
}

.is-gnavi-scroll .g-navi-pulldown::-webkit-scrollbar-thumb {
	background: rgba(255,255,255,.25);
}

.is-gnavi-scroll .g-navi-pulldown_inner-child {
/*	height: calc(100vh - 90px);*/
}

/*recruit*/
.l-recruit_banner {
	border-radius: var(--border_r);
	background: linear-gradient(to bottom,  #1235e2 0%,#124af1 16%,#125eff 28%,#1375ff 43%,#16adff 55%,#18d0ff 63%,#19deff 69%,#2de2ff 76%,#89f4ff 91%,#89f4ff 91%,#edffd2 100%);
	overflow: hidden;
	transform: translateZ(0);
}

.l-recruit_banner {
	display: flex;
	flex-direction: row-reverse;
}

.l-recruit_banner .section_title {
	color: var(--white);
	width: calc(100% - 46%);
	margin: 40px 0 0;
	padding: 0 0 30px 40px;
}

.l-recruit_banner .section_title .title:before {
	content: attr(data-en);
	font-size: 16rem;
	font-weight: 700;
	width: 100%;
	display: block;
}

.l-recruit_banner .section_title img {
	width: 520px;
}

.l-recruit_banner .section_title .u-text {
	margin-top: 5px;
	padding-right: 1em;
}

.l-recruit_banner .section_title .sub_copy.on_toppage {
	display: none;
}

.p-home.p-home .l-recruit_banner .section_title .sub_copy {
	display: none;
}

.p-home.p-home .l-recruit_banner .section_title .sub_copy.on_toppage {
	display: block;
}

.l-recruit_banner .section_title .u-button {
	margin-top: 20px;
}

.l-recruit_banner .section_title .u-button > * {
	color: var(--white);
	width: 256px;
	min-width: 0;
	border-color: var(--white);
	transition: border-color .3s 0s var(--easing);
}

.no-touch .l-recruit_banner .section_title .u-button > *:hover {
	border-color: var(--red);
}

.l-recruit_banner .section_title .u-icon.-arrow:after {
	border-color: var(--white);
	background-image: url("/_assets/images/common/icon_blank_01_white.svg");
	background-color: transparent;
	background-size: 40% auto;
	background-position: top 40% right 45%;
}

.no-touch .l-recruit_banner .section_title .u-icon.-arrow:hover:after {
	background-image: url("/_assets/images/common/icon_blank_01_white.svg");
}

.l-recruit_banner .image {
	width: 46%;
	margin: 0 0 -1px -1px;
	display: flex;
	align-items: flex-end;
}

/*footer*/
.g-footer {
	background: var(--white);
	border-top: 1px solid var(--gray);
	position: relative;
	z-index: 10;
}

.g-footer .menu {
	margin: 25px 0 0;
}

.g-footer .menu .items {
	display: flex;
	justify-content: center;
}

.g-footer .menu .item {
	padding: 0 10px;
}

.g-footer .menu .item > * {
	font-size: 12rem;
}


.g-footer .copyright {
	color: var(--gray);
	font-size: 12rem;
	text-align: center;
	width: 100%;
	padding: 15px 0 25px;
	display: block;
}

/*float navi*/
.g-float_navi {
	position: fixed;
	top: 50%;
	right: 0;
	translate: 0 -50%;
	transition: .6s var(--easing);
	z-index: 50;
}

/*
.active_scroll .g-float_navi {
	translate: 0 -50%;
	transition: .3s var(--easing);
}
*/

.g-float_navi_item {
	margin: 0 -1px 0 0;
	padding: 4px 0;
}

.g-float_navi_item a {
	font-size: 15rem;
	font-weight: 500;
	writing-mode: vertical-rl;
	width: 40px;
	padding: 1.1em 0;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 8px 0 0 8px;
	background: var(--gray_light);
	border: 1px solid var(--gray_light);
}

.g-float_navi_item a:visited {
	color: var(--black_text);
}

.no-touch .g-float_navi_item a:hover {
	background-color: var(--white);
	border-color: var(--red);
	opacity: 1;
}

.g-float_navi_item.inquiry a {
	color: var(--white);
	background-color: var(--red);
	border-color: var(--red);
}

.no-touch .g-float_navi_item.inquiry a:hover,
.no-touch .g-float_navi_item a:hover:visited{
	color: var(--red);
}

.g-float_navi_item.inquiry a:before {
	content: '';
	width: 1em;
	height: 1em;
	margin: 0 0 .15em;
	display: inline-block;
	background: url("/_assets/images/common/icon_mail_white.svg") no-repeat center / contain;
	position: relative;
	z-index: 10;
}

.no-touch .g-float_navi_item.inquiry a:hover:before {
	background-image: url("/_assets/images/common/icon_mail_red.svg");
}

/*pagetop*/
.g-pagetop {
	padding: 0;
	right: 27px;
	z-index: 90;
}

/*modal*/
.js-modal + .js-modal_element {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	scale: 0;
}

.u-modal {
	margin-top: var(--header_h);
	position: fixed;
	inset: 0;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	transition: .3s ease;
}

.active_modal {
	overflow-y: hidden;
}

.active_modal .u-cover {
	opacity: 1;
	visibility: visible;
}

.active_modal .u-modal {
	opacity: 1;
	visibility: visible;
}

.u-modal_inner {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.u-modal_campus {
	max-width: 1200px;
	max-height: calc(100vh - (60px * 2 + var(--header_h)));
	margin-inline: auto;
	padding-bottom: 30px;
	background: var(--white);
	border-radius: 6px;
	position: relative;
	overflow-y: auto;
	overflow-x: hidden;
	transition: .3s ease;
}

.u-video_stage {
	position: relative;
}

.u-video_stage > video {
	width: 100%;
	aspect-ratio: 16 / 9;
}

/*video*/
.p-video .g-header,
.p-video .g-footer,
.p-video .g-pagetop {
	display: none;
}

.p-video {
	height: 100vh;
}

.p-video .g-wrapper {
	height: 100vh;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: var(--black);
}

.p-video .u-video_stage {
	padding: 56.25% 0 0;
	position: relative;
}

.p-video .u-video_stage iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.u-modal_stage {
	padding-top: 80px;
	padding-bottom: 40px;
}

.u-modal_button_close {
	width: 100%;
	position: absolute;
	bottom: 30px;
	left: 0;
}

.u-modal_button_close > * {
	color: var(--white) !important;
	font-size: 1.7rem;
	min-width: 200px;
	min-height: 60px;
	border-color: var(--white);
}

.u-modal_button_close > *:hover {
	background: rgba(0,0,0,.1);
}

.u-modal_button_close > *:after {
/*	content: url("/_assets/img/common/icon_cross_01@white.svg");*/
	width: 13px;
}

.u-modal_button_close > *:hover:after {
	right: 20px;
	transform: translate(0,-50%) rotate(90deg);
}

.u-modal .close_icon {
	color: transparent;
	font-size: 0;
	width: 22px;
	height: 22px;
	margin: 26px 0 0 0;
	border: 1px solid var(--blue);
	background: var(--white);
	border-radius: 100vmax;
	position: absolute;
	top: 0;
	left: calc(50% + (var(--max_w) / 2) + 74px);
	transform: translate(-100%,0);
	cursor: pointer;
	transition: .3s ease;
	z-index: 30;
}

.u-modal .close_icon:before,
.u-modal .close_icon:after {
	content: '';
	width: 50%;
	height: 1px;
	display: block;
	background: var(--blue);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(45deg);
}

.u-modal .close_icon:after {
	transform: translate(-50%,-50%) rotate(135deg);
}

.u-modal .close_icon:hover {
	background: var(--blue);
	transform: translate(-100%,0) scale(1.35);
}

.u-modal .close_icon:hover:before,
.u-modal .close_icon:hover:after {
	background: var(--white);
}

.u-modal .close_text {
	text-align: center;
}

.u-modal .close_text button {
	font-size: 16rem;
	font-weight: 500;
	text-decoration: none;
	position: relative;
}

.u-modal .close_text button i {
	content: '';
	vertical-align: bottom;
	width: 22px;
	height: 22px;
	margin: 0 5px 0 0;
	display: inline-block;
	border: 1px solid var(--blue);
	background: var(--white);
	border-radius: 100vmax;
	transition: .3s ease;
	z-index: 10;
	position: relative;
}

.u-modal .close_text button i:before,
.u-modal .close_text button i:after {
	content: '';
	width: 50%;
	height: 1px;
	display: block;
	background: var(--blue);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(45deg);
}

.u-modal .close_text button i:after {
	transform: translate(-50%,-50%) rotate(135deg);
}

.u-modal .close_text button:hover i {
	background: var(--blue);
	transform-origin: center;
}

.u-modal .close_text button:hover i:before,
.u-modal .close_text button:hover i:after {
	background: var(--white);
}

.u-width_100 { width: 100%; }
.u-width_95 { width: 95%; }
.u-width_90 { width: 90%; }
.u-width_85 { width: 85%; }
.u-width_80 { width: 80%; }
.u-width_75 { width: 75%; }
.u-width_70 { width: 70%; }
.u-width_65 { width: 65%; }
.u-width_60 { width: 60%; }
.u-width_55 { width: 55%; }
.u-width_50 { width: 50%; }
.u-width_45 { width: 45%; }
.u-width_40 { width: 40%; }
.u-width_35 { width: 35%; }
.u-width_40 { width: 40%; }
.u-width_30 { width: 30%; }
.u-width_25 { width: 25%; }
.u-width_20 { width: 20%; }
.u-width_15 { width: 15%; }
.u-width_10 { width: 10%; }
.u-width_9 { width: 9%; }
.u-width_8 { width: 8%; }
.u-width_7 { width: 7%; }
.u-width_6 { width: 6%; }
.u-width_5 { width: 5%; }
.u-width_4 { width: 4%; }
.u-width_3 { width: 3%; }
.u-width_2 { width: 2%; }
.u-width_1 { width: 1%; }

.u-max_width_900 { max-width: 900px; }
.u-max_width_800 { max-width: 800px; }
.u-max_width_700 { max-width: 700px; }
.u-max_width_600 { max-width: 600px; }
.u-max_width_500 { max-width: 500px; }
.u-max_width_400 { max-width: 400px; }
.u-max_width_300 { max-width: 300px; }
.u-max_width_250 { max-width: 250px; }
.u-max_width_200 { max-width: 200px; }
.u-max_width_150 { max-width: 100px; }
.u-max_width_100 { max-width: 100px; }

.u-mgt_125 { margin-top: 125px !important; }
.u-mgt_120 { margin-top: 120px !important; }
.u-mgt_115 { margin-top: 110px !important; }
.u-mgt_110 { margin-top: 110px !important; }
.u-mgt_105 { margin-top: 100px !important; }
.u-mgt_100 { margin-top: 100px !important; }
.u-mgt_95 { margin-top: 95px !important; }
.u-mgt_90 { margin-top: 90px !important; }
.u-mgt_85 { margin-top: 85px !important; }
.u-mgt_80 { margin-top: 80px !important; }
.u-mgt_75 { margin-top: 75px !important; }
.u-mgt_70 { margin-top: 70px !important; }
.u-mgt_65 { margin-top: 65px !important; }
.u-mgt_60 { margin-top: 60px !important; }
.u-mgt_55 { margin-top: 55px !important; }
.u-mgt_50 { margin-top: 50px !important; }
.u-mgt_45 { margin-top: 45px !important; }
.u-mgt_40 { margin-top: 40px !important; }
.u-mgt_35 { margin-top: 35px !important; }
.u-mgt_30 { margin-top: 30px !important; }
.u-mgt_25 { margin-top: 25px !important; }
.u-mgt_20 { margin-top: 20px !important; }
.u-mgt_15 { margin-top: 15px !important; }
.u-mgt_10 { margin-top: 10px !important; }
.u-mgt_5 { margin-top: 5px !important; }
.u-mgt_0 { margin-top: 0 !important; }
.u-mgt_-5 { margin-top: -5px !important; }
.u-mgt_-10 { margin-top: -10px !important; }
.u-mgt_-20 { margin-top: -20px !important; }
.u-mgt_-30 { margin-top: -30px !important; }
.u-mgt_-40 { margin-top: -40px !important; }
.u-mgt_-50 { margin-top: -50px !important; }
.u-mgt_-60 { margin-top: -60px !important; }
.u-mgt_-70 { margin-top: -70px !important; }

.u-color_black {
	color: var(--black) !important;
}

.u-color_blue {
	color: var(--blue) !important;
}

.u-color_red {
	color: var(--red) !important;
}

.u-font_def {
	font-family: var(--font_def);
}

.u-font_mont {
	font-family: var(--font_mont);
}

.u-font_100 { font-weight: 100 !important; }
.u-font_200 { font-weight: 200 !important; }
.u-font_300 { font-weight: 300 !important; }
.u-font_400 { font-weight: 400 !important; }
.u-font_500 { font-weight: 500 !important; }
.u-font_600 { font-weight: 600 !important; }
.u-font_700 { font-weight: 700 !important; }
.u-font_800 { font-weight: 800 !important; }
.u-font_900 { font-weight: 900 !important; }

.u-font_8 { font-size: 8rem !important; }
.u-font_9 { font-size: 9rem !important; }
.u-font_10 { font-size: 10rem !important; }
.u-font_11 { font-size: 11rem !important; }
.u-font_12 { font-size: 12rem !important; }
.u-font_13 { font-size: 13rem !important; }
.u-font_14 { font-size: 14rem !important; }
.u-font_15 { font-size: 15rem !important; }
.u-font_16 { font-size: 16rem !important; }
.u-font_17 { font-size: 17rem !important; }
.u-font_18 { font-size: 18rem !important; }
.u-font_19 { font-size: 19rem !important; }
.u-font_20 { font-size: 20rem !important; }
.u-font_21 { font-size: 21rem !important; }
.u-font_22 { font-size: 22rem !important; }
.u-font_23 { font-size: 23rem !important; }
.u-font_24 { font-size: 24rem !important; }
.u-font_25 { font-size: 25rem !important; }
.u-font_26 { font-size: 26rem !important; }
.u-font_27 { font-size: 27rem !important; }
.u-font_28 { font-size: 28rem !important; }
.u-font_29 { font-size: 29rem !important; }
.u-font_30 { font-size: 30rem !important; }

@media print {
	.g-body {
		font-size: 14rem;
	}
	
	.g-wrapper {
		padding-top: 0;
	}
	
	.g-container {
		margin-top: 0;
	}
	
	.g-header_sub,
	.g-navi,
	.g-breadcrumb,
	.g-pagetop {
		display: none;
	}
	
	.g-header {
		position: static;
	}
	
	.g-header_logo {
		margin-left: 0;
		top: 0;
		transform: none;
	}
	
}