@charset "utf-8";
@media screen and (max-width:640px){
img{
	max-width: 100%;
	height: auto;
	width /***/:auto;
	backface-visibility: hidden;
}
.pc_only {
	display: none;
}

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

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


html {
	-webkit-text-size-adjust: none;
}
body {
	background-color: #FFF;
	margin: 0 auto;
	font-family: -apple-system,BlinkMacSystemFont,"Hiragino Kaku Gothic ProN",メイリオ,Meiryo,sans-serif;
	color: #111;
	text-align: center;
}
p {
	line-height: 1.8em;
	font-size: 0.9em;
}
li {
	line-height: 2em;
}
table {
	text-align: left;
}
td {
	vertical-align: top;
}
hr {
	clear: both;
}
img {
	border: none;
	vertical-align: middle;
	backface-visibility: hidden;
}
ul {
	margin: 0;
	padding: 0;
}
ol {
	margin: 0;
	padding: 0;
}
article {
}
section {
	width: auto;
	overflow: hidden;
	text-align: left;
}
section p {
	margin: 20px 0 40px;
}
a {
	transition: all 100ms 0s ease;
}
a:hover {
	opacity: 0.5;
}

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

h1 {
	font-size: 10px;
	font-weight: normal;
	text-align: center;
	margin: 0;
	padding: 0;
}
h2.index {
	color: #FFF;
	background-color: #0994b7;
	font-size: 22px;
	font-weight: bold;
	padding: 10px 0;
	text-align: center;
}
h2.sub {
	background-color: #1d7ed9;
	font-size: 22px;
	color: #FFF;
	padding: 10px 0;
}
h3 {
	text-align: center;
	color: #1d7ed9;
	font-size: 20px;
	clear: both;
	margin: 60px auto 30px;
}
h4 {
	color: #1d7ed9;
	font-size: 20px;
	border-bottom: solid 1px #1d7ed9;
	clear: both;
}


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

p.center {
	text-align: center;
	margin: 50px auto !important;
	clear: both;
}
p.pc_center {
	text-align: center;
	margin: 50px auto !important;
	clear: both;
}
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;
}
span.none {
	display: none;
}
ul.list {
	margin: 40px 40px;
}
ul.list li {
	margin-bottom: 10px;
}
ol.list {
	margin: 40px 40px;
}
ol.list li {
	margin-bottom: 10px;
}
.clear {
	clear: both;
}
.fnt_s {
	font-size: 0.7em;
}
.fnt_l {
	font-size: 1.3em;
}
.smart_center {
	width: 75%;
	text-align: center;
	margin: 20px auto 40px;
}

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

div.wrapper {
	width: auto;
	margin: 0 auto;
	text-align: left;
}
section div.wrapper {
	margin: 20px 30px !important;
}
section div {
	overflow: hidden;
	clear: both;
}

.bg_blue {
	background-color: #e8f0f6;
}

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

header {
	width: auto;
	overflow: hidden;
}
div.header_left {
	width: auto;
	margin: 7px 0 10px;
	text-align: center;
}
div.header_left p {
}
div.header_left p a {
	text-decoration: none;
	font-size: 18px;
	font-weight: bold;
	color: #000;
}
div.header_left p img {
	vertical-align: 0%;
	margin-right: 10px;
}
div.header_right {
	width: auto;
	margin: 7px 0 10px;
}
div.header_right p {
	margin: 0 50px;
	text-align: center;
}
div.header_right p img {
	margin-right: 10px;
	vertical-align: -5%;
}
div.header_right p a {
	color: #FFF;
	display: block;
	padding: 5px 0;
	background-color: #ff0072;
	text-decoration: none;
}

/* ------------------------------
 メニュー
------------------------------ */

nav {
	display: none;
}
div.slide_menu {
	width: 20%;
	padding: 10px 0;
	overflow: visible !important;
	z-index: 999;
}
#fixed {
	position: fixed;
}
#nav-drawer {
	position: relative;
	text-align: left;
	margin: 5px 10px;
}

.nav-unshown {
	display:none;
}

#nav-open {
	display: inline-block;
	height: 50px;
}

#nav-open span {
	position: absolute;
	vertical-align: middle;
	background-color: #57bcdb;
	color: #FFF;
	font-size: 14px;
	padding: 5px 10px;
	cursor: pointer;
	border-radius: 5px;
}

#nav-close {
	display: none;
	position: fixed;
	z-index: 8888;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0;
	transition: .3s ease-in-out;
}

#nav-content {
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 65%;
	max-width: 330px;
	height: 100%;
	background: #fff;
	transition: .3s ease-in-out;
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%);
	font-size: 16px;
}

#nav-input:checked ~ #nav-close {
	display: block;
	opacity: .5;
}

#nav-input:checked ~ #nav-content {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);
	box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

#nav-content ul {
	text-align: left;
	margin: 20px 20px;
	list-style: none;
}
#nav-content ul a {
	text-decoration: none;
	color: #000;
	display: block;
	padding: 10px 0;
}
#nav-content ul a:hover {
	background-color: #F5F5F5;
}



/* ------------------------------
 トップページ
------------------------------ */

