@charset "UTF-8";
/* CSS Document */



.clearfix:after {
  	content: ".";  
  	display: block; 
  	clear: both;
  	height: 0;
  	visibility: hidden;
}

.clearfix {
  	min-height: 1px;
}

* html .clearfix {
  	height: 1px;
  /*¥*//*/
  height: auto;
  overflow: hidden;
  /**/
}
ul,ol {
	margin-top: 0;
	margin-left: 0;
	padding: 0;
}
ul li{
	list-style-position: inside;
}
img {
    outline: none;
    border: none;
    max-width: 100%;
    height: auto;
}
figure img {
	width: auto;
    max-width: 100%;
    height: auto;
}
.fa-li {
    top: calc(50% - .5em) !important;
}
/* =Typography
-----------------------------------------------------------------------------*/
body {
	color: #555;
	font-family: "Noto Sans Japanese";
	font-size: 14px; font-size: 1.4rem;
	line-height: 2;
	margin: 0;
	letter-spacing: 1px;
}
h2.under {
	font-size: 30px;
    line-height: 1.25;
}
h2.under span {
	display: inline-block;
    margin-bottom: 20px;
    border-bottom: 1px solid #007ec5;
}
h2.bar {
	position: relative;
	padding-left: 55px;
	font-size: 24px;
	color: #007ec5;
}
h2.bar:before {
	content: "";
    width: 40px;
    height: 3px;
    background: #007ec5;
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
}
h2.border {
	border-bottom: 3px solid #d5d9e2;
}
h2.border2 {
	position: relative;
	text-align: center;
}
h2.border2 span {
	position: relative;
	z-index: 2;
	display: inline-block;
	margin: 0 2.5em;
	padding: 0 1em;
	background-color: #fff;
	text-align: left;
}
h2.border2::before {
	position: absolute;
	top: 50%;
	z-index: 1;
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background-color: #007ec5;
}

h3.border {
	position: relative;
	text-align: center;
}
h3.border span {
	position: relative;
	z-index: 2;
	display: inline-block;
	margin: 0 2em;
	padding: 0 1em;
	background-color: #fff;
}
h3.border::before {
	position: absolute;
	top: 50%;
	z-index: 1;
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background-color: #d5d9e2;
}

h3.bar {
	color: #007ec5;
	position: relative;
	padding-left: 40px;
	font-size: 20px;
}
h3.bar:before {
	content: "";
    width: 25px;
    height: 2px;
    background: #d5d9e2;
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
}
.en {
	font-family: 'Fjalla One', sans-serif;
}
.mincho {
	font-family: 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.text-nowrap {
	white-space: nowrap;
}
.color {
	color: #007ec5;
}
.color-gray {
	color: #d5d9e2;
}
/* =Links
-----------------------------------------------------------------------------*/
a {
	color: #007ec5;
	text-decoration:none;
	outline: none;
	-webkit-transition: 0.25s;
    -moz-transition: 0.25s;
    -o-transition: 0.25s;
    -ms-transition: 0.25s;
    transition: 0.25s;
}
a:visited {
}
a:hover,
a:focus {
	text-decoration: none;
	color: #ccc;
}
/* =Layout
-----------------------------------------------------------------------------*/
.container {
	max-width: 1140px;
    margin: 0 auto;
}
/* =Header
-----------------------------------------------------------------------------*/
#header {
	border-top: 3px solid #007ec5;
}
#header h1#logo {
	width: 300px;
    margin: 0 30px;
    padding: 15px 15px;
    float: left;
}
#header h1#logo img {
	width: 300px;
}
/* =Global navi
-----------------------------------------------------------------------------*/
#global-nav {
	float: right;
	margin-right: 20px;
}
#global-nav ul li {
	float: left;
	border-bottom: 3px solid #fff;
	-webkit-transition: 0.25s;
    -moz-transition: 0.25s;
    -o-transition: 0.25s;
    -ms-transition: 0.25s;
    transition: 0.25s;
    list-style: none;
}
#global-nav ul li:hover {
	border-bottom: 3px solid #f7931e;
}
#global-nav ul li a {
	display: block;
	padding: 30px 24px;
	font-size: 15px;font-size: 1.5rem;
	font-weight: bold;
	font-family: 'Fjalla One', sans-serif;
}
/* Toggle Button */
#nav-toggle {
    display: none;
    position: absolute;
    right: 12px;
    top: 18px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 101;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #007ec5;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 10px;
}
#nav-toggle span:nth-child(3) {
    top: 20px;
}
.overlay {
        position: fixed;
        top: 0;
        left: 0;
        display: none;
        width: 100%;
        height: 100%;
        background: #000;
        opacity: 0.25;
        filter: alpha(opacity=25);
        -ms-filter: "alpha(opacity=70)";
        z-index: 99;
}

