@charset "utf-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

/* ------------------------------
 PC、SP共通
------------------------------ */

* {
	margin: 0;
	padding: 0;
}
html,body{
	width: 100%;
}

html {
	-webkit-text-size-adjust: none;
	scroll-behavior: smooth;
}
body {
	background-color: #FFF;
	margin: 0 auto;
	color: #111;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
}
table {
	text-align: left;
	border-collapse: collapse;
}
td {
	vertical-align: top;
}
hr {
	clear: both;
}
img {
	max-width: 100%;
	height: auto;
	width /***/:auto;
	border: none;
	vertical-align: middle;
	image-rendering: -webkit-optimize-contrast;
}

p {
	line-height: 1.75em;
}
ul {
	margin: 0;
	padding: 0;
}
ol {
	margin: 0;
	padding: 0;
}
li {
	line-height: 2em;
}
a {
	transition: all 100ms 0s ease;
}
a:hover {
	opacity: 0.5;
}

span.none {
	display: none;
}
.clear {
	clear: both;
}
.fnt_s {
	font-size: 0.7em;
}
.fnt_l {
	font-size: 1.3em;
}
.bg_gray {
	background-color: #EEE;
}
p.p_right {
	text-align: right;
}
span.red {
	color: #E10000;
	font-weight: bold;
}
span.blue {
	color: #0065CB;
	font-weight: bold;
}
span.bg_y {
	background-image: linear-gradient(transparent 60%, #fcd900 50%);
}
span.bold {
	color: #000000;
	font-weight: bold;
}

/* ------------------------------
 ロード画面用（PC、SP共通）
 画像サイズ必須
------------------------------ */

#logo_loader {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 9999;
	background-color: #FFF;
	pointer-events: none;
}
#logo_loader .f_logo {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 130px;
	height: 74px;
	text-align: center;
	color: #fff;
}
#logo_loader .f_logo img {
	width: 100%;
	height: auto;
}
#logo_loader .f_logo:before {
	content: "";
	display: block;
	width: 100%;
	height: 110%;
	background-color: #FFF;
	position: absolute;
	top: 0;
	left: 100%;
	animation: loadLogo 1.5s;
}
@keyframes loadLogo {
	0% {
		left: 0;
	}
	50% {
		left: 0;
	}
	100% {
		left: 100%;
	}
}
#logo_loader .f_logo:before {
	animation: loadLogo 1s;
}

#logo_loader.open {
	animation-name: slideOut;
	animation-fill-mode: forwards;
	animation-duration: 2s;
	animation-delay: 2s;
}

@keyframes slideOut {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}



/* ------------------------------
 トップボタン（PC、SP共通）
 SP時最下部にボタンつける場合は別クラスで追加指定
 位置はそれぞれ調整
------------------------------ */

div.pagetop {
	width: auto;
	margin: 0;
	position: fixed;
	right: 20px;
	z-index: 900;
	pointer-events: none;
	font-size: 14px;
}
div.pagetop a {
	background-color: #FFF;
	padding: 15px 20px;
	border: solid 1px #BBB;
	text-decoration: none;
	color: #555;
	pointer-events: auto;
}
div.pagetop a:hover {
	opacity: 1;
	color: #FFF;
	background-color: #555;
}


/* ------------------------------
 フォーム（PC、SP共通）
------------------------------ */

input.input_box {
	width: 98%;
	padding: 5px 5px;
	border: solid 1px #BBB;
	border-radius: 3px / 3px;
	font-size: 16px;
}
input.input_box02 {
	width: 50%;
	padding: 5px 5px;
	border: solid 1px #BBB;
	border-radius: 3px / 3px;
	font-size: 16px;
}
input.input_box03 {
	width: 20%;
	padding: 5px 5px;
	border: solid 1px #BBB;
	border-radius: 3px / 3px;
	font-size: 16px;
}
textarea.input_box {
	width: 98%;
	height: 200px;
	border: solid 1px #BBB;
	border-radius: 3px / 3px;
	padding: 5px 5px;
	font-size: 16px;
}
::-webkit-input-placeholder {
	color: #aaa;
}
::-moz-placeholder {
	color: #aaa;
	opacity: 1;
}
:-ms-input-placeholder {
	color: #aaa;
}
label, input[type='radio'] {
	cursor: pointer;
}
label, input[type='checkbox'] {
	cursor: pointer;
}
select {
	padding: 5px 10px;
	border: solid 1px #BBB;
}
p.thanks {
	text-align: center;
	font-size: 1.3em;
	margin: 200px auto;
}

