@charset "utf-8";
/* other.css：その他下層ページ用CSS */
/* 規則
・CSS記述規則：kebab-case記法
・以下の意味で使用
　xl：1367px以上／lg：1366px以下／md：1024px以下／sm：896px以下／xs：576px以下
　mt：マージン上／ml：マージン左／mr：マージン右／mb：マージン下
　txt：テキスト配置／bg：背景／btn：ボタン／　…etc.
*/

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
会社概要
class: comp～
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/********** Cytonaのはじまり **********/
.comp-origin-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	max-width: 800px;
}

.comp-origin-logo {
	width: 240px;
	margin-left: 30px;
	margin-right: 30px;
}

.comp-origin {
	width: 460px;
}

/********** 会社概要 **********/
.comp-table>div {
	border-bottom: 1px solid var(--cloud-gray);
	display: flex;
	flex-wrap: wrap;
}

.comp-table>div:first-of-type {
	border-top: 1px solid var(--cloud-gray);
}

.comp-table dt,
.comp-table dd {
	margin-top: 12px;
	margin-bottom: 12px;
}

.comp-table dt {
	width: 200px;
	font-weight: 600;
	color: var(--navy-blue);
}

.comp-table dd {
	width: calc(100% - 200px);
}

/********** 主要メンバー **********/
.comp-member-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.comp-member-box {
	display: flex;
	flex-wrap: wrap;
	width: 48%;
}

.comp-member-fig-lg {
	width: 300px;
}

.comp-member-inbox-lg {
	width: calc(100% - 340px);
	margin-left: 40px
}

/*.comp-member-inbox-md {
	width: calc(100% - 260px);
	margin-left: 40px
}*/
.comp-member-label {
	background-color: var(--navy-blue);
	padding: 2px 10px;
	color: var(--white);
	display: inline-block;
}

/*********************** ▼▼▼デバイス対応 1366px以下▼▼▼ ***********************/
@media screen and (max-width: 1365.98px) {

	/********** Cytonaのはじまり **********/
	.comp-origin-logo {
		width: 200px;
		margin-left: 15px;
		margin-right: 15px;
	}

}

/*********************** ▼▼▼デバイス対応 1024px以下▼▼▼ ***********************/
@media screen and (max-width: 1023.98px) {

	/********** 主要メンバー **********/
	.comp-member-box {
		width: 100%;
	}

	.comp-member-fig-lg {
		width: 180px;
	}

	.comp-member-inbox-lg,
	.comp-member-inbox-md {
		width: calc(100% - 200px);
		margin-left: 20px;
	}

	.comp-member-label {
		padding: 1px 8px;
	}

}

/*********************** ▼▼▼デバイス対応 896px以下▼▼▼ ***********************/
@media screen and (max-width: 895.98px) {

	/********** Cytonaのはじまり **********/
	.comp-origin-logo {
		width: 180px;
	}

	/********** 会社概要 **********/
	.comp-table dt {
		margin-top: 5px;
		margin-bottom: 3px;
	}

	.comp-table dd {
		margin-top: 0;
		margin-bottom: 5px;
	}

	.comp-table dt,
	.comp-table dd {
		width: 100%;
	}

}

/*********************** ▼▼▼デバイス対応 576px以下▼▼▼ ***********************/
@media screen and (max-width: 575.98px) {

	/********** Cytonaのはじまり **********/
	.comp-origin-logo {
		width: 160px;
	}

	/********** 主要メンバー **********/
	.comp-member-inbox-lg,
	.comp-member-inbox-md {
		width: 100%;
		margin-left: 0;
	}

}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
製品案内
class: product～
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

/********** 製品案内 **********/
.product-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.product-fig-lg {
	width: 35%;
}

.product-inbox-lg {
	width: calc(65% - 40px);
	margin-right: 40px;
}

.product-inbox-left {
	width: calc(35% - 10px);
	margin-right: 10px;
}