/* =Footer
-----------------------------------------------------------------------------*/
#footer {
	border-top: 4px solid #007ec5;
}
#footer .address {
	font-size: 13px;font-size: 1.3rem;
	line-height: 1.5;
}
#footer #footer-navi ul {
	text-align: center;
	margin-bottom: 0;
}
#footer #footer-navi ul li {
	display: inline-block;
	border-left: 1px solid #007ec5;
}
#footer #footer-navi ul li:last-child {
	border-right: 1px solid #007ec5;
}
#footer #footer-navi ul li a {
	display: block;
	padding: 0 1.5em;
	font-size: 13px;font-size: 1.3rem;
	font-weight: bold;
	font-family: 'Fjalla One', sans-serif;
}
#copyright {
	padding: .75em 10px;
	background: #007ec5;
	color: #fff;
	font-size: 12px;
	text-align: center;
}
/* トップへ戻るボタン */
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 30px;
    margin: 0;
    text-align: center;
}
#page-top a {
	display: block;
    background: #007ec5;
    text-decoration: none;
    color: #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    display: block;
    line-height: 44px;
}
#page-top a:hover {
    text-decoration: none;
    opacity: .8;
}

/* =Misc
-----------------------------------------------------------------------------*/
.mt-0 {
	margin-top: 0;
}
.mb-0 {
	margin-bottom: 0;
}
.mb-5 {
	margin-bottom: 5px;
}
.mb-10 {
	margin-bottom: 10px;
}
.mb-20 {
	margin-bottom: 20px;
}
.mb-30 {
	margin-bottom: 30px;
}
.mb-40 {
	margin-bottom: 40px;
}
.mb-50 {
	margin-bottom: 50px;
}
.mb-60 {
	margin-bottom: 60px;
}
.pt-1 {
	padding-top: 1em;
}
.ptb40 {
	padding-top: 40px;
	padding-bottom: 40px;
}
.ptb50 {
	padding-top: 50px;
	padding-bottom: 50px;
}
.pt40 {
	padding-top: 40px;
}
.ptb30 {
	padding-top: 30px;
	padding-bottom: 30px;
}
.ptb50 {
	padding-top: 50px;
	padding-bottom: 50px;
}
.ptb20 {
	padding-top: 20px;
	padding-bottom: 20px;
}
.pt30 {
	padding-top: 30px;
}
.f-left{
	float:left;
}
.f-right{
	float:right;
}
.box-link:hover {
	cursor: pointer;
	-webkit-transition: 0.25s;
    -moz-transition: 0.25s;
    -o-transition: 0.25s;
    -ms-transition: 0.25s;
    transition: 0.25s;
}
.gray {
	background: #f7f7f7;
}
.color-red {
	color: #c7025d;
}
/* =Buttons
-----------------------------------------------------------------------------*/
a.button {
	display: inline-block;
	width: 260px;
	font-size: 18px;
    font-weight: normal;
    text-decoration:none;   
    text-align: center;
    color: #fff;
    background: #007ec5;
    border:1px solid #007ec5;
    padding: .5em 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
a.button:hover {
	color: #007ec5;
	background: transparent;
}
a.button2 {
	display: inline-block;
	width: 260px;
	font-size: 18px;
    font-weight: normal;
    text-decoration:none;   
    text-align: center;
    color: #007ec5;
    background: transparent;
    border:1px solid #007ec5;
    padding: .5em 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
a.button2:hover {
	color: #fff;
	background: #007ec5;
}
/* =Tables
-----------------------------------------------------------------------------*/
table {
	margin: 0;
	padding: 0;
	width:100%;
}
table.table th {
	padding: 1em 1em 1em 0px !important;
}
table.table td {
	padding: 1em 1em !important;
}
table.table,table.table-blue {
	 border-bottom: 1px solid #ddd;
}
table.table-blue {
	border-top: 1px solid #007ec5;
}
table.table-blue th {
	border-bottom: 1px solid #ddd;
	padding: 1em 2em;
	text-align: center;
	background: #f7f7f7;
}
table.table-blue td {
	border-bottom: 1px solid #ddd;
	padding: 1em 1em 1em 1.5em;
}

/* =Visual
-----------------------------------------------------------------------------*/
#visual {
	width: 100%;
	height: 300px;
	display: table;
	background: url(images/bg.jpg) center center no-repeat;
	background-size: cover;
}
#visual h1 {
	display: table-cell;
	color: #fff;
	font-size: 2.25em;
	text-align: center;
	padding: 0 10px;
	margin: 0;
	vertical-align: middle;
	line-height: 1.5;
}
/* お問い合わせ */
.page-id-15 #visual {
	background-image: url(images/bg_contact.jpg);
}
/* 製品 */
.archive #visual,.single-products #visual {
	background-image: url(images/bg_products.jpg);
}
/* 会社概要 */
.page-id-6 #visual {
	background-image: url(images/bg_company.jpg);
}
/* 洗車場 */
.page-id-9 #visual {
	background-image: url(images/bg_car-wash.jpg);
}
/* アクセス */
.page-id-13 #visual {
	background-image: url(images/bg_access.jpg);
	background-position-y: top;
}
/* =Breadcrumb
-----------------------------------------------------------------------------*/
.breadcrumb {
	background: #f7f7f7;
	padding: 10px 0;
	font-size: 13px;font-size: 1.3rem;
}
/* =Sidebar
-----------------------------------------------------------------------------*/
#sidebar > h3 {
	margin: 0;
	border-bottom: 3px solid #007ec5;
}
#sidebar ul li {
	border-bottom: 1px dotted #d5d9e2;
	list-style: none;
}

