@charset "UTF-8";
:root {
  /* JavaScriptで設定される --vh を利用するための初期値（モバイル以外） */
  --vh: 1vh;
  /* モバイルサイズ以外（デフォルト）のメインビジュアルの高さ計算 */
  --main-visual-height: calc(100vh - 6.25rem);
}

/* button */
.btn {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 20rem;
	height: 3.5rem;
	color: #fff;
	background-color: #0060ab;
	border: 0.0625rem solid #0060ab;
	border-radius: 1.75rem;
	font-size: clamp(1rem, 0.3125vw + 0.75rem, 1.125rem);
	font-family: 'BIZ UDPGothic', sans-serif;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.btn:hover {
	color: #0060ab;
	background-color: #fff;
	text-decoration: none;
}
.btn::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0.5rem;
	display: block;
	width: 2rem;
	height: 2rem;
	background-image: url(/common/img/icon_chevron_wht.svg);
	background-size: cover;
	background-position: center;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.btn:hover::after {
	content: '';
	background-image: url(/common/img/icon_chevron.svg);
}

.page-link__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: 2.5rem;
}
.page-link__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: auto;
	border-bottom: 0.0625rem solid #999999;
}
.page-link__btn {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 4.5rem;
	padding-right: 0.5rem;
	font-size: clamp(1.125rem, 0.2777777778vw + 0.9166666667rem, 1.25rem);
	font-family: 'BIZ UDPGothic', sans-serif;
	font-weight: 700;
	line-height: 1.5;
	color: #333;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.page-link__btn:hover {
	padding-right: 0;
	color: #0060ab;
	text-decoration: none;
}
.page-link__btn::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 0;
	height: 0.125rem;
	background-color: #0060ab;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.page-link__btn:hover::before {
	width: 100%;
}
.page-link__btn::after {
	content: '';
	display: inline-block;
	width: 2rem;
	height: 2rem;
	background-image: url(/common/img/icon_chevron.svg);
	background-size: cover;
	background-position: center;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.section-wrapper {
	width: 100%;
	max-width: 88.75rem;
	padding-inline: 1.25rem;
	margin-inline: auto;
}
@media (max-width: 1280px) {
	.section-wrapper {
		padding-inline: 2.5rem;
	}
}
@media (max-width: 767px) {
	.section-wrapper {
		padding-inline: 1.25rem;
	}
}

.section-title {
	font-size: clamp(2.25rem, 0.625vw + 1.75rem, 2.5rem);
	font-family: 'BIZ UDPGothic', sans-serif;
	font-weight: 700;
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
	letter-spacing: 0.15em;
	line-height: 1.5;
}

.main-text {
	margin-top: 1rem;
	font-size: var(--font-size-p, 1rem);
	font-family: 'BIZ UDPGothic', sans-serif;
	font-weight: 400;
	line-height: 1.75;
}

/* Main Visual */
.main-visual {
	position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
	width: 100%;
  height: var(--main-visual-height);
  overflow: clip;
}
@media (max-width:767px) {
  .main-visual {
    height: calc(100 * var(--vh) - 3.8125rem);
  }
}
.main-visual__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.main-visual-movie {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Story */
.story {
	position: relative;
	overflow: clip;
	width: 100%;
	height: auto;
	padding-top: 7.5rem;
	padding-bottom: 7.5rem;
	margin-inline: auto;
}
@media (max-width: 767px) {
	.story {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
}
.story__btn {
	margin-top: 5rem;
}
@media (max-width: 767px) {
	.story__btn {
		margin-top: 2.5rem;
	}
}
.story__btn .btn {
	margin-inline: auto;
}

/* Story-slider */
.slider-container {
	width: 100%;
	margin-top: 3.5rem;
}

.slick-slide {
	margin-inline: 1.25rem;
}
@media (max-width: 767px) {
	.slider-container {
		margin-top: 2.5rem;
	}
}

.top-slider .slider-item__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
	gap: 1.5rem;
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
	text-decoration: none;
	color: #333;
}

.slider-item__link {
	color: #333;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.slider-item__link .slider-item__img {
	border: 0.0625rem solid #999999;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.slider-item__link:hover {
	color: #0060ab;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.slider-item__link:hover .slider-item__img {
	-webkit-box-shadow: 0 0 0.625rem rgba(0, 96, 171, 0.25);
	box-shadow: 0 0 0.625rem rgba(0, 96, 171, 0.25);
}
.slider-item__link:hover .is-icon-re-alumi {
	background-image: url(/img/index/icon_re-alumi_hover.svg);
}
.slider-item__title {
	position: relative;
	padding-right: 1rem;
	margin: 0;
	font-size: 1rem;
	font-family: 'BIZ UDPGothic', sans-serif;
	font-weight: 400;
	line-height: 1.75;
}
.slider-item__title::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	display: inline-block;
	width: 1rem;
	height: 1rem;
	background-image: url(/common/img/icon_chevron.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.slider-item__title .is-icon-re-alumi {
	display: inline-block;
	width: 1em;
	height: 1em;
	padding-inline: 0.6em;
	background-image: url(/img/index/icon_re-alumi.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-transform: translateY(0.0625rem);
	transform: translateY(0.0625rem);
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.slider-item__img {
	width: 100%;
	height: auto;
	aspect-ratio: 450/253;
	-o-object-fit: cover;
	object-fit: cover;
	margin: 0;
	border-radius: 0.625rem;
}

.slick-prev,
.slick-next {
	position: absolute;
	top: 50%;
	z-index: 10;
	display: block;
	width: 4.5rem;
	height: 4.5rem;
	border: 0.125rem solid #0060ab;
	border-radius: 0.625rem;
	background-color: #fff;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	overflow: clip;
	cursor: pointer;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.slick-prev:focus,
.slick-next:focus {
	background: #fff;
}

.slick-prev::before,
.slick-next::before {
	content: '';
	position: relative;
	z-index: 50;
	display: inline-block;
	width: 1.5rem;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	opacity: 1;
}

.slick-prev::after,
.slick-next::after {
	content: '';
	position: absolute;
	top: -0.125rem;
	width: 4.5rem;
	height: 4.5rem;
	border: 0.125rem solid #0060ab;
	background-color: #0060ab;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.15s;
	transition: all 0.15s;
}

.slick-prev {
	left: 7%;
}
@media (max-width: 1440px) {
	.slick-prev {
		left: 9%;
	}
}
@media (max-width: 1024px) {
	.slick-prev {
		left: 2.5%;
		width: 3.125rem;
		height: 3.125rem;
	}
}
.slick-prev::before {
	background-image: url(/img/index/icon_arrow_prev.svg);
}
.slick-prev:hover::before {
	background-image: url(/img/index/icon_arrow_prev_white.svg);
}
.slick-prev::after {
	left: 100%;
}
.slick-prev:hover::after {
	left: 0;
}

.slick-next {
	right: 7%;
}
@media (max-width: 1440px) {
	.slick-next {
		right: 9%;
	}
}
@media (max-width: 1024px) {
	.slick-next {
		right: 2.5%;
		width: 3.125rem;
		height: 3.125rem;
	}
}
.slick-next::before {
	background-image: url(/img/index/icon_arrow_next.svg);
}
.slick-next:hover::before {
	background-image: url(/img/index/icon_arrow_next_white.svg);
}
.slick-next::after {
	right: 100%;
}
.slick-next:hover::after {
	right: 0;
}

/* 4枚の時削除 */
@media (max-width: 767px) {
	.top-slider_main{
		max-width: 100%;
		padding-inline: inherit;
	}
}

/* VISION */
.vision {
	width: 100%;
	height: 100%;
	padding-top: 7rem;
	padding-bottom: 8rem;
	background-image: url(/img/index/bg_vision.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
@media (max-width: 767px) {
	.vision {
		position: relative;
		padding-top: 5rem;
		padding-bottom: 6rem;
	}
}

.vision-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.vision-container__title {
	text-align: center;
	color: #0060ab;
}
@media (max-width: 767px) {
	.vision-container__title {
		font-size: 2rem;
	}
}
.vision-container__btn {
	margin-top: 5rem;
}

/* group-synergy */
:root {
	/* アニメーション用変数 */
	--progress: 0; /* 0 -> 1 */
	--direction: 1; /* 1 or -1 */
	--next-text-content: ''; /* テキストアニメーション用 */
	--text-progress: 0; /* 0 -> 1 */
}
@media (max-width: 767px) {
	:root {
		--text-area-width: 100%;
	}
}

.group-synergy {
	position: relative;
	overflow: clip;
	width: 100%;
	padding-top: 7.5rem;
	background-color: #fff;
}
@media (max-width: 767px) {
	.group-synergy {
		padding-top: 5rem;
	}
}
.group-synergy .btn {
	margin-top: 5rem;
	margin-inline: auto;
}
@media (max-width: 1280px) {
	.group-synergy .btn {
		margin-top: 2.5rem;
	}
}
@media (max-width: 767px) {
	.group-synergy .btn {
		margin-top: 0;
	}
}

.slider-content-wrapper {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto minmax(30.8125rem, auto) 1fr;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	gap: clamp(2.5rem, 14.4444444444vw - 8.3333333333rem, 9rem);
	width: 100%;
	padding: 0;
	margin-top: 4.5rem;
}
@media (max-width: 960px) {
	.slider-content-wrapper {
		grid-template-columns: 1fr 2fr 1fr;
		grid-template-rows: auto auto;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		gap: 3.125rem 2.5rem;
		margin: 3.125rem auto;
	}
}
@media (max-width: 767px) {
	.slider-content-wrapper {
		position: relative;
		grid-template-columns: unset;
		grid-template-rows: unset;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 0;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		width: 90%;
		height: auto;
		padding: 2.5rem 0;
		margin: 0 auto;
	}
	.slider-content-wrapper > * {
		grid-column: unset;
		grid-row: unset;
	}
	.slider-content-wrapper.image-slider-wrapper {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		display: block;
	}
}

.text-content-area {
	grid-column: 2/3;
	z-index: 10;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: clamp(28.125rem, 23.4375vw + 9.375rem, 37.5rem);
	height: 100%;
	padding: 0;
	pointer-events: auto;
	overflow: hidden;
}
@media (max-width: 960px) {
	.text-content-area {
		grid-column: 1/-1;
		grid-row: 2;
		width: 100%;
		max-width: 37.5rem;
		height: auto;
		margin: 0 auto;
		text-align: center;
	}
}
@media (max-width: 767px) {
	.text-content-area {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		width: var(--text-area-width);
		max-width: 100%;
		height: auto;
		padding: 0;
		margin: 1.875rem auto 0;
		text-align: center;
	}
}

.titles-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 1.5rem;
}
@media (max-width: 960px) {
	.titles-nav {
		display: none;
	}
}
.titles-nav li {
	color: #999999;
	font-size: 1rem;
	font-family: 'BIZ UDPGothic', sans-serif;
	font-weight: 700;
	line-height: 1;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	cursor: pointer;
}
.titles-nav .is-active {
	color: #0060ab;
	font-weight: 700;
}

.detail-info-box h2 {
	color: #0060ab;
	font-size: clamp(2.25rem, 0.625vw + 1.75rem, 2.5rem);
	font-family: 'BIZ UDPGothic', sans-serif;
	font-weight: 700;
	line-height: 1;
}

.slider-subtitle {
	font-size: clamp(1.125rem, 0.3125vw + 0.875rem, 1.25rem);
	line-height: 1.25;
}

.slider-description {
	margin-top: 2rem;
	font-size: 1rem;
	font-family: 'BIZ UDPGothic', sans-serif;
	font-weight: 400;
	line-height: 1.75;
	text-align: left;
}
@media (max-width: 767px) {
	.slider-description {
		margin-top: 1rem;
	}
}

.detail-button {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 1rem;
	margin-top: 1.25rem;
	color: #0060ab;
	font-size: 1rem;
	font-family: 'BIZ UDPGothic', sans-serif;
	font-weight: 700;
	text-decoration: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.detail-button:hover {
	text-decoration: none;
}
.detail-button::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 0;
	height: 0.0625rem;
	background-color: #0060ab;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.detail-button:hover::before {
	width: 100%;
}
.detail-button::after {
	content: '';
	display: inline-block;
	width: 1em;
	height: 1em;
	background-image: url(/common/img/icon_chevron.svg);
	background-size: cover;
	background-position: center;
}

.detail-slider-track {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	/* is-reversingクラスとCSS変数で双方向スライドを実現 */
	-webkit-transform: translateX(calc(var(--text-progress) * -100%));
	transform: translateX(calc(var(--text-progress) * -100%));
}
.detail-slider-track.is-reversing {
	-webkit-transform: translateX(calc(-100% + var(--text-progress) * 100%));
	transform: translateX(calc(-100% + var(--text-progress) * 100%));
}

.detail-content-slide {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-ms-flex-item-align: center;
	align-self: center;
	width: 100%;
}

/* --- 1, 3, 4. 画像表示エリア --- */
.image-display-area {
	position: relative;
	overflow: hidden;
	border-radius: 1.25rem;
}

#prev-image-container {
	grid-column: 1/2;
	grid-row: 1;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
@media (max-width: 960px) {
	#prev-image-container {
		grid-row: 1;
		grid-column: 1/2;
	}
}

#main-image-container {
	grid-column: 3/4;
	aspect-ratio: 1/1;
	width: 100%;
}
@media (max-width: 960px) {
	#main-image-container {
		grid-row: 1;
		grid-column: 2/3;
	}
}
@media (max-width: 767px) {
	#main-image-container {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		height: 18.75rem;
	}
}

#next-image-container {
	grid-column: 4/5;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
@media (max-width: 960px) {
	#next-image-container {
		grid-row: 1;
		grid-column: 3/4;
	}
}

/* --- 見切れ画像のサイズと位置調整 --- */
#prev-image-container img,
#prev-image-container::before {
	width: 200%; /* コンテナ幅の2倍 = メイン画像と同じ幅 */
	left: -100%; /* 画像の右半分が見えるように左にずらす */
}

#next-image-container img,
#next-image-container::before {
	width: 200%; /* コンテナ幅の2倍 = メイン画像と同じ幅 */
	left: 0; /* 画像の左半分が見えるようにする */
}

