@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap&family=Roboto:wght@300;400;500;700&display=swap);
/*--------------------
animation
--------------*/
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
		pointer-events: all;
	}
}
@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	99% {
		opacity: 0;
		display: block;
	}
	100% {
		display: none;
		pointer-events: none;
	}
}
@keyframes fadeIn_vis {
	0% {
		visibility: hidden;
	}
	1% {
		visibility: visible;
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeOut_vis {
	0% {
		opacity: 1;
	}
	99% {
		opacity: 0;
	}
}
@keyframes pointer_ev {
	to {
		pointer-events: none;
	}
}
@keyframes blinking {
	0% {
		opacity: 0;
	}
	75% {
		opacity: 1;
	}
	100% {
		opacity: 1;
	}
}
@keyframes scroll-left {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}
@keyframes floating {
	from {
		transform: translateY(-5%);
	}
	to {
		transform: translateY(5%);
	}
}
/* Reset */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	background: transparent;
	font-weight: inherit;
	font-size: inherit;
	font-style: inherit;
	-webkit-tap-highlight-color: transparent;
}

article,
aside,
details,
figcaption,
figure,
picture,
main,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

ul,
ol {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
}

button {
	font-family: inherit;
}

/*----------
	vars
----------*/
:root {
	/* color */
	--color-prim: #13449D;
	--color-seco: #061448;
	--color-txt: #061448;
	--color-txt-caption: #8B91A0;
	--color-border: #D8E0E6;
	--color-bg: #EEF3FB;
	--color-prim-rgb: 19, 68, 157;
	--color-seco-rgb: 6, 20, 72;
	--color-txt-rgb: 6, 20, 72;
	--color-txt-caption-rgb: 139, 145, 160;
	--color-border-rgb: 216, 224, 230;
	--color-bg-rgb: 238, 243, 251;
	/* font family */
	--font-sans: "Noto Sans JP", "ヒラギノ角ゴシック", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", Hiragino Sans, "メイリオ", Meiryo, sans-serif;
	--font-serif: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	--font-en: "Roboto", Meiryo, sans-serif;
	/* line height */
	--line-height-s: 1.5;
	--line-height-m: 1.8;
	--line-height-l: 2;
	--inview-blur: filter .8s ease, opacity .8s ease-in;
	--inview-trans: filter .8s ease, opacity .8s ease-in, transform .8s ease-in;
}

/*----------
	base
----------*/
html {
	width: 100%;
	font-size: 62.5%;
	background-color: #fff;
}
html.is-locked {
	position: absolute;
	overflow: hidden;
}

body {
	font-size: 1.6rem;
	line-height: var(--line-height-l);
	font-family: var(--font-sans);
	letter-spacing: 0;
	color: var(--color-txt);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}
@media (max-width: 767px) {
	body {
		font-size: 1.4rem;
	}
}
@media print {
	body {
		min-width: 1240px;
		zoom: 0.8;
	}
}

a {
	text-decoration: none;
	color: var(--color-txt-prim);
}
@media (min-width: 768px), print {
	a:hover {
		text-decoration: none;
	}
}

img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

sup {
	vertical-align: top;
	font-size: 0.7em;
}

sub {
	vertical-align: baseline;
	font-size: 0.7em;
}

input[type=text],
textarea,
select {
	font-family: inherit;
	font-size: 1.6rem;
}

/*----------
	main header
----------*/
@media print {
	header {
		display: none;
	}
}

.l-mainheader {
	position: relative;
}
.l-mainheader__inner {
	padding: 20px 20px 0;
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--color-txt);
}
.l-mainheader__inner > img {
	width: 150px;
}
.l-mainheader__inner > span {
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.45;
	letter-spacing: 0.08em;
}
@media (min-width: 768px), print {
	.l-mainheader__inner {
		padding: 30px 40px 0;
		display: flex;
		gap: 20px;
	}
	.l-mainheader__inner > img {
		width: 430px;
	}
	.l-mainheader__inner > span {
		font-weight: 700;
		font-size: 3.1rem;
	}
}

/*----------
	main navigation
----------*/
.l-mainnav {
	position: fixed;
	z-index: 10;
	left: 40px;
	top: 0;
	bottom: 0;
	margin: auto;
	height: fit-content;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s ease-in;
}
.l-mainnav.is-visible {
	transition-delay: 1.8s;
	/* 2秒後に表示 ラグ加味して1.8s */
	pointer-events: all;
	opacity: 0;
}
html:not(.lenis-scrolling) .l-mainnav.is-visible {
	animation: pointer_ev 0s ease-in 2.2s forwards;
}

html.lenis-scrolling .l-mainnav.is-visible {
	/* スクロール中に表示 */
	opacity: 1;
	transition-delay: 0s;
	pointer-events: all;
}

.l-mainnav__list {
	display: flex;
	flex-direction: column;
	border-radius: 4px;
	overflow: hidden;
	max-width: 160px;
}
.l-mainnav__inner {
	color: #fff;
	line-height: 1.42;
	padding: 20px 12px;
	display: block;
	text-align: center;
	font-size: 1.4rem;
	background: var(--color-prim);
	transition: all 0.2s ease-out;
}
.l-mainnav__inner:hover, .l-mainnav__inner.is-active {
	background: #fff;
	color: var(--color-prim);
}
@media (max-width: 767px) {
	.l-mainnav {
		display: none;
	}
}
@media (min-width: 768px) and (max-width: 1241px) {
	.l-mainnav {
		margin: unset;
		top: auto;
		bottom: 20%;
		left: 20px;
	}
}

/*----------
	main footer
----------*/
@media print {
	footer {
		display: none;
	}
}

.l-mainfooter {
	background: #fff;
	color: var(--color-txt-caption);
	padding-bottom: 50px;
}
.l-mainfooter__inner {
	width: 100%;
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 5.3333333333%;
	padding-right: 5.3333333333%;
	max-width: 1000px;
	padding-bottom: 40px;
}
@media (min-width: 768px), print {
	.l-mainfooter__inner {
		padding-left: 20px;
		padding-right: 20px;
	}
}
.l-mainfooter__backhead {
	position: fixed;
	bottom: 20px;
	right: 20px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
	width: 50px;
	height: 50px;
	z-index: 95;
}
.l-mainfooter__backhead.is-visible {
	opacity: 1;
	pointer-events: auto;
}
.l-mainfooter__backhead > a {
	background: var(--color-prim);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: grid;
	place-content: center;
}
.l-mainfooter__backhead > a::before {
	content: "";
	background: url(../images/icon-arrow.svg) no-repeat right 2px center/contain;
	width: 17px;
	height: 17px;
	display: block;
	transform: rotate(-90deg);
}
.l-mainfooter__logo {
	padding: 175px 20px 103px;
}
.l-mainfooter__logo > figure {
	display: block;
	max-width: 150px;
	margin: auto;
	position: relative;
	transition: all 1.4s 1s ease-out;
	transform: translateY(0);
	opacity: 0;
	filter: blur(10px);
}
.l-mainfooter__logo > figure.is-inview-show {
	transform: scale(1.2);
	opacity: 1;
}
.l-mainfooter__menu {
	display: flex;
	flex-wrap: wrap;
	gap: 23px 0;
	justify-content: center;
}
.l-mainfooter__menu > li {
	border-right: 1px solid var(--color-txt-caption);
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 1;
}
.l-mainfooter__menu > li:first-child {
	border-left: 1px solid var(--color-txt-caption);
}
.l-mainfooter__menu > li a {
	padding: 0 16px;
}
.l-mainfooter__copy {
	margin-top: 50px;
	text-align: center;
	font-size: 1.2rem;
	color: var(--color-txt-caption);
}
@media (min-width: 768px), print {
	.l-mainfooter__inner {
		padding-bottom: 55px;
	}
	.l-mainfooter__backhead {
		bottom: 32px;
	}
	.l-mainfooter__logo {
		padding: 420px 20px 400px;
	}
	.l-mainfooter__logo > figure {
		max-width: 380px;
	}
	.l-mainfooter__logo > figure.is-inview-show {
		transform: scale(1.35);
	}
	.l-mainfooter__menu > li {
		font-size: 1.4rem;
	}
	.l-mainfooter__menu > li a {
		transition: opacity 0.2s;
		padding: 0 22px;
	}
	.l-mainfooter__menu > li a:hover {
		opacity: 0.7;
	}
	.l-mainfooter__copy {
		margin-top: 40px;
		font-size: 1.4rem;
	}
}

