@charset "UTF-8";
/* CSS Document */

/*----------------------------------

コンテンツ

----------------------------------*/
#main {
	background: #fff;
	color: #545454;
	padding-bottom: 0;
}
.col-type {
	padding-top: 75px;
    margin-top: -75px;
	margin-bottom: 7em;
	flex-wrap: wrap;
}
.col-type > .col-2 {
	padding: 2.5vw 2vw;
	background: #f6f6f6;
	margin-top: -3em;
}

.box-mb-2 {
  margin-bottom: -2em;
}
.col-3.box-mb-2 {
  justify-content: flex-start;
}
.col-3.box-mb-2 > div{
  margin-right: calc(.5% + 1.5em);
  margin-bottom: 2em;
}
.col-3.box-mb-2 div:nth-of-type(3n) {
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
.box-mb-2 {
  margin-bottom: 0;
}
}

.press {
    background: #eee;
    padding: .15em .5em;
    display: inline-block;
    color: #005bac;
  margin-top: .5em;
}
/* タブメニュー表示　*/
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
	justify-content: space-around;
	position: relative;
}
.tab-wrap .heading_tab {
	display: block;
	text-align: center;
	margin-bottom: 1.5em;
	font-weight: normal;
	padding-bottom: .75em;
	position: relative;
}
.tab-wrap .heading_tab::after {
	content: '';
	background: #005bac;
	display: block;
	width: 60px;
	height: 4px;
	position: absolute;
	bottom: 0;
	left: calc(50% - 30px);
}
.nav-tab,
.nav-down {
	background: #f6f6f6;
  font-weight: bold;
  text-align: center;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
/*　ドロップダウンタブ　*/
.nav-down {
	display: block;
  order: 0;
	text-align: left;
	padding: .75em 1em;
	border: 1px solid #ccc;
	margin-top: .5em;
	transition: all .25s cubic-bezier(.4,0,.2,1);
	}
.nav-down::before,
.nav-down::after {
	position: absolute;
	right: 1em;
	width: 1em;
	height: 2px;
	background: #333;
	content: "";
}
.nav-down::before {
	-webkit-transform: rotate(0deg);
	top: calc(50% - 1px);
	transform: rotate(0deg);
}
.nav-down::after {
	-webkit-transform: rotate(90deg);
	top: calc(50% - 1px);
	transform: rotate(90deg);
}
.tab-down:checked + .nav-down::after {
	display: none;
}
.tab-content,
.tab-down-content {
	background: #fff;
	width: 100%;
	height: 0;
	overflow: hidden;
	/* スクロールバー非表示　IE, Edge */
	-ms-overflow-style: none;
	/* スクロールバー非表示　Firefox */
	scrollbar-width: none;
	opacity: 0;
	position: relative;
}
/*スクロールバー非表示　Chrome, Safari */
.tab-content::-webkit-scrollbar,
.tab-down-content::-webkit-scrollbar {
    display:none;
  }
.tab-content > div {
	width: 100%;
	height: 0;
	overflow: hidden;
	opacity: 0;
}
.tab-down:checked + .nav-down + .tab-down-content {
  height: auto;
  overflow: auto;
  opacity: 1;
  transition: .6s opacity;
	padding: 1em;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	}

.tab-down:checked + .nav-down + .tab-down-content > div {
	width: 100%;
	height: auto;
	overflow: auto;
	opacity: 1;
  transition: .6s;
	transform: translate(0);
	}

/* ラジオボタン非表示 */
.tab-switch,
.tab-switch-sp,
.tab-down {
  display: none;
}
.container .tab-content p {
	margin-bottom: .5em;
}
@media only screen and (min-width: 768px) {
/* タブメニュー表示　*/
.tab-wrap {
	background: #f6f6f6;
	padding: 1em;
}
.nav-tab {
	padding: 1em 0;
	font-size: 1.6rem;
	border-left: 1px solid #ccc;
}
.nav-tab:nth-last-of-type(2){
	border-right: 1px solid #ccc;
}
.tab-content::before {
	content: '';
	border-bottom: 1px solid #ccc;
	width: 100%;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
}
.tab-content::after {
	content: '';
	border-bottom: 1px solid #ccc;
	width: 100%;
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
}
.tab-content > div {
	transform: translateX(100%);
}
.tab-switch-sp,
.tab-switch-sp+.nav-tab
  {display:none;}
/* アクティブなタブ */
.tab-switch:checked + .nav-tab,
.nav-tab:hover {
  background: #333;
	color: #fff;
	font-weight: bold;
  transition: .25s;
}
.tab-down:checked + .nav-down,
.nav-down:hover {
  background: #333;
	color: #fff;
	font-weight: bold;
  transition: .25s;
}
.tab-down:checked + .nav-down::before,
.nav-down:hover::before,
.nav-down:hover::after {
	background: #fff;
}
.tab-switch:checked + .nav-tab + .tab-switch-sp + .nav-tab + .tab-content {
	width: 100%;
  height: auto;
  overflow: auto;
  opacity: 1;
  padding: 2.5em 1.5em;
	}
.tab-switch:checked + .nav-tab + .tab-switch-sp + .nav-tab + .tab-content > div {
	width: 100%;
	height: auto;
/*	overflow: auto;*/
	opacity: 1;
  transition: .6s;
	transform: translate(0);
	}
.tab-content > div > dl {
	width: calc(50% - 1em);
}

}
@media only screen and (max-width: 767px) {
  #main > .container:last-child {
		padding-bottom: 130px!important;
	}
	.col-type {
	padding-top: 56px;
    margin-top: -56px;
	margin-bottom: 3em;
}
.col-type > .col-2 {
	padding: 1em /*1em 0*/;
	background: #f6f6f6;
	margin-top: -1.8em;
}
.img_wrap {
  display: table;
  margin: 0 auto;
}

/* タブメニュー表示　*/
.tab-switch,
.tab-switch+.nav-tab {display:none;}
.tab-wrap {
  flex-direction: column;
}
.nav-tab {
  order: 0;
	text-align: left;
	padding: .75em 1em;
	border: 1px solid #ccc;
	margin-top: .5em;
	transition: all .25s;
	}
.nav-tab::before,
.nav-tab::after {
	position: absolute;
	right: 1em;
	width: 1em;
	height: 2px;
	background: #333;
	content: "";
}
.nav-tab::before {
	-webkit-transform: rotate(0deg);
	top: calc(50% - 1px);
	transform: rotate(0deg);
}
.nav-tab::after {
	-webkit-transform: rotate(90deg);
	top: calc(50% - 1px);
	transform: rotate(90deg);
}
/* アクティブなタブ */
.tab-switch-sp + .nav-tab:active,
.tab-switch-sp:checked + .nav-tab {
  background: #333;
	color: #fff;
}
.tab-switch-sp + .nav-tab:active::before,
.tab-switch-sp + .nav-tab:active::after,
.tab-switch-sp:checked + .nav-tab::before {
	background: #fff;
}
.tab-switch-sp:checked + .nav-tab::after {
	display: none;
}
.tab-down:checked + .nav-down,
.nav-down:active {
  background: #333;
	color: #fff;
	font-weight: bold;
  transition: .25s;
}
.tab-down:checked + .nav-down::before,
.nav-down:active::before,
.nav-down:active::after {
	background: #fff;
}
.tab-switch-sp:checked + .nav-tab + .tab-content {
  height: auto;
  overflow: auto;
  opacity: 1;
  transition: .6s opacity;
	padding: 1em;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
.tab-switch-sp:checked + .nav-tab + .tab-content > div {
	width: 100%;
	height: auto;
	overflow: auto;
	opacity: 1;
  transition: .6s;
	transform: translate(0);
	}
}

/*----------------------------------

高機能フィルム

----------------------------------*/
.tab-wrap.film01 dt {
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: .5em;
}
.tab-wrap.film01 dd {
	margin-left: .5em;
}
.tab-wrap.film01 dd:nth-of-type(odd) p {
	margin-bottom: .25em !important;
	padding-left: 1em;
	position: relative;
}
.tab-wrap.film01 dd:nth-of-type(odd) p::before {
	content: '';
	border-radius: 50%;
	width: .5em;
	height: .5em;
	display: inline-block;
	background: #666;
	position: absolute;
	top: .5em;
	left: 0;
}
.tab-wrap.film01 dd:nth-of-type(even):not(:last-of-type){
	margin-bottom: 2em;
}
.table-film,
.table-film02 {
	width: 100%;
}
.table-film th,
.table-film02 th {
	background: #666;
	color: #fff;
	font-weight: bold;
}
.table-film th,
.table-film td,
.table-film02 th,
.table-film02 td {
	border: 1px solid #ccc;
	padding: .75em;
}
.table-film tbody > tr:last-of-type > th:first-of-type,
.table-film02 tbody > tr:last-of-type > th:first-of-type {
/*  border-bottom: 1px solid #005bac;*/
}
.table-film tbody > tr:last-of-type > th:first-of-type.th-gray01,
.table-film02 tbody > tr:last-of-type > th:first-of-type.th-gray01 {
/*  border-bottom: 1px solid #ccc;*/
}
th.th-gray01 {
  color: #545454;
  background: #d9d9d9 !important;
}
.table-film.td-white td {
  background-color: #fff !important;
}

.epoxy-table.borders th, .epoxy-table.borders td {
    border: 1px solid #ccc;
}

.table-film td.td-gray01 {
  background-color: #f6f6f6 !important;
}

.table-film td.td-lightblue{
	background-color: #eaf5ff !important;
}
ol.film-counter {
	font-size: 1.3rem;
}
ol.film-counter li {
	counter-increment: cnt;
	position: relative;
	padding-left: 2em;
}
ol.film-counter li:before {
	position: absolute;
	left: 0;
    content: "※" counter(cnt) " ";
}
.table-film:not(.table-topix):not(.product) tbody td:nth-of-type(even),
.table-film02:not(.table-topix):not(.product) tbody td:nth-of-type(even) {
	background: #f6f6f6;
}
.development {
	display: inline-block;
    padding: .5em 1.5em;
    background: #005bac;
    color: #fff;
    font-size: 1.3rem;
    font-style: normal;
    position: relative;
	margin-left: 1em;
	line-height: 1;
}
.development:before {
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-top: 2em solid #000;
    border-right: .5em solid transparent;
}
.development:after {
	content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    border-bottom: 2em solid #000;
    border-left: .5em solid transparent;
}
@media only screen and (min-width: 768px) {
.film01 .nav-tab {
	width: calc(100% / 5);
}
.film02 .nav-tab {
	width: calc(100% / 6);
	padding: .75em 0 .5em;
	font-size: calc(1.2rem + ((1vw - (768 / 100 * 0.1rem)) * 100 * (16 - 12) / (1200 - 768)));
}
	/* IE調整用 */
_:-ms-input-placeholder, :root .film01 .nav-tab {
	width: 20%;
}
_:-ms-input-placeholder, :root .film02 .nav-tab {
	width: 14.285%;
}
.tab-wrap.film02 .tab-switch + .nav-tab {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.tab-wrap.film02 .tab-switch + .nav-tab img {
	width: 25% !important;
	margin: 0 2px .5em;
}

}

@media only screen and (min-width: 1200px) {
.film02 .nav-tab {
	font-size: 1.6rem;
}
}

@media only screen and (max-width: 767px) {
.tab-wrap.film02 .tab-switch-sp + .nav-tab {
	display: flex;
}
.tab-wrap.film02 .tab-switch-sp + .nav-tab span {
	width: 5em;
	}
.tab-wrap.film02 .tab-switch-sp + .nav-tab img {
	width: 2em !important;
	margin-right: 2px;
}
.table-film {
	width: 1000px;
}
.table-film02 {
	max-width: 1000px;
}
.table-film th:nth-of-type(5) ,
.table-film02 th:nth-of-type(5) {
    padding: .75em;
}
ol.film-counter {
	font-size: 1.2rem;
}

}

/*----------------------------------

高機能フィルム　製品ページ

----------------------------------*/
.list-function {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1em;
}
.list-function li {
  border-radius: 4px;
  padding: .5em 1em;
  margin-right: 1em;
  margin-bottom: 1em;
  font-size: 1.3rem;
  line-height: 1;
  background: #eee;
  color: #545454;
  font-weight: bold;
}
.col-feature {
  background: #f6f6f6;
  padding: 2em;
  margin-bottom: 2em;
/*  display: flex;*/
}
.list-feature li {
    position: relative;
    padding-left: 1em;
}
.list-feature li:not(:last-child) {
  margin: 0 0 .5em;
}
.list-feature li::before {
    content: "";
    display: block;
    position: absolute;
    top: .5em;
    left: 0;
    width: .75em;
    height: .75em;
    border-radius: 50%;
    background: #999;
}
.col-film-product {
  display: flex;
  justify-content: center;
}
.heading-film-product {
	font-weight: bold;
	margin-bottom: .5em;
	padding-left: .5em;
	border-left: .25em solid #bbb;
}
.col-film-product > figure,
.col-film-product > div {
  flex-basis: 30%;
  margin: 0 1.5%;
}
.table-film.product,
.table-film02.product {
  text-align: center;
}
@media only screen and (max-width: 767px) {
.list-function li {
  font-size: 1.1rem;
}
.col-feature {
  padding: 1em;
}
.col-film-product {
  display: block;
}
.col-film-product > figure,
.col-film-product > div	{
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.col-film-product > figure:not(:last-child),
.col-film-product > div:not(:last-child) {
  margin-bottom: 2em;
}
}

/* さらさら触感AGフィルム */
.products-mark,
.products-mark2 {
	display: flex;
	border: 1px solid #ccc;
	padding: 1em;
	width: 50%;
	min-width: 480px;
	justify-content: space-between;
	align-items: center;
}
.products-mark .img-mark {
	width: 100px;
}
.products-mark .text-mark {
	width: calc(100% - 120px);
}
.products-mark2 .img-mark {
	width: 140px;
}
.products-mark2 .text-mark {
	width: calc(100% - 160px);
}
@media only screen and (max-width: 767px) {
.products-mark,
.products-mark2 {
	width: 100%;
	min-width: inherit;
	padding: .75em;
	}
.products-mark .img-mark {
	width: 80px;
}
.products-mark .text-mark {
	width: calc(100% - 90px);
}
.products-mark2 .img-mark {
	width: 120px;
}
.products-mark2 .text-mark {
	width: calc(100% - 130px);
}
}

/*----------------------------------

オプトセンサグリープ

----------------------------------*/
.anc-link-wrap {
  padding-top: 110px;
  margin-top: -110px;
}
.anc-link-wrap.wrap-section2 {
  padding-top: 170px;
  margin-top: -110px;
}
.anc-link-wrap.wrap-section3 {
  padding-top: 150px;
  margin-top: -110px;
}

.list-opt {
  display:flex;
  flex-wrap: wrap;
  margin-bottom: -2em;
}
.list-opt li {
  width: calc((100% - 4.5em) / 4);
  margin-bottom: 2em;
}
.wrap-modal {
  position: fixed;
  background: rgb(0, 0, 0, .8);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  display: none;
  width: 100%;
  height: 100%;
}
.modal-inner {
  margin: auto 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  justify-content: space-between;
}
.modal-inner > section {
  overflow-y: auto;
  padding: 5%;
  max-height: calc(100dvh - 7em);
}
.list-opt .wrap-modal h4 {
  color: #0000ff;
  font-size: 2.4rem;
  margin-bottom: .5em;
}
.modal-close {
  display: block;
  width: 2.5em;
  height: 2.5em;
	top: -3em;
  right: 0;
  z-index:10;
  position: absolute;
  }
.modal-close:before,
.modal-close:after  {
  content: "";
  position: absolute;
  display: block;
  background-color: #fff;
  padding-right: 0;
  width: 100%;
  height: 2px;
  top: 50%;
  border: none;
  bottom: auto;
}
.modal-close:before {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.modal-close:after {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

@media only screen and (min-width: 768px) {
.list-opt li:not(:nth-child(4n)) {
  margin-right: 1.5em;
  }
  .modal-inner {
  max-width: 800px;
  width: 90%;
  }
.modal-inner > section {
  display: flex;
  justify-content: space-between;
  }
.modal-inner > section > div,
.modal-inner > section > figure {
  width: 48%;
}
}

.th-col2  > figure {
  display: inline-block;
  width: 80px;
}
.th-col2  > p {
  text-align: center;
  margin-top: 1rem;
}


.link-opt {
  width: 100%;
  max-width: 800px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: auto;
}
.link-opt li {
  width: 31%;
}
.list-opt li figure,
.link-opt li figure {
  overflow: hidden;
  position: relative;
}
.list-opt li button:not(.modal-close) {
  background: #005bac;
  border: 1px solid #005bac;
  display: flex;
  flex-direction: column;
  color: #fff;
  height: 100%;
}
.link-opt li a {
  text-align: center;
  border: 1px solid #005bac;
  background: #005bac;
  color: #fff;
  display: block;
}
.list-opt li button:not(.modal-close) > *:last-child,
.link-opt li a p {
  text-align: center;
  padding: .5em;
  position: relative;
  margin: auto;
}
.list-opt button:not(.modal-close):hover,
.link-opt li a:hover {
  background: #000;
  border: 1px solid #000;
}
.list-opt button:not(.modal-close):hover img,
.link-opt li a:hover img {
  transform: scale(1.2,1.2);
  opacity: 1;
  transition: all 0.3s ease;
}
.link-opt li a p::after {
  display: inline-block;
  margin-left: .5em;
  content: "";
  vertical-align: middle;
  width: .5em;
  height: .5em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.col-opt-flow {
	background: #eff5fb;
	display: flex;
	flex-wrap: wrap;
	padding: 2vw;
	margin-top: 3em;
}

@media only screen and (max-width: 767px) {
.link-opt li {
  width: calc(50% - .5em);
  font-size: 1.4rem;
}
.link-opt li:not(:last-of-type) {
  margin-bottom: 2em;
}
.list-opt li {
  width: calc(50% - .5em);
  font-size: 1.4rem;
}
.list-opt li:not(:nth-child(2n)) {
  margin-right: 1em;
}
.wrap-modal {
  position: fixed;
}
.modal-inner {
width: calc(100% - 2em);
max-width: 400px;
max-height: calc(100dvh - 7em);
}
.modal-inner > section > figure {
  margin-top: 1.5em;
}
.col-opt-flow {
  padding: 1em;
}
}
.opt-news ul {
	border-top: 1px solid #ccc;
}
.opt-news ul > li {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid #ccc;
	padding: 1em;
	font-size: 1.6rem;
}
.opt-news .day {
	flex-basis: 14em;
}
.opt-news .text-news,
.opt-news li > a {
	flex-basis: calc(100% - 15em);
}
.opt-news li > a > .text-news {
  flex-basis: 100%;
}
.opt-news li > a {
	color: #005bac;
	display: block;
}
.opt-news li > a:hover {
	text-decoration: underline;
}
.opt-news .font-b {
	font-weight: bold;
}
@media only screen and (max-width: 767px) {
.opt-news ul {
  margin-bottom: 30px;
}
.opt-news ul > li {
  padding: .5em 0;
  font-size: 1.4rem;
}
.opt-news .day {
	flex-basis: 100%;
	padding: .5em 0 0;
}
.opt-news .text-news,
.opt-news li > a {
	flex-basis: 100%;
	padding: .5em 0;
}
}
/*　オプティカルレンズ　機能一覧
----------------------------------*/
.function02_02.col-4-2 {
  background: #eff5fb;
  padding: 1em;
}
.col-4-2 > * {
	width: calc(25% - 1em);
}
@media only screen and (max-width: 767px) {
.solution_exam_box {
  margin-bottom: 4em;
}
.function02_02.col-4-2 {
  padding-bottom: 0;
}
.function02_02.col-4-2 > * {
	width: calc(50% - .5em);
  margin-bottom: 1em;
  }
}


/*----------------------------------

銀ナノインク

----------------------------------*/
.col-type > div {
    padding: 2.5vw 2vw;
    background: #f6f6f6;
    margin-top: -3em;
}
.col-type.silver .col-wrap-white {
	background: #fff;
	padding: 2em;
}
.img_wrap-silver {
	margin-bottom: 2em;
}
.max-w160 {
	max-width: 160px;
}
.max-w180 {
	max-width: 180px;
}
.max-w240 {
	max-width: 240px;
}
.max-w320 {
	max-width: 320px;
}
.max-w440 {
	max-width: 440px;
}
.max-w660 {
	max-width: 660px;
}
.max-w700 {
	max-width: 700px;
}
.max-w780 {
	max-width: 780px;
}
.max-w800 {
	max-width: 800px;
}
.container-inner .max-w780.mb-1{
	margin: auto;
}
.container-inner .table-wrap.mb-2 caption{
	margin-top: 10px;
	caption-side: bottom;
	font-size: 1.4rem;
}
.table-wrap .col-item {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: .5em;
}
.table-wrap .col-item p {
	width: 6em;
  margin-bottom: 0 !important;
}
.table-wrap .col-item figure {
	width: 100px;
	max-width: 120px;
}
@media (max-width: 959px) {
  .table-wrap .col-item {
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) {
.sp-max-w280 {
	max-width: 280px;
}
.sp-max-w320 {
	max-width: 320px;
}
.sp-max-w400 {
	max-width: 400px;
}
#main .container .container-inner .col-4.mb-3 .link-btn-l{
	margin-bottom: 1.5em;
}
.list-silver {
	padding: .75em;
}
.list-silver li {
	width: 50%;
	margin-right: 0 !important;
}
.col-type.silver .col-wrap-white {
	padding: 1em;
}
.img_wrap-silver {
	margin-bottom: 1em;
}
.col-type > div {
	padding: 1em;
	background: #f6f6f6;
	margin-top: -1.8em;
	}
.table-Picosil {
    width: 1000px;
}
}

/* 伴走サービス */
.silver2-service  {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ccc;
  padding: 1.5em;
}
.silver2-service > li {
  width: calc((100% - 3em) / 4);
}
.silver2-service > li:not(:nth-child(4n)) {
  margin-right: 1em;
}
@media (max-width: 767px) {
.silver2-service  {
  padding: 1em 1em .5em;
  }
.silver2-service > li {
  width: auto;
}
  .silver2-service > li {
  margin-right: 1em;
}
}

/* Picosil®の用途事例　*/

.rotate-90 {
    transform: rotate(90deg);
    display: inline-block;
}
.col-2 .col-element-3{
	width: calc(30% - 1em);
}
.col-2 .col-element-4{
	width: calc(40% - 1em);
}
.col-2 .col-element-6{
	width: calc(60% - 1em);
}
.col-2 .col-element-7{
	width: calc(70% - 1em);
}
.movie {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}
.movie iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 767px) {
.col-2 .col-element-3,
.col-2 .col-element-4,
.col-2 .col-element-6,
.col-2 .col-element-7 {
	width: 100%;
}
}

/* 銀ナノ粒子の紹介 */
.type-introduction {
	font-size: 1.8rem;
	font-weight: bold;
	display: flex;
	align-items: flex-end;
	margin-bottom: .5em !important;
}
.type-introduction span {
	font-size: 1.3rem;
	font-weight: normal;
	margin-left: 1em;
}
@media only screen and (max-width: 767px) {
.type-introduction {
	font-size: 1.6rem;
}
.type-introduction span {
	font-size: 1.2rem;
}
}
/* 銀ナノ粒子の使用例 */

.table-wrap.example .img-ink {
	width: 40%;
	margin: 0 auto .5em;
}
.table-wrap.example .img-ink2 {
	max-width: 250px;
	margin: 0 auto;
}
.type-example {
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: .5em;
}
.example-arrow {
	background: linear-gradient(90deg, rgba(0,91,172,1) 0%, rgba(0,0,0,1) 100%);
}
.example-arrow figure {
	width: 90%;
	max-width: 800px;
	margin: auto;
}
@media only screen and (max-width: 767px) {
.table-wrap.example .img-ink2 {
	max-width: 200px;
}
.type-example {
	font-size: 1.6rem;
}
.example-arrow figure {
	max-width: 600px;
	}
}

/* 銀ナノインクの特徴 */
.list-5feature {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.list-5feature li {
	display: flex;
	flex-direction: column;
	flex-basis: 48%;
}
.list-5feature li:not(:last-child) {
	margin-bottom: 1.5em;
}
.list-5feature li span:first-child {
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	background: #edf4fb;
	color: #005bac;
	padding: .4em;
	margin-bottom: .4em;
}
.list-5feature li span:last-child {
}
.table-wrap.feature {
	text-align: center;
}

.table-wrap.feature .col-item {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: .5em;
}
.table-wrap.feature .col-item p {
	width: 8em;
}
.table-wrap.feature .col-item figure {
	width: calc(100% - 9em);
	max-width: 120px;
}
.table-wrap.feature .font-s {
	display: block;
}
@media only screen and (max-width: 959px) {
.table-wrap.feature .col-item {
	flex-direction: column-reverse;
}
.table-wrap.feature .col-item figure {
	width:100%;
	margin-bottom: .5em;
}
}
@media only screen and (max-width: 767px) {
.list-5feature li {
	flex-basis: 100%;
	margin-bottom: 1.5em;
}
.list-5feature li span:first-child {
	font-size: 1.6rem;
}
}
/* 各インクの詳細共通 */
.col-viscosity-data {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.mt-viscosity {
	margin-top: 60px;
}
.col-viscosity-data > .unit-3-1 {
	width: 240px;
}
.col-viscosity-data > .unit-3-2 {
	width: calc(96% - 240px);
}
.col-viscosity-data th,
.col-viscosity-data td {
	width: calc(100% / 3);
	text-align: center;
	line-height: 1.4;
}
@media only screen and (max-width: 767px) {
.col-viscosity-data {
	display: block;
	}
.mt-viscosity {
	margin-top: 30px;
}
.col-viscosity-data > .unit-3-1 {
	width: 200px;
	margin: auto;
}
	.col-viscosity-data > .unit-3-2 {
		width: 100%;
		margin-top: 2em;
	}
table.viscosity thead {
	display: none;
}
table.viscosity tbody tr {
	display: flex;
	flex-direction: column;
}
table.viscosity td {
	padding: 0 0 2em 0;
	border: none;
}
table.viscosity td:before {
	content: attr(data-label);
	font-size: 1.6rem;
	font-weight: bold;
	margin-bottom: 1em;
	background: #f6f6f6;
	padding: .5em;
	display: block;
	text-align: center;
}
	table.viscosity .max-w240 {
		max-width: 65%;
	}
}

/*----------------------------------

電子材料向け溶剤

----------------------------------*/
.arrow-left01{
	position: relative;
	display: inline-block;
	padding: 0 0 0 2.2em;
}
.arrow-left01::before{
  content: "";
  position: absolute;
  top: 0;
	bottom: 0;
	left: 1em;
	box-sizing: border-box;
	width: .8em;
	height: .8em;
	border: .8em solid transparent;
	border-left: 1em solid #9bbb5a;
  vertical-align: middle;
  margin: auto;
}
.arrow-left01::after{
  content: "";
  position: absolute;
  top: 0;
	bottom: 0;
	left: 0;
	width: 1em;
	height: .8em;
	border-left: 1em solid #9bbb5a;
  vertical-align: middle;
  margin: auto;
}
.arrow-left02{
	position: relative;
	display: inline-block;
	padding: 0 0 0 2em;
}
.arrow-left02::before{
  content: "";
  position: absolute;
  top: 0;
	bottom: 0;
	left: .7em;
	box-sizing: border-box;
	width: .7em;
	height: .7em;
	border: .6em solid transparent;
	border-left: .8em solid #9bbb5a;
  vertical-align: middle;
  margin: auto;
}
.arrow-left02::after{
  content: "";
  position: absolute;
  top: 0;
	bottom: 0;
	left: 0;
	width: 1em;
	height: .5em;
	border-left: .8em solid #9bbb5a;
  vertical-align: middle;
  margin: auto;
}
.arrow-left03{
	position: relative;
	display: inline-block;
	padding: 0 0 0 3em;
}
.arrow-left03::before{
  content: "";
  position: absolute;
  top: 0;
	bottom: 0;
	left: 1.5em;
	box-sizing: border-box;
	width: .7em;
	height: .7em;
	border: .6em solid transparent;
	border-left: .8em solid #9bbb5a;
  vertical-align: middle;
  margin: auto;
}
.arrow-left03::after{
  content: "";
  position: absolute;
  top: 0;
	bottom: 0;
	left: 0;
	width: 1.6em;
	height: .5em;
	border-left: 1.6em solid #9bbb5a;
  vertical-align: middle;
  margin: auto;
}
.arrow-bottom01 {
  border: 2px solid #0000ff;
  padding: 0.25em 0.5em;
  position: relative;
  margin-bottom: 1.2em !important;
}
.arrow-bottom01::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-left: 1em solid transparent;
  border-right: 1em solid transparent;
  border-top: 1.2em solid #0000ff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1.2em;
}
@media only screen and (max-width: 767px) {
  
}

/*----------------------------------

電子材料向け溶剤

----------------------------------*/
.list-celthor {
/*	width: 1200px;*/
	width: 1110px;
}
.list-celthor th,
.list-celthor td {
	text-align: center;
	font-size: 11px;
	padding: 0 1px;
}
.list-celthor th:not(:last-child),
.list-celthor td:not(:last-child) {
	border-right: 1px solid #bbb;
	text-align: center;
	font-size: 11px;
	padding: .5em 1px;
}
.list-celthor th {
	background: #666;
	color: #fff;
}
.list-celthor td {
	color: #545454;
}
.list-celthor tr:nth-child(even) td {
	background: #f6f6f6;
}
.list-celthor tr:nth-child(odd) td {
	background: #e3e3e3;
}
.list-celthor th:nth-child(1) {
	width: 64px;
}
.list-celthor th:nth-child(2) {
	width: 170px;
}
.list-celthor th:nth-child(3) {
	width: 120px;
}
/*
.list-celthor th:nth-child(4) {
	width: 90px;
}
*/
.list-celthor th:nth-child(4) {
	width: 90px;
}
.list-celthor th:nth-child(5) {
	width: 50px;
}
.list-celthor th:nth-child(6) {
	width: 56px;
}
.list-celthor th:nth-child(7) {
	width: 64px;
}
.list-celthor th:nth-child(8) {
	width: 85px;
}
.list-celthor th:nth-child(9) {
	width: 50px;
}
.list-celthor th:nth-child(10) {
	width: 50px;
}
.list-celthor th:nth-child(11) {
	width: 170px;
}
.list-celthor th:nth-child(12) {
	width: 66px;
}
.list-celthor th:nth-child(13) {
	width: 45px;
}
.list-celthor th:nth-child(14) {
	width: 45px;
}
.list-celthor img {
	max-width: 110px;
	width: auto !important;
	height: auto;
	margin: 5px 2px;
}
.list-celthor td.example {
    text-align: left;
}
.list-celthor td.example li {
    position: relative;
	padding-left: 1em;
	margin-left: .5em;
}
.list-celthor td.example li:before {
	content:"";
    position: absolute;
	display: block;
	left: 0;
	top: .45em;
    width: 6px;
    height: 6px;
	background: #545454;
	moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-o-border-radius: 3px;
	-ms-border-radius: 3px; 
	border-radius: 3px;
	
}
.list-celthor-2 {
	display: flex;
	flex-wrap: wrap;
	font-size: 12px;
	text-align: center;
}
.list-celthor-2 dt {
	width: 100%;
	background: #666;
	color: #fff;
	padding: .25em;
}
.list-celthor-2 dd {
	width: calc(100% / 8);
	background: #eee;
	color: #545454;
	padding: .25em;
	border-left: 1px solid #999;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.list-celthor-2 img {
	max-height: 30px;
}
.list-celthor-2 dd:nth-of-type(8n) {
	border-right: 1px solid #999;
}
.list-celthor-2 th,
.list-celthor-2 td {
	border: 1px solid #999;
	text-align: left;
	font-size: 10px;
	padding: 0 1px;
}
.celthor-2col-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.celthor-2col-box p {
  width: calc(96% - 350px);
}
.celthor-2col-box figure {
  max-width: 350px;
}
.list-flex {
  display: flex;
}
.img_wrap02 {
  display: table;
  margin: 0 auto;
  max-width: 600px;
}
@media only screen and (max-width: 767px) {
.celthor-2col-box {
  flex-direction: column;
}
.celthor-2col-box p {
  width: 100%;
}
.celthor-2col-box figure {
  margin: auto;
}
.list-flex,
.list-flex span {
  display: block;
}
}


/*----------------------------------

レジストポリマー

----------------------------------*/
.electronic ul.col-2 {
	width: 100%;
	text-align: center;
	border-right: 1px solid #ccc;
}
.electronic ul.col-2 li{
	background: #333;
	color: #fff;
	font-weight: bold;
	font-size: 1.6rem;
	border-left: 1px solid #ccc;
	width: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
}
.electronic ul.col-2 li a {
	background: #f6f6f6;
	color: #333;
	padding: 1em 0;
	width: 100%;
}
.electronic .tab-content {
	padding: 2.5em 1.5em;
}
.electronic .tab-content,
.electronic .tab-content > div {
	height: auto;
	opacity: 1;
	transform: translateX(0);
}
.electronic .tab-content figure img {
	border: 1px solid #ccc;
	padding: 2vw;
	display: inline-flex;
}
.electronic .tab-content > div.col-scroll {
	    overflow-x: auto;
}
.table-electronic {
	width: 100%;
}
.table-electronic th,
.table-electronic td {
	border: 1px solid #ccc;
	padding: .75em;
}
.table-electronic th {
	background: #666;
	color: #fff;
	font-weight: bold;
}
.table-electronic > thead > tr > th {
    width: calc(100% / 6);
}
@media only screen and (min-width: 768px){
.electronic ul.col-2 li a:hover {
	background: #333;
	color: #fff;
}
.electronic .col-2 > div {
	width: calc(60% - 1em);
	}
.electronic .tab-content figure {
	width: calc(40% - 1em);
	}
}

@media only screen and (max-width: 767px){
.electronic ul.col-2 {
	border-bottom: 1px solid #ccc;
	flex-direction: row;
}
.electronic ul.col-2 li a:active {
	background: #333;
	color: #fff;
}
.electronic .tab-content {
    padding: 1em;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.table-electronic {
	width: 800px;
}
}
/*----------------------------------

カプラクトン誘導体

----------------------------------*/
/*TOP*/
.list-1em > li {
  position: relative;
  padding-left: 1.2em;
}
.list-1em > li > span {
  position: absolute;
  left: 0;
}
.capro-features {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.capro-features section {
  width: 47%;
  background: #eaf5ff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.3em 2em 2em;
  margin-bottom: 4em;
}
.capro-features section h4 {
  font-size: 2rem;
  font-weight: bold;
  color: #0000ff;
  text-align: center;
  margin-bottom: .5em;
}
.praxel_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.praxel_list section {
  width: 47%;
  background: #f6f6f6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.3em 2em 2em;
  margin-bottom: 4em;
}
.praxel_list section h4 {
  margin-bottom: .5em;
}

@media only screen and (max-width: 767px){
.capro-features section {
  width: 100%;
  padding: 1.2em 1.5em 2em;
  margin-bottom: 2em;
}
.capro-features section figure {
  max-width: 500px;
}
.praxel_list section {
  width: 100%;
  padding: 1.2em 1.5em 2em;
  margin-bottom: 2em;
}
}

/*製品一覧*/

@media only screen and (max-width: 767px){
.caprolactone-sp-width01 {
  width: 20% !important;
}
}

/*----------------------------------

エポキシ樹脂

----------------------------------*/
/*共通*/
.list-dot.list-blue li::before {
  background: #005bac;
}

.blue-text{
	color: #0000ff;
}
/*table 共通*/
.epoxy-table tbody th {
  background: #005bac;
}
.epoxy-table th a {
  border-bottom: 1px solid #fff;
  padding-bottom: .2em;
}
.epoxy-table th a:hover {
  border-bottom: none;
}
.epoxy-table th,
.epoxy-table td {
  font-size: 1.4rem;
  padding: .5em;
  border-right: none;
  border-left: none;
}
.epoxy-table tr td:last-of-type {
  /*padding-right: 0;*/
}
.epoxy-table .list-dot li::before {
  width: .4em;
  height: .4em;
  top: .6em;
  background: #005bac;
}

/*table 製品紹介*/
.epoxy-table-list th,
.epoxy-table-list td {
  font-size: 1.4rem;
  padding: .5em;
}
.epoxy-table-f-s {
  font-size: 1.2rem;
  line-height: 1.5;
  display: inline-block;
}
.epoxy-table-f-ss {
  font-size: 1rem;
  line-height: 1.5;
  display: inline-block;
}
.epoxy-table-list figcaption {
  font-size: 1rem !important;
}

@media only screen and (max-width: 767px){
.epoxy-table tr th:first-of-type,
.epoxy-table-list tr > th:first-of-type {
  position: sticky;
  left: 0;
  z-index: 1;
}
}

/*TOP*/
.epoxy-top-col2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.epoxy-top-col2 section {
  width: 48%;
  background: #eaf5ff;
  padding: 1.5em 1.5em 2em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media only screen and (max-width: 767px){
.epoxy-top-col2 section {
  width: 100%;
  padding: 1.5em;
}
}

/*個別ページ*/
.epoxy-heading-2_wrap {
  background: #eaf5ff;
  padding: 2em;
  margin-bottom: 2em;
}
.epoxy-heading-2 {
  font-size: 4.5rem;
  font-weight: bold;
  color: #262626;
  margin-bottom: .75em;
  line-height: 1.4;
}
.epoxy-heading-2 > span {
  display: block;
}
.epoxy-heading-2-sub1 {
  font-size: 1.6rem;
  color: #005bac;
  margin-bottom: .25em;
}
.epoxy-heading-2-sub2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #7f7f7f;
  margin-top: .25em;
}
.epoxy-col2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 5em 0 2em;
}
.epoxy-inner {
  width: 46%;
}
.epoxy-inner .heading-3 {
  color: #005bac;
}
.epoxy-box01 {
  margin-bottom: 3em;
}
.epoxy-box01 > .list-dot li::before {
  width: .4em;
  height: .4em;
  top: .6em;
}
.epoxy-specification {
  width: 100%;
}
.epoxy-specification tr {
  border-bottom: 1px solid #ccc;
}
.epoxy-specification tr:first-of-type {
  border-top: 1px solid #ccc;
}
.epoxy-specification th {
  width: 9em;
  background: #e3e3e3;
  padding: .7em .5em;
}
.epoxy-specification td {
  width: calc(100% - 9em);
  padding: .7em .5em .7em 1.2em;
}
.epoxy-specification figure.structure {
  width: 100%;
  max-width: 240px;
  margin: auto;
}
@media only screen and (min-width: 768px){
  
}
@media only screen and (max-width: 767px){
.epoxy-heading-2_wrap {
  padding: 1em;
}
.epoxy-heading-2 {
  font-size: 2.6rem;
  margin-bottom: .75em;
}
.epoxy-heading-2-sub1 {
  font-size: 1.2rem;
}
.epoxy-heading-2-sub2 {
  font-size: 1.4rem;
}
.epoxy-col2 {
  margin: 3em 0 2em;
}
.epoxy-inner {
  width: 100%;
}
}

/*----------------------------------

ダウンロード

----------------------------------*/

.dl-btn a {
	display: inline-block;
	text-align: center;
	padding: .3em .5em;
	min-width: 110px;
	font-weight: bold;
	background-color: #fff;
	border:1px solid #005bac;
	color: #005bac;
	position: relative;
	vertical-align: middle;
	overflow: hidden;
	z-index: 0;
	box-sizing: border-box;
	border-radius: .25em;
	width: 100%;
}
.dl-btn a::after {
	width: 100%;
	height: 0;
	left: 0;
	bottom: 0;
	transition-duration: 0.3s;
	transform-origin: bottom left;
	box-sizing: border-box;
	background-color: #005bac;
	content: '';
	position: absolute;
	z-index: -1;
}
.dl-btn a:hover {
	color: #fff;
}
.dl-btn a:hover::after {
    height: 100%;
    width: 100%;
}
.container-download .tab-down:checked + .nav-down + .tab-down-content {
	height: auto;
	overflow: auto;
	opacity: 1;
	transition: .6s opacity;
	padding: 0;
	border-left: none;
	border-right: none;
	border-bottom: none;
	margin-bottom: 2.5em;
	}
.container-download .container-inner > label{
	margin-top: 1em;
}
.container-download .container-inner > label:first-of-type{
	margin-top: 0;
}
.container-download .link-btn-l a,
.container-download .link-btn-w a {
	width: 30%;
	min-width: 360px;
}
@media only screen and (max-width: 767px){
.container-download .link-btn-l a {
    width: 100%;
	min-width: 200px;
    max-width: 360px;
}
}

/*----------------------------------

商品・技術をご提案いただける方へ

----------------------------------*/
.icon-pdf01::after {
  content: "\e904";
  font-size: .9em;
  margin-left: 0.25em;
  margin-right: 0.25em;
}
ol.ttl_list-order {
  counter-reset: number 0;
}
ol.ttl_list-order > li {
  position: relative;
  padding-left: 2.2rem;
}
ol.ttl_list-order > li::before {
  counter-increment: number 1;
  content: counter(number) ". ";
  position: absolute;
  left: 0;
  font-size: 1.8rem;
  font-weight: bold;
}
.heading-salespromotion1 {
  font-size: 1.8rem;
  font-weight: bold;
}
