@charset "euc-jp";
:root {
  --contents-width: 1000px;
  --main-color: #5c88ae;
  --deep-color: #28526b;
  --menu-hover: #bed6e9;
  --light-gray: #f4f4f4;
  --link-color: #06c;
  --link-hover-color: #090;
  --impact-color: #c00;
}
/*	common
/*-------------------------------------------*/
main {
  padding-bottom: 5rem;
}

a.larger-image {
	display: block;
	margin-bottom: .5em;
	overflow: hidden;
	position: relative;
}
a.larger-image::after {
	bottom: 0;
	background: url(../img/img-big.png) 0 0 no-repeat;
	content: "";
	display: block;
	height: 20px;
	position: absolute;
	right: 0;
	width: 46px;
	z-index: 10;
}


/*	テーブル
/*-------------------------------------------*/
/* ただの枠線 */
.table-dsin01 {
	border-left: 1px solid #ddd;
	border-top: 1px solid #ddd;
	box-sizing: border-box;
	width: 100%;
}

.table-dsin01 th,
.table-dsin01 td {
	border-bottom: 1px solid #ddd;
	border-right: 1px solid #ddd;
	padding: .25em 1em .1em;
	vertical-align: top;
}


/*	見出し
/*-------------------------------------------*/
.tit-sozai-name {
	background: #f4f4f4;
	border-left: 8px solid var(--impact-color);
	font-size: 1.8em;
	line-height: 1.4;
	margin-bottom: 1em;
	padding: .1em .5em;
}

.tit-sozai-lb {
	background: var(--main-color);
	border-left: 8px solid #3a6283;
	border-right: 8px solid #3a6283;
	color: #fff;
	font-size: 1.8em;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 1em;
	padding: .1em .5em;
}

.tit-sozai-m {
	border-bottom: 1px solid var(--impact-color);
	color: var(--impact-color);
	font-size: 1.6rem;
	font-weight: bold;
	margin: 0 0 10px;
}
.tit-sozai-mb {
	font-size: 1.6rem;
	clear: both;
	font-weight: bold;
	border-bottom: 1px solid #3a6283;
	margin: 0 0 10px;
}

.tit-sozai-l span,
.tit-sozai-lb span,
.tit-sozai-m span,
.tit-sozai-mb span {
	font-size: .8em;
	font-weight: normal;
}




/* 一覧掲載用、一行新着 */
.wn-list {
	margin-bottom: 1em;
}

/* 素材・加工のリード */
.txt-read {
	font-weight:bold;
	text-align: center;
	margin: 1em;
}


/*	モーダルウィンドウ
/*-------------------------------------------*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 60%);
  opacity: 0;
  transition: opacity 0.5s, scale 0s 0.5s;
  scale: 0;
}

.modal:target {
  opacity: 1;
  transition: opacity 0.5s;
  scale: 1;
}

.close {
	border: 1px solid #ddd;
	color: #666;
	display: block;
  font-size: 18px;
	margin: 0 auto;
	padding: .25em .5em;
	text-align: center;
  text-decoration: none;
	width: 5em;
}
.close:hover {
	background: var(--deep-color);
	color: #fff;
}

.modal-wrapper {
  position: relative;
  width: 80%;
  max-width: var(--contents-width);
  max-height: 80vh;
  padding: 20px;
  margin: auto;
  overflow: scroll-y;
  background-color: #FEFEFE;
  border-radius: 5px;
}

.modal-content {
	text-align: center;
}

.modal-content img {
	margin: 0 auto;
	max-height: 50vh;
	width: auto;
}

.modal-content .box-point {
	display: flex;
	gap: 2em;
	justify-content: center;
	margin: 1em auto;
	max-width: 80%;
}
.box-point .btn_more {
	margin: 0;
}



/*	書籍・セミナー
/*-------------------------------------------*/
.page-submenu {
	display: block;
	list-style: none;
	margin: 0 0 20px;
}

.page-submenu li {
	display: inline-block;
}
.page-submenu li:not(:first-child) {
	margin-left: 2em;
}
.page-submenu a {
	background: rgb(92 136 174 / 0.1);
	border: 1px solid var(--main-color);
	display: block;
	padding: .25em .5em;
}
.page-submenu a::before {
	content: "▼";
}


.new-icon {
	background: #ffdf7e;
	color: #333;
	display: inline-block;
	font-size: 1.2rem;
	font-weight: bold;
	margin-left: .5rem;
	padding: 0 0.5rem;
}

.seminar-list .new-icon {
	margin-right: 1em;
}

.seminar-list,
.books-list {
	display: block;
	margin: 0 10px 4em;
}
.seminar-list li,
.books-list li {
	border-bottom: 1px solid #ddd;
	display: block;
	margin: 0 0 1em;
	padding: 0 0 1em;
}
.seminar-list a:hover,
.books-list a:hover {
	text-decoration: none;
}
.seminar-list a:hover .seminar-name,
.books-list a:hover .books-name {
	text-decoration: underline;
}
.seminar-name,
.books-name {
	font-size: 16px;
	font-weight: bold;

}

.seminar-btn,
.books-btn {
	background: var(--deep-color) url(../../img/common/icon-arrow.png) 0.5em 50% no-repeat;
	border-radius: 0.25em;
	color: #fff;
	display: inline-block;
	padding: 0.25em 1em 0.25em 2.5em;
}
a:hover .seminar-btn,
a:hover .books-btn {
	background-color: var(--main-color);
}

/* セミナー */
.seminar-list a {
	display: grid;
	gap: .25em 1em;
	grid-template-columns: 240px 1fr;
	grid-template-rows: auto auto auto;
	position: relative;
}

.seminar-name {
	grid-row: 1/2;
	grid-column: 2/3;
}

.seminar-thumb {
	grid-row: 1/4;
	grid-column: 1/2;
	width: 240px;
}

.seminar-thumb img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	max-width: 240px;
	max-height: 90px;
}