@media (max-width: 960px) {
	#prev-image-container,
	#next-image-container {
		display: block;
	}
}
@media (max-width: 767px) {
	#prev-image-container,
	#next-image-container {
		display: none; /* 見切れ画像は非表示に */
	}
}

#main-image-link .image-display-area{
	transition: all .5s;
}
#main-image-link:hover .image-display-area {
	opacity: 0.8;
}

.synergy-area-link:hover {
	text-decoration: none;
}

/* 全ての画像に共通のスタイル */
.image-display-area {
	/* アニメーション中に入れ替わるための次の画像を疑似要素で用意 */
}
.image-display-area img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	/* メインの画像は、progressに応じて移動する */
	-webkit-transform: translateX(calc(var(--progress) * -100% * var(--direction)));
	transform: translateX(calc(var(--progress) * -100% * var(--direction)));
}
.image-display-area::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: var(--next-src);
	background-size: cover;
	background-position: center;
	/*
   * 次の画像は、directionに応じて画面外の反対側から入ってくる
   * directionが1(次へ)なら右(100%)から、-1(前へ)なら左(-100%)から登場
   */
	-webkit-transform: translateX(calc(100% * var(--direction) - var(--progress) * 100% * var(--direction)));
	transform: translateX(calc(100% * var(--direction) - var(--progress) * 100% * var(--direction)));
}