/*----------
	main content
----------*/
.l-content {
	width: 100%;
	position: relative;
	overflow-x: clip;
}

.l-wrap {
	width: 100%;
	max-width: 1240px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 5.3333333333%;
	padding-right: 5.3333333333%;
}
@media (min-width: 768px), print {
	.l-wrap {
		padding-left: 20px;
		padding-right: 20px;
	}
}
.l-wrap--gapless {
	padding-left: 0;
	padding-right: 0;
}
@media (max-width: 767px) {
	.l-wrap--gaplessSp {
		padding-left: 0;
		padding-right: 0;
	}
}
.l-wrap--l {
	max-width: 1480px;
}
.l-wrap--xl {
	max-width: 1720px;
}

.l-section {
	backdrop-filter: blur(8px);
	padding-bottom: 130px;
}
@media (min-width: 768px), print {
	.l-section {
		padding-bottom: 360px;
	}
}

/* ==============================
 common style
================================*/
.c-heading {
	padding-top: 100px;
	background: #fff;
	position: relative;
	padding-bottom: 100px;
}
.c-heading--shadow {
	padding-bottom: 0;
	margin-bottom: 100px;
}
.c-heading--shadow::after {
	content: "";
	width: 100vw;
	height: 300px;
	background: linear-gradient(0deg, transparent, #fff);
	position: absolute;
	top: 100%;
	left: 0;
}
.c-heading__inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.c-heading__main--sub {
	font-family: var(--font-en);
	font-weight: 500;
	line-height: 1.1;
	color: var(--color-prim);
	display: flex;
}
.c-heading__main--sub > span:first-child {
	padding-right: 10px;
	border-right: 1px solid var(--color-border);
}
.c-heading__main--sub > span:last-child {
	padding-left: 10px;
}
.c-heading__main--title {
	font-size: 3.2rem;
	font-weight: 500;
	line-height: var(--line-height-s);
	display: block;
	letter-spacing: 0.08em;
}
.c-heading__main h2 + p {
	margin-top: 40px;
}
.c-heading__lead {
	margin-top: 40px;
	margin-bottom: 20px;
	font-size: 2rem;
	line-height: var(--line-height-s);
}
.c-heading__image {
	width: calc(100% - 20px);
	overflow: hidden;
	border-radius: 10px;
	box-shadow: var(--color-bg) 20px 20px 0;
	margin-bottom: 20px;
	aspect-ratio: 810/620;
	height: 100%;
}
.c-heading__image--shadowRv {
	box-shadow: var(--color-bg) -20px 20px 0;
	margin-left: auto;
	margin-right: 0;
}
@media (min-width: 768px), print {
	.c-heading {
		padding-top: 200px;
		padding-bottom: 240px;
	}
	.c-heading--shadow {
		margin-bottom: 100px;
		padding-bottom: 140px;
	}
	.c-heading__inner {
		flex-direction: row;
		gap: min(100px, 5vw);
		align-items: center;
	}
	.c-heading__inner--reverse {
		flex-direction: row-reverse;
	}
	.c-heading__main {
		width: 50%;
	}
	.c-heading__main--sub {
		font-size: 2rem;
	}
	.c-heading__main--title {
		font-size: 5.4rem;
	}
	.c-heading__main h2 + p {
		margin-top: 55px;
	}
	.c-heading__txt {
		font-size: 1.8rem;
	}
	.c-heading__lead {
		margin-top: 50px;
		margin-bottom: 40px;
		font-size: 2.8rem;
		font-weight: 500;
	}
	.c-heading__image {
		flex: 1;
		margin-right: max(-16vw, -310px);
		max-width: 810px;
		width: 42.1875vw;
		margin-bottom: 50px;
		box-shadow: var(--color-bg) 50px 50px 0;
	}
	.c-heading__image--shadowRv {
		box-shadow: var(--color-bg) -50px 50px 0;
	}
	.c-heading__inner--reverse .c-heading__image {
		margin-right: 0;
		margin-left: max(-16vw, -310px);
	}
}
@media (min-width: 768px) and (max-width: 1450px) {
	.c-heading__image {
		margin-right: -8vw;
		max-width: 650px;
	}
	.c-heading__inner--reverse .c-heading__image {
		margin-left: -8vw;
	}
	.c-heading__main {
		width: 40%;
	}
}

.c-button {
	max-width: 500px;
	margin: 80px auto 0;
}
.c-button--left {
	margin-left: 0;
}
.c-button > a {
	display: block;
	background: var(--color-prim);
	color: #fff;
	font-size: 2rem;
	min-height: 60px;
	padding: 15px;
	border-radius: 50px;
	display: grid;
	place-content: center;
	position: relative;
	line-height: var(--line-height-s);
}
.c-button > a::after {
	content: "";
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2) url(../images/icon-arrow.svg) no-repeat top 12px right 14px/8.3px 17px;
	position: absolute;
	right: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
}
@media (min-width: 768px), print {
	.c-button {
		margin-top: 120px;
	}
	.c-button > a {
		min-height: 70px;
		transition: all 0.3s ease-out;
	}
	.c-button > a::after {
		width: 50px;
		height: 50px;
		background-position: top 15px right 19px;
		background-size: 10px 20px;
		transition: all 0.3s ease-out;
	}
	.c-button > a:hover {
		background-color: var(--color-txt);
	}
	.c-button > a:hover::after {
		right: 0;
		background-color: transparent;
	}
}

.c-button-bottom {
	margin-top: 30px;
	text-align: center;
}
@media (min-width: 768px), print {
	.c-button-bottom {
		margin-top: 40px;
	}
}

.c-title-md {
	margin-bottom: 60px;
}
.c-title-md h3 {
	font-size: 2.6rem;
	font-weight: 500;
	line-height: var(--line-height-s);
}
.c-title-md__sub {
	color: var(--color-prim);
	font-weight: 500;
	line-height: var(--line-height-s);
	margin-top: 8px;
}
@media (min-width: 768px), print {
	.c-title-md {
		margin-bottom: 100px;
	}
	.c-title-md h3 {
		font-size: 4.2rem;
	}
	.c-title-md__sub {
		margin-top: 6px;
		font-size: 2rem;
	}
}

.c-title-sm {
	font-size: 2rem;
	font-weight: 500;
	margin-bottom: 30px;
}
@media (min-width: 768px), print {
	.c-title-sm {
		font-size: 3.2rem;
		margin-bottom: 0;
	}
}

