@import url('/comm/css/root.css');

/*********** Top *************/
.history_top {background:url('/twcenter/bbs/skin/historyBasic/image/history_top.jpg') no-repeat center/cover; box-sizing:border-box; height:600px; padding:0 5%; box-sizing:border-box; display:flex; flex-direction:column; justify-content: center; text-align:center;}
.history_top .basic_in {}
.history_top h3 {font-size:var(--txt60); font-weight:300; color:var(--white); letter-spacing:var(--letter-spacing-heading); line-height:var(--txt60-lh); word-break:keep-all;}
.history_top h3 strong {font-weight:700; letter-spacing:inherit; line-height:inherit;}
.history_top p {font-size:var(--txt18); color:var(--white); line-height:var(--txt18-lh); padding:20px 0 0;}


/*********** List *************/
.history_list {padding:100px 0 0; position: relative;}
.history_list:before{content:''; display:block; width:1px; height:100%; background:var(--black); opacity: 0.2; position:absolute; left:375px; top:0;}
.history_list:after{content:''; display:block; width:9px; height:9px; background:var(--border); border-radius:50%; position:absolute; left:375px; bottom:0; margin-left: -4px;}
.history_list .his_in {padding:0 0 100px; }
.history_list .his_in .his_txt {width:100%; display:flex; flex-wrap:wrap; align-items: flex-start}
.history_list .his_in .his_txt h4 {position: relative; width:375px; font-size:var(--txt48); font-family:var(--eng); color:var(--black); font-weight:700; letter-spacing:var(--letter-spacing-none); line-height:120%;}
.history_list .his_in .his_txt h4 form {float:left; line-height:0;}
.history_list .his_in .his_txt h4 form input[type=checkbox] {margin:0 15px 0 0; width:20px; height:20px;}
.history_list .his_in .his_txt .dot {display: inline-block; width: 14px; height: 14px; position: absolute; right:-8px; top:18px; border-radius:50%; z-index: 2; transition:all .3s linear;}

.history_list .his_in.active .his_txt .dot {transform:scale(2);}
.history_list .his_in .his_txt .dot::before {content:''; display:block; width:100%; height: 100%; border-radius:50%; background:var(--main); position: absolute; left: 0; top:0; z-index: -1;}
.history_list .his_in.active .his_txt .dot::before {animation: dots2 2s ease-in-out infinite;}
.history_list .his_in .his_txt .dot::after {content:''; display:block; width:100%; height: 100%; border-radius:50%; background:var(--main); position: absolute; left: 0; top:0; z-index: -1;}
.history_list .his_in.active .his_txt .dot::after {animation: dots 2s 0s ease-in-out infinite;}
.history_list .his_in .his_txt .dot i {display: block; font-style:normal; width: 100%; height: 100%; border-radius:50%; box-sizing:border-box; border:3px solid var(--main); background:var(--white); transition:all .3s linear;}
.history_list .his_in.active .his_txt .dot i {border-width:2px;}

.history_list .his_in .his_txt ul {width:calc(100% - 375px - 50px); margin:12px 0 0; padding-left:50px; box-sizing:border-box;}
.history_list .his_in .his_txt ul li {padding:0 0 10px 0; box-sizing:border-box; position: relative; display:flex; }
.history_list .his_in .his_txt ul li:last-child {padding-bottom: 0 !important;}
.history_list .his_in .his_txt ul li strong {min-width:70px; flex:0 0 auto; margin-right:20px; font-size:var(--txt18); font-weight:500; color:var(--black); line-height:var(--txt18-lh); font-family:var(--eng); display: inline-block;}
.history_list .his_in .his_txt ul li p {word-wrap: break-word; font-size:var(--txt18); line-height::var(--txt18-lh); letter-spacing:var(--letter-spacing-body); align-self:center;}
.history_list .his_in .his_img {}
.history_list .his_in .his_img img {max-width: 100%; height:auto !important;}

.history_list .progressbar {position: absolute; left:375px; top:0; margin-left:-1px; width: 3px; height: 100%; z-index: -1;}
.history_list .progressbar .progress {display: block; position: absolute; left: 0; top:0; width: 100%; transition:height .3s linear; background:var(--main);}


@keyframes dots {
    0%{
      opacity: 0.3;
      transform: scale(1);
    }
    100%{
      opacity: 0;
      transform: scale(6);
    }
}


@keyframes dots2 {
    0%{
      opacity: 0.6;
      transform: scale(1);
    }
    100%{
      opacity: 0;
      transform: scale(3);
    }
}


