  @charset "utf-8";
/* CSS Document */
.spStyle767{
	display: none;
}
.historyContainer{
	padding: 20px 0;
	margin-top: 40px;
	overflow: hidden;
}
.history-scroll{
	overflow: auto;
}
/*タブ実装*/
.tab_box .btn_area {
	display: -webkit-box;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	font-size: 1.8rem;
	font-weight: 500;
	margin-bottom: 30px;
	position: relative;
}
.tab_box .btn_area::before{
	content: "";
	display: block;
	width: 99vw;
	height: 1px;
	background: #707070;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.tab_box .tab_btn,
.tab_box .tab_btn2,
.tab_box .sp_tab_btn {
	max-width: 430px;
	width: 48%;
	padding: 8px 5px;
	color: #333;
	background: #f5f7f8;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s ease 0s;
	display: flex;
	justify-content: center;
	align-items: center;
}

.tab_box .tab_btn + .tab_btn,
.tab_box .tab_btn2 + .tab_btn2{
	margin-left: 8px;
}

.tab_box .tab_btn:hover,
.tab_box .tab_btn2:hover{
	background-color: #dce1e4;
}

.tab_box .tab_btn.active,
.tab_box .tab_btn2.active,
.tab_box .sp_tab_btn.active{
    background:#014099;
    color:#fff;
	pointer-events: none;
	position: relative;
	z-index: 2;
}
.tab_box .tab_panel {
    display:none;
}
.tab_box .tab_panel.active {
    display:block;
}
.lead-txt{
	text-align: left;
	margin-bottom: 70px;
	font-weight: 500;
}

.flex{
	display: flex;
	width: 100%;
}

.panel_area ul.history-ttl{
	display: flex;
	justify-content: space-between;
	width: calc(100% - 116px);
	margin: 0 0 0 auto;
}
.panel_area ul.history-ttl li{
	width: 48%;
	border-bottom: 1px solid #707070;
	font-weight: 700;
}
.panel_area ul.history-ttl li:last-child{
	margin-right: 0;
}

.history-box{
	display: flex;
	align-items: flex-start;
}
.history-box:last-child{
	margin-bottom: 0;
}
.history-box > .flex{
	justify-content: space-between;
}

/*豊田合成の歴史タイムライン*/
.tab_box .btn_area2{
	margin-top: 47px;
}
.cp_timeline01{
	max-width: 450px;
	width: 100%;
	margin: 0 auto;
}
.cp_timeline01 li{
	font-size: 1.8rem;
	font-weight: 500;
	background: #E3E3E3;
	text-align: left;
	padding: 7px 10px;
}
.cp_timeline01 li + li{
	margin-top: 40px;
}
.cp_timeline01 li.flex span:first-child{
	margin-right: 1em;
}

/*製品の歴史タイムライン*/
.cp_timeline02 {
	position: relative;
	margin: 40px auto 40px;
}
.cp_timeline02:before {
	position: absolute;
	left: 40px;
	width: 3px;
	height: 100%;
	content: '';
	background: #014099;
	z-index: 1;
}
.history-box h2 {
	clear: both;
	text-align: center;
	background: #014099;
	color: #fff;
	font-size: 2.5rem;
	min-width: 80px;
	margin-right: 36px;
	position: relative;
	z-index: 1;
}
.cp_timeline02 ul {
	width: 48%;
	margin: 0;
	list-style: none;
	text-align: left;
}
.cp_timeline02 .history-box ul:first-child{
	position: relative;
}
.cp_timeline02 .history-box ul:first-child::before{
	content: "";
	display: block;
	width: 1px;
	min-height: 85px;
	height: calc(100% + 40px);
	position: absolute;
	top: 0;
	right: -4.5%;
	background: #707070;
}
.cp_timeline02 .history-box:first-child ul:first-child::before{
	top: -40px;
	height: calc(100% + 80px);
}
.cp_timeline02 .history-box:last-child ul:first-child::before{
	min-height: inherit;
	height: calc(100% + 20px);
}
.cp_timeline02 li {
	position: relative;
	text-align: left;
	padding: 0 5px;
}
.cp_timeline02 li p{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	font-weight: 500;
}
.cp_timeline02 li span.year{
	display: inline-block;
	margin-right: 1em;
}


@media only screen and (max-width: 767px) {
	.spStyle767{
		display: inherit;
		margin-bottom: 10px;
		color: #4b4b4b;
		font-size: 1.4rem;
	}
	.historyContainer{
		overflow: inherit;
	}
	.sticky{
		position: relative;
		display: flex;
		margin: 0 -10px;
	}
	.sticky .arrow{
		position: sticky;
		top: 50vh;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 30px;
		height: 30px;
		background: #014099;
		border-radius: 50%;
		flex-shrink: 0;
		z-index: 5;
	}
	.sticky .arrow::before{
		color: #fff;
		font-size: 0.8em;
	}
	.sticky .arrow.left{
		left: 0;
	}
	.sticky .arrow.left::before{
		content: "?";
		transform: translateX(-1px);
	}
	.sticky .arrow.right{
		content: "?";
		right: 0;
	}
	.sticky .arrow.right::before{
		content: "?";
		transform: translateX(1px);
	}
	.history-scroll{
		margin: 0 -20px;
	}
	.history-scroll .scrollInner{
		width: 950px;
		position: relative;
	}
	.cp_timeline01{
		width: 88vw;
	}
	.lead-txt{
		margin-bottom: 30px;
	}
	.historyContainer{
		background-size: 150%;
	}
	.tab_box .btn_area{
		margin-bottom: 20px;
		font-size: 1.6rem;
		overflow: hidden;
	}
	.tab_box .sp_btn_area{
		justify-content: space-between;
	}
	.cp_timeline01 li{
		font-size: 1.6rem;
	}
	.cp_timeline01 li + li {
		margin-top: 20px;
	}
	.cp_timeline02 ul{
		padding-top: 36px;
		width: 100%;
	}
	.cp_timeline02 li{
		padding: 0;
	}
	.cp_timeline02 li:nth-child(odd):before {
		right: auto;
		left: -14px;
		border-width: 10px 15px 10px 0;
		border-color: transparent #FFF8E1 transparent transparent;
	}
	.cp_timeline02 li:nth-child(odd)::after {
		right: auto;
		left: -16px;
		border-width: 10px 15px 10px 0;
		border-color: transparent #FFCA28 transparent transparent;
	}
	.tab_box .tab_panel .pc_tab_panel {
		display: none;
	}
}
@media screen and (max-width: 768px){
	.panel_area ul.history-ttl{
		width: calc(100% - 80px);
	}
	.cp_timeline02:before{
		left: 30px;
		width: 2px;
	}
	.history-box h2{
		font-size: 2rem;
		min-width: 60px;
		margin-right: 20px;
	}

}
@media screen and (max-width: 374px){
	.tab_box .sp_btn_area p{
		font-size: 1.4rem;
	}
}


/* ------------------------------------------------------------------------ */

/*  【製品の歴史】の中のタブ群

/* ------------------------------------------------------------------------ */
.tab_box .tab_btn2{
	font-weight: 500;
	color: #464646;
}
.in_panel .history-box{
	position: relative;
}
.tab_box .in_panel {
	display:none;
}
.tab_box .in_panel.active {
	display:block;
}

.in_panel .history-box > .flex{
	align-items: flex-end;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.cp_timeline02.in_panel .history-box .figBox{
	width: 30%;
	margin-top: 40px;
	margin-right: 5%;
	position: relative;
	z-index: 10;
}
.cp_timeline02.in_panel .history-box .figBox:nth-child(3n){
	margin-right: 0;
}
.cp_timeline02.in_panel .history-box .figBox figcaption{
	text-align: left;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.3;
	margin: 0 0 10px;
}
.cp_timeline02.in_panel figcaption{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.cp_timeline02.in_panel span.year{
	display: inline-block;
	margin-right: 1em;
}
@media screen and (min-width: 768px){
	.in_panel .history-box::before{
		content: "";
		display: block;
		width: 100%;
		top: 21px;
		left: 0;
		height: 3px;
		background: #D3D3D3;
		position: absolute;
		z-index: 1;
	}
	.in_panel .history-box .figBox.spStyle{
		display: none !important;
	}
	.in_panel .history-box .figBox.pcStyle{
		display: block !important;
	}
	
	/*ゴム領域*/
	
	/*樹脂領域*/
	
	/*新領域*/
}
@media screen and (max-width: 880px){
	.in_panel .history-box{
		min-height: inherit;
	}
}
@media screen and (max-width: 768px){
	.in_panel .history-box > .flex{
		justify-content: space-between;
	}
	.cp_timeline02.in_panel .history-box .figBox{
		width: 48%;
		margin-right: 0;
	}
	.cp_timeline02.in_panel .history-box .figBox figcaption{
		display: block;
		margin: 0 0 10px;
	}
	.cp_timeline02.in_panel span.year{
		display: block;
		margin-right: 0;
	}
}
@media screen and (max-width: 540px){
	.in_panel .history-box > .flex{
		flex-direction: column;
		padding-top: 25px;
	}
	.cp_timeline02.in_panel .history-box .figBox{
		text-align: left;
		margin-top: 20px;
		width: inherit;
	}
	/*ゴム領域*/
	
	/*樹脂領域*/
	
	/*新領域*/
}

/* ------------------------------------------------------------------------ */

/*  モーダル

/* ------------------------------------------------------------------------ */
.js-modal-open{
	cursor: pointer;
}
.modal {
	display: none;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
}

.modal__bg {
	background: rgba(0,0,0,0.5);
	height: 100vh;
	position: absolute;
	width: 100%;
}

.modal__content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: #fff;
	padding: 60px 30px;
	box-shadow: 0 3px 6px 0 rgba(0,0,0,0.16);
	overflow-y: auto;
	max-height: calc(100vh - 66px);
	max-width: 1200px;
	width: 95%;
}

.modal__content > .inner{
	overflow: auto;
	max-width: 990px;
	margin: 0 auto;
	padding: 0 20px;
}
.modal__content > .inner > .item_container{
	align-items: flex-start;
	justify-content: space-between;
}
.modal__content > .inner > .item_container .img_box{
	padding-top: 1.8em;
	max-width: 410px;
	width: 48%;
	
}
.modal__content > .inner > .item_container .txt_box{
	text-align: left;
}
.modal__content > .inner > .item_container.flex .txt_box{
	width: 50%;
}
	.modal__content > .inner > .item_container .txt_box .time{
		font-weight: 500;
		margin-bottom: 15px;
	}
	.modal__content > .inner > .item_container .txt_box .lead{
		font-size: 1.8rem;
		font-weight: 500;
		line-height: 1.666664;
		margin-bottom: 15px;
	}
	.modal__content > .inner > .item_container .txt_box .txt p{
		margin-bottom: 1.6875em;
		line-height: 1.6875;
	}
	.modal__content > .inner > .item_container .txt_box .txt p:last-of-type{
		margin-bottom: 0;
	}

a.js-modal-close{
	position: absolute;
	top: 10px;
	right: 20px;
	color: #464646;
	font-size: 50px;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
}

@media screen and (max-width: 767px){
	.modal__content{
		padding: 40px 0 20px;
	}
	a.js-modal-close{
		top: 10px;
		right: 10px;
		font-size: 29px;
	}
}
@media screen and (max-width: 600px){
	.modal__content{
		height: calc(100vh - 120px);
	}
	.modal__content > .inner{
		max-height: inherit;
		height: 100%;
	}
	.modal__content > .inner > .item_container{
		display: block;
	}
	.modal__content > .inner > .item_container .img_box{
		max-width: inherit;
		width: 100%;
	}
	.modal__content > .inner > .item_container.flex .txt_box{
		width: 100%;
	}
}