.c-modal {
	display: grid;
	place-content: center;
	position: fixed;
	background: rgba(6, 20, 72, 0.8);
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 99;
	display: none;
}
.c-modal img {
	border-radius: 10px;
}
.c-modal__cnt {
	background: #fff;
	border-radius: 10px;
	max-width: 1440px;
	width: calc(100% - 40px);
	margin: auto;
	height: fit-content;
	max-height: 85vh;
	position: relative;
	animation: fadeIn 0.5s 0.5s forwards;
	opacity: 0;
}
.c-modal__cnt--sm {
	max-width: 1000px;
}
.c-modal__inner {
	height: 100%;
	max-height: 85vh;
	overflow-y: scroll;
	padding: 30px 20px;
	margin-bottom: 4px;
}
.c-modal__inner::-webkit-scrollbar {
	width: 3px;
	height: 3px;
}
.c-modal__inner::-webkit-scrollbar-track {
	background: transparent;
}
.c-modal__inner::-webkit-scrollbar-thumb {
	background: var(--color-border);
	border-radius: 3px;
}
.c-modal__col {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.c-modal__col figure {
	border-radius: 10px;
	border: 1px solid var(--color-border);
	max-width: 400px;
	margin: auto;
	overflow: hidden;
}
.c-modal__img1t1 {
	aspect-ratio: 5/4;
}
.c-modal__img1t1 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.c-modal__img {
	margin-top: 20px;
}
.c-modal__img figcaption {
	margin-top: 10px;
}
.c-modal__main {
	max-width: 1200px;
	margin: auto;
}
.c-modal__close {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--color-prim);
	display: block;
	position: absolute;
	top: -25px;
	right: -15px;
	display: grid;
	place-content: center;
}
.c-modal__close::before {
	content: "";
	width: 15px;
	height: 15px;
	background: url(../images/icon-close.svg) no-repeat center/contain;
}
.c-modal__lead {
	font-size: 1.8rem;
	line-height: var(--line-height-s);
	font-weight: 500;
	margin-bottom: 20px;
}
.c-modal__bgbox {
	background: var(--color-bg);
	padding: 20px;
}
* + .c-modal__bgbox {
	margin-top: 20px;
}
.c-modal__bgboxTtl {
	font-size: 2.4rem;
	margin-bottom: 20px;
	text-align: center;
	font-weight: 500;
	line-height: var(--line-height-s);
}
* + .c-modal__bgboxTtl {
	margin-top: 30px;
}
.c-modal__bgboxSubttl {
	font-size: 1.8rem;
	margin-bottom: 15px;
	font-weight: 500;
	line-height: 1.4;
}
.c-modal__bgboxSubttl--toilet::after {
	content: "";
	width: 25px;
	height: 28px;
	background: url(../images/icon-toilet.png) no-repeat center/contain;
	display: inline-block;
	vertical-align: -8px;
}
.c-modal__bgboxSec + .c-modal__bgboxSec {
	margin-top: 30px;
}
.c-modal p:not([class]) + p:not([class]) {
	margin-top: 15px;
}
.c-modal .c-title-md {
	margin-bottom: 20px;
}
.c-modal .c-title-md__sub {
	margin-top: 0;
}
.c-modal .c-title-sm {
	margin-bottom: 10px;
	line-height: 1.3;
}
.c-modal .c-button {
	margin-top: 30px;
}
@media (max-width: 767px) {
	.c-modal__inner--img {
		overflow-x: scroll;
		padding-right: 20px;
		margin-bottom: 1px;
	}
	.c-modal__inner--img figure {
		padding-right: 20px;
		margin-right: 20px;
	}
	.c-modal__inner--img figure img {
		width: 670px;
		margin-right: 20px;
	}
}
@media (min-width: 768px), print {
	.c-modal__cnt {
		width: calc(100% - 90px);
		height: fit-content;
	}
	.c-modal__inner {
		padding: 60px 50px;
		max-height: 85vh;
		margin-right: 4px;
	}
	.c-modal__inner::-webkit-scrollbar {
		width: 4px;
		height: 4px;
	}
	.c-modal__inner--img figure img {
		min-width: 1000px;
		margin-right: 40px;
	}
	.c-modal__col {
		flex-direction: row-reverse;
	}
	.c-modal__col--start {
		align-items: flex-start;
	}
	.c-modal__col--start figure {
		margin-top: 0;
	}
	.c-modal__col figure {
		width: 33.3333333333vw;
	}
	.c-modal__col > div {
		display: flex;
		flex-direction: column;
		flex: 1;
	}
	.c-modal__img1t1 {
		aspect-ratio: auto;
	}
	.c-modal__img {
		margin-top: 50px;
	}
	.c-modal__img--sm {
		max-width: 1000px;
		margin-right: auto;
		margin-left: auto;
	}
	.c-modal__img figcaption {
		margin-top: 15px;
	}
	.c-modal__close {
		cursor: pointer;
		transition: all 0.3s ease-out;
		width: 80px;
		height: 80px;
		top: -40px;
		right: -40px;
	}
	.c-modal__close::before {
		width: 25px;
		height: 25px;
	}
	.c-modal__close:hover {
		background-color: var(--color-txt);
	}
	.c-modal__lead {
		font-size: 2rem;
		margin-bottom: 30px;
	}
	.c-modal__bgbox {
		padding: 40px 30px;
	}
	* + .c-modal__bgbox {
		margin-top: 44px;
	}
	.c-modal__bgboxTtl {
		font-size: 2.6rem;
		margin-bottom: 30px;
	}
	* + .c-modal__bgboxTtl {
		margin-top: 50px;
	}
	.c-modal__bgboxSubttl {
		font-size: 2rem;
	}
	.c-modal__bgboxSubttl--toilet::after {
		width: 40.5px;
		height: 45px;
		vertical-align: -13px;
		margin-left: 3px;
	}
	.c-modal__bgboxSec + .c-modal__bgboxSec {
		margin-top: 50px;
	}
	.c-modal .c-title-md {
		margin-bottom: 50px;
	}
	.c-modal .c-title-sm {
		margin-bottom: 30px;
	}
	.c-modal .c-button {
		margin-top: auto;
		padding-top: 50px;
		width: 100%;
	}
}

.js-inview {
	opacity: 0;
	filter: blur(5px);
	transform: translateY(15px);
	transition: var(--inview-trans);
}
.js-inview.is-inview-show {
	opacity: 1;
	filter: blur(0);
	transform: translateY(0);
}
@media (max-width: 767px) {
	.u-pcbr {
		display: none;
	}
}

@media (min-width: 768px), print {
	.u-spbr {
		display: none;
	}
}

/* ==============================
 uniqe style
================================*/
.un-load {
	width: 100vw;
	height: 100vh;
	background: #fff;
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	opacity: 1;
	pointer-events: none;
}
body.is-load .un-load {
	animation: fadeOut 0.5s linear forwards;
}

.un-bg {
	height: 100vh;
	width: 100vw;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
}
.un-bg video {
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	mix-blend-mode: color-burn;
}