/* ------------------------------
 確認画面部分（PC、SP共通）
------------------------------ */

div.wrapper_confirm {
	max-width: 600px;
}
table.formTable {
	width: 100%;
	margin: 20px auto;
	border-top: solid 1px #ddd;
	border-left: solid 1px #ddd;
	border-collapse: collapse;
}
table.formTable th {
	border-right: solid 1px #ddd;
	border-bottom: solid 1px #ddd;
	padding: 10px 10px;
	background-color: #EEE;
	font-weight: normal;
}
table.formTable td {
	border-right: solid 1px #ddd;
	border-bottom: solid 1px #ddd;
	padding: 5px 5px;
}

div#formWrap {
	max-width: 700px;
	margin: 0 auto;
}

div#formWrap input {
	font-size: 16px;
	padding: 5px 10px;
	margin-bottom: 5px;
}

p.error_messe {
	text-align: left;
	color: #F00;
}







/* ------------------------------
 見出し部分
------------------------------ */

h2 {
	clear: both;
	color: #233d72;
	font-family: Times,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
}
h3 {
	color: #233d72;
	font-family: Times,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
	border-bottom: solid 1px #233d72;
}
h4 {
	clear: both;
}
h5 {
	clear: both;
}
h6 {
	clear: both;
}

/* ------------------------------
 セクション
------------------------------ */

article {
}
section {
	overflow: hidden;
	text-align: left;
}
section p {
}
section div.wrapper ul,
section div.wrapper ol {
}
section div.wrapper li {
}

/* ------------------------------
 テキスト関連
------------------------------ */

p.center {
	text-align: center;
	clear: both;
}

/* ------------------------------
 全体
------------------------------ */

div.wrapper {
	margin: 0 auto;
	text-align: left;
}
section div.wrapper,
section div.wrapper02 {
}
section div {
	overflow: hidden;
	clear: both;
}



/* ------------------------------
 見出し部分
------------------------------ */

h1 {
	font-family: Times,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
	text-align: center;
}
h1 span {
	color: #233d72;
}
h2 {
	text-align: center;
	position: relative;
}
h2::before {
	content:url("image/icon.png");
	vertical-align: middle;
}
h3 {
}


/* ------------------------------
 ヘッダー
------------------------------ */

header {
	overflow: hidden;
}
header div.wrapper {
}
div.header01 {
}
div.header02 {
}
div.header03 {
}

/* ------------------------------
 ごあいさつ
------------------------------ */

div.box_wrapper {
}
div.boxleft {
}
div.boxright {
	text-align: center;
	font-weight: bold;
}
div.boxright p {
	font-family: Times,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
}
div.boxright p span {
}

/* ------------------------------
 取得特許
------------------------------ */

div.patent_wrapper {
	width: auto;
	display: grid;
	justify-content: center;
}
div.patent {
	border: solid 1px #DDD;
	border-left:  solid 6px #b50000;
	background-color: #FFF;
}
div.patent p {
}

/* ------------------------------
 技術画像
------------------------------ */

div.product_image {
	width: auto;
	display: grid;
	justify-content: center;
}

/* ------------------------------
 info
------------------------------ */

div.info {
	display: grid;
	justify-content: center;
	grid-gap: 10px 10px;
}
div.info div {
	background-color: #FFF;
	border: solid 1px #DDD;
	border-left:  solid 6px #2E62B5;
}
div.info div p {
}

/* ------------------------------
 お知らせ
------------------------------ */

div.news {
	width: auto;
	border: solid 1px #CCC;
	overflow: auto;
	background-color: #FFF;
}
div.news ul {
	list-style: none;
}
div.news li {
	border-bottom: dotted 1px #CCC;
}


/* ------------------------------
 お知らせ下層
------------------------------ */