.product-inbox-right {
	width: calc(65% - 10px);
	margin-left: 10px;
}

.product-demo {
	width: calc(50% - 40px);
	margin-left: 40px;
}

.product-fig-demo {
	width: 50%;
}

.product-list {
	margin: 0 20px;
}

.product-list h4 {
	font-weight: bold;
}

.product-list dt {
	float: left;
	padding-right: 1rem;
}

.product-list dt::after {
	content: "|";
	color: var(--navy-blue);
	padding-left: 1rem;
}

.product-list-box {
	background: var(--light-gray);
	padding: 20px;
}

.doc-box {
	background: var(--white);
	padding: 40px;
}

.doc-box a {
}

.doc-box a:hover {
}

.demo-box a {
}

.demo-box a:hover {
}


.product-img {
	position: relative;
	display: inline-block;
}

.product-img .img-label {
	position:absolute;
	top:10px;
	left:10px;
	color: var(--white);
	font-size: 2rem;
	background: var(--navy-blue);
	padding: 5px 12px;
	border-radius: 5rem;
	border: 1px solid var(--white);
}

/*********************** ▼▼▼デバイス対応 1024px以下▼▼▼ ***********************/
@media screen and (max-width: 1023.98px) {

	/********** 製品案内 **********/
	.product-ttl {
		margin-left: 20px;
		margin-right: 20px;
	}
}


/*********************** ▼▼▼デバイス対応 896px以下▼▼▼ ***********************/
@media screen and (max-width: 895.98px) {

	/********** 製品案内 **********/
	.product-fig-lg {
		width: 100%;
		max-width: 460px;
	}

	.product-inbox-lg {
		width: 100%;
		margin-left: 20px;
		margin-right: 20px;
	}

	.product-demo {
		width: 100%;
		margin-left: 20px;
		margin-right: 20px;
	}

	.product-fig-demo {
		width: 100%;
		max-width: 460px;
	}

	.product-inbox-left {
		width: 100%;
	}
	
	.product-inbox-right {
		width: 100%;
	}
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
保有技術
class: biotechnology～
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.biotechnology-list-box {
	border: 1px solid var(--black);
	padding: 30px;
}

.biotechnology-box {
	position: relative;
}

.biotechnology-label {
	background-color: var(--navy-blue);
	padding: 5px 15px;
	color: var(--white);
	display: inline-block;
	margin-bottom: 20px;
	font-size: 2rem;
	border-radius: 10rem;
	font-feature-settings:"palt";
}


/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
CTC研究開発
class: ctc～
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.ctc-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.ctc-fig-lg {
	width: 400px;
}

.ctc-inbox-lg {
	width: calc(100% - 440px);
	margin-left: 40px
}

.ctc-ttl {
	color: var(--white);
	background: var(--navy-blue);
	text-align: center;
	font-weight: bold;
	padding: .3rem;
	font-size: 2.8rem;
}

.ctc-ttl-list {
	padding: 20px;
	background: var(--lavender-blue);
	margin-top: 20px;
}

.ctc-fig-left {
	width: calc(50% - 10px);
	margin-right: 10px;
}

.ctc-inbox-left {
	width: calc(50% - 10px);
	margin-right: 10px;
}

.ctc-inbox-right {
	width: calc(50% - 10px);
	margin-left: 10px;
}

.ctc-inbox-left small {
	font-feature-settings: "palt"; 
}

.ctc-inbox-left.en {
	font-feature-settings: "palt"; 
	line-height: 1.2;
}

.ctc-inbox-200 {
	width: 135px;
}

.ctc-inbox-200.en {
	width: 100%;
}

.ctc-inbox-auto {
	width: calc(100% - 135px);
}

.ctc-inbox-auto.en {
	width: 100%;
}

.ctc-inbox-auto table {
	margin-top: 1.5rem;
}

.ctc-inbox-auto.en table {
	width: 100%;
}

.ctc-inbox-auto table th{
	width: 150px;
	vertical-align: top;
	font-weight: 400;
	padding: 0px;

}

.ctc-inbox-auto.en table th {
	text-align: left;
	width: 140px;
	padding-right: 1rem;
}

.ctc-inbox-auto.en table td {
	width: auto;
}

.ctc-fig-list-lg {
	width: 30%;
}

.ctc-inbox-list-lg {
	width: calc(70% - 40px);
	margin-left: 40px
}

.ctc-border-box {
	padding: 30px;
	border-right: 1px solid var(--black);
	border-left: 1px solid var(--black);
	border-bottom: 1px solid var(--black);
}

table.ctc-list-tbl {
	width: 100%;
	max-width: 650px;
	border-collapse: collapse;
	margin: 0 auto;
}

table.ctc-list-tbl tr td {
	border-bottom: 1px solid var(--black);
	font-weight: bold;
}

table.ctc-list-tbl tr td p {
	margin: 10px 10px;
}

.ctc-list-txt {
	max-width: 650px;
	margin: 0 auto;
	display: block;
	margin-top: 2rem;
}

.polymer-lbl {
	display: inline-block;
	background: var(--navy-blue);
	color: var(--white);
	padding: 3px 10px;
}

.polymer-lbl {
	position: relative;
	background: var(--navy-blue);
	color: var(--white);
	font-weight: bold;
	padding: 10px 15px;
	border-radius: 6px;
	display: inline-block;
	margin-bottom: 15px;
}

.polymer-lbl:after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: calc(50% - 10px);
	border-width: 10px 10px 0;
	border-style: solid;
	border-color: var(--navy-blue) transparent;
}