.seminar-details {
	color: #333;
	grid-row: 2/3;
	grid-column: 2/3;
	line-height: 1.4;
}
.seminar-details dt {
	display: block;
	width: 4em;
}
.seminar-details dd {
	display: block;
	margin: -1.4em 0 .25em 5em;
	text-indent: -1em;
}
.seminar-details dd::before {
	content: "：";
}
.seminar-details.archive-details dt {
	width: 11em;
}
.seminar-details.archive-details dd {
	margin-left: 12em;
}

.seminar-icon {
	grid-row: 3/4;
	grid-column: 2/3;
}
.seminar-icon li {
	background: var(--main-color);
	color: #fff;
	display: inline-block;
	padding: .25em .4em;
}
.seminar-icon li:not(:first-child) {
	margin-left: 10px;
}

.seminar-btn {
	bottom: 0;
	position: absolute;
	right: 0;
}




/* 書籍紹介 */
.books-list {
	display: block;
	margin: 0 10px 40px;
}
.books-list a {
	display: flex;
	gap: 0 1em;
}
.books-list div {
	display: block;
	width: calc(100% - (90px + 1em));
}
.books-read {
	color: #333;
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	line-clamp: 3;
	-webkit-line-clamp: 3;
	max-height: calc(13px * 1.4 * 3);/* ブラウザがサポートしていない場合のフェールセーフ */
}
.books-thumb {
	width: 90px;
}
.books-thumb img {
	display: block;
	width: 90px;
}

.books-btn-txt {
	text-align: right;
}
.books-btn {
	margin: 5px 0 0 auto;
}


/*	加工・素材
/*-------------------------------------------*/
/* 説明文 */
.intro-description p + p {
	margin-top: 1em;
}

.box-worries {
	border: 5px solid #f4f4f4;
	margin: 1.5em 0;
	padding: 1.5em 16%;
}

.box-worries dl,
.box-worries dt,
.box-worries dd {
	display: block;
	padding: 0;
}

.box-worries dt {
	color: #c00;
	font-size: 16px;
	font-weight: bold;
}

.box-worries dd {
	margin: 0 0 1.5em;
}

.box-worries ul {
	list-style-type: disc;
	margin-left: 1.5em;
}

.text-solution {
	color: #c00;
	font-size: 19.5px;
	font-weight: bold;
	text-align: center;
}

/*	半導体特集
/*-------------------------------------------*/
#semicon main {
  padding-bottom: 0;
}

.title-semicon {
	background: url(../img/semicon/title.png) 50% 50% no-repeat;
	color: #fff;
	font-size: 2.8rem;
	font-weight: bold;
	padding: 2em 0;
	text-align: center;
	text-shadow: 1px 0 2px #111, 0 1px 2px #111,
	-1px 0 2px #111, 0 -1px 2px #111;
}

.box-semicon-bg {
	background: #f4f4f4;
	padding: 5em 0;
}

.semicon-corp-bg {
	background: #fff;
	margin-bottom: 3em;
	padding: 3em 0;
}

.semicon-corp-bg .box-contents_inn {
	margin-bottom: 1em;
}
.semicon-corp-column1,
.semicon-corp-column2,
.semicon-corp-column3,
.semicon-corp-column4 {
	display: flex;
	justify-content: space-between;
}
.semicon-corp-column1 {
	gap: 0 2rem;
}
.semicon-corp-column2 {
	gap: 0 2rem;
	margin: 2em 0;
}
.semicon-corp-column2 .semicon-corp-column2 {
	margin: 0;
}
.semicon-corp-column3 {
	gap: 2em 5%;
	margin: 2em 0;
}
.semicon-corp-column4 {
	gap: 2em 5%;
	margin: 2em 0;
}

.flap-imglist {
	flex-wrap: wrap;
}
.semicon-corp-column2 > .semicon-spec {
	width: calc(50% - 2rem);
}
.semicon-corp-column2 > ul {
	width: 50%;
}
.semicon-corp-column2 > li {
	width: calc(50% - 1em);
}
.semicon-corp-column3 li {
	width: calc((100% - 10%) / 3);
}
.semicon-corp-column4 li {
	width: calc((100% - 15%) / 4);
}


.semicon-spec {
	display: block;
	margin-bottom: 2em;
}
.semicon-spec dd + dt {
	margin-top: 1em;
}
.semicon-spec dd + dd {
	margin-top: .25em;
}

.semicon-spec ul {
	list-style-type: disc;
	margin-left: 1.5em;
}

.semicon-spec p:not(:first-of-type) {
	margin: 1em 0;
}

.semicon-spec.unicera-spec {
	background: var(--light-gray);
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	margin: 2em auto;
	padding: 1em;
	width: 80%;
}

.semicon-img {
	width: 48%;
}
.semicon-img_half {
	width: 24%;
}

.semicon-img img {
	width: 100%;
}

.semicon-material {
	background: #dfefe8;
	padding: 1em;
}

.tit-semicon-material {
	font-weight: bold;
	margin-bottom: .5em;
}

.tit-semicon-material::before {
	content: "■";
	color: var(--main-color);
}

.semicon-corp-column2 .larger-image {
	border: 1px solid #ddd;
}

.semicon-corp-column3 .larger-image {
	background: #fafafa;
	height: 120px;
	text-align: center;
}

.larger-image img {
	height: auto;
	max-height: 100%;
	max-width: 100%;
	width: auto;
}

.semicon-material ul {
	list-style-type: disc;
	margin-left: 1.5em;
}

.semicon-material li:not(:first-child) {
	margin-top: .5em;
}

.talbe_semicon {
	margin: 0 auto 5rem;
	width: 100%;
}
.talbe_semicon tr {
	border-bottom: 1px solid #ddd;
}
.talbe_semicon tr:first-of-type td {
	background: var(--main-color);
	color: #fff;
	font-weight: bold;
}

.talbe_semicon td {
	padding: 1em .5em;
	vertical-align: top;
}

.talbe_semicon td:first-of-type {
	width: 16em;
}
.talbe_semicon td:first-of-type a {
	font-weight: 700;
}