div.topimg {
	width: auto;
	margin: 0 auto 30px;
	background-color: #DDD;
}
div.smart_index_img01 {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
div.smart_index_img01 div {
	width: 48%;
}
div.smart_index_img02 {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
div.smart_index_img02 div {
	width: 33%;
}
div.index_img img {
	margin-bottom: 15px;
}

div.index_box_wrapper {
	margin: 20px 0;
}
div.index_box {
	width: auto;
	border: solid 1px #DDD;
	margin: 0 auto 15px;
}
div.index_box p {
	margin: 15px 15px;
}
p.index_box_title {
	font-weight: bold;
	color: #000;
	border-bottom: solid 1px #AAA;
}

/* ------------------------------
 お問い合わせバナー
------------------------------ */

section.contact {
	text-align: center !important;
	width: auto;
	background-image:url(image/contact_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	color: #FFF;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 40px 0;
}
section.contact p {
	margin: 15px 10px;
}
p.contact_title {
	display: inline-block;
	font-size: 18px;
	font-weight: bold;
	border-bottom: solid 1px #FFF;
}

p.contact_button {
	width: auto;
	background-color: #FFF;
}
p.contact_button a {
	display: block;
	color: #FFF;
	background-color: #ff0072;
	border: solid 3px #FFF;
	text-decoration: none;
	padding: 5px 0;
}

/* ------------------------------
 パンくず、トップ
------------------------------ */

p.bread {
	display: none;
}
div.pagetop {
	width: 100%;
	text-align: center;
	margin: 0 auto;
	position: fixed;
	bottom: 0;
	z-index: 999;
	pointer-events: none;
}
div.pagetop p {
	font-size: 13px;
	text-align: right;
	margin: 20px 0;
}
div.pagetop p a {
	background-color: #FFF;
	padding: 8px 15px;
	border: solid 1px #aaa;
	text-decoration: none;
	font-weight: bold;
	color: #111;
	pointer-events: auto;
}

/* ------------------------------
 テーブル
------------------------------ */

table.tab {
	margin: 10px auto;
	border-top: solid 1px #ddd;
	border-left: solid 1px #ddd;
	border-collapse: collapse;
	clear: both;
}
table.tab td {
	border-right: solid 1px #ddd;
	border-bottom: solid 1px #ddd;
	padding: 5px 5px;
	text-align: center;
	font-size: 0.8em;
}
td.tab01 {
	background-color: #eee;
	font-weight: bold;
	white-space: nowrap;
}
td.tab02 {
	background-color: #D5F5FF;
	white-space: nowrap;
}
td.tdleft {
	text-align: left !important;
}
td.nowrap {
	white-space: nowrap;
}


div.table_scroll {
	width: auto;
	overflow: auto !important;
	margin: 20px 0 40px;
}
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.service01_1 {
	width: auto;
	text-align: center;
	margin: 30px auto 60px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
div.service01_1 div {
	width: 48%;
}
div.service01_1 img {
	margin-bottom: 20px;
}
div.service02_1 {
	width: auto;
	text-align: center;
	margin: 30px auto 60px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
div.service02_1 div {
	width: 33%;
}
div.service02_1 img {
	margin-bottom: 20px;
}
div.service03 {
	width: auto;
	margin: 30px auto 60px;
}
div.service03 p {
	text-align: center;
	margin: 10px auto;
}

/* ------------------------------
 プレス機
------------------------------ */

div.service03_1 {
	width: auto;
	margin: 30px auto;
}
div.service03_1 div {
	width: auto;
	text-align: center;
}
div.service03 div {
	width: auto;
	text-align: center;
}

/* ------------------------------
 会社概要
------------------------------ */

div.about_wrapper {
	width: auto;
	margin: 30px auto 60px;
}
div.about {
	border-bottom: solid 1px #DDD;
}
div.about p {
	margin: 10px 10px;
}
div.about01 {
	width: auto;
	font-weight: bold;
	color: #000;
}
div.about02 {
	width: auto;
}
div.about02 ul {
	margin: 10px 30px;
}

.google-maps {
	position: relative;
	padding-bottom: 75%;
	padding-top: 30px;
	height: 0;
}

.google-maps iframe,
.google-maps object,
.google-maps embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

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

div.inq_wrapper {
	width: auto;
	margin: 30px auto;
}
div.inq {
}
div.inq p {
	margin: 10px 10px;
}
div.inq ul {
	margin: 10px 10px;
	list-style: none;
}
div.inq ul li {
	float: left;
	margin-right: 30px;
}
div.inq label input {
	margin-right: 10px;
}
div.inq01 {
	width: auto;
	font-weight: bold;
	color: #000;
}
div.inq02 {
	width: auto;
}
input.input_box {
	width: 96%;
	padding: 10px 5px;
	border: solid 1px #BBB;
	border-radius: 5px / 5px;
	font-size: 16px;
}
input.input_box02 {
	width: 50%;
	padding: 10px 5px;
	border: solid 1px #BBB;
	border-radius: 5px / 5px;
	font-size: 16px;
}
input.input_box03 {
	width: 10%;
	padding: 10px 5px;
	border: solid 1px #BBB;
	border-radius: 5px / 5px;
	font-size: 16px;
}
textarea.input_box {
	width: 96%;
	height: 300px;
	border: solid 1px #BBB;
	border-radius: 5px / 5px;
	padding: 10px 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;
}

input.button {
	-webkit-appearance: none;
	font-size: 18px;
	padding: 10px 15px;
}
p.thanks {
	text-align: center;
	font-size: 1.3em;
	margin: 200px auto;
}


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

footer {
	width: auto;
	overflow: hidden;
	font-size: 12px;
	margin: 40px 0 60px 0;
	border-top: solid 3px #0994b7;
}
footer ul {
	display: none;
}
footer p {
	clear: both;
	text-align: center;
	margin: 10px auto;
}

}