.polymer-u-line {
	border-bottom: 3px solid var(--yellow);
	display: inline-block;
}

.percent-txt {
	font-size: 3rem;
	color: #e86929;
	font-weight: bold;
}

/*********************** ▼▼▼デバイス対応 1500px以下▼▼▼ ***********************/
@media screen and (max-width: 1300px) {


	.ctc-inbox-left {
		width: 100%;
		margin-right: 0px;
	}

	.ctc-inbox-right {
		width: 100%;
		margin-left: 0px;
	}
}

/*********************** ▼▼▼デバイス対応 1200px以下▼▼▼ ***********************/
@media screen and (max-width: 1200px) {
	.ctc-fig-lg {
		width: 100%;
	}

	.ctc-inbox-lg {
		width: 100%;
		margin-left: 0px
	}

	.ctc-inbox-left {
		width: 100%;
		margin-right: 0px;
	}

	.ctc-inbox-right {
		width: 100%;
		margin-left: 0px;
	}

	.ctc-fig-left {
		width: 100%;
		margin-right: 0px;
	}
	
	.ctc-inbox-left {
		width: 100%;
		margin-right: 0px;
	}
}

/*********************** ▼▼▼デバイス対応 896px以下▼▼▼ ***********************/
@media screen and (max-width: 895.98px) {
	.ctc-fig-lg {
		width: 100%;
	}

	.ctc-inbox-lg {
		width: 100%;
		margin-left: 0px
	}

	.ctc-inbox-left {
		width: 100%;
		margin-right: 0px;
	}

	.ctc-inbox-right {
		width: 100%;
		margin-left: 0px;
	}

	.ctc-fig-left {
		width: 100%;
		margin-right: 0px;
	}
	
	.ctc-inbox-left {
		width: 100%;
		margin-right: 0px;
	}


	.table-container {
		width: 100%;
		overflow-x: auto;
	}
	
	table.ctc-list-tbl {
		width: 100%;
		min-width: 500px; 
	}
}