.talbe_semicon td:last-of-type {
	width: 9em;
}
.talbe_semicon td:last-of-type li:last-child {
	margin-top: 1em;
}
.talbe_semicon td .btn_more {
	margin: 0;
	text-align: left;
}
.talbe_semicon td .btn_more a {
	display: block;
	background-size: 1em;
	padding: .2em 1em .2em 2em;
}
.talbe_semicon td .btn_inquiry a {
	background-size: 1.2em;
	padding: .2em 1em .2em 2em;
}

.talbe_semicon ul.semicon-features {
	list-style: disc;
	margin: 0 0 .5em 1.5em;
}
.talbe_semicon dl {
	display: block;
}
.talbe_semicon dt {
	background: #eee;
	display: block;
	padding: .1em .5em;
	width: 4em;
}
.talbe_semicon dd {
	display: block;
	margin: -1.5em 0 0 5.5em;
}

.semicon-linkbtn {
	display: flex;
	gap: 2em 6em;
	justify-content: center;
}

.semicon-linkbtn .btn_more {
	margin: 0;
}

.semicon-sozailist {
	display: flex;
	flex-wrap: wrap;
	gap: 1em 1em;
}

/*	半導体特集バナー -----*/
.bnr-new {
  margin: 3em auto;
  text-align: center;
}
.bnr-semicon a {
  background: rgba(0,0,0,0.5) url(../../img/home/bnr-semiconductor.png) 0 0 no-repeat;
  display: grid;
  grid-template-columns: auto 8em;
  grid-template-rows: auto auto;
  padding: 1em;
  text-align: left;
}

.bnr-semicon a:hover {
  text-decoration: none;
  background-blend-mode: darken;
}

