@charset "UTF-8";
/*----------
	/corporate/history/
	会社情報 沿革
----------*/
/* tab */
.p-tab {
	position: relative;
	z-index: 1;
}
@media (min-width: 768px), print {
	.p-tab {

	}
}
.p-tab__tab {
	display: flex;
	flex-wrap: wrap;
}
@media (min-width: 768px), print {
	.p-tab__tab {
		flex-wrap: nowrap;
	}
}
.p-tab__tab-item {
	width: 50%;
	margin-bottom: 14px;
	border: none;
	border-left: var(--color-border) solid 1px;
	text-align: center;
	color: var(--color-txt);
}
.p-tab__tab-item:not(:last-child) {
	border-bottom: none;
}
.p-tab__tab-item:nth-child(2n), .p-tab__tab-item:last-child {
	border-right: var(--color-border) solid 1px;
}
.p-tab__tab-item.is-active {
	color: var(--color-prim);
	font-weight: bold;
	pointer-events: none;
	cursor: default;
	position: relative;
}
.p-tab__tab-item.is-active::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto 10px 0;
	padding-top: 3px;
	background-color: var(--color-prim);
}
.p-tab__tab-item.is-active .p-tab__tab-link > span {
	background: none;
}
@media (min-width: 768px), print {
	.p-tab__tab-item {
		width: 33.3333%;
		margin-bottom: 0;
	}
	.p-tab__tab-item:nth-child(2n) {
		border-right: none;
	}
	.p-tab__tab-item:nth-child(4n) {
		border-right: var(--color-border) solid 1px;
	}
}
.p-tab__tab-link {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	line-height: var(--line-height-s);
	text-align: center;
	width: 100%;
	min-height: 48px;
	height: 100%;
	padding: 6px 10px;
	color: inherit;
}
@media (min-width: 768px), print {
	.p-tab__tab-link {
		min-height: 56px;
		font-size: 1.6rem;
		padding: 10px 15px;
	}
	.p-tab__tab-link > span {
		text-decoration: none;
		background: linear-gradient(var(--color-txt), var(--color-txt)) 100% 100%/0 1px no-repeat;
		transition: background-size 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), color 0.3s;
	}
	.p-tab__tab-link:hover > span {
		background-position: 0 100%;
		background-size: 100% 1px;
	}
}
@media (hover: none) {
	.p-tab__tab-link > span {
		background: none;
	}
}
.p-tab__contents-item {
	display: none;
}
.p-tab__contents-item.is-active {
	display: block;
}
/* page  */
.p-ages__title {
	border-top: solid 1px #DDD;
	padding: 10px 40px 10px 10px;
	font-size: 1.6rem;
	font-weight: 500;
	cursor: pointer;
	position: relative;
}
.p-ages.is-active .p-ages__title {
	background: #E8F4FF;
}
.p-ages-title__01 {
	display: block;
	color: #0075c2;
}
.p-ages-title__02 {
	display: block;
}
.p-ages__title .p-ages-title__icon {
	display: block;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	background-color: #fff;
	border: 1px solid var(--color-link);
	border-radius: 100%;
	z-index: 1;
	cursor: pointer;
}
.p-ages__title .p-ages-title__icon::before {
	content: var(--icon-plus);
	font-family: iconfont !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	display: grid;
	place-content: center;
	color: var(--color-link);
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 22px;
	text-align: center;
}
.p-ages.is-active .p-ages-title__icon::before {
	content: var(--icon-minus);
}

.p-ages:not(.is-disabled) .p-ages__child {
	height: 0;
	position: relative;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
	 transition: all 0.4s linear;
}
.p-ages.is-active:not(.is-disabled) .p-ages__child {
	height: auto;
	opacity: 1;
	pointer-events: visible;
}
.p-ages-child__box {
	padding: 20px 0 0 10px;
	display: flex;
}
.p-ages-child__head {
	width: 80px;
	padding: 3px 0 10px 0;
}
.p-ages-child__head01 {
	display: block;
	font-size: 1.6rem;
	line-height: 1.2;
	font-weight: 500;
}
.p-ages-child__head02 {
	display: block;
	font-size: 1.2rem;
	font-weight: 700;
}
.p-ages-child__cts {
	width: calc( 100% - 80px );
	border-bottom: solid 1px #DDD;
	padding: 0 0 20px 0;
	position: relative;
}
.p-ages__child .p-ages-child__box:last-child .p-ages-child__cts {
	border-bottom: none;
}
.p-ages-child__pbox .c-figure {
	width: 100px;
}
.p-ages-child__cts--p1 .p-ages-child__pbox .c-figure + .c-figure {
	margin-top: 10px;
}
.p-ages-child__pbox .c-figure__caption {
	font-size: 1.0rem;
	margin-top: 5px;
}
@media (min-width: 768px), print {
	.p-ages__title {
		display: flex;
		padding: 30px 50px 30px 20px;
		font-size: 2.4rem;
	}
	.p-ages-title__01 {
		width: 130px;
	}
	.p-ages-title__02 {
		width: calc( 100% - 130px );
	}
	.p-ages__title .p-ages-title__icon {
		right: 20px;
		transition: background-color 0.3s;
	}
	.p-ages__title .p-ages-title__icon::before {
		 transition: color 0.3s;
	}
	.p-ages__title .p-ages-title__icon:hover {
		background-color: var(--color-hover);
	}
	.p-ages__title .p-ages-title__icon:hover::before {
		color: #fff;
	}
	.p-ages-child__box {
		padding: 30px 0 0 20px;
	}
	.p-ages-child__head {
		width: 130px;
		padding: 2px 0 30px 0;
	}
	.p-ages-child__head01 {
		font-size: 2.0rem;
	}
	.p-ages-child__head02 {
		font-size: 1.4rem;
	}
	.p-ages-child__cts {
		width: calc( 100% - 130px );
		padding: 0 0 30px 0;
	}
	.p-ages-child__cts a:hover {
		color: var(--color-link);
		text-decoration: underline;
	}
	.p-ages__child .p-ages-child__box:last-child .p-ages-child__cts {
		border-bottom: none;
	}
	.p-ages-child__cts--p1 {
		display: flex;
	}
	.p-ages-child__cts--p1 .p-ages-child__txt {
		width: calc( 100% - 120px );
		margin-right: 20px;
	}
	.p-ages-child__cts--p1 .p-ages-child__pbox {
		width: 100px;
	}
	.p-ages-child__cts--p1 .p-ages-child__pbox .c-figure + .c-figure {
		margin-top: 10px;
	}
	.p-ages-child__pbox .c-figure__caption {
		font-size: 1.0rem;
		margin-top: 5px;
	}
}
/* modal */
.p-modal .c-text + .c-text {
	margin-top: 1.8em;
}
.p-modal .c-figure__caption {
	margin-top: 10px;
}