.single-date {
	display: inline-block;
	margin-right: 2rem;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
新着情報
class: news～
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

ul.news-list {
	border-top: 1px solid var(--cloud-gray);
	padding: 0;
	list-style: none;
}

.news-list li {
	border-bottom: 1px solid var(--cloud-gray);
	padding: 20px 0;
	display: flex;
	flex-direction: column;
}

.news-list li div.news-date {
	width: 400px;
	float: left;
}

span.news-cat-tag {
	background: rgb(232, 105, 41, 0.7);
	color: var(--white);
	display: inline-block;
	min-width: 130px;
	padding:4px 15px;
	border-radius:30px;
	text-align: center;
	color: var(--white);
	font-size: 1.4rem;
}

span.news-cat-tag.research {
	background: rgb(41, 61, 163, 0.7);
}

.news-list li div.news-title {
	width: calc(100% - 400px);
	float: left;
	padding: 5px 0;
}


ul.cat-btn-nav {
	text-align: center;
	background: linear-gradient(to bottom, #c8cbd4 0% ,#e2e3e8 100%);
	margin-bottom: 3rem;
	border-radius: 1.5rem;
	padding-top: 20px;;
}

ul.cat-btn-nav li {
	display: inline-block;
}

.news-cat-btn a {
	display: inline-block;
	min-width: 200px;
	padding: 13px 15px 13px 15px;
	text-align: center;
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 13px auto;
	box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.2);
	font-size: 1.6rem;
	color: var(--white);
	transition: 0.3s ease-in-out;
	background: var(--orange);
	border: 1px solid var(--orange);
	margin: 0px 0px 20px 0px;
}

.news-cat-btn a:hover {
	text-decoration: none;
	filter: brightness(0.8);
}

.notice-cat-btn a,
.notice-cat-btn a,
.product-info-cat-btn a {
	display: inline-block;
	min-width: 200px;
	padding: 13px 15px 13px 15px;
	text-align: center;
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 13px auto;
	box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.2);
	font-size: 1.6rem;
	color: var(--white);
	transition: 0.3s ease-in-out;
	background: var(--white);
	border: 1px solid var(--orange);
	color: var(--orange);
	margin: 0px 0px 20px 0px;
}

.notice-cat-btn a:hover,
.notice-cat-btn a:hover,
.product-info-cat-btn a:hover {
	text-decoration: none;
	filter: brightness(0.8);
}


.research-cat-btn a {
	display: inline-block;
	min-width: 200px;
	padding: 13px 15px 13px 15px;
	text-align: center;
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 13px auto;
	box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.2);
	font-size: 1.6rem;
	color: var(--white);
	transition: 0.3s ease-in-out;
	background: var(--white);
	border: 1px solid var(--navy);
	color: var(--navy);
	margin: 0px 0px 20px 0px;
}

.research-cat-btn a:hover {
	text-decoration: none;
	filter: brightness(0.8);
}

.single-news-ttl {
	border-top: 1px solid var(--cloud-gray);
	border-bottom: 1px solid var(--cloud-gray);
	padding-top: 2rem;
	padding-bottom: 2rem;
	margin-top: 2rem;
	margin-bottom: 4rem;
}

.single-news-ttl h1 {
	margin-top: 1rem;
	font-size: 3.5rem;
}



/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
お問い合わせ
class: contact～
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.smf-form--business .smf-item {
	border: 0px !important;
	font-size: 1.8rem;
}


.smf-form--business .smf-item__col--label {
	border: 0px !important;
	background: none !important;
}

.smf-form .smf-text-control__control {
	width: 100% !important;
}

.smf-form .smf-text-control__control.tel-input {
	width: 300px !important;
}

.smf-button-control__control {
	display: inline-block;
	min-width: 300px;
	padding: 18px 50px 18px 20px !important;
	text-align: center;
	background-color: var(--orange) !important;
	background-image: url("../images/common/ico_arrow_right.svg") !important;
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 13px auto;
	box-shadow: 4px 4px 10px 0px rgba(0, 0, 0, 0.2);
	font-size: 1.6rem;
	color: var(--white);
	transition: 0.3s ease-in-out;
	color: #fff !important;
}


@media screen and (max-width: 895.98px) {
	video {
		width: 100%;
		max-width: 100%;
		height: auto;
	}
	
}