/*********** View *************/
.bbs_view{border-top:2px solid var(--black);}
	.bbsView_tit{border-bottom:1px solid var(--border); padding:33px 100px 33px 20px; box-sizing:border-box; position: relative;}
	.bbsView_tit .subject{font-size:26px; letter-spacing:var(--letter-spacing-heading); line-height:130%; font-weight:700; color:var(--black);}
	.bbsView_tit .subject span{display:inline-block; margin-right: 5px; letter-spacing:inherit; font-weight:400;}
	.bbsView_tit .view_detail{margin:10px 0 0; display:flex;}
	.bbsView_tit .view_detail li{font-size:1rem; color:var(--basic); line-height:150%; padding:0 37px 0 0; position:relative;}
	.bbsView_tit .view_detail li:last-child{padding:0;}
	.bbsView_tit .view_detail li:after{content:''; display:block; width:1px; height:16px; background:#ccc; position:absolute; right:18px; top:50%; margin-top:-8px;}
	.bbsView_tit .view_detail li:last-child:after{display:none;}
	.bbsView_tit .count{font-size:1rem; color:var(--basic); line-height:120%; position:absolute; right:20px; top:50%; transform:translateY(-50%);}
	.bbsView_tit .count span{display:inline-block; vertical-align:middle; margin:-2px 7px 0 0; color:var(--black);}
	.view_content{padding:30px 0; box-sizing:border-box;}
	.view_content img{max-width:100%; height:auto !important;}

	.view_file{margin:30px 0 0; box-sizing:border-box; background:var(--grayBg); display:flex;}	
	.view_file .btit{width:170px; padding:20px; font-size:1rem; letter-spacing:var(--letter-spacing-body); line-height: 120%; color:var(--black); box-sizing:border-box; position: relative;}	
	.view_file .bstxt{width:calc(100% - 170px); padding:20px; font-size:1rem; letter-spacing:-0.35pt; line-height: 120%; box-sizing:border-box;}	
	.view_file .bstxt a{display:inline-block; font-size:1rem; letter-spacing:var(--letter-spacing-body); line-height:150%; color:var(--black); border-bottom:1px solid var(--black); margin: 0 0 5px;}
	.view_file .bstxt a:last-child{margin: 0;}
	.view_file .bstxt .file{display: inline-block; vertical-align: middle; margin-left: -5px; font-size:1rem; color:var(--black);}	

	.bbs_bottom{border-top:1px solid var(--border); display:flex;}
	.bbs_bottom.last{border-bottom:1px solid var(--border);}
	.bbs_bottom dt{width:170px; padding:20px; font-size:1rem; letter-spacing:var(--letter-spacing-body); line-height: 120%; color:var(--black); box-sizing:border-box; position: relative;}
	.bbs_bottom dt .arrow{color:var(--black); opacity:0.5; position:absolute; right:0; top:50%; transform:translateY(-50%);}
	.bbs_bottom dd{width:calc(100% - 170px); padding:20px; font-size:1rem; letter-spacing:var(--letter-spacing-body); line-height: 120%; box-sizing:border-box;}
	.bbs_bottom dd a{text-overflow: ellipsis; -o-text-overflow: ellipsis; overflow: hidden; white-space: nowrap; word-wrap: normal !important; display: block;}


	.his_table {position:relative;}
	.his_table dl {display: flex; flex-wrap:wrap; padding:3px 0;}
	.his_table dt {font-size:1rem; width:100px; font-weight:600; color:var(--black);}
	.his_table dd {font-size:1rem; width:calc(100% - 100px);}
	.his_table dd.single {width:100%;}




/*******************************************************************************
    @media 1350px
*******************************************************************************/
@media all and (max-width:1350px){



}

/*******************************************************************************
    @media ~1280px
*******************************************************************************/
@media all and (max-width:1280px){

/*********** List *************/
.history_list {padding:80px 0 0;}
.history_list .his_in {padding:0 0 70px; }


}

/*******************************************************************************
    @media  ~980px              
*******************************************************************************/
@media all and (max-width:980px){

/*********** Top *************/
.history_top {height:480px;}


/*********** List *************/
.history_list {padding:60px 0 0;}
.history_list:before {left:10px;}
.history_list:after {width:7px; height:7px; left:10px; margin-left: -3px;}
.history_list .his_in {padding:0 0 60px;}
.history_list .his_in .his_txt h4 {width:100%; margin-bottom:20px; padding-left:50px;}
.history_list .his_in .his_txt h4::before {width:25px; height:4px; left:50px;}
.history_list .his_in .his_txt h4 form input[type=checkbox] {margin:0 12px 0 0; width:20px; height:20px;}
.history_list .his_in .his_txt .dot {width: 10px; height: 10px; right:auto; left: 5px; top:19px;}

.history_list .his_in .his_txt ul {width:calc(100% - 50px); margin:0;}
.history_list .his_in .his_txt ul li {padding:0 0 7px 0;}
.history_list .his_in .his_txt ul li strong {min-width:60px;}

.history_list .progressbar {left:10px; margin-left:-1px; width: 3px;}



}


/*******************************************************************************
    @media 481~680px
*******************************************************************************/
@media all and (max-width:680px){

/*********** Top *************/
.history_top {height:340px;}
.history_top .basic_in {text-align:center;}
.history_top h3 {font-size:2.525rem;}
.history_top p {padding:10px 0 0;}

/*********** List *************/
.history_list {padding:50px 0 0;}
.history_list:before {left:5px;}
.history_list:after {width:5px; height:5px; left:5px; margin-left: -2px;}
.history_list .his_in {padding:0 0 50px;}
.history_list .his_in .his_txt h4 {margin-bottom:15px; padding-left:40px;}
.history_list .his_in .his_txt h4::before {width:20px; height:3px; left:40px; }
.history_list .his_in .his_txt h4 form input[type=checkbox] {margin:0 10px 0 0; width:18px; height:18px;}
.history_list .his_in .his_txt .dot {right:auto; left:0px; top:15px;}

.history_list .his_in .his_txt ul {width:calc(100% - 40px); margin:0; padding-left:40px;}
.history_list .his_in .his_txt ul li {padding:0 0 4px 0;}
.history_list .his_in .his_txt ul li strong {margin-right:15px;}

.history_list .progressbar {left:5px; width: 2px;}

}


/*******************************************************************************
    @media 481~680px
*******************************************************************************/
@media all and (max-width:480px){

/*********** Top *************/
.history_top {height:260px; padding:0 3%;}
.history_top h3 {font-size:2.025rem;}


}