.un-mv {
	margin-top: 35px;
	padding-bottom: 350px;
}
.un-mv__slider {
	display: flex;
}
.un-mv__list {
	display: flex;
	width: 4900px;
	padding-right: 50px;
	padding-left: 50px;
	align-items: center;
	gap: 94px;
	animation: scroll-left 50s infinite linear both;
}
.un-mv__item img {
	border-radius: 10px;
	filter: blur(10px);
	opacity: 0;
	transition: filter 1s ease, opacity 0.8s 0.2s ease;
}
.un-mv__item.i01 {
	width: 475px;
	height: 550px;
	display: flex;
	flex-direction: column-reverse;
	gap: 94px 0;
}
.un-mv__item.i01 .i01-1 {
	width: 397px;
}
.un-mv__item.i01 .i01-2 {
	width: 285px;
	margin-left: auto;
}
.un-mv__item.i02 {
	width: 597px;
}
.un-mv__item.i03 {
	width: 397px;
}
.un-mv__item.i04 {
	width: 597px;
}
.un-mv__item.i05 {
	width: 597px;
}
.un-mv__item.o01 .o01-1 img {
	transition-delay: 0.4s;
}
.un-mv__item.o01 .o01-2 img {
	transition-delay: 0.7s;
}
.un-mv__item.o02 img {
	transition-delay: 1s;
}
.un-mv__item.o03 img {
	transition-delay: 1.3s;
}
.un-mv__item.o04 img {
	transition-delay: 1.6s;
}
.un-mv__item.o05 img {
	transition-delay: 1.9s;
}
.un-mv__item.o06 img {
	transition-delay: 2.2s;
}
@media (max-width: 767px) {
	.un-mv {
		padding-bottom: 77px;
	}
	.un-mv__list {
		gap: 48px;
		width: 2489px;
		padding-right: 25px;
		padding-left: 25px;
	}
	.un-mv__item.i01 {
		gap: 48px 0;
		width: 242px;
		height: 280px;
		flex-shrink: 0;
	}
	.un-mv__item.i01 .i01-1 {
		width: 202px;
	}
	.un-mv__item.i01 .i01-2 {
		width: 145px;
	}
}

.un-mv-catch {
	text-align: center;
	font-weight: 500;
	font-feature-settings: "palt";
	margin-top: 80px;
}
.un-mv-catch__text {
	color: var(--color-prim);
	font-size: 2.4rem;
	letter-spacing: 0.13em;
}
.un-mv-catch__main {
	color: var(--color-txt);
	font-size: 4.4rem;
	line-height: 1.36;
	letter-spacing: 0.12em;
	margin-top: 20px;
}
.un-mv-catch__text, .un-mv-catch__main {
	opacity: 0;
	filter: blur(5px);
	transition: filter 1.6s ease, opacity 1.5s ease-in;
}
@media (max-width: 767px) {
	.un-mv-catch {
		margin-top: 39px;
	}
	.un-mv-catch__text {
		font-size: 1.2rem;
		letter-spacing: 0.02em;
	}
	.un-mv-catch__main {
		font-size: 2.2rem;
	}
}

body.is-load .un-mv__item img {
	filter: blur(0);
	opacity: 1;
}
body.is-load .un-mv-catch__text, body.is-load .un-mv-catch__main {
	opacity: 1;
	filter: blur(0);
}
body.is-load .un-mv-catch__text {
	transition-delay: 1.8s;
}
body.is-load .un-mv-catch__main {
	transition-delay: 2.7s;
}

/* =========== about =========== */
.un-about::before {
	content: "";
	background: url(../images/bg_wave.svg) no-repeat center/cover;
	width: 100%;
	height: 100%;
	margin-bottom: -1px;
	aspect-ratio: 1920/160;
	display: block;
}
.un-about .c-heading {
	margin-bottom: 90px;
}
@media (min-width: 768px), print {
	.un-about .c-heading {
		margin-bottom: 50px;
	}
}

.un-about-num {
	width: fit-content;
	margin: 0 auto;
}
.un-about-num > li {
	display: flex;
	gap: 20px;
	align-items: center;
}
.un-about-num > li + li {
	margin-top: 30px;
}
.un-about-num > li:nth-child(odd) {
	margin-left: max(40px, 10.6vw);
}
.un-about-num > li:nth-child(odd) .un-about-num__bubble {
	animation-delay: 0.7s;
}
.un-about-num__bubble {
	width: 120px;
	flex-shrink: 0;
	animation: floating 1.5s ease-in-out infinite alternate-reverse;
}
.un-about-num__label {
	font-size: 1.8rem;
	font-weight: 700;
	opacity: 0;
	transform: translateY(15px);
}
.is-inview-show > * > .un-about-num__label {
	opacity: 1;
	transition: all 0.8s 0.6s ease;
	transform: translateY(0);
}

.un-about-num__num {
	color: var(--color-prim);
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1.18;
	opacity: 0;
	transform: translateY(15px);
}
.un-about-num__num strong {
	font-size: 5rem;
	font-family: var(--font-en);
	margin-right: 5px;
}
.is-inview-show > * > .un-about-num__num {
	opacity: 1;
	transition: all 0.8s 1s ease;
	transform: translateY(0);
}

@media (min-width: 768px), print {
	.un-about-num {
		margin-left: min(7.8125vw, 100px);
	}
	.un-about-num > li {
		gap: min(60px, 4.6875vw);
	}
	.un-about-num > li + li {
		margin-top: 30px;
	}
	.un-about-num > li:nth-child(odd) {
		margin-left: 0;
	}
	.un-about-num > li:nth-child(even) {
		margin-left: min(22.65625vw, 290px);
	}
	.un-about-num__bubble {
		width: min(320px, 25vw);
	}
	.un-about-num__label {
		font-size: 2.8rem;
	}
	.un-about-num__num {
		font-size: 3.8rem;
		word-break: break-all;
	}
	.un-about-num__num strong {
		font-size: 12rem;
		font-size: min(9.375vw, 12rem);
		letter-spacing: 0;
		line-height: 1;
	}
}

.un-about-graph {
	margin-top: 50px;
}
.un-about-graph__title {
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
}
.un-about-graph__image {
	margin-top: 20px;
}
.un-about-graph__image img {
	border-radius: 10px;
}
@media (min-width: 768px), print {
	.un-about-graph {
		margin-top: 80px;
	}
	.un-about-graph__title {
		font-size: 2.8rem;
	}
	.un-about-graph__image {
		margin-top: 50px;
	}
}

/* =========== business =========== */
.un-business {
	backdrop-filter: none;
}
.un-business::before {
	content: "";
	background: url(../images/bg_wave.svg) no-repeat center/cover;
	width: 100%;
	height: 100%;
	margin-bottom: -1px;
	aspect-ratio: 1920/160;
	display: block;
}
.un-business::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(5px);
	left: 0;
	top: 0;
	z-index: -1;
}
.un-business::before {
	transform: scale(-1, 1);
}
.un-business .c-modal img {
	border-radius: 0;
}

.un-business-area {
	z-index: 1;
	position: relative;
	color: #fff;
	background: var(--color-txt);
	padding-top: 60px;
	padding-bottom: 70px;
}
.un-business-area::before {
	content: "";
	background: url(../images/bg_wave-navy_sp.svg) no-repeat center/cover;
	width: 100%;
	height: auto;
	margin-bottom: -1px;
	aspect-ratio: 375/30;
	display: block;
	position: absolute;
	bottom: 100%;
	left: 0;
}
.un-business-area__text {
	text-align: center;
}
@media (min-width: 768px), print {
	.un-business-area {
		padding-top: 140px;
		padding-bottom: 186px;
	}
	.un-business-area::before {
		background-image: url(../images/bg_wave-navy.svg);
		aspect-ratio: 1920/100;
	}
	.un-business-area__text {
		font-size: 2.4rem;
	}
}