#sidebar ul li  li a {
	display: block;
	padding: .5em .5em .5em 24px;
	position: relative;
}
#sidebar ul li li a:before {
	content: "";
	display: block;
	width: 10px;
	height: 2px;
	background: #d5d9e2;
	position: absolute;
	top: calc(50% - 1px);
	left: 4px;
}
#sidebar ul.products-cate > li {
	margin-bottom: 20px;
}
#sidebar ul.products-cate > li > a {
	display: block;
	padding: 5px 5px 5px 28px;
	font-size: 1.15em;
	border-bottom: 3px solid #d5d9e2;
	background: url(images/arrow-right.png) 5px 16px no-repeat;
	background-size: 13px;
}
#sidebar 
/* =Contents
-----------------------------------------------------------------------------*/
.img-left-content {
	height: 540px;
}
.img-left-content .container {
	position: relative;
}
.img-left-content h2 {
	position: absolute;
	right: 100px;
	top: 10px;
	text-align: right;
	font-weight: normal;
}
.img-left-content .container .img {
	position: absolute;
	right: 300px;
	width: 1080px;
	z-index: -1;
}
.img-left-content .container .text {
	position: absolute;
	right: 0;
	top: 160px;
	width: 400px;
	padding: 40px;
	background: #fff;
}

.img-right-content {
	height: 540px;
	overflow: hidden;
}
.img-right-content .container {
	position: relative;
}
.img-right-content h2 {
	position: absolute;
	left: 60px;
	top: 10px;
	font-weight: normal;
}
.img-right-content .container .img {
	position: absolute;
	left: 300px;
	width: 1080px;
	z-index: -1;
}
.img-right-content .container .text {
	position: absolute;
	left: 0;
	top: 160px;
	width: 400px;
	padding: 40px;
	background: #fff;
}

/* =Top page
-----------------------------------------------------------------------------*/
#news table th {
	padding: .25em 1em .25em 0px !important;
	font-size: 13px;
	-webkit-transition: 0.25s;
    -moz-transition: 0.25s;
    -o-transition: 0.25s;
    -ms-transition: 0.25s;
    transition: 0.25s;
    vertical-align: top;
    width: 150px;
}
#news table td {
	padding: .25em .25em !important;
}
#news table .box-link:hover th,#news table .box-link:hover td a {
	color: #f7931e;
}
#top-banner-area h3 {
	-webkit-transition: 0.25s;
    -moz-transition: 0.25s;
    -o-transition: 0.25s;
    -ms-transition: 0.25s;
    transition: 0.25s;
    margin: 10px 0;
    line-height: 1.25;
    text-align: center;
    font-weight: normal;
}
#top-banner-area .box-link:hover h3 {
	color: #007ec5;
}
#top-banner-area .box-link figure img {
	-webkit-transition: 0.25s;
    -moz-transition: 0.25s;
    -o-transition: 0.25s;
    -ms-transition: 0.25s;
    transition: 0.25s;
    border: 1px solid #efefef;
}
#top-banner-area .box-link:hover figure img {
	opacity: .7;
	border: 1px solid #007ec5
}
#sns a img {
	-webkit-transition: 0.25s;
    -moz-transition: 0.25s;
    -o-transition: 0.25s;
    -ms-transition: 0.25s;
    transition: 0.25s;
}
#sns a img:hover {
	opacity: .7;
}
/* =Information
-----------------------------------------------------------------------------*/
.single-information .col-md-9 h2 {
	margin-bottom: 10px;
}
.alignleft {
	float: left;
	margin: 0.375em 1.75em 1.75em 0;
}