/* --- カスタム矢印 --- */
.custom-arrow {
	position: absolute;
	top: 50%;
	z-index: 20;
	display: block;
	width: 4.5rem;
	height: 4.5rem;
	border: 0.125rem solid #0060ab;
	border-radius: 0.625rem;
	background-color: #fff;
	overflow: clip;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	cursor: pointer;
}
@media (max-width: 960px) {
	.custom-arrow {
		top: 71%;
		width: 3.5rem;
		height: 3.5rem;
	}
}
@media (max-width: 767px) {
	.custom-arrow {
		top: calc(3.125rem + 9.375rem);
	}
}
.custom-arrow.prev {
	left: clamp(3.125rem, 17.1875vw - 10.625rem, 10rem);
}
@media (max-width: 1280px) {
	.custom-arrow.prev {
		left: 1.875rem;
	}
}
@media (max-width: 960px) {
	.custom-arrow.prev {
		left: 2.5rem;
	}
}
@media (max-width: 767px) {
	.custom-arrow.prev {
		left: -0.625rem;
	}
}
.custom-arrow.prev::before {
	background-image: url(/img/index/icon_arrow_prev.svg);
}
.custom-arrow.prev:hover::before {
	background-image: url(/img/index/icon_arrow_prev_white.svg);
}
.custom-arrow.prev::after {
	left: 100%;
}
.custom-arrow.prev:hover::after {
	left: 0;
}
.custom-arrow.next {
	right: clamp(3.125rem, 17.1875vw - 10.625rem, 10rem);
}
@media (max-width: 1280px) {
	.custom-arrow.next {
		right: 1.875rem;
	}
}
@media (max-width: 960px) {
	.custom-arrow.next {
		right: 2.5rem;
	}
}
@media (max-width: 767px) {
	.custom-arrow.next {
		right: -0.625rem;
	}
}
.custom-arrow.next::before {
	background-image: url(/img/index/icon_arrow_next.svg);
}
.custom-arrow.next:hover::before {
	background-image: url(/img/index/icon_arrow_next_white.svg);
}
.custom-arrow.next::after {
	right: 100%;
}
.custom-arrow.next:hover::after {
	right: 0;
}
.custom-arrow.prev::before,
.custom-arrow.next::before {
	content: '';
	position: relative;
	left: 50%;
	z-index: 50;
	display: inline-block;
	width: 1.5rem;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	opacity: 1;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.custom-arrow.prev::after,
.custom-arrow.next::after {
	content: '';
	position: absolute;
	top: -0.125rem;
	width: 4.5rem;
	height: 4.5rem;
	border: 0.125rem solid #0060ab;
	background-color: #0060ab;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.15s;
	transition: all 0.15s;
}

/* about us */
.about-us {
	position: relative;
	width: 100%;
	padding-top: 7.5rem;
	padding-bottom: 7.5rem;
	background-color: #fff;
}
@media (max-width: 767px) {
	.about-us {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
}
.about-us .btn {
	margin-top: 2.5rem;
}
.about-us__inner {
	display: grid;
	grid-template-columns: 42% 1fr 20%;
	grid-template-rows: 1fr 6rem 25rem;
}
@media (max-width: 767px) {
	.about-us__inner {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto auto auto;
		-webkit-column-gap: 0;
		-moz-column-gap: 0;
		column-gap: 0;
	}
}
.about-us__heading {
	grid-column: 2/3;
	grid-row: 1;
	max-width: 32rem;
}
@media (max-width: 767px) {
	.about-us__heading {
		grid-column: 1;
		grid-row: 2;
		max-width: 100%;
		margin-top: 2.5rem;
	}
}
.about-us__img {
	grid-column: 3/4;
	grid-row: 1;
	width: 100%;
	height: auto;
}
@media (max-width: 767px) {
	.about-us__img {
		grid-column: 1;
		grid-row: 3;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		width: 60%;
		height: auto;
		margin-top: 2.5rem;
		margin-inline: auto;
	}
}
.about-us__btn {
	grid-column: 2/4;
	grid-row: 2;
	-ms-flex-line-pack: start;
	align-content: start;
}
@media (max-width: 767px) {
	.about-us__btn {
		grid-column: 1;
		grid-row: 4;
		margin-inline: auto;
	}
}
.about-us__link {
	grid-column: 2/4;
	grid-row: 3;
}
@media (max-width: 767px) {
	.about-us__link {
		grid-column: 1;
		grid-row: 5;
	}
}
.about-us-thumbnail {
	position: absolute;
	left: 0;
	grid-column: 1;
	grid-row: 1/4;
	width: clamp(28.375rem, 37.9166666667vw - 0.0625rem, 45.4375rem);
	border-radius: 0 1.25rem 1.25rem 0;
}
@media (max-width: 767px) {
	.about-us-thumbnail {
		position: static;
		grid-column: 1;
		grid-row: 1;
		width: calc(100vw - 1.25rem);
		height: 18.75rem;
		margin-left: calc(-50vw + 50%);
		-o-object-fit: cover;
		object-fit: cover;
	}
}

/* サステナビリティ */
.sustainability {
	position: relative;
	width: 100%;
	padding-top: 7.5rem;
	padding-bottom: 7.5rem;
	border-top: 0.0625rem solid #c6c6c6;
	border-bottom: 0.0625rem solid #c6c6c6;
	background-color: #f5fbff;
}
@media (max-width: 767px) {
	.sustainability {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
}
.sustainability .btn {
	margin-top: 2.5rem;
}
@media (max-width: 767px) {
	.sustainability .btn {
		margin-inline: auto;
	}
}
.sustainability__inner {
	display: grid;
	grid-template-columns: 57% 1fr;
	grid-template-rows: 1fr 18rem;
}
@media (max-width: 767px) {
	.sustainability__inner {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto auto;
	}
}
.sustainability__heading {
	grid-column: 1;
	grid-row: 1;
}
@media (max-width: 767px) {
	.sustainability__heading {
		grid-column: 1;
		grid-row: 2;
		max-width: 100%;
		margin-top: 2.5rem;
	}
}
.sustainability__link {
	grid-column: 1;
	grid-row: 2;
}
@media (max-width: 767px) {
	.sustainability__link {
		grid-column: 1;
		grid-row: 3;
	}
}
.sustainability__thumbnail {
	position: absolute;
	right: 0;
	grid-column: 2;
	grid-row: 1/3;
	width: clamp(28.375rem, 37.9166666667vw - 0.0625rem, 45.4375rem);
	border-radius: 1.25rem 0 0 1.25rem;
}
@media (max-width: 767px) {
	.sustainability__thumbnail {
		position: static;
		grid-column: 1;
		grid-row: 1;
		width: calc(100vw - 1.25rem);
		height: 18.75rem;
		margin-right: calc(-50vw + 50%);
		-o-object-fit: cover;
		object-fit: cover;
	}
}

/* ニュース */
.news {
	position: relative;
	width: 100%;
	padding-top: 7.5rem;
	padding-bottom: 7.5rem;
	border-top: 0.0625rem solid #c6c6c6;
    border-bottom: 0.0625rem solid #c6c6c6;
    background-color: #f5fbff;
	font-family: 'BIZ UDPGothic', sans-serif;
}
@media (max-width: 767px) {
	.news {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
}
.news__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2.5rem;
}
.news__main-tabs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
}
@media (max-width:767px) {
  .news__main-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.news__main-tab-button {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 1rem;
  color: #999999;
  background-color: #f5fbff;
  border: none;
  border-bottom: 0.0625rem solid #999999;
	font-family: 'BIZ UDPGothic', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width:767px) {
  .news__main-tab-button {
    padding:1rem 0;
  }
}
.news__main-tab-button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 10;
  display: block;
  width: 0;
  border-bottom: 0.1875rem solid #0060ab;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news__main-tab-button:hover {
  color: #0060ab;
}
.news__main-tab-button:hover::after {
  content: "";
  width: 100%;
  border-bottom: 0.1875rem solid #0060ab;
}
.news__main-tab-button.is-active {
  border-bottom: 0.25rem solid #0060ab;
  color: #0060ab;
}
.news__main-tab-button.is-active:hover::after {
  content: "";
  width: 0;
}
.news__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 7.5rem;
  width: 100%;
  background-color: #fff;
}
@media (max-width:1280px) {
  .news__contents.is-pc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2rem;
  }
}
.news__tab-content-wrapper {
  width: 100%;
}
@media (max-width:767px) {
  .news__tab-content-wrapper {
    display: block;
  }
}
.news__accordion {
  display: none;
  width: 100%;
}
@media (max-width:767px) {
  .news__accordion {
    display: none;
  }
}
.news__accordion-item {
  border-bottom: 0.0625rem solid #999999;
}
.news__accordion-item:first-child {
  border-top: 0.0625rem solid #999999;
}
.news__accordion-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 1rem 0.5rem;
  color: #333;
  background-color: transparent;
  border: none;
  border-bottom: 0.0625rem solid #c6c6c6;
  font-size: 1.125rem;
  font-weight: bold;
  cursor: pointer;
}
.news__accordion-header::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background-image: url(/common/img/icon_chevron.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.news__accordion-header.is-open {
  color: #0060ab;
}
.news__accordion-header.is-open::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.news__accordion-content {
  padding-bottom: 1rem;
  -webkit-transition: height 500ms ease, padding 500ms ease;
  transition: height 500ms ease, padding 500ms ease;
}
.news__accordion-content .news__body {
  padding-inline: 0.5rem;
}
.news__accordion-content .news__list {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.news__tag-button {
  width: 12.5rem;
  height: 2.375rem;
  border: none;
  border-radius: 1.1875rem;
  color: #fff;
  background-color: #999999;
  font-size: 1.125rem;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news__tag-button:hover {
  background-color: #0060ab;
}
.news__tag-button.active {
  background-color: #0060ab;
}
.news__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.25;
}
.news__body li + li {
  border-top: 0.0625rem solid #999999;
}
.news__list { width: 100%;}
.news__list-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  color: #333;
  background-color: #f5fbff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width:960px) {
  .news__list-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1rem;
  }
}
@media (max-width:767px) {
  .news__list-link {
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1rem;
  }
}
.news__list-link:hover {
  text-decoration: none;
}
.news__list-link:hover > .news__list-heading > .news__list-date {
  text-decoration: none;
  color: #333;
}
.news__list-link:hover > .news__list-heading > .news__list-tag {
  text-decoration: none;
  background-color: #0063be;
}
.news__list-link:hover > .news__list-heading > .news__list-tag.is-group {
  background-color: #01c5c3;
}
.news__list-link:hover > .news__list-heading > .news__list-tag.is-accounts {
  background-color: #14176c;
}
.news__list-link:hover > .news__list-heading > .news__list-tag.is-notice {
  background-color: #0060ab;
}
.news__list-link:hover > .news__list-heading > .news__list-tag.is-meeting {
  background-color: #056b8d;
}
.news__list-link:hover > .news__list-heading > .news__list-tag.is-stockholder {
  background-color: #38a4d3;
}
.news__list-link:hover > .news__list-title {
  text-decoration: none;
  color: #0063be;
}
.news__list-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.5rem;
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.5rem;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news__list-link:hover::after {
  right: 0;
}
.news__list-link-arrow::after { background-image: url(/common/img/icon_chevron.svg);}
.news__list-link-add::after { background-image: url(/common/img/icon_outlink.svg);}
.news__list-link-add.is-group::after { background-image: url(/common/img/icon_outlink.svg);}
.news__list-link-pdf::after { background-image: url(/common/img/icon_pdf.svg);}
.news__list-heading {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	  -ms-flex-direction: row;
		  flex-direction: row;
	-webkit-box-pack: start;
	  -ms-flex-pack: start;
		  justify-content: flex-start;
	-webkit-box-align: center;
	  -ms-flex-align: center;
		  align-items: center;
}
.news__list-date {
	width: 9rem;
	font-size: 1.125rem;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.news__list-tag {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	  -ms-flex-direction: row;
		  flex-direction: row;
	-webkit-box-pack: center;
	  -ms-flex-pack: center;
		  justify-content: center;
	-webkit-box-align: center;
	  -ms-flex-align: center;
		  align-items: center;
	width: 12.5rem;
	height: 2.375rem;
	border-radius: 1.1875rem;
	color: #fff;
	background-color: #0063be;
	font-size: 1.125rem;
	line-height: 1;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
@media (max-width:767px) {
	.news__list-tag {
		width: 8.5rem;
		height: 2rem;
		font-size: 0.8em;
	}
}
.news__list-tag.is-group { background-color: #01c5c3;}
.news__list-tag.is-accounts { background-color: #14176c;}
.news__list-tag.is-notice { background-color: #0060ab;}
.news__list-tag.is-meeting { background-color: #056b8d;}
.news__list-tag.is-stockholder { background-color: #38a4d3;}
.news__list-title {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding-right: 2rem;
	font-size: 1.125rem;
	font-weight: bold;
	-webkit-font-feature-settings: "palt";
		  font-feature-settings: "palt";
	line-height: 1.5;
	text-overflow: ellipsis;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.news__list-title-arrow::after { background-image: url(/common/img/icon_chevron.svg);}
.news__list-title-add::after { background-image: url(/common/img/icon_copy.svg);}
.news__list-title-add.is-group::after { background-image: url(/common/img/icon_copy.svg);}
.news__list-title-pdf::after { background-image: url(/common/img/icon_pdf.svg);}
.news__btn {
	margin-top: 2.5rem;
	margin-inline: auto;
}

/* 商品に関する大切なお知らせ */
.important-notice {
	position: relative;
	width: 100%;
	height: 100%;
	background-color: #fff;
}
.important-notice .btn { margin-top: 2.5rem;}
.important-notice__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding-top: 7.5rem;
	padding-bottom: 7.5rem;
}
.important-notice__title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 1.625rem;
	font-family: 'BIZ UDPGothic', sans-serif;
	font-weight: 700;
	line-height: 1;
}
.important-notice__title::before {
	content: '';
	display: inline-block;
	width: 2.5rem;
	height: 2.5rem;
	margin-right: 1rem;
	background-image: url(/img/index/icon_important.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.important-notice__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.25;
	margin-top: 2.5rem;
	font-family: 'BIZ UDPGothic', sans-serif;
}
.important-notice__list { width: 100%;}
.important-notice__list-link {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 2rem;
	width: 100%;
	padding-top: 2rem;
	padding-bottom: 2rem;
	color: #333;
	background-color: #fff;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	border-top: 0.0625rem solid #999999;
}
.important-notice__list-link:last-child { border-bottom: 0.0625rem solid #999999;}
.important-notice__list-link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0.5rem;
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-left: 0.5rem;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.important-notice__list-link-arrow::after { background-image: url(/common/img/icon_chevron.svg);}
.important-notice__list-link:hover { text-decoration: none;}
.important-notice__list-link:hover .important-notice__list-date {
	text-decoration: none;
	color: #333;
}
.important-notice__list-link:hover::after { right: 0;}
.important-notice__list-date {
    width: 9rem;
    font-size: 1.125rem;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.important-notice__list-title{
	position: relative;
    width: 100%;
    overflow: hidden;
    padding-right: 2rem;
    font-size: 1.125rem;
    font-weight: bold;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    line-height: 1.5;
    text-overflow: ellipsis;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
@media (max-width: 960px) {
	.important-notice__list-link {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		gap: 1rem;
	}
}
@media (max-width:767px) {
	.important-notice__inner {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
	.important-notice__list-link{
		padding-top: 1.3rem;
		padding-bottom: 1rem;
		font-size: 1rem;
		gap: 0.8rem;
	}
}

/* AWARD */
.award-area {
	width: 100%;
	max-width: 56.25rem;
	padding-top: 2rem;
	padding-bottom: 2rem;
	margin-inline: auto;
}
.award-area__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-inline: 1.5rem;
}
@media (max-width: 575px) {
	.award-area__list {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 1.5rem 3.5rem;
	}
} /*# sourceMappingURL=index.css.map */