.un-business-map {
	margin-top: 40px;
}
.un-business-map__inner {
	position: relative;
	opacity: 1;
	filter: blur(0);
	transform: none;
}
.un-business-map__inner.is-inview-show .un-business-map__hilight,
.un-business-map__inner.is-inview-show .un-business-map__text {
	opacity: 1;
}
.un-business-map__hilight, .un-business-map__text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	transition: opacity 0.8s 1s linear;
}
.un-business-map__text {
	transition-delay: 2s;
}
.un-business-map__scroll {
	font-size: 1.2rem;
	margin-top: 8px;
}
.un-business-map__scroll::before {
	content: url(../images/icon-swipe.png);
	margin-right: 8px;
	vertical-align: middle;
}
@media (max-width: 767px) {
	.un-business-map {
		overflow-x: scroll;
		overflow-y: hidden;
		margin-left: -5.3333333333%;
		margin-right: -5.3333333333%;
	}
	.un-business-map::-webkit-scrollbar {
		height: 3px;
	}
	.un-business-map::-webkit-scrollbar-track {
		background-color: transparent;
	}
	.un-business-map::-webkit-scrollbar-thumb {
		background: rgba(255, 255, 255, 0.5);
		border-radius: 3px;
	}
	.un-business-map__inner {
		width: 1000px;
		margin: 0 5.3333333333%;
	}
}
@media (min-width: 768px), print {
	.un-business-map {
		margin-top: 100px;
	}
	.un-business-map__scroll {
		display: none;
	}
}