.alignright {
	float: right;
	margin: 0.375em 0 1.75em 1.75em;
}

.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto 1.75em;
}
.pageNav .prev a,.pageNav .next a {
	display: inline-block;
	color: #fff;
	padding: .25em 2.5em .25em;
	border: 1px solid #007ec5;
	background: #007ec5;
}
.pageNav .next a {
	float: right;
}
.pageNav .prev a:hover,.pageNav .next a:hover {
	color: #007ec5;
	background: #fff;
}
.page-nav a {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 24px;
	display: inline-block;
	padding: 5px 12px;
	line-height: 1;
}
.page-nav a:hover,.pageNav a:active {
	color: white;
	background: black;
}

/* =製品一覧
-----------------------------------------------------------------------------*/
.archive-product-wrap .archive-product-item {
	-webkit-transition: 0.25s;
    -moz-transition: 0.25s;
    -o-transition: 0.25s;
    -ms-transition: 0.25s;
    transition: 0.25s;
    padding: 10px;
}
.archive-product-wrap .archive-product-item .archive-inner {
	border-top: 1px solid #eee;
	padding-top: 10px;
}
.archive-product-wrap .archive-product-item:hover {
	opacity: .7;
}
.archive-product-wrap .archive-product-item h4 {
	margin: 8px 0 10px;
	line-height: 1.4;
}
.archive-product-wrap .archive-product-item p {
	margin: 0 0 10px;
	line-height: 1.4;
	color: #999;
}
/* ページナビ */
.wp-pagenavi {
	margin-bottom: 30px;
}
.pagenavi .wp-pagenavi a, .pagenavi .wp-pagenavi span {
	color: #007ec5;
    text-decoration: none;
    border: 1px solid #007ec5;
    padding: 8px 10px;
    margin: 4px;
}
.pagenavi .wp-pagenavi a:hover, .pagenavi .wp-pagenavi span.current {
    background: #007ec5;
    color: #fff;
    border: 1px solid #007ec5;
}

/* =製品詳細
-----------------------------------------------------------------------------*/
#single-product h2 {
	
}
#single-product #slider ul {
	border: 1px solid #efefef;
}
#single-product .item-dis {
	margin-top: 0;
	color: #999;
}
#single-product .item-text-1 p {
	margin-top: 0;
}
#single-product .item-text-1 ul li,
#single-product .item-text-2 ul li,
#single-product .item-text-3 ul li,{
	list-style: disc;
	list-style-position: inside;
}
#single-product .pdf-dl a {
	display: block;
	padding: 5px 0;
	border-bottom: dotted 1px #ccc;
}
#single-product .pdf-dl a:hover {
	color: #f7931e;
}
#single-product .pdf-dl a i {
	display: inline-block;
	margin-right: 1em;
	font-size: 1.5em;
}
#single-product h2 {
	color: #007ec5;
	line-height: 1.5;
}
#single-product .item-dis {
	border-bottom: 3px solid #efefef;
	padding-bottom: 10px;
	margin-bottom: 20px;
}
#single-product ol {
	margin-left: 1.5em;
}
#single-product h3.bar {
	margin-top: 0;
	margin-bottom: 10px;
}
#single-product .pdf-button a.button {
	width: 100%;
}
/* =会社概要
-----------------------------------------------------------------------------*/
.nowrap {
	white-space: nowrap;
}
/* =プライバシーポリシー
-----------------------------------------------------------------------------*/
.page-id-11 h3.border {
	text-align: left;
}
.page-id-11 h3.border span {
	padding-left: 0;
	margin-left: 0;
}
ul.no-style {
	list-style: none;
}
.kome {
	margin-left: 1.75em;
	text-indent: -1.75em;
}
/* =OEM
-----------------------------------------------------------------------------*/
.flow-arrow {
	color: #d5d9e2;
	font-size: 6em;
	line-height: .8em;
}
h3.border2 {
	border-bottom: 3px solid #d5d9e2;
	padding-bottom: 0.2em;
	font-size: 1.3em;
}
#oem2 {
	width: 100%;
    height: 160px;
    background: url(images/5.jpg) center top no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
