@charset "UTF-8";
@keyframes pop {
	0% {
		opacity: 0;
		transform: translateY(-30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fadeSlide {
	0% {
		opacity: 0;
		transform: translateY(5px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes fadeIn_nav {
	0% {
		opacity: 0;
		z-index: -1;
	}
	1% {
		opacity: 0;
		z-index: 20;
	}
	100% {
		opacity: 1;
		z-index: 20;
	}
}
@keyframes fadeOut_nav {
	0% {
		opacity: 1;
		z-index: 20;
	}
	99% {
		opacity: 0;
		z-index: 20;
	}
	100% {
		opacity: 0;
		z-index: -1;
	}
}
/* --------------------------------------------------------
* 沿革
* -------------------------------------------------------*/
.history {
	padding-top: 32px;
	position: relative;
}
@media (max-width: 767px) {
	.history {
		padding-top: 32px;
	}
}

.historyYear {
	position: fixed;
	left: 0;
	bottom: 0;
}
.historyYear_select {
	display: none;
}
.historyYear_list {
	width: 128px;
	background-color: #fff;
	padding: 24px 20px 16px;
	border-radius: 0 32px 0 0;
	box-shadow: 0 16px 16px rgba(0, 0, 0, 0.1);
}
.historyYear_item + .historyYear_item {
	margin-top: 18px;
}
.historyYear_item > a {
	color: var(--color-txt);
	line-height: var(--line-height-s);
	font-weight: 600;
	font-size: 1.4rem;
	display: inline-block;
	padding-left: 14px;
	position: relative;
	transition: all 0.2s;
}
.historyYear_item > a::before {
	content: "";
	width: 8px;
	height: 8px;
	background-color: var(--color-bg);
	border-radius: 100%;
	position: absolute;
	left: 0;
	top: 7px;
	transition: all 0.2s;
}
.historyYear_item > a.is-active::before {
	background-color: var(--color-prim);
}
.historyYear_item > a:hover {
	color: var(--color-prim);
}
.historyYear_item > a:hover::before {
	background-color: var(--color-prim);
}
@media (max-width: 767px) {
	.historyYear {
		width: calc(100% - 40px);
		margin: 0 auto 56px;
		position: sticky;
		left: 0;
		top: 8px;
		z-index: 10;
	}
	.historyYear_select {
		display: block;
		position: relative;
	}
	.historyYear_select::before {
		content: "";
		width: 14px;
		height: 14px;
		background: url(/en/assets/images/icon-select.svg) center/contain no-repeat;
		position: absolute;
		right: 18px;
		top: 0;
		bottom: 0;
		margin: auto;
		pointer-events: none;
	}
	.historyYear_select select {
		width: 100%;
		background-color: #fff;
		border-radius: 5px;
		border: #e5e5e5 solid 1px;
		padding: 18px 40px 18px 20px;
		font-size: 1.4rem;
		font-weight: 700;
		appearance: none;
		color: var(--color-txt);
	}
	.historyYear_list {
		display: none;
	}
}
@media (min-width: 768px), print {
	.historyYear.is-stop {
		position: absolute;
		bottom: 30px;
	}
}

.historyMain {
	max-width: 1000px;
	width: calc(100% - 360px);
	margin: 0 auto;
	position: relative;
}
.historyMain::before {
	content: "";
	width: 2px;
	height: calc(100% - 60px);
	background-color: var(--color-prim);
	position: absolute;
	left: -32px;
	top: 30px;
}
.historyMain::after {
	content: "";
	width: 8px;
	height: 8px;
	background-color: var(--color-prim);
	border-radius: 100%;
	position: absolute;
	left: -35px;
	bottom: 28px;
}
@media (max-width: 767px) {
	.historyMain {
		width: calc(100% - 40px);
	}
	.historyMain::before {
		height: calc(100% - 44px);
		left: -10px;
		top: 22px;
	}
	.historyMain::after {
		left: -13px;
		bottom: 20px;
	}
}

.historySection {
	padding-bottom: 260px;
	position: relative;
}
.historySection:last-child {
	padding-bottom: 120px;
}
.historySection::before {
	content: "";
	width: 34px;
	height: 2px;
	background-color: var(--color-prim);
	position: absolute;
	left: -32px;
	top: 30px;
}
.historySection::after {
	content: "";
	width: 16px;
	height: 16px;
	border-radius: 100%;
	background-color: var(--color-prim);
	border: #fff solid 3px;
	position: absolute;
	left: -8px;
	top: 23px;
}
.historySection_title {
	font-family: var(--font-en);
	font-style: italic;
	font-weight: bold;
	font-size: 4rem;
	line-height: var(--line-height-xs);
	padding: 23px 0 0 38px;
	position: relative;
	margin-bottom: 48px;
}
.historySection_title::before {
	content: "";
	width: 19px;
	height: 68px;
	background-color: var(--color-prim);
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 4px 0 0 4px;
	clip-path: polygon(0 0, 100% 0, 40% 100%, 0% 100%);
}
.historySection_title::after {
	content: "";
	width: 8px;
	height: 68px;
	border-left: var(--color-txt-link) solid 4px;
	border-right: #b7010e solid 4px;
	position: absolute;
	left: 12px;
	top: 0;
	transform: skewX(-10deg);
}
@media (max-width: 767px) {
	.historySection {
		padding-bottom: 56px;
	}
	.historySection::before {
		width: 10px;
		height: 2px;
		left: -10px;
		top: 22px;
	}
	.historySection::after {
		content: "";
		width: 12px;
		height: 12px;
		border-width: 2px;
		left: -6px;
		top: 17px;
	}
	.historySection_title {
		font-size: 3.2rem;
		margin-bottom: 32px;
		padding: 4px 0 6px 32px;
	}
	.historySection_title::before {
		content: "";
		height: 48px;
		border-radius: 8px 0 0 8px;
	}
	.historySection_title::after {
		height: 48px;
	}
}

.historyArticle + .historyArticle {
	margin-top: 96px;
}
.historyArticle_main {
	width: calc(100% - 320px);
}
.historyArticle_title {
	font-weight: bold;
	font-size: 1.6rem;
	line-height: var(--line-height-xs);
	padding: 0 0 0 21px;
	position: relative;
}
.historyArticle_title::before {
	position: absolute;
	content: "";
	width: 12px;
	height: 18px;
	left: 3px;
	top: 0;
	background-color: var(--color-txt-link);
	border-left: var(--color-prim) solid 4px;
	border-right: #c3000d solid 4px;
	transform: skewX(-10deg);
}
.historyArticle_textbox {
	margin-top: 5px;
}
.historyArticle_text {
	font-size: 1.8rem;
	font-weight: 700;
	line-height: var(--line-height-m);
}
.historyArticle_text--s {
	font-weight: 400;
	font-size: 1.6rem;
}
.historyArticle_text--l {
	font-size: 3.2rem;
	line-height: var(--line-height-s);
}
.historyArticle_image {
	max-width: 335px;
	margin-top: 24px;
}
.historyArticle_image img {
	border-radius: 32px;
	overflow: hidden;
}
.historyArticle_sub {
	position: fixed;
	top: 40%;
	left: 0;
	right: 0;
	pointer-events: none;
	max-width: 1000px;
	width: calc(100% - 360px);
	margin: auto;
}
.historyArticle_sub-inner {
	width: 260px;
	margin: 0 0 0 auto;
	position: relative;
}
.historyArticle_sub-image {
	border-radius: 32px;
	overflow: hidden;
	box-shadow: 0 14px 14px rgba(0, 0, 0, 0.1);
}
.historyArticle_sub-year {
	position: absolute;
	left: 0;
	top: 0;
	font-weight: bold;
	font-size: 1.4rem;
	line-height: var(--line-height-xs);
	padding: 6px 20px 4px 13px;
	background-color: #eb0010;
	color: #fff;
	display: inline-block;
	min-width: 93px;
	clip-path: polygon(0 0, 100% 0, calc(100% - 5px) 100%, 0% 100%);
	font-family: var(--font-en);
}
.historyArticle_sub-year::before {
	content: "";
	width: 6.3px;
	height: 100%;
	background-color: var(--color-seco);
	position: absolute;
	left: 0;
	top: 0;
	clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.historyArticle_sub-year--noimg {
	position: static;
}
.historyArticle_sub-caption {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--color-txt-link);
	line-height: var(--line-height-s);
	margin-top: 16px;
}
.historyArticle_sub-caption2 {
	font-size: 1.8rem;
	font-weight: 700;
	line-height: var(--line-height-xs);
	margin-top: 4px;
	padding-bottom: 10px;
}
.historyArticle_sub-text {
	font-size: 1.6rem;
	line-height: var(--line-height-m);
	margin-top: 8px;
}
.historyArticle_sub-copy {
	font-size: 1.2rem;
	line-height: var(--line-height-s);
	color: var(--color-txt-caption);
	margin-top: 16px;
}
.historyArticle_slider-item {
	position: relative;
}
.historyArticle_slider .swiper-button-prev,
.historyArticle_slider .swiper-button-next {
	width: 40px;
	height: 40px;
	top: 177.5px;
	margin-top: -20px;
	z-index: 2;
}
.historyArticle_slider .swiper-button-prev::after,
.historyArticle_slider .swiper-button-next::after {
	display: none;
}
.historyArticle_slider .swiper-button-next {
	transform: translateX(90%);
	right: 0;
}
.historyArticle_slider .swiper-button-prev {
	transform: scale(-1, 1) translateX(90%);
	left: 0;
}
@media (min-width: 768px), print {
	.historyArticle {
		/* &--continuous2 {
			margin-top: 800px !important;
		} */
	}
	.historyArticle--continuous {
		margin-top: 500px !important;
	}
	.is-touch .historyArticle--continuous {
		margin-top: 200px !important;
	}
	.historyArticle_sub {
		opacity: 0;
		pointer-events: none;
		transition: all 0.5s;
	}
	.historyArticle_sub--slide {
		width: 100%;
		top: 0;
	}
	.is-touch .historyArticle_sub--slide {
		width: calc(100% - 360px);
		top: 40%;
	}
	.historyArticle_sub-inner--slide {
		width: 300px;
		padding: 0 0 20px 20px;
	}
	.is-touch .historyArticle_sub-inner--slide {
		width: 260px;
		padding: 0;
	}
	.is-active .historyArticle_sub-inner {
		pointer-events: all;
	}
	.historyArticle_sub.is-active {
		opacity: 1;
	}
	.historyArticle_slider {
		margin-left: -10px;
	}
	.is-touch .historyArticle_slider {
		margin: 0;
	}
	.historyArticle_slider-item {
		padding-right: 30px;
	}
	.is-touch .historyArticle_slider-item {
		padding: 0;
		margin: 0;
		pointer-events: none;
	}
	.historyArticle_slider-wrapper {
		overflow: hidden;
		padding-left: 20px;
	}
	.is-touch .historyArticle_slider-wrapper {
		overflow: visible;
		padding-left: 0;
	}
	.historyArticle_slider .swiper-button-prev,
.historyArticle_slider .swiper-button-next {
		display: none;
	}
	.is-touch .historyArticle_slider .swiper-button-prev,
.is-touch .historyArticle_slider .swiper-button-next {
		display: block;
	}
	.historyArticle_inner--l {
		padding-bottom: 500px !important;
	}
	.is-touch .historyArticle_inner--l {
		padding-bottom: 200px !important;
	}
}
@media (max-width: 1120px) and (min-width: 1000px), print {
	.historyArticle_sub {
		position: absolute;
		top: 0;
		width: 100%;
	}
}
@media (max-width: 767px) {
	.historyArticle_main {
		width: 100%;
	}
	.historyArticle_title {
		font-size: 1.4rem;
		padding: 0 0 0 18px;
	}
	.historyArticle_title::before {
		width: 9px;
		height: 16px;
		border-left-width: 3px;
		border-right-width: 3px;
	}
	.historyArticle_textbox {
		margin-top: 5px;
	}
	.historyArticle_text {
		font-size: 1.6rem;
	}
	.historyArticle_text--s {
		font-size: 1.4rem;
	}
	.historyArticle_text--l {
		font-size: 2.4rem;
	}
	.historyArticle_image {
		max-width: 100%;
	}
	.historyArticle_image img {
		border-radius: 20px;
	}
	.historyArticle_sub {
		position: static;
		width: 100%;
		margin-top: 56px;
		pointer-events: all;
	}
	.historyArticle_sub-inner {
		margin: 0 auto;
	}
	.historyArticle_sub-inner--noimg {
		width: 100%;
	}
}
/*# sourceMappingURL=company_history.css.map */