.un-business-main {
	padding-top: 100px;
	position: relative;
	background-image: linear-gradient(#fff 0, transparent 300px);
}
.un-business-main::before {
	content: "";
	background: url(../images/bg_wave.svg) no-repeat center/cover;
	width: 100%;
	height: 100%;
	margin-bottom: -1px;
	aspect-ratio: 1920/160;
	display: block;
}
.un-business-main::before {
	bottom: 100%;
	position: absolute;
	z-index: 1;
	height: auto;
}
.un-business-main section + section {
	margin-top: 120px;
}
@media (min-width: 768px), print {
	.un-business-main {
		padding-top: 300px;
	}
	.un-business-main section + section {
		margin-top: 200px;
	}
}

.un-business-global .c-title-md {
	margin-bottom: 0;
}
.un-business-global__contents {
	padding-top: 60px;
}
.un-business-global__contents--02 {
	margin-top: 30px;
	padding-top: 50px;
}
@media (min-width: 768px), print {
	.un-business-global__contents {
		padding-top: 100px;
	}
	.un-business-global__contents--02 {
		margin-top: 60px;
		padding-top: 100px;
	}
}
@media (min-width: 768px) and (max-width: 1241px) {
	.is-touch .c-button {
		margin-top: 0;
	}
	.is-touch .un-business-global__contents {
		padding-top: 0;
		height: fit-content;
		height: 100vh;
	}
	.is-touch .un-business-global__inner {
		display: flex;
		flex-direction: column;
		justify-content: center;
		height: 100%;
		padding-bottom: 15%;
	}
}

.un-business-slider__inner {
	overflow: visible;
}
.un-business-slider__barSp {
	height: 3px;
	border-radius: 2px;
	width: 180px !important;
	left: auto !important;
	right: 0 !important;
	overflow: hidden;
}
.un-business-slider__barSp .swiper-pagination-progressbar-fill {
	background: #1E4DC6;
}
.un-business-slider__barPc {
	display: none;
}
.un-business-slider__list {
	display: flex;
	flex-wrap: nowrap;
	padding-top: 30px;
	width: fit-content;
}
.un-business-slider__list.is-inview-show .un-business-slider__item {
	opacity: 1;
	filter: blur(0);
}
.un-business-slider__item {
	width: min(66.6666666667vw, 420px);
	border-radius: 10px;
	overflow: hidden;
	flex-shrink: 0;
	position: relative;
	aspect-ratio: 250/310;
	height: 100%;
	opacity: 0;
	filter: blur(8px);
	transition: var(--inview-blur);
}
.un-business-slider__item:nth-child(1) {
	transition-delay: 0s;
}
.un-business-slider__item:nth-child(2) {
	transition-delay: 0.3s;
}
.un-business-slider__item:nth-child(3) {
	transition-delay: 0.6s;
}
.un-business-slider__item:nth-child(4) {
	transition-delay: 0.9s;
}
.un-business-slider__item:nth-child(5) {
	transition-delay: 1.2s;
}
.un-business-slider__fig {
	width: 100%;
}
.un-business-slider__fig::before {
	content: "";
	display: block;
	width: 100%;
	height: 100px;
	background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
	position: absolute;
	bottom: 0;
	left: 0;
}
.un-business-slider__fig figcaption {
	color: #fff;
	font-size: 1.8rem;
	font-weight: 500;
	line-height: var(--line-height-s);
	position: absolute;
	z-index: 1;
	padding: 20px;
	bottom: 0;
	width: 100%;
}
.un-business-slider__fig figcaption > span {
	font-size: 1.2rem;
}
.un-business-slider__fig img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (min-width: 768px), print {
	.un-business-slider {
		position: relative;
	}
	.un-business-slider__inner {
		padding: 0;
		position: static;
		transition: transform 0.2s ease-out;
	}
	.un-business-slider__barSp {
		display: none;
	}
	.un-business-slider__barSp > span {
		display: none;
	}
	.un-business-slider__barPc {
		display: block;
		height: 3px;
		width: min(400px, 30vw);
		background: var(--color-border);
		position: absolute;
		right: 20px;
		top: -30px;
		display: flex;
		overflow: hidden;
		border-radius: 2px;
	}
	.un-business-slider__barPc::before {
		content: "";
		background: #1E4DC6;
		height: 100%;
		width: 20%;
		display: block;
	}
	.un-business-slider__barPc > span {
		background: #1E4DC6;
		height: 100%;
		width: 0%;
		display: block;
		transition: width 0.2s ease-out;
	}
	.un-business-slider__list {
		padding-top: 100px;
	}
	.un-business-slider__item {
		width: 420px;
		margin-right: 60px;
	}
	.un-business-slider__item:last-child {
		margin-right: 0;
	}
	.un-business-slider__fig::before {
		height: 200px;
	}
	.un-business-slider__fig figcaption {
		font-size: 2.8rem;
		padding: 30px;
	}
	.un-business-slider__fig figcaption > span {
		font-size: 1.6rem;
	}
}
@media (min-width: 768px) and (max-width: 1241px) {
	.is-touch .un-business-slider__item {
		width: min(60vw, 610px);
	}
}

.un-business-pop__list {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.un-business-pop__list > li {
	position: relative;
	padding-bottom: 25px;
	opacity: 0;
	filter: blur(8px);
	transform: translateY(15px);
	transition: var(--inview-trans);
}
.un-business-pop__list.is-inview-show > li {
	opacity: 1;
	filter: blur(0);
	transform: translateY(0);
}
.un-business-pop__list.is-inview-show > li:nth-child(1) {
	transition-delay: 0s;
}
.un-business-pop__list.is-inview-show > li:nth-child(2) {
	transition-delay: 0.3s;
}
.un-business-pop__list.is-inview-show > li:nth-child(3) {
	transition-delay: 0.6s;
}
.un-business-pop__panel {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
}
.un-business-pop__panel figure {
	width: 100%;
	aspect-ratio: 5/4;
	height: 100%;
}
.un-business-pop__panel figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.un-business-pop__name {
	color: var(--color-txt);
	font-size: 1.8rem;
	font-weight: 500;
	padding: 10px 20px 20px;
	line-height: var(--line-height-s);
}
.un-business-pop__trigger, .un-panel__trigger, .un-growth-main__btn, .un-strength-main__more > span.icon {
	background: var(--color-prim);
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	position: absolute;
	bottom: 0;
	right: 20px;
	cursor: pointer;
}
.un-business-pop__trigger::before, .un-panel__trigger::before, .un-growth-main__btn::before, .un-strength-main__more > span.icon::before {
	content: "";
	width: 20px;
	height: 20px;
	display: block;
	background: url(../images/icon-search.svg) no-repeat center/contain;
}
@media (min-width: 768px), print {
	.un-business-pop__list {
		flex-direction: row;
		align-items: flex-start;
		gap: min(48px, 4vw);
	}
	.un-business-pop__list > li {
		padding-bottom: 20px;
		flex: 1;
	}
	.un-business-pop__list > li:nth-child(2) {
		margin-top: 100px;
	}
	.un-business-pop__list > li:nth-child(3) {
		margin-top: 200px;
	}
	.un-business-pop__panel {
		padding-top: 90px;
	}
	.un-business-pop__panel figure {
		aspect-ratio: 1/1;
		padding-top: 0;
		width: calc(100% - 30px);
		margin: auto;
	}
	.un-business-pop__name {
		font-size: 2.8rem;
		padding: 14px 30px 22px;
	}
	.un-business-pop__trigger, .un-panel__trigger, .un-growth-main__btn, .un-strength-main__more > span.icon {
		width: min(6.6666666667vw, 80px);
		height: min(6.6666666667vw, 80px);
		transition: all 0.3s ease-out;
	}
	.un-business-pop__trigger::before, .un-panel__trigger::before, .un-growth-main__btn::before, .un-strength-main__more > span.icon::before {
		width: min(2.6666666667vw, 32px);
		height: min(2.6666666667vw, 32px);
	}
	.un-business-pop__trigger:hover, .un-panel__trigger:hover, .un-growth-main__btn:hover, .un-strength-main__more > span.icon:hover {
		background-color: var(--color-txt);
	}
}

.un-history {
	backdrop-filter: none;
	padding-bottom: 0;
}
.un-history .c-heading::before {
	content: "";
	background: url(../images/bg_wave.svg) no-repeat center/cover;
	width: 100%;
	height: 100%;
	margin-bottom: -1px;
	aspect-ratio: 1920/160;
	display: block;
}
.un-history .c-heading::before {
	position: absolute;
	bottom: calc(100% - 1px);
	height: auto;
	transform: scale(-1, 1);
}

.un-history-main {
	z-index: 1;
	position: relative;
	background: var(--color-txt);
	padding: 80px 0 130px;
}
.un-history-main__wrap {
	position: relative;
}
.un-history-main__wrap::before {
	content: "";
	background: url(../images/bg_wave-navy_sp.svg) no-repeat center/cover;
	width: 100vw;
	height: auto;
	margin-bottom: -1px;
	aspect-ratio: 375/30;
	display: block;
	position: absolute;
	bottom: 100%;
	left: 0;
}
@media (min-width: 768px), print {
	.un-history-main {
		padding: 140px 0 337px;
		min-height: 100vh;
	}
	.un-history-main::after {
		content: "";
		width: 962px;
		height: 395px;
		display: block;
		background: url(../images/bg_history.png) no-repeat center/contain;
		position: absolute;
		bottom: 200px;
		right: 50%;
		z-index: -1;
	}
	.un-history-main__wrap {
		background: var(--color-txt);
		padding-top: 60px;
	}
	.un-history-main__wrap::before {
		background-image: url(../images/bg_wave-navy.svg);
		aspect-ratio: 1920/100;
	}
}
@media (min-width: 768px) and (max-width: 1241px) {
	.is-touch .un-history-main {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	.is-touch .un-history-main::after {
		right: auto;
		left: -30px;
	}
}

.un-history-slider {
	color: #fff;
}
.un-history-slider__list.is-inview-show .un-history-slider__item {
	opacity: 1;
	filter: blur(0);
	transform: translateY(0);
}
.un-history-slider__list.is-inview-show .un-history-slider__item:nth-child(1) {
	transition-delay: 0.2s;
}
.un-history-slider__list.is-inview-show .un-history-slider__item:nth-child(2) {
	transition-delay: 0.4s;
}
.un-history-slider__list.is-inview-show .un-history-slider__item:nth-child(3) {
	transition-delay: 0.6s;
}
.un-history-slider__list.is-inview-show .un-history-slider__item:nth-child(4) {
	transition-delay: 0.8s;
}
.un-history-slider__list.is-inview-show .un-history-slider__item:nth-child(5) {
	transition-delay: 1s;
}
.un-history-slider__bar {
	display: none;
}
.un-history-slider__item {
	display: flex;
	gap: 30px;
	opacity: 0;
	filter: blur(8px);
	transform: translateY(15px);
	transition: var(--inview-trans);
}
.un-history-slider__item > figure {
	width: 100px;
	height: 100px;
	border-radius: 10px;
	overflow: hidden;
	aspect-ratio: 1/1;
	flex-shrink: 0;
}
.un-history-slider__item > figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.un-history-slider__year {
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1;
}
.un-history-slider__year strong {
	font-family: var(--font-en);
	line-height: 1;
	font-size: 4.6rem;
	margin-right: 8px;
	letter-spacing: 0;
}
.un-history-slider__text {
	font-size: 1.4rem;
	line-height: var(--line-height-m);
	margin-top: 10px;
}
.un-history-slider__text strong {
	font-size: 1.8rem;
	font-weight: 700;
	display: block;
	margin-bottom: 5px;
	font-feature-settings: "palt";
}
@media (max-width: 767px) {
	.un-history-slider__list {
		display: block !important;
	}
	.un-history-slider__item + .un-history-slider__item {
		margin-top: 50px;
	}
}
@media (min-width: 768px), print {
	.un-history-slider {
		overflow: visible;
		padding-top: 100px;
		transition: transform 0.2s ease-out;
	}
	.un-history-slider__bar {
		display: block;
		height: 3px;
		width: min(400px, 33vw);
		background: var(--color-border);
		border-radius: 2px;
		margin-right: 0;
		margin-left: auto;
		display: flex;
		overflow: hidden;
	}
	.un-history-slider__bar::before {
		content: "";
		width: 20%;
		display: block;
		background: #1E4DC6;
		height: 100%;
	}
	.un-history-slider__bar > span {
		display: block;
		background: #1E4DC6;
		height: 100%;
		width: 0%;
		transition: width 0.2s ease-out;
	}
	.un-history-slider__list {
		display: flex;
		gap: 120px;
		width: fit-content;
	}
	.un-history-slider__item {
		flex-direction: row-reverse;
		gap: 40px;
		align-items: center;
		max-width: 840px;
	}
	.un-history-slider__item > figure {
		width: min(400px, 33.333333vw);
		height: 100%;
	}
	.un-history-slider__cnt {
		width: min(400px, 33.333333vw);
		min-width: 325px;
	}
	.un-history-slider__year {
		font-size: 3.8rem;
	}
	.un-history-slider__year strong {
		font-size: 12rem;
	}
	.un-history-slider__text {
		font-size: 2rem;
		margin-top: 34px;
		line-height: 1.6;
	}
	.un-history-slider__text strong {
		font-size: 3.6rem;
	}
}
@media (min-width: 768px) and (max-width: 1241px) {
	.un-history-slider__item {
		max-width: none;
	}
	.un-history-slider__item > figure {
		width: 40vw;
	}
	.un-history-slider__cnt {
		width: 390px;
	}
}

/* strength */
.un-strength {
	backdrop-filter: none;
	position: relative;
	padding-bottom: 0;
	margin-top: -1px;
}
.un-strength .c-heading::before {
	content: "";
	background: url(../images/bg_wave.svg) no-repeat center/cover;
	width: 100%;
	height: 100%;
	margin-bottom: -1px;
	aspect-ratio: 1920/160;
	display: block;
}
.un-strength .c-heading::before {
	position: absolute;
	bottom: calc(100% - 1px);
	height: auto;
	z-index: 1;
}

.un-strength-main {
	z-index: 1;
	background: var(--color-txt);
	color: #fff;
	padding: 130px 0;
	position: relative;
}
.un-strength-main::before {
	content: "";
	background: url(../images/bg_wave-navy_sp.svg) no-repeat center/cover;
	width: 100%;
	height: 9vw;
	margin-bottom: -1px;
	aspect-ratio: 375/30;
	display: block;
	position: absolute;
	bottom: 100%;
	left: 0;
}
.un-strength-main__trigger::before {
	content: "";
	width: 307px;
	height: 106px;
	display: block;
	background: url(../images/bg_strength_sp.png) no-repeat center/contain;
	position: absolute;
	bottom: 0;
	left: -2px;
	z-index: -1;
}
.un-strength-main__wrapper {
	overflow: visible !important;
	height: 100%;
}
.un-strength-main__inner {
	height: 100%;
	position: relative;
}
.un-strength-main__list {
	height: 100%;
	display: flex;
	align-items: center;
	width: fit-content;
}
.un-strength-main__item {
	top: 0;
	bottom: 0;
	width: min(100vw - 40px, 1200px);
	margin: auto;
	height: fit-content;
}
.un-strength-main__img {
	text-align: center;
}
.un-strength-main__img img {
	width: 205px;
	height: 205px;
	border-radius: 50%;
}
.un-strength-main__main {
	margin-top: 20px;
}
.un-strength-main__title {
	text-align: center;
	font-size: 2.4rem;
	font-weight: 500;
	line-height: var(--line-height-s);
	transition: opacity 0.4s ease-in;
	transition-delay: 0.8s;
}
li.is-active .un-strength-main__title {
	opacity: 1;
}

.un-strength-main__foot {
	margin-top: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.4s ease-in;
	transition-delay: 1.1s;
}
li.is-active .un-strength-main__foot {
	opacity: 1;
}

.un-strength-main__num {
	font-family: var(--font-en);
	font-size: 1.8rem;
	font-weight: 500;
}
.un-strength-main__more {
	position: relative;
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 1.6rem;
	font-weight: 500;
	color: #fff;
}
.un-strength-main__more > span.icon {
	position: static;
}
.un-strength-main__barSp {
	height: 3px;
	border-radius: 2px;
	width: 160px !important;
	left: auto !important;
	right: 0 !important;
	overflow: hidden;
	top: -60px !important;
	background: var(--color-border) !important;
}
.un-strength-main__barPc {
	display: none;
}
@media (min-width: 768px), print {
	.un-strength-main {
		padding: 200px 0;
	}
	.un-strength-main::before {
		background-image: url(../images/bg_wave-navy.svg);
		aspect-ratio: 1920/100;
		height: 5.3vw;
	}
	.un-strength-main__trigger {
		padding-top: 30px;
		padding-bottom: 50px;
		height: 100%;
		height: 100vh;
	}
	.un-strength-main__trigger::before {
		background-image: url(../images/bg_strength.png);
		width: 1150px;
		height: 395px;
		left: calc(50% - 190px);
		bottom: -95px;
	}
	.un-strength-main__item {
		display: flex;
		align-items: flex-end;
		width: min(100vw - 40px, 1200px);
		padding-right: 60px;
		z-index: 2;
		gap: min(100px, 8.3333333333vw);
	}
	.un-strength-main__img {
		flex: 1;
		text-align: right;
	}
	.un-strength-main__img img {
		width: min(41.6vw, 500px);
		height: min(41.6vw, 500px);
	}
	.un-strength-main__main {
		margin-top: 0;
		width: 100%;
		max-width: 600px;
	}
	.un-strength-main__title {
		text-align: left;
		font-size: 5.2rem;
	}
	.un-strength-main__foot {
		margin-top: 80px;
		padding-bottom: 12px;
		justify-content: flex-start;
	}
	.un-strength-main__num {
		font-size: 3.2rem;
	}
	.un-strength-main__more {
		font-size: 2rem;
		cursor: pointer;
	}
	.un-strength-main__more:hover > .icon {
		background: var(--color-txt);
	}
	.un-strength-main__barSp {
		display: none;
	}
	.un-strength-main__barPc {
		display: block;
		height: 3px;
		width: min(400px, 30vw);
		background: var(--color-border);
		position: absolute;
		right: 20px;
		top: 50px;
		display: flex;
		overflow: hidden;
		border-radius: 2px;
	}
	.un-strength-main__barPc::before {
		content: "";
		background: #1E4DC6;
		height: 100%;
		width: 20%;
		display: block;
	}
	.un-strength-main__barPc > span {
		background: #1E4DC6;
		height: 100%;
		width: 0%;
		display: block;
		transition: width 0.2s ease-out;
	}
}
@media (min-width: 768px) and (max-width: 1241px) {
	.un-strength-main__list::before {
		bottom: 0;
		left: 0;
	}
}

/* growth */
.un-growth {
	backdrop-filter: none;
	position: relative;
	margin-top: -1px;
	backdrop-filter: none;
}
.un-growth::before {
	content: "";
	background: url(../images/bg_wave.svg) no-repeat center/cover;
	width: 100%;
	height: 100%;
	margin-bottom: -1px;
	aspect-ratio: 1920/160;
	display: block;
}
.un-growth::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(5px);
	left: 0;
	top: 0;
	z-index: -1;
}
.un-growth > *:not(.un-growth > *::after) {
	position: relative;
	z-index: 1;
}
.un-growth::before {
	top: 0;
	z-index: 1;
	height: auto;
	background-color: #fff;
	background-image: url(../images/bg_wave-navy-top.svg);
	margin-bottom: 0;
}

.un-growth-main {
	margin-top: 100px;
}
.un-growth-main figure img {
	border-radius: 10px;
	transition: all 0.4s ease;
}
.un-growth-main figure::-webkit-scrollbar {
	height: 3px;
}
.un-growth-main figure::-webkit-scrollbar-track {
	background-color: transparent;
}
.un-growth-main figure::-webkit-scrollbar-thumb {
	background: var(--color-border);
	border-radius: 3px;
}
.un-growth-main__img {
	position: relative;
	width: fit-content;
}
.un-growth-main__btn {
	bottom: 10px;
	right: 10px;
}
@media (min-width: 768px), print {
	.un-growth-main {
		margin-top: 300px;
	}
	.un-growth-main__btn {
		bottom: 40px;
		right: 40px;
	}
}

/* CSR */
.un-csr {
	backdrop-filter: none;
	padding-bottom: 0;
}
.un-csr .c-heading::before {
	content: "";
	background: url(../images/bg_wave.svg) no-repeat center/cover;
	width: 100%;
	height: 100%;
	margin-bottom: -1px;
	aspect-ratio: 1920/160;
	display: block;
}
.un-csr .c-heading::before {
	position: absolute;
	bottom: calc(100% - 1px);
	height: auto;
}

.un-csr-main {
	z-index: 1;
	position: relative;
	background: var(--color-txt);
	padding-top: 80px;
	padding-bottom: 100px;
	color: #fff;
}
.un-csr-main::before {
	content: "";
	background: url(../images/bg_wave-navy_sp.svg) no-repeat center/cover;
	width: 100%;
	height: 9vw;
	margin-bottom: -1px;
	aspect-ratio: 375/30;
	display: block;
	position: absolute;
	bottom: 100%;
	left: 0;
}
@media (min-width: 768px), print {
	.un-csr-main {
		padding-top: 210px;
		padding-bottom: 200px;
	}
	.un-csr-main::before {
		background-image: url(../images/bg_wave-navy.svg);
		aspect-ratio: 1920/100;
		height: 5.3vw;
	}
}

.un-csr-imgset figure img {
	border-radius: 10px;
}
.un-csr-imgset figure figcaption {
	margin-top: 20px;
	font-size: 1.2rem;
	line-height: var(--line-height-s);
}
.un-csr-imgset .c-title-md {
	margin-bottom: 30px;
}
.un-csr-imgset .c-title-md h3 > span {
	font-size: 1.4rem;
}
.un-csr-imgset__item + .un-csr-imgset__item {
	margin-top: 80px;
}
.un-csr-imgset__main {
	margin-top: 40px;
}
.un-csr-imgset__text {
	margin-bottom: 20px;
}
.un-csr-imgset__note {
	text-indent: -2.5em;
	padding-left: 2.5em;
}
@media (min-width: 768px), print {
	.un-csr-imgset figure {
		position: relative;
	}
	.un-csr-imgset figure figcaption {
		margin-top: 0;
		font-size: 1.8rem;
		position: absolute;
		top: calc(100% + 40px);
	}
	.un-csr-imgset .c-title-md {
		margin-bottom: 50px;
	}
	.un-csr-imgset .c-title-md h3 > span {
		font-size: 2rem;
	}
	.un-csr-imgset__item {
		display: flex;
		gap: 100px;
		align-items: center;
	}
	.un-csr-imgset__item + .un-csr-imgset__item {
		margin-top: 200px;
	}
	.un-csr-imgset__item:nth-child(odd) {
		flex-direction: row-reverse;
	}
	.un-csr-imgset__main {
		width: 37.5%;
		flex-shrink: 0;
		margin-top: 0;
	}
	.un-csr-imgset__text {
		font-size: 1.8rem;
		margin-bottom: 40px;
	}
}

.un-csr-activity {
	margin-top: 80px;
}
.un-csr-activity__title {
	font-size: 2.6rem;
	font-weight: 500;
	line-height: var(--line-height-s);
	margin-bottom: 40px;
	text-align: center;
}
.un-csr-activity__inner {
	overflow: visible;
}
.un-csr-activity__inner.is-inview-show .un-csr-activity__imgs > li {
	opacity: 1;
	filter: blur(0);
	transform: translateY(0);
}
.un-csr-activity__inner.is-inview-show .un-csr-activity__imgs > li:nth-child(1) {
	transition-delay: 0s;
}
.un-csr-activity__inner.is-inview-show .un-csr-activity__imgs > li:nth-child(2) {
	transition-delay: 0.3s;
}
.un-csr-activity__inner.is-inview-show .un-csr-activity__imgs > li:nth-child(3) {
	transition-delay: 0.6s;
}
.un-csr-activity__inner.is-inview-show .un-csr-activity__imgs > li:nth-child(4) {
	transition-delay: 0.9s;
}
.un-csr-activity__imgs {
	display: flex;
}
.un-csr-activity__imgs > li {
	width: calc((100% - 60px) / 3);
	flex-shrink: 0;
	min-width: 194px;
	opacity: 0;
	filter: blur(8px);
	transform: translateY(15px);
	transition: var(--inview-trans);
}
.un-csr-activity__imgs > li figure {
	aspect-ratio: 194/120;
	height: 100%;
	width: 100%;
}
.un-csr-activity__imgs > li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}
@media (min-width: 768px), print {
	.un-csr-activity {
		margin-top: 200px;
	}
	.un-csr-activity__title {
		font-size: 4.2rem;
		margin-bottom: 50px;
	}
	.un-csr-activity__imgs > li {
		width: 640px;
	}
}

/* panel */
.un-panel {
	backdrop-filter: none;
	margin-top: -1px;
	position: relative;
	padding: 0;
	background-image: linear-gradient(to top, #fff 0, transparent 100px);
	backdrop-filter: none;
}
.un-panel::before {
	content: "";
	background: url(../images/bg_wave.svg) no-repeat center/cover;
	width: 100%;
	height: 100%;
	margin-bottom: -1px;
	aspect-ratio: 1920/160;
	display: block;
}
.un-panel::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(5px);
	left: 0;
	top: 0;
	z-index: -1;
}
.un-panel::before {
	background-image: url(../images/bg_wave-navy-top.svg);
}
.un-panel__inner {
	padding-top: 100px;
	padding-bottom: 200px;
}
.un-panel__list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.un-panel__list > li {
	position: relative;
	padding-bottom: 25px;
	opacity: 0;
	filter: blur(8px);
	transform: translateY(15px);
	transition: var(--inview-trans);
}
.un-panel__list.is-inview-show > li {
	opacity: 1;
	filter: blur(0);
	transform: translateY(0);
}
.un-panel__list.is-inview-show > li:nth-child(1) {
	transition-delay: 0s;
}
.un-panel__list.is-inview-show > li:nth-child(2) {
	transition-delay: 0.3s;
}
.un-panel__list.is-inview-show > li:nth-child(3) {
	transition-delay: 0.6s;
}
.un-panel__list.is-inview-show > li:nth-child(4) {
	transition-delay: 0.9s;
}
.un-panel__item {
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 20px;
}
.un-panel__icon {
	width: 100px;
	flex-shrink: 0;
}
.un-panel__title {
	font-weight: 500;
	font-size: 1.8rem;
	line-height: var(--line-height-s);
}
.un-panel__trigger::before {
	background-image: url(../images/icon-arrow.svg);
	width: 16px;
	height: 16px;
}
.un-panel__trigger:hover {
	background: var(--color-prim);
}
@media (min-width: 768px), print {
	.un-panel {
		background-image: linear-gradient(to top, #fff 0, transparent 300px);
	}
	.un-panel__inner {
		padding-top: 200px;
		padding-bottom: 500px;
	}
	.un-panel__list {
		flex-wrap: wrap;
		flex-direction: row;
		align-items: flex-start;
		gap: 48px 42px;
	}
	.un-panel__list > li {
		padding-bottom: 40px;
		width: calc((100% - 42px) / 2);
	}
	.un-panel__list > li:nth-child(even) {
		margin-top: 50px;
	}
	.un-panel__item {
		padding: min(3.3333333333vw, 40px);
		height: 100%;
	}
	.un-panel__item:hover .un-panel__trigger {
		background: var(--color-txt);
	}
	.un-panel__icon {
		width: min(200px, 16.666vw);
	}
	.un-panel__title {
		font-size: 3.2rem;
		line-height: 1.3;
	}
	.un-panel__trigger::before {
		width: min(2.1666666667vw, 25px);
		height: min(2.1666666667vw, 26px);
	}
}
/*# sourceMappingURL=style.css.map */