p.doc_title {
	text-align: center;
	font-weight: bold;
}
p.doc_title02 {
	text-align: center;
	font-weight: bold;
}
table.tab {
	margin: 20px auto;
	border-top: solid 1px #ddd;
	border-left: solid 1px #ddd;
	border-collapse: collapse;
}
table.tab td {
	border-right: solid 1px #ddd;
	border-bottom: solid 1px #ddd;
	vertical-align: middle;
}
table.tab p {
}
td.tab01 {
	text-align: center;
	background-color: #EEE;
}
td.tab02 {
	text-align: center;
}
div.movie {
}

div.shanghai_text {
	max-width: 640px;
	margin: 10px auto;
	padding: 0 10px;
}
div.shanghai_text p {
	margin-bottom: 30px;
}

/* ------------------------------
 お問い合わせ
------------------------------ */

div.inq_wrapper {
}
div.inq {
}
div.inq p {
}
div.inq ul {
	list-style: none;
}
div.inq ul li {
}
div.inq label input {
}
div.inq01 {
	font-weight: bold;
	color: #000;
}
div.inq02 {
}
div.inq span.red {
}

input.button {
	-webkit-appearance: none;
}

/* ------------------------------
 フッター
------------------------------ */

footer {
	border-top: solid 3px #233d72;
	overflow: hidden;
}
footer p {
	clear: both;
}

/* ------------------------------
 トップボタン位置
------------------------------ */

div.pagetop {
}

/* ------------------------------
 最下部用ボタン
------------------------------ */

div.bottom_link {
	background-color: #CCC;
	width: 100%;
	text-align: center;
	position: fixed;
	bottom: 0px;
	z-index: 850;
}
div.bottom_link a {
	background-color: #ed6400;
	color: #FFF;
	text-decoration: none;
	border-radius: 5px / 5px;
}


/*=====================================================================================
画面の横幅が641px以上
=====================================================================================*/

@media screen and (min-width: 641px){

.smart_only {
	display: none;
}
.hamburger-menu {
	display: none;
}

.slide_menu {
	display: none;
}
#menu-box {
	display: none;
}
.toggle_menu {
	display: none;
}
p.smart_center {
	clear: both;
}
p.pc_center {
	text-align: center;
	margin: 50px auto !important;
	clear: both;
}


/* ------------------------------
 セクション
------------------------------ */

section {
	margin: 30px 0;
}
section p {
	margin: 30px 0;
}
section div.wrapper ul,
section div.wrapper ol {
	margin: 30px 40px;
}
section div.wrapper li {
	margin-bottom: 5px;
}

section:nth-child(even){
	background-color: #f5eff7;
	-webkit-clip-path: polygon(0 0, 100% 25%, 100% 100%, 0 100%);
	clip-path: polygon(50% 5%, 100% 0, 100% 95%, 50% 100%, 0 95%, 0 0);
	padding: 100px 0 50px !important;
}

/* ------------------------------
 画像関連
------------------------------ */

img.imgleft {
	float: left;
	margin: 0 40px 40px 0;
}
img.imgright {
	float: right;
	margin: 0 0 40px 40px;
}

/* ------------------------------
 テキスト関連
------------------------------ */

p.center {
	margin: 50px auto !important;
}

/* ------------------------------
 全体
------------------------------ */

div.wrapper {
	max-width: 1000px;
}
section div.wrapper,
section div.wrapper02 {
	margin: 30px auto !important;
	padding: 0 10px;
}

section:nth-child(even){
	padding: 150px 0 100px !important;
}

/* ------------------------------
 見出し部分
------------------------------ */

h1 {
	font-size: 3vw;
}
h1 span {
	font-size: 1.8vw;
}
h2 {
	font-size: 36px;
}
h2::before {
	padding-right: 20px;
}
h3 {
	font-size: 26px;
	margin-top: 40px;
}


/* ------------------------------
 ヘッダー
------------------------------ */