/* =お問い合わせ
-----------------------------------------------------------------------------*/
.tabs > div {
	margin-top: 10px;
	background: white !important;
}
.tabs ul.horizontal {
	text-align: center;
}
.tabs UL.horizontal {
	list-style: none outside none;
	margin: 0;
}
.tabs ul.horizontal li {
	background: white;
	border-bottom: 4px solid #E5E5E5;
	margin: 0 1%;
	display: inline-block;
	width: 47%;
	-webkit-transition: 0.25s;
    -moz-transition: 0.25s;
    -o-transition: 0.25s;
    -ms-transition: 0.25s;
    transition: 0.25s;
}
.tabs ul.horizontal a {
	color: #ccc;
	display: block;
	font-size: 18px;
	font-weight: 300;
	padding: 14px;
}
.tabs ul.horizontal li:hover {
	background: #efefef;
}
ul.horizontal .active {
	background: #007ec5 !important;
	border-bottom: 4px solid #1a314e !important;
}
.active A {
	color: white !important;
}
.page-id-15 span.tel-num {
	color: #007ec5;
	font-size: 2em;
	font-weight: bold;
}
.form .table-form th {
    width: 240px;
    border-bottom: 1px solid #eee;
    padding: .825em;
}
.form .table-form td {
    border-bottom: 1px solid #eee;
    padding: .825em;
}
.form .table-form input {
	border: 1px solid #ccc;
}
.form .table-form input.short {
	width: 150px;
}
.form .table-form input.long {
	width: 100%;
}
.form .table-form textarea {
	width: 100%;
	border: 1px solid #ccc;
}
.wpcf7-submit {
	width: 240px;
	padding: 14px !important;
	background: #007ec5;
	border: 1px solid #007ec5;
	color: #fff;
	font-size: 16px;
	transition: all 0.25s ease;
	margin-top: 24px;
}
.wpcf7-submit:hover {
	background: #fff;
	color: #007ec5;
}
/* =洗車場経営者募集
-----------------------------------------------------------------------------*/
#keiei01 {
	background: url(images/keiei.jpg) center bottom no-repeat;
	background-size: cover;
}
#keiei01 h2 {
	color: #fff;
	margin: 0;
	text-align: center;
	line-height: 1.4;
	font-size: 24px;
	padding: 10px 15px;
	background: #007ec5;
}
#keiei01 .container {
	position: relative;
}
#keiei01 .container p {
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
	font-size: 22px;
	margin: 0;
	font-weight: bold;
	text-shadow: 0 0 20px #fff;
}
#keiei01 .container p a {
	color: #f7931e;
}
#keiei01 .container p a:hover {
	color: #007ec5;
}
.sp {
	display: none;
}
h3.balloon {
	margin-top: 0;
}
.balloon {
	color: #fff;
	background-color: #008a99;
	padding: 15px 24px;
	position: relative;
	border-radius: 12px;
	font-size: 20px;
	margin-bottom: 30px;
	line-height: 1.5;
	text-align: center;
}
.balloon:after {
  	border-top: 12px solid #008a99;
  	border-right: 12px solid transparent;
  	border-left: 12px solid transparent;
  	content: '';
  	margin-left: -10px;
  	position: absolute;
  	bottom: -12px;
  	left: 50%;
}
.ptb20-40 {
	padding-top: 40px;
	padding-bottom: 40px;
}
p.large {
	font-size: 1.4em;
}
p.large span {
	background: url(images/yellow.jpg) left bottom repeat-x;
}
p.large.tocontact {
	
}
p.large.tocontact span {
	background: none;
	font-size: 30px;
	color: #f7931e;
	font-weight: bold;
}
.tel-num {
	color: #007ec5;
	font-weight: bold;
	font-size: 32px;
	line-height: 1.65;
	margin-bottom: 10px;
}



@media (min-width: 768px) {
	.archive-product-wrap .archive-product-item {
		margin-bottom: 10px;
	}
	.archive-product-wrap .archive-product-item:nth-child(3n+1) {
		clear:both;
	}
}



