@charset "UTF-8";
body {
  word-break: normal;
}
th {
  font-size: 90%;
}

/*////  InfoSci  ////*/
.title2, .api_h2 {
  font-size: 1.8rem;
  line-height: 1.35;
}
/*outline1*/
.outline1_sec.sec3 ul li figure img {
    max-width: 85px;
}
/*outline3*/
.list5 {
  font-size: 1.5rem;
}
.list5 li:not(:last-child) {
    margin: 0 0 15px;
}
/*outline6*/
.career_wrap .top table th {
    font-size: 1.4rem;
}
	header.is_en.is_scroll .hd_logo a {
		padding: 15px 10px;
	}
.api_h2 {
	display: none;
}
.title2.mb0 {
	margin: 0;
}
@media screen and (min-width: 769px){
  .history_body {
    padding: 0;
  }
}

@media screen and (max-width: 1024px) {
	header.is_en .hd_logo a {
		padding: 15px 10px;
	}
}
@media screen and (max-width: 768px) {
  .history_head {
    width: 90%;
  }
}

/*////  Access  ////*/
.access .btns a {
  margin-bottom: 10px;
}


/*////  Laboratories////*/
.lab_type a {
    font-size: 1rem;

}
.pickup_list li:nth-child(1) .img .cover {
    background-image: url(../img/index/pickup1-en.jpg);
}
.pickup_list li:nth-child(2) .img .cover {
    background-image: url(../img/index/pickup2-en.jpg);
}
.pickup_list li:nth-child(3) .img .cover {
    background-image: url(../img/index/pickup3-en.jpg);
}
.pickup_list li:nth-child(4) .img .cover {
    background-image: url(../img/index/pickup4-en.jpg);
}


/*画像ポップアップ表示*/
.page_body .lb {
    display: flex;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,.7);
    opacity: 0;
    transition: .3s opacity ease;
    pointer-events: none;
    z-index: 100;
}

.page_body .lb img {
    width: auto !important;
    max-height: 100%!important;
    cursor: pointer;
}

.page_body .lb img,
.page_body .lb iframe {
    transform: scale(.85);
    transition: .3s all ease;
}

.page_body .lb:target {
    opacity: 1;
    pointer-events: auto;
    z-index: 101;
}

.page_body .lb:target img,
.page_body .lb:target iframe {
    transform: scale(1);
}

/* なんちゃって閉じるボタン*/
.page_body .lb::before,.lb::after {
    display: block;
    position: fixed;
    content: "";
    width: 24px;
    height:3px;
    top: 24px;
    right: 12px;
    background: #fff;
    border-radius: 4px;
}
.page_body .lb::before {
    transform: rotate(-315deg);
}
.page_body .lb::after {
    transform: rotate(315deg);
}