header {
	width: 100%;
	margin-bottom: 30px;
}
header div.wrapper {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
div.header01 {
	width: 25%;
}
div.header02 {
	width: 50%;
}
div.header03 {
	width: 25%;
}


/* ------------------------------
 メイン画像
------------------------------ */

div.topimg {
	margin: 0 auto;
}
div.topimg img {
	max-width: 640px;
}

/* ------------------------------
 ごあいさつ
------------------------------ */

div.box_wrapper {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
div.boxleft {
	width: 720px;
}
div.boxright {
	width: 240px;
	font-size: 24px;
	padding-top: 30px;
}
div.boxright p {
	line-height: 1.3em;
	margin: 10px auto;
}
div.boxright p span {
	font-size: 14px;
}


/* ------------------------------
 取得特許
------------------------------ */

div.patent_wrapper {
	grid-template-columns: repeat(3,1fr);
	grid-gap: 10px 10px;
	margin: 30px 0;
}
div.patent {
}
div.patent p {
	margin: 20px 20px;
}

/* ------------------------------
 技術画像
------------------------------ */

div.product_image {
	grid-template-columns: repeat(5,1fr);
	grid-gap: 10px 10px;
	margin: 30px 0;
}

/* ------------------------------
 info
------------------------------ */

div.info {
	width: 100%;
	margin: 30px auto;
	grid-template-columns: repeat(3,1fr);
}
div.info div {
}
div.info div p {
	margin: 20px 20px;
}

/* ------------------------------
 お知らせ
------------------------------ */

div.news {
	margin: 30px auto;
	height: 200px;
}
div.news ul {
	font-size: 16px;
	margin: 10px 15px;
}
div.news li {
	padding-bottom: 5px;
	margin-bottom: 5px;
}


/* ------------------------------
 お知らせ下層
------------------------------ */

p.doc_title {
	font-size: 26px;
}
p.doc_title02 {
	font-size: 24px;
	margin: 60px auto !important;
}
table.tab {
}
table.tab td {
}
table.tab p {
	margin: 5px 20px;
}
td.tab01 {
}
td.tab02 {
}
div.movie {
	width: 640px;
	text-align: center;
	margin: 30px auto;
}
div.movie02 {
	width: 360px;
	text-align: center;
	margin: 30px auto;
}

/* ------------------------------
 お問い合わせ
------------------------------ */

div.inq_wrapper {
	max-width: 700px;
	margin: 30px auto;
}
div.inq {
}
div.inq p {
	margin: 10px 10px;
}
div.inq ul {
	margin: 10px 10px !important;
}
div.inq ul li {
	float: left;
	margin-right: 30px;
}
div.inq label input {
	margin-right: 10px;
}
div.inq01 {
}
div.inq02 {
}
div.inq span.red {
	font-size: 0.6em;
}

input.button {
	font-size: 18px;
	padding: 10px 15px;
}

/* ------------------------------
 フッター
------------------------------ */

footer {
	font-size: 12px;
	margin: 40px 0 0 0;
	padding-bottom: 140px;
}
footer p {
	margin: 40px auto 0;
}

/* ------------------------------
 トップボタン位置
------------------------------ */

div.pagetop {
	bottom: 120px;
}

/* ------------------------------
 最下部用ボタン
------------------------------ */

div.bottom_link {
	padding: 30px 0;
}
div.bottom_link a {
	font-size: 20px;
	padding: 10px 80px;
}


}


/*=====================================================================================
●smart.css  画面の横幅が640px以下
=====================================================================================*/

@media screen and (max-width:640px){

.pc_only {
	display: none;
}
p.smart_center {
	text-align: center;
	clear: both;
}

/* ------------------------------
 セクション
------------------------------ */

section {
	margin: 30px 0;
}
section p {
	margin: 20px 0;
}
section div.wrapper ul,
section div.wrapper ol {
	margin: 30px 30px;
}
section div.wrapper li {
	margin-bottom: 5px;
}

section:nth-child(even){
	background-color: #f5eff7;
}

/* ------------------------------
 テキスト関連
------------------------------ */

p.center {
	margin: 30px auto !important;
}

/* ------------------------------
 全体
------------------------------ */

div.wrapper {
	width: auto;
}
section div.wrapper,
section div.wrapper02 {
	margin: 30px auto !important;
	padding: 0 20px;
}

section:nth-child(even){
	padding: 80px 0 50px !important;
}

/* ------------------------------
 見出し部分
------------------------------ */

h1 {
	font-size: 30px;
}
h1 span {
	font-size: 18px;
}
h2 {
	font-size: 30px;
}
h2::before {
	padding-right: 20px;
}
h3 {
	font-size: 26px;
	margin-top: 40px;
}


/* ------------------------------
 ヘッダー
------------------------------ */

header {
	width: 100%;
	margin-bottom: 10px;
}
header div.wrapper {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
div.header01 {
}
div.header02 {
	width: auto;
}
div.header03 {
}


/* ------------------------------
 メイン画像
------------------------------ */

div.topimg {
	margin: 30px 0;
}

/* ------------------------------
 ごあいさつ
------------------------------ */

div.box_wrapper {
}
div.boxleft {
}
div.boxright {
	font-size: 24px;
}
div.boxright p {
	line-height: 1.3em;
	margin: 10px auto;
}
div.boxright p span {
	font-size: 14px;
}

/* ------------------------------
 取得特許
------------------------------ */

div.patent_wrapper {
	grid-template-columns: repeat(2,1fr);
	grid-gap: 10px 10px;
	margin: 30px 0;
}
div.patent {
}
div.patent p {
	margin: 10px 10px;
}

/* ------------------------------
 技術画像
------------------------------ */

div.product_image {
	grid-template-columns: repeat(2,1fr);
	grid-gap: 10px 10px;
	margin: 30px 0;
}

/* ------------------------------
 info
------------------------------ */

div.info {
	width: auto;
	margin: 30px auto;
	grid-template-columns: repeat(2,1fr);
}
div.info div {
}
div.info div p {
	margin: 10px 10px;
}

/* ------------------------------
 お知らせ
------------------------------ */

div.news {
	margin: 30px auto;
	height: 250px;
}
div.news ul {
	font-size: 16px;
	margin: 10px 15px;
}
div.news li {
	padding-bottom: 5px;
	margin-bottom: 5px;
}


/* ------------------------------
 お知らせ下層
------------------------------ */

p.doc_title {
	font-size: 24px;
}
p.doc_title02 {
	font-size: 20px;
	margin: 60px auto !important;
}
table.tab {
}
table.tab td {
	font-size: 0.9em;
}
table.tab p {
	margin: 5px 10px;
}
td.tab01 {
}
td.tab02 {
}

div.table_scroll {
	width: auto;
	overflow: auto !important;
}
div.table_scroll::-webkit-scrollbar {
	height:10px;
}
div.table_scroll::-webkit-scrollbar-track {
	background:#dddddd;
	border-radius: 5px;
}
div.table_scroll::-webkit-scrollbar-thumb {
	background:#2cc2e4;
	border-radius: 5px;
}

div.movie {
	width: auto;
	text-align: center;
	margin: 30px auto;
}
div.movie02 {
	width: auto;
	text-align: center;
	margin: 30px auto;
}

/* ------------------------------
 お問い合わせ
------------------------------ */

div.inq_wrapper {
	max-width: 700px;
	margin: 30px auto;
}
div.inq {
}
div.inq p {
	margin: 10px 10px;
}
div.inq ul {
	margin: 10px 10px !important;
}
div.inq ul li {
}
div.inq label input {
	margin-right: 10px;
}
div.inq01 {
}
div.inq02 {
}
div.inq span.red {
	font-size: 0.6em;
}

input.button {
	font-size: 18px;
	padding: 10px 15px;
}

/* ------------------------------
 フッター
------------------------------ */

footer {
	font-size: 12px;
	margin: 40px 0 0 0;
	padding-bottom: 140px;
}
footer p {
	margin: 40px auto 0;
}

/* ------------------------------
 トップボタン位置
------------------------------ */

div.pagetop {
	bottom: 120px;
}

/* ------------------------------
 最下部用ボタン
------------------------------ */

div.bottom_link {
	padding: 20px 0;
}
div.bottom_link p {
	margin: 0 20px;
}
div.bottom_link a {
	display: block;
	font-size: 20px;
	padding: 10px 0px;
}

}