@media (max-width: 767px) {
	.tel-num {
		font-size: 22px;
	}
	p.large {
		font-size: 16px;
		text-align: center;
	}
	p.large.tocontact span {
		font-size: 18px;
	}
	.ptb20-40 {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.sp {
		display: block;
	}
	#keiei01 h2 {
		font-size: 16px;
	}
	#keiei01 .container p {
		position: absolute;
		bottom: 0;
		text-align: center;
		font-size: 13px;
	}
	#car-wash table.table-simple td {
		display: block;
		width: 100%;
	}
	#car-wash2 table th,#car-wash2 table td {
		display: block;
		width: 100%;
	}
	.tab-inner dl dt,.tab-inner dl dd {
		display: block;
	}
	.tab-inner dl dt {
		font-weight: bold;
	}
	.tab-inner dl dd {
		margin-left: 1em;
	}
	.tab-inner {
		padding: 1em 0 0;
	}
	#company h2.mincho {
		font-size: 1.2em;
	}
	table.table-blue th {
		padding: .5em 1em;
	}
	table.table-blue td {
		padding: .5em .5em .5em 1em;
	}

	.archive-product-wrap .archive-product-item:nth-child(2n+1) {
		clear:both;
	}
	.img-left-content {
		height: auto;
	}
	.img-left-content h2.under {
		position: static;
		text-align: left;
		font-size: 26px;
		margin-bottom: 0;
	}
	.img-left-content .container .img {
		position: static;
		width: 100%;
		margin-bottom: 10px;
	}
	.img-left-content .container .text {
		position: static;
		width: 100%;
		padding: 1em;
	}
	
	.img-right-content {
		height: auto;
	}
	.img-right-content h2.under {
		position: static;
		text-align: left;
		font-size: 26px;
		margin-bottom: 0;
	}
	.img-right-content .container .img {
		position: static;
		width: 100%;
		margin-bottom: 10px;
	}
	.img-right-content .container .text {
		position: static;
		width: 100%;
		padding: 1em;
	}
	#footer #footer-navi ul li {
		display: block;
		border-left: none;
		border-top: 1px solid #d5d9e2;
	}
	#footer #footer-navi ul li:last-child {
		border-right: none;
		border-bottom: 1px solid #d5d9e2;
	}
	#footer #footer-navi ul li a {
		display: block;
		padding: .25em 0;
	}
	#footer .text-right {
		text-align: center;
	}
	#page-top {
	    bottom: 0;
	    right: 0;
	}
	#page-top a {
	    width: 30px;
	    height: 30px;
	    text-align: center;
	    display: block;
	    line-height: 24px;
	    font-size: 24px;
	}
	#visual {
		height: 150px;
	}
	#visual h1 {
		font-size: 1.5em;
	}
	#slider-wrap.mb-30 {
		margin-bottom: 0;
	}
	#news table th {
	    width: auto;
	}
/* 	問い合わせフォオーム */
	.form .table-form th {
		border-bottom: none;
		padding-bottom: 0;
	}
	.form .table-form th,.form .table-form td {
		display: block;
		width: 100%;
	}
	.form .table-form input {
		width: 100%;
	}
	.form .table-form input.long {
		width: 100%;
	}
	.form .table-form textarea {
		width: 100%;
		border: 1px solid #ccc;
	}
}


@media (max-width: 1139px) {
	#header {
		position: relative;
		z-index: 9999;
		background: #fff;
	}
	#header h1#logo {
	    width: 200px;
	    margin: 0 12px;
	    padding: 10px 0;
	    float: left;
	    position: relative;
	    z-index: 9999;
	    line-height: 1;
	}
	#global-nav {
        position: absolute;
        /* 開いてないときは画面外に配置 */
        top: 30px;
        background: #007ec5;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
        opacity: 0;
        z-index: -1;
        visibility: hidden;
    }
    #global-nav ul {
        list-style: none;
        position: static;
        right: 0;
        bottom: 0;
        font-size: 14px;
    }
    #global-nav ul li {
	    float: none;
	    border: none;
    }
    #global-nav ul li:hover {
	    border: none;
    }
    #global-nav ul li a {
        width: 100%;
        display: block;
        color: #fff;
        padding: 18px 0;
    }
    #nav-toggle {
        display: block;
    }
    /* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span:nth-child(1) {
        top: 10px;
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        transform: rotate(135deg);
    }
    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #nav-toggle span:nth-child(3) {
        top: 10px;
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }
    /* #global-nav スライドアニメーション */
    .open #global-nav {
        /* #global-nav top + #mobile-head height */
        -moz-transform: translateY(25px);
        -webkit-transform: translateY(25px);
        transform: translateY(25px);
        opacity: .9;
         z-index: 999;
         visibility: visible;
    }

}
@media (min-width: 1140px) {
	#global-nav ul li:last-child a {
		background: #007ec5;
		color: #fff;
	}
}