.bnr-title {
  color: #fff;
  font-size: 2em;
  font-weight: 700;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  line-height: 1.2;
  text-shadow: 4px 0 2px #333, 0 4px 2px #333,
  -4px 0 2px #333, 0 -4px 2px #333;
}
.bnr-title span {
	background: #ffdf7e;
	color: #222;
	display: inline-block;
  font-size: 2rem;
	margin-bottom: .5em;
	padding: .25em .5em;
	text-shadow: none;
}
.bnr-btn {
  align-items: center;
  display: flex;
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.bnr-btn span {
  background: #fff;
  display: block;
  padding: 1em;
}

.bnr-semicon a:hover .bnr-btn span {
  background: rgba(92, 136, 174, 1);
  color: #fff;
}
.bnr-semicon a:hover .bnr-btn span::before {
  background: #fff;
}


/*	過去の新着
/*-------------------------------------------*/
.past_topics > li {
	border-bottom: 1px solid #ddd;
	display: flex;
	gap: 0 2em;
	margin-bottom: 1em;
	padding-bottom: 1em;
}
.past_news_date {
	width: 5em;
}

.news-detailslist {
	list-style-type: disc;
	margin: .25em 0 0 1.5em;
}

/*	イベントや関連ニュース
/*-------------------------------------------*/
.news-iframe iframe {
	border: 0;
	height: calc(((13px * 1.5) + 17px) * 25);
	width: 100%;
}

/*	加工法一覧
/*-------------------------------------------*/
.bix-kakouhou-list {
	display: flex;
	flex-wrap: wrap;
	gap: 3em 5%;
}

.wrp_kakouhou_box {
	width: 30%;
}
.wrp_kakouhou_box h2 {
	background: var(--main-color);
	border-radius: 1em;
	color: #fff;
	font-size: 1.6rem;
	font-weight: bold;
	padding: .2em 1em;
}
.wrp_kakouhou_box ul {
	margin: 0 1em;
}
.wrp_kakouhou_box li {
	margin-top: .5em;
}
.wrp_kakouhou_box a {
	padding-left: 1.5em;
	position: relative;
}

.wrp_kakouhou_box a::before {
  background: var(--main-color);
  content: "";
  display: block;
  height: 1em;
  left: 0;
  position: absolute;
  top: .25em;
  width: 1em;
}

.wrp_kakouhou_box a::after {
  background: #fff;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  content: "";
  display: inline-block;
  height: 0.6em;
  left: .5rem;
  position: absolute;
  top: .7em;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: calc(0.8em / 2);
}
.top_topics a::before:hover {
  background: var(--link-hover-color);
}

/*	用途・目的別にセラミックス材料を検索
/*-------------------------------------------*/
.search-selection {
	border: 0 none;
	font-size: 1.6rem;
	margin: 2em auto;
}
.search-selection td {
	padding: .5em 0;
}
.search-selection td:first-of-type {
	padding-right: 2em;
}

.btn-submit {
	margin: 0 auto 3em;
	text-align: center;
}

.btn-submit input[type=submit] {
	padding: .1em 1em;
}

.result-displayarea {
	border: 1px solid #ddd;
	padding: 1em;
}


/*	資料ダウンロード
/*-------------------------------------------*/
.material_company{
	border: 1px solid #ccc;
	background-color: #f5f5f5;
	zoom: 1;
	margin-bottom: 2em;
	padding: 1em;
}

.material_company .dl_corp_list{
	border-bottom: 1px solid #ddd;
	display: grid;
  gap: .5em 1em;
  grid-template-columns: 1fr 10em;
  grid-template-rows: auto auto;
	margin: 0 0 .5em;
	padding: 0 0 .5em;
}
.material_company .dt_corp_name {
	font-weight: bold;
	grid-column: 1/2;
  grid-row: 1/2;
}
.material_company .dd_corp_btns{
  grid-column: 2/3;
  grid-row: 2/3;
}
.material_company .dd_corp_text {
  grid-column: 1/2;
  grid-row: 2/3;
}
.wrp_mate_box {
	display: block;
}
.mate_box {
	border: 1px solid #ccc;
	background-color: #fff;
	display: flex;
	justify-content: space-between;
	margin-top: 1em;
	padding: 1em;
}
.mate {
	width: calc(100% - 12em);
}

.mate_box h4 {
  background: url(../img/pdf.gif)  left top no-repeat;
  padding: 0 0 3px 23px;
	font-weight: bold;
}
.mate_d {
	margin-top: .5em;
}

.btn_dl {
	align-self: end;
	width: 10em;
}

.btn_dl a {
	background: #fff url(../../img/common/icon-dl.png) 0.8em 50% no-repeat;
	border: 1px solid var(--deep-color);
	border-radius: 0.25em;
	display: block;
	font-size: 1.3rem;
  padding: 0.5em 1.5em 0.5em 3em;
}
.btn_dl a:hover {
  background-color: var(--main-color);
	color: #fff;
}

.toggle {
	display: none;
}

.Label,
.dllist_more {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.Label {
	color: #3989d7;
	cursor: pointer;
	display: inline-block;
	margin-top: 1em;
}
.Label::before {
	background: var(--main-color);
	clip-path: polygon(0 0, 0 100%, 100% 50%);
	content: "";
	display: inline-block;
	height: 0.8em;
	margin: 0.2em 0.2em 0 0;
	width: calc(0.8em / 2);
}
.dllist_more {
	height: 0;
	padding: 0;
	overflow: hidden;
}

.toggle:checked + .Label + .dllist_more {
  height: auto;
  transition: all .3s;
}
.toggle:checked + .Label::before {
	clip-path: polygon(100% 0, 0 0, 50% 80%);
}
.dllist_more .wrp_mate_box {
  display: block;
  max-height: calc(1.4em * 10 + 4em);
}



/*	保有設備
/*-------------------------------------------*/
.corp {
	margin-bottom: 2em;
}

.corp p.btn_inquiry a {
	margin: 0 0 0 auto;
	width: 6em;
}

.technical-corporate-info {
	margin: 1em 0 .5em;
	text-align: right;
}

.tit_equipment {
	color: var(--main-color);
	font-size: 1.6rem;
	font-weight: bold;
}

.equipment table {
	border-collapse:collapse;
	border-left: 1px solid #ddd;
	border-top: 1px solid #ddd;
	font-size: 1.4rem;
	margin-bottom: 2em;
	width: 100%;
}
.equipment table th,
.equipment table td {
	border-bottom: 1px solid #ddd;
	border-right: 1px solid #ddd;
	padding: .25em;
}
.equipment table th {
	text-align:center;
	font-weight:bold;
	background-color: #f5f5f5;
}
.equipment table td.align_center {
	text-align: center;
}
.equipment table td:last-of-type {
	min-width: 2em;
}


.equipment dl {
	font-size:12px;
	margin: 0 5px 8px 5px;
}
.equipment dl dt {
	font-weight: bold;
	margin-bottom: 3px;
}
.equipment dl dd {
	margin: 0 0 8px 8px;
}



/*	エリア検索
/*-------------------------------------------*/
.area_search {
	background: url(../img/japan.gif) right bottom no-repeat;

}
.area_search h2 {
	background: url(../img/icon_search.gif) left bottom no-repeat;
	border-bottom: 1px solid #4A7BA5;
	padding-left: 30px;
	line-height: 35px;
	margin-right: 40%;
}
.area_search ul {
	margin: 5px 0 16px 8px;
	font-size: 12px;
	color: #525252;
}
.area_search ul li {
	display: inline-block;
	margin: 3px 5px;
}

.area_search2 {
	margin: 8px 8px 32px 8px;
}

.area_link {
	display: flex;
	flex-wrap: wrap;
	gap: 1em 2em;
	margin-top: 1em;
}

.area_link a {
	display: block;
  padding-left: 1.5em;
  position: relative;
}

.area_link a::before {
  background: var(--main-color);
  content: "";
  display: block;
  height: 1em;
  left: 0;
  position: absolute;
  top: 0;
  width: 1em;
}

.area_link a::after {
  background: #fff;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  content: "";
  display: inline-block;
  height: 0.6em;
  left: .5rem;
  position: absolute;
  top: .45em;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: calc(0.8em / 2);
}
.area_link a:hover::before {
  background: var(--link-hover-color);
}

.area_company .dl_corp_list{
	background: #f5fefe;
	display: grid;
  gap: .5em 1em;
  grid-template-columns: 1fr 10em;
  grid-template-rows: auto auto;
	margin: 1em 0 1.5em;
	padding: 1em;
}
.area_company .dt_corp_name {
	font-weight: bold;
	grid-column: 1/2;
  grid-row: 1/2;
}
.area_company .dd_corp_btns{
  grid-column: 2/3;
  grid-row: 2/3;
}
.area_company .dd_corp_text {
  grid-column: 1/2;
  grid-row: 2/3;
}

.list_cs-materials,
.list_cs-processing {
	display: flex;
	flex-wrap: wrap;
	gap: .5em 1em;
	margin-top: .8em;
}
.list_cs-materials::before {
	content: "対応素材";
	align-self: center;
	font-weight: bold;
}
.list_cs-processing::before {
	content: "対応加工";
	align-self: center;
	font-weight: bold;
}
.list_cs-materials li,
.list_cs-processing li {
	background: #eaeaea;
	border-radius: 5px;
	padding: .2em .5em;
}


/*	触る前
/*-------------------------------------------*/
.title_ban_bg {
	background:url(../img/title_ban_bg.gif) no-repeat;
}
.menu_bg {
	background:url(../img/menu_bg.gif) no-repeat;
}
a.mnu0:link { color:#003300;
	text-decoration:none;
	font-size:10pt;
	font-weight:bold;
	margin-top:5px;
}
a.mnu0:visited { color:#003300;
	text-decoration:none;
	font-size:10pt;
	font-weight:bold;
	margin-top:5px;
}
a.mnu0:hover { color:#003300;
	text-decoration:underline;
	background-color:#FFFF99;
	font-size:10pt;
	font-weight:bold;
	margin-top:5px;
}
a.mnu0:active { color:#003300;
	text-decoration:none;
	font-size:10pt;
	font-weight:bold;
	margin-top:5px;
}
a.mnu:link { color:#003300;
	text-decoration:none;
	font-size:11pt;
	font-weight:bold;
	margin-top:5px;
}
a.mnu:visited { color:#003300;
	text-decoration:none;
	font-size:11pt;
	font-weight:bold;
	margin-top:5px;
}
a.mnu:hover { color:#003300;
	text-decoration:underline;
	background-color:#FFFF99;
	font-size:11pt;
	font-weight:bold;
	margin-top:5px;
}
a.mnu:active { color:#003300;
	text-decoration:none;
	font-size:11pt;
	font-weight:bold;
	margin-top:5px;
}


.regist_content {
	font-size:10pt;
	padding-bottom:20px;
	padding-top:10px;
}
.top_lead {
	margin-top:5px;
	font-weight:bold;
	font-size:10pt;
	color:white;
	margin-right:95px;
	padding:5px 7px;
}
.content {
	padding-right:4px;
	padding-left:6px;
	font-size:11pt;
	line-height:130%;
	padding-top:10px;
}
.search_line {
	border-right:1px solid black;
	font-size:10pt;
	background-image :url(../img/search_bg.gif);
	margin-left:0px;
	border-left:1px solid black;
	margin-right:0px;
	border-bottom:1px solid black;
	padding:5px 0px 12px;
}
.search {
	font-size:10pt;
	margin-left:10px;
	margin-right:10px;
}
.com_name {
	padding-right:2px;
	padding-left:2px;
	font-weight:bold;
	font-size:11pt;
	padding-bottom:2px;
	margin-left:120px;
	padding-top:2px;
	background-color:#cccccc;
}
.list_half {
	font-size:10pt;
	float:left;
	width:48%;
}
.search_kako {
	border-right:1px solid #ff9900;
	font-size:10pt;
	border-left:1px solid #ff9900;
	border-bottom:5px solid #ff9900;
	background-color:white;
	padding: 3px;
}
.search_zyoken {
	border-right:1px solid #003399;
	font-size:10pt;
	border-left:1px solid #003399;
	border-bottom:5px solid #003399;
	padding: 3px;
}
.search_sozai {
	border-right:1px solid #339900;
	font-size:10pt;
	border-bottom:5px solid #339900;
	border-left:1px solid #339900;
	line-height:125%;
	background-color:white;
	padding:3px;
}
.search_com {
	border-right:1px solid #cc0000;
	font-size:10pt;
	border-left:1px solid #cc0000;
	line-height:125%;
	border-bottom:5px solid #cc0000;
	background-color:white;
	padding:3px;
}
.que_line {
	border-right:2px solid #cccccc;
	font-size:10pt;
	margin-left:11px;
	border-left:2px solid #cccccc;
	margin-right:11px;
	border-bottom:2px solid #cccccc;
	background-color:#f0eee6;
	padding:5px 3px 3px;
}
.pt10 {
	font-weight:normal;
	font-size:10pt;
}
.pt11 {
	font-size:11pt;
}
.dic_line {
	border-right:#339999 1px solid;
	margin-left:9px;
	border-left:#339999 1px solid;
	margin-right:9px;
	border-bottom:#339999 1px solid;
	padding:5px;
}
.keywords {
	font-weight:bold;
	color:#cc0000;
}
.form {
	font-size:10pt;
}
.tate_banner {
	font-size:10pt;
	line-height:130%;
	padding-top:5px;
}
.tate_banner img {
	margin-bottom:5px;
}
.about_line {
	font-weight:bold;
	font-size:10pt;
	margin-bottom:5px;
	padding-bottom:2px;
	border-bottom:gray 1px dotted;
}
.content_title {
	font-weight:bold;
	font-size:12pt;
	background-image :url(../img/t_bg.gif);
	padding:5px 3px 3px;
}
.login{
	font-weight :normal;
	color :#df5031;
	background-color :#FFF;
	text-align :justify;
	font-size :9pt;
	padding:3px;
	border:1px solid #df5031;
}
.jitenn1{
	border-top:1px solid olive;
	border-right:1px solid olive;
	border-left:1px solid olive;
}
.jiten2{
	font-size :11pt;
	border-top:1px solid olive;
	border-right:1px solid olive;
}
.jitenn11{
	border:1px solid olive;
}
.jiten21{
	font-size :11pt;
	border-top:1px solid olive;
	border-right:1px solid olive;
	border-bottom:1px solid olive;
}
.jiten3{
	font-size :10pt;
	border-top:1px solid olive;
	border-right:1px solid olive;
}
.jiten31{
	font-size :10pt;
	border-top:1px solid olive;
	border-right:1px solid olive;
	border-bottom:1px solid olive;
}
.jiten4{
	border-top:1px solid olive;
	border-right:1px solid olive;
	border-left:1px solid olive;
}
/*.hr2{
	border-bottom:1px dashed #000099;
}
*/
.fs{
	font-size:10pt;
	margin-top:5px;
}
.line4 {
	background: #f4f4f4;
	border-left: 8px solid #c00;
	font-size: 19px;
	font-weight: bold;
	line-height: 1.4;
	padding: .1em .5em;
}
.line5 {
	color: #c00;
	font-size: 16px;
	clear: both;
	font-weight: bold;
	border-bottom: 1px solid #c00;
	margin: 0 10px 10px;
}
.line4-blue {
	background: var(--main-color);
	border-left: 8px solid #3a6283;
	color: #fff;
	font-size: 19px;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 15px;
	padding: .1em .5em;
}
.line5-blue {
	font-size: 16px;
	clear: both;
	font-weight: bold;
	border-bottom: 1px solid #3a6283;
}

.kk-words {
	font-size:12px;
	color:#000099;
	border:1px;
	border-style:dashed;
	border-color:#aaaaff;
	line-height:120%;
	padding:5px;
	}
.line6{
	font-size:14px;
	color:#000000;
}

.line9 {
	font-weight:bold;
	text-align: center;
	padding: 10px 0;
}

.pt5 {
	font-weight:normal;
	font-size:4pt;line-height:80%;
	color:#fffffe;
}
.pt5 a:link { color:#fffffe;
	text-decoration:none;
	font-size:4pt;
	margin-top:0px;
}
.pt5 a:visited { color:#fffffe;
	text-decoration:none;
	font-size:4pt;
	margin-top:0px;
}
.pt5 a:hover { color:#fffffe;
	text-decoration:none;
	font-size:4pt;
	margin-top:0px;
}
.pt5 a:active { color:#fffffe;
	text-decoration:none;
	font-size:4pt;
	margin-top:0px;
}
.top {
	font-weight:bold;
	font-size:100%;
	margin-bottom:10px;
	margin-top:0px;
}
.title_news {
	font-size:15pt;
	color:#ffd631;
	background-color:#003163;
	text-align:left;
	font-weight:bold;
	padding:2pt;
	margin:0pt;
	border-width:1pt;
	border-color:#000000;
}
.f80w {
	padding-top:5px;padding-bottom:5px;font-size:80%;
	color:#ffffff;
	line-height:1.2;
}
.f80w a {
	color:#FF9900;
}
.f80w a:hover {
	text-decoration:none;
}
.mb5 {
	margin-bottom: 5px;
}
.mb5 {
	margin-bottom: 5px;
}
.mb10 {
	margin-bottom: 10px;
}
.mb15 {
	margin-bottom: 15px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb25 {
	margin-bottom: 25px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb35 {
	margin-bottom: 35px;
}
.mb40 {
	margin-bottom: 40px;
}
.h205 {
	height: 205px;
}

.orange {
	color:#FF7F00;
}

.wrp_all .grp_contents .wrp_main .wrp_main_contents table:not(.table-casc) td {
	padding: 10px;
}
.txt_wrp {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
	font-size: 98%;
	text-align: left;
	text-indent: 0px;
}


/*動画一覧*/
.line7 {
	font-weight:bold;
	margin: 0;
	padding: 0 0 3px 19px;
	background: url(../img/icon_arrow_01.gif) no-repeat left 3px;
	text-align:left;
}

.mov_box_l {
	width: 280px;
	margin: 0 0 20px 0;
	float: left;
	text-align: center;
}
.mov_box_r {
	width: 280px;
	margin: 0 0 20px 0;
	float: right;
	text-align: center;
}

.movie {
	border: 1px solid #ccc;
	background-color: #f5f5f5;
	padding: 3px
}
.mov_img {
	margin-top: 7px;
}
.mov_ctrl {
	font-weight: bold;
	background: url(../img/mov_btn_play.gif) no-repeat 35% 50%;
	text-indent: 14px;
}
.mov_d {
	font-size: 90%;
	line-height: 130%;
	margin: 2px;
	padding: 3px;
	background-color: #fff;
	border: 1px solid #ccc;
	text-align:left;
}



.promotion {
	background: #f4f4f4;
	margin: 0 auto 4rem auto;
	padding: 1em;
	text-align: center;
	width: 50%;
	min-width: 40rem;
}
.promotion p {
	margin-bottom: 1em;
	text-align: center;
}
.promotion a {
	background: linear-gradient(#fafafa, #f4f4f4);
	border: 1px solid #aaa;
	border-radius: 5px;
	display: block;
	font-weight: bold;
	margin: 0 auto;
	padding: .5em 2em;
	width: 18em;
}
.promotion a:hover {
  background: linear-gradient(#fff, #fafafa);
}

.area_foot_link h2 {
	border-bottom: 1px solid #4A7BA5;
	background: url(../img/icon_search.gif) left bottom no-repeat;
	line-height: 35px;
	margin-bottom: .5em;
	padding-left: 30px;
}

iframe.free_search {
	width: 100%;
	height: 200px;
	border: none;
}

.area_search_result h2 {
	display: none;
}
.area_search_result p {
	display: none;
}
.area_search_result .company {
    font-size: 13px;
    margin-bottom: 8px;
    padding: 0px 10px 10px 10px;
	color: #444;
}
.area_search_result .company dt a {
    font-size: 15px;
	padding-right: 24px;
	color: #0066CC;
	text-decoration: none;
}
.area_search_result .company dt a:hover {
	color: #009900;
}

.area_search_result .company dd {
    line-height: 130%;
    margin: 3px 0 5px;
    padding-left: 8px;
}
.area_search_result .namazu-result-footer{
	display: none;
}


/*	掲載企業一覧
/*-------------------------------------------*/
.corp_wrap{
	clear: both;
	zoom: 1;
	overflow: hidden;
	padding-bottom: 5px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 5;
	margin-left: 0;
	background-image: url(../img/bg_dot_01.gif);
	background-repeat: no-repeat;
	background-position: center bottom;
}

.corplist {
	display: flex;
	flex-wrap: wrap;
	gap: 2em 2em;
	justify-content: space-between;
	margin-bottom: 4em;
}

.corplist li {
	box-sizing: border-box;
	padding: .5em 1em;
	width: calc((100% - 2em) / 2);
}
.corplist.newlist li {
	background: #ffe;
}
.corplist.existing-list li {
	border: 1px solid #ddd;
}


.corplist_box {
	display: grid;
	display: -ms-grid;
	grid-gap: .5em 1em;
	grid-template-columns: 100px auto;
	-ms-grid-columns: 100px 5px auto;
	grid-template-rows: repeat(4, auto);
	-ms-grid-rows: auto 5px auto 5px  auto 5px auto;
	padding: 5px;
}

.corplist_name,
.corplist_area,
.corplist_link {
	grid-column: 1 / 3;
	-ms-grid-column: 1;
	-ms-grid-column-span: 3;
}
.corplist_img,
.corplist_txt {
    grid-row: 3 / 4;
    -ms-grid-row: 5;
}
.corplist_name {
    background: url(../img/icon_arrow_01.gif) no-repeat left center;
    font-weight: bold;
    grid-row: 1 / 2;
    -ms-grid-row: 1;
    padding-left: 20px;
}
.corplist_area {
    grid-row: 2 / 3;
    -ms-grid-row: 3;
    font-weight: bold;
    text-align: right;
}
.corplist_img {
	grid-column: 1 / 2;
	-ms-grid-column: 1;
}
.corplist_txt {
	grid-column: 2 / 3;
	-ms-grid-column: 3;
	text-align: justify;
}
.corplist_link {
    background:url(../img/icon_link.gif) no-repeat right 50%;
    display: block;
    grid-row: 4 / 5;
    -ms-grid-row: 7;
    padding-right: 18px;
    text-align: right;
}
.corplist_btn {
    margin-top: 10px;
}

.corplist_btn a {
	background: var(--deep-color) url(../../img/common/icon-arrow.png) 0.8em 50% no-repeat;
	border-radius: 0.25em;
	background-size: 1.4rem;
	color: #fff;
	display: block;
	font-size: 1.3rem;
  padding: 0.5em 0.5em 0.5em 2.2em;
}
.corplist_btn a:hover {
  background-color: var(--main-color);
}

.list_corp-materials {
	display: block;
	margin-top: .8em;
}
.list_corp-materials::before {
	content: "対応素材";
	display: inline-block;
	font-weight: bold;
}
.list_corp-materials li {
	display: inline-block;
}
.list_corp-materials li a {
	background: var(--deep-color);
	border-radius: 5px;
	color: #fff;
	display: inline-block;
	padding: .1em .5em;
}

.list_corp-materials li a:hover {
	background: var(--main-color);
}

/* 素材ページ */
.anchor-menu {
	display: flex;
	gap: 0 2em;
	justify-content: center;
	margin: 1.5em 0;
}
.anchor-menu li,
.anchor-menu a {
	display: block;
}
.anchor-menu a {
	background: rgb(92 136 174 / 0.1);
	border: 1px solid var(--main-color);
	padding: .25em .5em;
}
.anchor-menu a::before {
	content: "▼";
}

/* 素材ページ：テスト用 */
.anchor-menu-modal {
	display: flex;
  flex-wrap: wrap;
	gap: 1em 2em;
	margin-top: 1.5em;
}
.anchor-menu-modal li {
	width: calc(50% - 1em);
}
.anchor-menu-modal a {
	background: rgb(92 136 174 / 0.1) url(../../img/common/icon-arrow-b.png) .5em .45em no-repeat;
	border: 1px solid var(--main-color);
	display: block;
	padding: .25em .5em .25em 2.25em;
}


/*加工法詳細*/
.processing_description,
.processing_function,
.processing_corp {
	margin: 0 10px 4em;
	text-align: justify;
}
.processing_description p + p {
	margin-top: 1em;
}
.processing_function {
	display: block;
	padding: 0;
}
.processing_function dt {
	font-weight: bold;
}
.processing_function dd + dt {
	margin-top: 1em;
}

.points-ft-casc {
	display: block;
	text-align: justify;
}
.points-ft-casc dt {
	font-weight: bold;
}
.points-ft-casc dd + dt {
	margin-top: 1em;
}

.processing_txt {
	margin: 0 10px 1em;
}

.processing_applist {
	list-style-type: disc;
	margin: 0 10px 4em calc(1.5em + 10px);
	text-align: justify;
}
.applications-list {
	list-style-type: disc;
	margin: 0 0 0 1.5em;
	text-align: justify;
}

[class^="app-w"] {
	display: inline-block;
	position: relative;
}
[class^="app-w"]::after {
	content: "：";
	position: absolute;
	right: 0;
}

.app-w4em { width: 5em; }
.app-w5em { width: 6em; }
.app-w6em { width: 7em; }
.app-w7em { width: 8em; }
.app-w8em { width: 9em; }
.app-w9em { width: 10em; }
.app-w10em { width: 11em; }
.app-w11em { width: 12em; }
.app-w12em { width: 13em; }

/* 特性 */
.casclist-link {
	display: block;
}
.p_sozai .casclist-link {
	margin: 0 10px;
}
.casclist-link a {
	border: 1px solid #ddd;
	display: block;
	height: 15rem;
	overflow: hidden;
	text-align: center;
}


/* 加工事例 */
.processing_eglist {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5em 2em;
	justify-content: space-between;
}

.processing_eglist li {
	width: calc((100% - 4em) / 3);
}
.processing_eglist a.egimg {
	display: block;
	height: 150px;
	margin-bottom: .5em;
	overflow: hidden;
	position: relative;
}
.processing_eglist a.egimg::after,
.sozai-casclist li > a::after,
.more-big::after {
	bottom: 0;
	background: url(../img/img-big.png) 0 0 no-repeat;
	content: "";
	display: block;
	height: 20px;
	position: absolute;
	right: 0;
	width: 46px;
	z-index: 10;
}

.more-big {
	position: relative;
}

.processing_eglist img {
	display: block;
  left: 50%;
	height: auto;
	min-height: 150px;
	object-fit: cover;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: clamp(250px, 100%, 300px);
}

.molding-ex {
	display: flex;
	gap: 0 3rem;
	margin: 1em 0;
}
.molding-ex li {
	width: calc((100% - 6rem) / 3)
}
.molding-ex a.link_imgbig {
	display: flex;
	height: 130px;
	margin-bottom: .25em;
	overflow: hidden;
	position: relative;
}
.molding-ex a.link_imgbig::after {
	bottom: 0;
	background: url(../img/img-big.png) 0 0 no-repeat;
	content: "";
	display: block;
	height: 20px;
	position: absolute;
	right: 0;
	width: 46px;
	z-index: 10;
}
.molding-ex img {
	display: block;
  left: 50%;
	height: clamp(130px, 100%, 260px);
	width: clamp(180px, 100%, 360px);
	object-fit: cover;
	align-self: center;
	text-align: center;
}

.processing-examples {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5em 3rem;
}

.processing-examples li {
	width: calc((100% - 9rem) / 4)
}
.processing-examples a.egimg {
	display: block;
	height: 13rem;
	margin-bottom: .5em;
	overflow: hidden;
	position: relative;
}
.processing-examples a.egimg::after {
	bottom: 0;
	background: url(../img/img-big.png) 0 0 no-repeat;
	content: "";
	display: block;
	height: 20px;
	position: absolute;
	right: 0;
	width: 46px;
	z-index: 10;
}

.processing-examples .egimg img {
	display: block;
  left: 50%;
	height: auto;
	width: clamp(260px, 100%, 300px);
	object-fit: cover;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}



.processing_molding-corp {
	display: block;
	margin: 0 10px 4em;
}
.processing_molding-corp > li {
	border: 1px solid var(--main-color);
	display: flex;
	gap: 0 1.5em;
	padding: 1em;
}
.processing_molding-corp > li.are_cases {
	display: block;
}
.processing_molding-corp > li:not(:first-child) {
	margin-top: 1.2em;
}
.processing_molding-corp .btn_more {
	align-self: center;
	margin-top: 0;
	width: 9.5em;
	word-break: keep-all;
}


.molding-corp-name {
	margin-bottom: .5em;
}
.molding-corp-name a {
	font-size: 16px;
	font-weight: bold;
	margin-right: 1em;
}

.molding-corp-list {
	align-items: center;
	display: flex;
	gap: 0 1em;
	margin-top: .5em;
}
.molding-corp-list dt {
	align-self: normal;
	background: var(--main-color);
	color: #fff;
	min-width: 2em;
	padding: .1em .5em;
}

.table-casc {
	border: 1px solid #ccc;
	box-sizing: border-box;
	width: 100%;
}
.table-casc th,
.table-casc td {
	padding: 5px;
}
.table-casc th {
	background: #fafafa;
	border-bottom: 1px solid #ccc;
}
.table-casc td {
	vertical-align: top;
}
.table-casc td[rowspan] {
	font-weight: bold;
}
.table-casc .line-right {
	border-right: 1px solid #ccc;
}
.table-casc .line-bottom {
	border-bottom: 1px solid #ccc;
}


.processing_corp p {
	padding: 0 8px 8px 8px;
}


.processing_corp .dl_corp_list {
	border-bottom: 1px dashed #ccc;
	display: grid;
	gap: .25em 1em;
	grid-template-rows: auto auto;
	grid-template-columns: 1fr 140px;
	margin-bottom: .8em;
	padding-bottom: .8em;
}
.processing_corp .dt_corp_name {
	grid-row: 1 / 2;
	grid-column: 1 / 3;
}
.processing_corp .dt_corp_name a {
	font-size: 16px;
	font-weight: bold;
}

.processing_corp .dd_corp_text {
	color: #444;
	font-size: 13px;
	grid-row: 2 / 3;
	grid-column: 1 / 2;
	line-height: 130%;
}
.processing_corp .dd_corp_btns {
	grid-row: 2 / 3;
	grid-column: 2 / 3;
}

.dd_corp_btns > a {
	margin-bottom: 10px;
}

.btn_inquiry a,
.btn_acilities a,
.btn_more a {
	background-color: var(--deep-color);
	background-repeat: no-repeat;
	border-radius: 0.25em;
	color: #fff;
	display: block;
	font-size: 1.3rem;
  padding: 0.5em 1.5em 0.5em 3em;
}
.btn_inquiry a:hover,
.btn_acilities a:hover,
.btn_more a:hover {
  background-color: var(--main-color);
}

.btn_inquiry a {
  background-image: url(../../img/common/icon-mail.png);
	background-position: 0.5em 50%;
}
.btn_acilities a,
.btn_more a {
	background-image: url(../../img/common/icon-arrow.png);
	background-position: 0.8em 50%;
}

.btn_acilities {
	margin-top: 1em;
}
.btn_more {
	margin-top: 1em;
	text-align: center;
}


p.btn_inquiry,
p.btn_acilities,
p.btn_more {
	text-align: center;
}

p.btn_inquiry a,
p.btn_acilities a,
p.btn_more a {
	display: inline-block;
	text-align: left;
}





.processing_corp .dd_corp_btns img {
	margin-bottom: 3px;
}

.other_search {
	text-align: center;
	margin-top: 16px;
	margin-bottom: 56px;
}
.other_search input[type="button"] {
	background: linear-gradient(#f4f4f4, #eaeaea);
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 3px 1em;
}
.other_search input[type="button"]:hover {
	background: linear-gradient(#fafafa, #f6f6f6);
	cursor: pointer;
}

.related_words {
	padding: 0 8px 8px 8px;
	font-size: 13px;
}

/* characteristics.htm */
.submenu-casc {
	display: flex;
	justify-content: space-between;
	gap: 0 2em;
}
p + .submenu-casc {
	margin-top: 1.5em;
}

.submenu-casc > div {
	background: #fafafa;
	box-sizing: border-box;
	padding: 1em;
}
.submenu-casc > div:first-of-type {
	width: calc(100% - 17em);
}
.submenu-casc > div:last-of-type {
	width: 13em;
}

.submenu-casc p {
	font-weight: bold;
}
.submenu-list {
	display: grid;
	grid-auto-flow: column;
	grid-template-rows: repeat(4, auto);
	gap: .25em 1em;
	margin-top: .5em;
}


.submenu-list a::before {
	content: "▼";
}

[class^="column-"] {
	display: flex;
	flex-wrap: wrap;
	gap: .25em 1em;
}
.column-2 li {
	width: calc(50% - .5em);
}
.column-3 li {
	width: calc((100% - 2em) / 3);
}
.column-4 li {
	width: calc((100% - 3em) / 4);
}
.sozai-casclist {
	gap: 2em 1em;
	margin: 1em 0 0;
}

.sozai-casclist li {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: .5em 0;
}

.sozai-casclist li > a {
	border: 1px solid #ddd;
	display: block;
	height: 100px;
	overflow: hidden;
	position: relative;
}
.sozai-casclist li > a img {
	display: block;
	width: 100%;
}

.sozai-casclist li > a .caption {
  display: inline;
}
.sozai-casclist li > a span {
  background: #ffdf7e;
  color: #333;
  display: inline-block;
	font-weight: 700;
  left: -30px;
  padding: 2px 10px;
  position: absolute;
  text-align: center;
  top: 5px;
  transform: rotate(-25deg);
  width: 120px;
}

.sozai-casclist li > p {
	text-align: left;
}
.sozai-casclist li > p.btn_casc {
	text-align: center;
}
.btn_casc a {
	background: var(--deep-color) url(../../img/common/icon-arrow.png) 0.8em 50% no-repeat;
	border-radius: 0.25em;
	color: #fff;
	display: block;
	margin: 0 auto;
  padding: 0.5em 1em 0.5em 3em;
	width: 12em;
}
.btn_casc a:hover {
  background-color: var(--main-color);
}
