﻿@charset "UTF-8";

/*================================================
 *  CSSリセット
 ================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav.gnav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav.gnav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}

/*================================================
 *  一般・共通設定
 ================================================*/
body {
	font-size: 14px;
	font-family: "メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
	background: #c9dbc0;
}

#contents {
	width: 100%;
	margin: 0 auto;
    display: flex;
    flex-direction: row; /* PCでは横並び */
    min-height: 100vh; /* 画面の高さを基準に */
}

header + #contents {
	padding-top: 50px;
}

.inner {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

section {
	margin: 0 0 80px;
	padding: 0;
}

@media screen and (max-width:768px) {
	section {
		margin: 0 0 40px;
	}
}

@media screen and (max-width:1023px) {
	#contents {
		flex-direction: column; /* スマホでは縦並び */
	}
}

#main {
	width:82%;
	background: #fff;
    flex-grow: 1; /* 残りの幅を自動調整 */
}

#sub {
	width:18%;
    background-image: url(../img/sub_bg.png);
	background-size: auto; 
    background-repeat: no-repeat;
    background-position: bottom right;
}

@media screen and (max-width:1023px) {
	#sub {
	    background-image: none;
	}
}

div:not(#sub) .not_bg-img {
    background-image: none;
}

@media screen and (max-width: 1023px) {
	.order1 {
	  order: 1;　/*上から1番目に表示*/
	}
	.order2 {
	  order: 2;　/*上から2番目に表示*/
	}
}

a {
	color:#c9dbc0;
	text-decoration:underline;
}
a:hover {
	color:#c9dbc0;
	text-decoration:none;
}
a {
    outline: none;
}
a:focus, *:focus { outline:none; }

h1 {
	font-size: 28px;
}

h2 {
	margin: 0 0 1.2em;
	padding: 0;
    font-family: serif;
	font-size: 40px;
	font-weight: bold;
	color:#004025;
	text-align: center;
	line-height: 1.4;
}

@media screen and (max-width:768px) {
    h2 {
    	margin: 0 0 25px;
		font-size: 28px;
    }
}

@media screen and (max-width:500px) {
    h2 {
		margin: 0 0 20px;
		font-size: 24px;
    }
}

h3 {
	margin-bottom: 0.25em;
	font-size: 18px;
	color: #fff;
}

h4 {
	margin-top: 0.25em;
	margin-bottom: 0.25em;
	font-size: 16px;
	font-weight: bold;
}

p {
	margin:0 0 1em 0;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

em {
	font-weight: bold;
}

strong {
	font-weight: bold;
	color: #ff0000;
}

pre {
	margin:1em 0;
	padding:1em;
}

blockquote {
	margin-bottom: 1em;
	padding: 1em;
	border: 1px dotted #ddd;
	border-left: 5px solid #ddd;
}

ul,ol,dl {
	margin: 0 0 1em 0;
}
ul li {
	list-style: disc;
}
ol li {
	list-style: decimal;
}
li {
	margin-left: 2em;
}

dt {
	margin-bottom: 0.5em;
	border-bottom: 1px dotted #ddd;
}
dd {
	margin-bottom: 1em;
}

table {
	width: 100%;
	margin-bottom: 0;
	border-collapse: collapse;
	border: 0;
}
th {
	padding: 20px 10px;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
	color: #333;
	border-bottom: 1px solid #ccc;
}
td {
	padding: 20px 10px;
	text-align: left;
	border-bottom: 1px solid #ccc;
}

/*================================================
 *  汎用クラス
 ================================================*/
@media screen and (min-width: 500px){
    .br-sp {display: none; }
}

/* 中央寄せ */
.center {
	text-align: center;
}

/* 左寄せ */
.left {
	text-align: left;
}

/* 右寄せ */
.right {
	text-align: right;
}

/* 写真中央寄せ */
.imgC {
	clear:both;
	overflow:hidden;
	margin: 0 auto 50px auto;
	margin-bottom:50px;
	text-align:center;
}
.imgC img {
	margin-bottom:10px;
}

/* 写真左寄せ */
.imgL {
	clear:both;
	overflow:hidden;
	margin-bottom:50px;
}
.imgL img {
	float:left;
	margin:0 50px 0 0;
}

@media screen and (max-width:767px) {
	.imgL {
		margin-bottom:20px;
	}
	.imgL img {
		float:none;
		margin:0 0 10px 0;
	}
}

/* 写真右寄せ */
.imgR {
	clear:both;
	overflow:hidden;
	margin-bottom:50px;
}
.imgR img {
	float:right;
	margin:0 0 0 50px;
}

@media screen and (max-width:767px) {
	.imgR {
		clear:both;
		overflow:hidden;
		margin-bottom:20px;
	}
	.imgR img {
		float:right;
		margin:0 0 10px 0;
	}
}

/* 写真ズーム */
.zoom {
	overflow: hidden;
}
.zoom img {
	display: block;
	-moz-transition: -moz-transform 0.8s linear;
	-webkit-transition: -webkit-transform 0.8s linear;
	-o-transition: -o-transform 0.8s linear;
	-ms-transition: -ms-transform 0.8s linear;
	transition: transform 0.8s linear;
}
.zoom img:hover {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-o-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
.zoom img {
	margin-bottom: 0;
}

/* オーバーレイ */
.overlay {
	position: relative;
}
.overlay::after{
	background: rgba(0,0,0,.5);
	content: "　";
	display: block;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transition: all .3s ease-out;
	pointer-events: none;
}
.overlay:hover::after {
	background: rgba(0,0,0,.1);
	transition: all .3s ease-out;
}
.overlay img {
	margin-bottom: 0;
}

/* ボタン */
.btn a {
	position: relative;
	display: inline-block;
	padding: 8px 40px 8px 40px;
	color: #fff !important;
	text-align: center;
	text-decoration: none;
	-moz-transition: 0.5s;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
	z-index: 1;
	background: #000;
}
.btn a:hover {
	color: #fff;
	background: #333;
}

/* 2カラム（スマートフォンでは1カラム) */
.twoCol {
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	position:relative;
	overflow:hidden;
	margin-bottom:60px;
}
.twoCol .inner {
	position: relative;
	overflow:hidden;
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-direction: column-reverse;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: column-reverse;
	flex-direction: column;
	width: 48.98%;
	width: calc((480 / 980) *100%);
	height: auto;
	margin:0 0 20px 0;
}
.twoCol .inner h4 {
	width: 100%;
	margin-top: 0.5em;
	text-align: left;
}
.twoCol .inner p {
	width: 100%;
	margin-bottom: 0;
	text-align: justify;
}
.twoCol .inner > a {
	width: 100%;
	height: 100%;
}
.twoCol .inner .image {
	width: 100%;
	min-height: 0%;
}
.twoCol .inner img {
	width:100%;
}
.twoCol .inner .btn {
	margin-top: auto;
	padding-top: 20px;
}
.twoCol .inner .text {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	vertical-align: middle;
	pointer-events: none;
}

@media screen and (max-width:767px) {
	.twoCol {
		display: block;
		margin-bottom:20px;
	}
	.twoCol .inner {
		width :100%;
		margin:0 0 10px 0;
	}
}

/* 3カラム（スマートフォンでは1カラム) */
.threeCol {
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
	margin-bottom:60px;
}
.threeCol .inner {
	position: relative;
	overflow: hidden;
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-direction: normal;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
	width: 32.14%;
	width: calc((315 / 980) *100%);
	margin: 0 0 20px 0;
}
.threeCol .inner h4 {
	width: 100%;
	margin-top: 0.5em;
	text-align: left;
}
.threeCol .inner p {
	width: 100%;
	margin-bottom: 0;
	text-align: justify;
}
.threeCol .inner > a {
	width: 100%;
	height: 100%;
}
.threeCol .inner .image {
	width: 100%;
	min-height: 0%;
}
.threeCol .inner img {
	width: 100%;
}
.threeCol .inner .btn {
	margin-top: auto;
	padding-top: 20px;
}
.threeCol .inner .text {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	vertical-align: middle;
	pointer-events: none;
}

@media screen and (max-width:767px) {
	.threeCol {
		display: block;
		margin-bottom: 20px;
	}
	.threeCol .inner {
		width : 100%;
		margin: 0 0 10px 0;
	}
}

/* 4カラム（スマートフォンでは2カラム) */
.fourCol {
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
	margin-bottom:60px;
}
.fourCol .inner {
	position: relative;
	overflow: hidden;
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-direction: normal;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
	width: 23.46%;
	width: calc((230 / 980) *100%);
	margin: 0 0 20px 0;
}
.fourCol .inner h4 {
	width: 100%;
	margin-top: 0.5em;
	text-align: left;
}
.fourCol .inner p {
	width: 100%;
	margin-bottom: 0;
	text-align: justify;
}
.fourCol .inner > a {
	width: 100%;
	height: 100%;
}
.fourCol .inner .image {
	width: 100%;
	min-height: 0%;
}
.fourCol .inner img {
	width: 100%;
}
.fourCol .inner .btn {
	margin-top: auto;
	padding-top: 20px;
}
.fourCol .inner .text {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	vertical-align: middle;
	pointer-events: none;
}

@media screen and (max-width:767px) {
	.fourCol {
		margin-bottom: 20px;
	}
	.fourCol .inner {
		box-sizing: border-box;
		width: 48.98%;
		width: calc((480 / 980) *100%);
		margin-bottom: 10px;
	}
}

/*================================================
 *  ヘッダー
 ================================================*/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(0,64,37,0.80);
	z-index: 100;
}

header:after {
	content: ""; 
	display: block;
	clear: both;
}

.headerInner {
	margin: 0;
	padding: 0 30px;
}

header h1 {
	float: left;
	height: 50px;
	line-height: 50px;
	margin:0;
	padding:0;
	vertical-align: middle;
}

header h1.name a {
    font-family: serif;
	font-size: 26px;
	font-weight: bold;
	text-align: center;
	color: #fff;
	text-decoration:none;
}

@media screen and (max-width:768px) {
	header h1 {
		padding: 0 0 0 10px;
	}
	
    .headerInner {
        margin: 0;
        padding: 0;
    }
	
	header h1.name a {
		font-size: 24px;
	}
}

/*================================================
 *  グローバルナビゲーション
 ================================================*/
/* PC用 */
@media print, screen and (min-width:979px) {
	nav.gnav:after {
		content: '';
		display: block;
		clear: both;
	}
	nav.gnav {
		display: block !important;
		float: right;
	}

	/* 共通 */
	nav.gnav ul {
		margin: 0;
		padding: 0;
	}
	nav.gnav ul li {
		position: relative;
		line-height: 50px;
		margin: 0;
		padding: 0;
		list-style: none;
	}
	nav.gnav ul li a {
		display: block;
		color: #fff;
		font-size: 16px;
		text-decoration: none;
	}
	nav.gnav ul li:hover > a {
		color: #fff;
		background: #9ebc91;
	}
	nav.gnav ul li+li:before {
	    position: absolute;
	    display: block;
	    content: "";
	    top: 50%;
	    height: 20px;
	    margin-top: -10px;
	    border-right: 1px solid #93B881;
	}

	/* 1段目 */
	nav.gnav > ul > li {
		position: relative;
		width: 110px;
		float: left;
		margin: 0;
		padding: 0;
		text-align: center;
		list-style: none;
		line-height: 50px;
	}
	nav.gnav > ul > li:first-child {
		width: 80px;
	}
	nav.gnav > ul > li:last-child {
		width: 140px;
	}
}

/* タブレット・スマートフォン用 */
@media screen and (max-width:978px) {
	nav.gnav {
		display: none;
	}
	nav.gnav ul {
		margin: 0;
		padding: 0;
	}
	nav.gnav > ul {
		z-index: 2;
		overflow: auto;
		position: fixed;
		top: 50px;
		right: 0;
		width: 100%;
		height: 88%;
		height: -webkit-calc(100% - 50px);
		height: calc(100% - 50px);
	}
	nav.gnav li {
		position: relative;
		box-sizing: border-box;
		width: 100%;
		float: none;
		margin: 0;
		padding-left: 10px;
		text-align: left;
		list-style: none;
		border-bottom: 1px solid #ccc;
		background: #e4eddf;
	}
	
	nav.gnav li:before {
		content: "";
		position: absolute;
		top: 2em;
		left: 1em;
		width: 0;
		height: 0;
		border-width: 5px;
		border-style: solid;
		border-color: transparent transparent transparent #006D4D;
	}
	
	nav.gnav li:first-child {
		border-top: 1px solid #ccc;
	}
	nav.gnav li:last-child {
		border-bottom: 1px solid #ccc;
	}
	nav.gnav li a {
		display: block;
		padding: 20px;
		font-size:18px;
		color: #333;
		text-decoration: none;
		background: #e4eddf;
	}
	nav.gnav li a:hover {
		color: #fff;
		background: #9ebc91;
	}

	.spMenuWrap {
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		-webkit-transition: all 1s;
		-moz-transition: all 1s;
		-ms-transition: all 1s;
		-o-transition: all 1s;
		transition: all 1s;
		background: transparent;
	}

	#spMenu {
		position: absolute;
		top: 10px;
		right: 10px;
	}

	#spMenu:hover {
		cursor: pointer;
	}

	#navBtn {
		display: inline-block;
		position: relative;
		width: 30px;
		height: 30px;
		border-radius: 5%;
		background: #9ebc91;
	}
	#navBtnIcon {
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 14px;
		height: 2px;
		margin: -1px 0 0 -7px;
		background: #fff;
		transition: .2s;
	}
	#navBtnIcon:before,
	#navBtnIcon:after {
		display: block;
		content: '';
		position: absolute;
		top: 50%;
		left: 0;
		width: 14px;
		height: 2px;
		background: #fff;
		transition: 0.3s;
	}
	#navBtnIcon:before {
		margin-top: -6px;
	}
	#navBtnIcon:after {
		margin-top: 4px;
	}
	#navBtn .close {
		background: transparent;
	}
	#navBtn .close:before,
	#navBtn .close:after {
		margin-top: 0;
	}
	#navBtn .close:before {
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
	}
	#navBtn .close:after {
		transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
	}
}

/*================================================
 *  サブコンテンツ
 ================================================*/
#sub h3 {
	margin-bottom:2em;
	padding:5px 5px 2px;
	color:#fff;
	font-size:18px;
	background:#004025;
}

.subInner {
    box-sizing: border-box;
	width: 100%;
	margin:0;
	padding:30px 30px 0;
	text-align:center;
}

.pdf_dl {
	overflow: hidden;
	width: 100%;
	margin:0 0 3em;
}
.pdf_dl p.text {
	width: 100%;
	margin:0;
	text-align:left;
}

.pdf_dl .twoCol {
	display: block;
    margin-right:0;
    margin-bottom:0;
}
.pdf_dl .twoColInner {
    margin-right:0;
}
.pdf_dl .twoColInner div {
    float:none;
    width:100%;
    margin-right:0;
}

.pdf01 {
	margin:0 0 2em;
}
.pdf01 img {
	max-width:100px;
	margin:0 0 1em;
}

.pdf02 {
	margin:0 0 2em;
}
.pdf02 img {
	max-width:100px;
	margin:0 0 1em;
}

.line {
	width: 100%;
	margin:0 auto;
}

.line-qr {
    box-sizing: border-box;
	width: 180px;
	margin:0 auto 1.5em;
	padding:25px;
	background: #fff;
}
.line-qr img {
	max-width: 100%;
	margin:0;
	padding:;
}

@media screen and (max-width:1024px) {
	.subInner {
		padding:20px 20px 0;
	}

	.line-qr {
		padding:15px;
	}
	.line-qr {
	    box-sizing: border-box;
		width: 100%;
	}
}

@media screen and (max-width:1023px) {
	.subInner {
		padding:30px 30px 0;
	}

	.pdf_dl .twoCol {
		overflow:hidden;
		margin-bottom:0;
	}
	.pdf_dl .twoColInner {
		overflow:hidden;
		margin-right:-2%;
	}
	.pdf_dl .twoColInner div {
		width:48%;
		float:left;
		margin-right:2%;
	}
	.pdf_dl .twoColInner div:nth-child(2n+1) {
		clear:both;
	}
	.pdf_dl .twoColInner img {
		width:100%;
		margin-bottom:0;
	}
	
	.line-qr {
	    box-sizing: border-box;
		width: 180px;
		margin:0 auto 1.5em;
		padding:25px;
		background: #fff;
	}
	.line-qr img {
		max-width: 100%;
		margin:0;
		padding:;
	}
}

@media screen and (max-width:768px) {
	#sub h3 {
		margin-bottom:2em;
	}

	.subInner {
		padding:30px 20px;
	}
	
	.pdf01 {
		margin:0 0 1.5em;
	}
	.pdf01 img {
		max-width:80px;
		margin:0 0 1em;
	}
	
	.pdf02 {
		margin:0 0 1.5em;
	}
	.pdf02 img {
		max-width:80px;
		margin:0 0 1em;
	}
}

/*================================================
 *  フッター
 ================================================*/
footer {
	clear: both;
	margin: 0;
	padding:50px 0 0;
	background: #004025;
}

.footerLogo {
	margin:0 0 2.5em;
	padding:0;
	text-align:center;
}
.footerLogo p {
	margin:0;
	padding:0;
}

.footerLogo .tatami img {
    width: 100px;
	margin:0 0 0.5em;
	padding:0;
}

.footerLogo .mark img {
    width: 120px;
	margin:0 0 0.5em;
	padding:0;
}

.footerLogo .name a {
	margin:0;
	padding:0;
	font-size: 14px;
	text-align: center;
	color: #fff;
	text-decoration:none;
}

.footmenu {
	width: 95%;
	margin:0 auto;
	padding:30px 0;
	overflow:hidden;
	border-top: 1px dotted #93B881;
}
.footmenu ul {
	position:relative;
	float:left;
	left:50%;
	margin:0;
}
.footmenu li {
	position:relative;
	left:-50%;
	float:left;
	list-style:none;
	margin:0;
	padding:0 20px;
	font-size:12px;
	text-align:center;
}
.footmenu li a {
	color: #fff;
    text-decoration: none;
}
.footmenu li a:hover {
	text-decoration: underline;
}
.footmenu li+ li {
	border-left: 1px solid #93B881;
}

.copyright {
	width:100%;
	padding: 20px 0;
	font-size: 11px;
	text-align: center;
	color: #fff;
	background: #003018;
}

@media screen and (max-width:500px) {
    .footmenu li {
		padding:0 10px;
		font-size:11px;
    }
}

@media screen and (max-width:767px) {
	footer {
		margin-top: 0px;
	}

	.fnav {
		display: block;
		margin: 0;
	}
	.fnav > ul {
		width: 100%;
	}
}

/*================================================
 *  ページトップへの戻り
 ================================================*/
.totop {
	position:fixed;
	bottom:15px;
	right:15px;
	z-index:1;
}
.totop a {
	display:block;
	text-decoration:none;
}
.totop img {
	background:#008d56;
}
.totop img:hover {
	background:#40aa80;
}

/*================================================
 *  スライドショー
 ================================================*/
.slide {
	padding-top: 0px;
	overflow: hidden;
	position: relative;
}
.slide p {
	position:absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index:10;
    font-size: 40px;
    color: #fff;
    text-align: center;
    font-family: serif;
	font-weight: bold;
	text-shadow: 2px 3px 2px rgb(61 70 70);
}

@media screen and (max-width:1024px) {
	.slide p {
	    font-size: 30px;
	}
}

@media screen and (max-width:768px) {
	.slide p {
	    font-size: 28px;
	}
}

@media screen and (max-width:500px) {
	.slide p {
	    font-size: 26px;
	}
}

#vegas {
    width: 100vw;
    height: 100vh;
}
#vegas a {
    font-size: 20px;
    color: #fff;
    display: block;
    width: 300px;
    text-align: center;
    text-decoration: none;
    margin: 0 auto;
    padding: 15px 30px;
    border: 5px solid #fff;
    box-sizing: border-box;
    font-weight: 600;
    height: 70px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
}

@media screen and (min-width: 770px) {
    #vegas a {
        font-size: 20px;
        width: 300px;
        padding: 15px 30px;
        border: 5px solid #fff;
        transition: background 0.3s, color 0.3s ;
        height: 70px;
    }
    #vegas a:hover {
        background: #fff;
        color: #888;
        text-decoration: none;
    }
}

/*================================================
 *  見出しタイトル
 ================================================*/
.title {
	overflow: hidden;
	position: relative;
	padding: 100px;
    background-image: url(../img/title_bg.jpg);
	background-size: cover; 
    background-repeat: no-repeat;
    background-position: bottom center;
}
.title h2 {
	position:absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index:10;
    font-size: 40px;
    color: #fff;
    text-align: center;
    font-family: serif;
	font-weight: bold;
	text-shadow: 2px 3px 2px rgb(61 70 70);
}

@media screen and (max-width:1024px) {
	.title {
		padding: 80px;
	}
	.title h2 {
		top: 65%;
	    font-size: 34px;
	}
}

@media screen and (max-width:768px) {
	.title {
		padding: 70px;
	}
	.title h2 {
		top: 65%;
	    font-size: 30px;
	}
}

/*================================================
 *  当店について
 ================================================*/
.about-us {
    box-sizing: border-box;
	width: 100%;
	padding: 80px;
	background: url('../img/bg_tatami.jpg') top center no-repeat;
	background-size:cover;
}
.about-us h2 {
	margin: 0 0 0.5em;
	padding: 0;
    font-family: serif;
	font-size: 40px;
	font-weight: bold;
	color:#fff;
	text-align: center;
	line-height: 1.4;
}
.about-us h3 {
	margin: 0 0 3em;
	padding: 0;
    font-family: serif;
	font-size: 22px;
	color:#fff;
	text-align: center;
}
.about-us p {
	font-size: 18px;
	color:#fff;
	line-height: 2.2;
}
.about-us p.about-us02 {
	margin: 3em 0 0;
	color:#fff;
}

/* 写真左寄せ */
.about-us .imgL {
	clear:both;
	overflow:hidden;
	margin:0;
}
.about-us .imgL img {
	float:left;
	width: 50%;
	margin:0 50px 0 0;
}

/* 写真右寄せ */
.about-us .imgR {
	clear:both;
	overflow:hidden;
	margin:0;
}
.about-us .imgR img {
	float:right;
	width: 50%;
	margin:0 0 0 50px;
}

@media screen and (max-width:768px) {
    .about-us h2 {
    	margin: 0 0 25px;
		font-size: 28px;
    }
}

@media screen and (max-width:500px) {
    .about-us {
        padding: 30px 0;
    }
    .about-us h2 {
		margin: 0 0 0.5em;
		font-size: 24px;
    }
    .about-us h3 {
        margin: 0 0 1em;
		font-size: 18px;
    }
	.about-us p {
		font-size: 14px;
		color:#fff;
		line-height: 1.8;
	}
	.about-us .imgL {
		margin-bottom:20px;
	}
	.about-us .imgL img {
		float:none;
        width: 100%;
		margin:0 0 10px;
	}
	
	.about-us .imgR {
		clear:both;
		overflow:hidden;
		margin-bottom:0;
	}
	.about-us .imgR img {
		float:right;
        width: 100%;
		margin:0 0 10px;
	}
}

/*================================================
 *  畳のお手入れ
 ================================================*/
.care {
    box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 0 60px 60px;
}
.care li {
	font-size: 16px;
	line-height: 2;
}

@media screen and (max-width:768px) {
	.care {
		padding: 0 15px 15px;
	}
}

/*================================================
 *  お問い合わせTEL
 ================================================*/
.inquiry {
    box-sizing: border-box;
	width: 100%;
	padding: 40px;
	background: url('../img/bg_inquiry.jpg') center center repeat;
	text-align: center;
}
.inquiry p.name {
	margin: 0;
	padding: 0;
    font-family: serif;
	font-size: 26px;
	font-weight: bold;
	line-height: 1.6;
	color:#fff;
}
.inquiry p.tel {
	margin: 0;
	padding: 0;
	font-size: 30px;
	font-weight: bold;
	line-height: 2;
	color:#fff;
}
.inquiry p.tel::before {
	content: "";
	display: inline-block;
	margin-right:0.25em;
	background-image: url('../img/tel_ico.png');
	background-size: cover;
	background-repeat: no-repeat;
	width: 0.7em;
	height: 0.7em;
}
.inquiry p.text {
	margin: 0 0 1.5em;
	padding: 0;
	font-size: 16px;
	line-height: 1.6;
	color:#fff;
}
.inquiry p.add {
	margin: 0 0 2em;
	padding: 0;
	font-size: 14px;
	line-height: 1.8;
	color:#fff;
}

.area {
	width: 50%;
	margin: 0 auto;
	padding: 30px 40px;
	background-color: rgb(0 0 0 / 0.2);
}
.area p {
	margin: 0;
	padding: 0;
	line-height: 2;
	color:#fff;
}
.area p.midashi {
	margin: 0 0 0.5em;
	padding: 0;
	font-size: 16px;
	text-align: center;
}
.area p.text1 {
	margin: 0 0 1em;
	padding: 0;
	text-align: left;
	text-align: justify;
}
.area p.text2 {
	margin: 0;
	padding: 0;
	text-align: center;
}

@media screen and (max-width:768px) {
	.inquiry {
		padding: 25px 15px;
	}
}

@media screen and (max-width:500px) {
	.inquiry p.text {
		font-size: 13px;
		line-height: 1.4;
	}
	.inquiry p.add {
		font-size: 12px;
		line-height: 1.6;
	}
	
	.area {
		width: 80%;
		margin: 0 auto;
		padding: 20px 30px;
	}
}

/*================================================
 *  Googleマップ
 ================================================*/
.g-map {
	position: relative;
	width: 100%;
	height: 500px;
}

.g-map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 500px;
}

@media only screen and (max-width: 768px) {
	.g-map {
		width:100%;
	}
	.g-map iframe {
		height:100%;
	}
}

/*================================================
 *  畳の替え時の目安
 ================================================*/
.change {
    box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 0 60px 60px;
}
.change li {
	font-size: 16px;
	line-height: 2;
}

@media screen and (max-width:768px) {
	.change {
		padding: 0 15px 15px;
	}
}

/*================================================
 *  業務内容　取扱い商品・サービス
 ================================================*/
.business {
    box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 60px;
}
.business h2 {
	margin: 0 0 1.2em;
	padding: 0;
    font-family: serif;
	font-size: 36px;
	font-weight: bold;
	color:#004025;
	text-align: center;
	line-height: 1.4;
}

@media screen and (max-width:768px) {
    .business h2 {
    	margin: 0 0 25px;
		font-size: 28px;
    }
}

@media screen and (max-width:500px) {
    .business h2 {
		margin: 0 0 20px;
		font-size: 24px;
    }
}

/* 2カラム */
.business .twoCol {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.business .twoCol .inner {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 50%;
    height: auto;
    margin-bottom: 0;
}
.business .twoCol .inner h3 {
	width: 100%;
	margin-bottom: 1em;
	font-size: 26px;
	font-weight: bold;
    font-family: serif;
	color:#004025;
	text-align: center;
}
.business .twoCol .inner p {
	width: 100%;
	margin-bottom: 0;
	text-align: justify;
}
.business .twoCol .inner .image {
	width: 100%;
	min-height: 0%;
}
.business .twoCol .inner img {
	width:100%;
}
.business .twoCol .inner .text {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	font-size: 18px;
	font-weight: bold;
	color: #333;
	text-align: left;
	vertical-align: middle;
	pointer-events: none;
}
.business .twoCol .inner .text {
	white-space: nowrap;
}

.textBox {
	display:block;
	background-color: #ebf1d4;
}
.textBox p.kind {
	line-height: 2.2;
}
.textBox p span {
	color: #c00;
}
.textBox ul {
	margin: 0 0 0.5em;
}
.textBox ul li {
	list-style: none;
}
.textBox li {
	margin-left: 0.2em;
}
.textBox li{
	position: relative;
	padding-left: 15px;
}
.textBox li:before {
	content: "";
	position: absolute;
	top: .5em;
	left: 0;
	width: 8px;
	height: 8px;
	background-color: #008d56;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* 縦並び２列 */
.column {
	column-count: 2;
	width: fit-content;
	column-gap: 2em;
}

/* リストのスタイル */
.2column ul {
	margin-bottom: 4em;
	line-height: 1.7;
}

@media screen and (max-width:1024px) {
	.business .twoCol .inner h3 {
		margin-bottom: 0.75em;
		font-size: 18px;
	}

    .business .twoCol .inner .text {
	    box-sizing: border-box;
		width: 100%;
		padding: 20px 15px;
		white-space: normal;
		font-size: 14px;
    }
}

@media screen and (max-width:1023px) {
    .business .twoCol .inner h3 {
        font-size: 22px;
    }
	.business .twoCol {
		display: block;
		margin-bottom:20px;
	}
	.business .twoCol .inner {
		width :100%;
		margin:0 0 10px;
	}
    .business .twoCol .inner .text {
		position: static;
        top: 0;
        left: 0;
        -webkit-transform: translateY(0) translateX(0);
        transform: translateY(0) translateX(0);
        width: 100%;
        min-height: 0%;
    }
    .business .twoCol .inner p {
		box-sizing: border-box;
        width: 100%;
        padding: 0 10px 10px;
    }
}

@media screen and (max-width:1023px) {
	.business {
		padding: 40px 0;
	}
	
    .business .twoCol {
        display: flex;
        flex-direction: column;
    }
    .business .twoCol .inner {
        width: 100%;
    }

    /* スマホでは全ての画像を先にする */
    .twoCol .inner:nth-child(1) { order: 1; } /* 画像1 */
    .twoCol .inner:nth-child(2) { order: 2; } /* テキスト1 */
    .twoCol .inner:nth-child(4) { order: 3; } /* 画像2 */
    .twoCol .inner:nth-child(3) { order: 4; } /* テキスト2 */
    .twoCol .inner:nth-child(5) { order: 5; } /* 画像3 */
    .twoCol .inner:nth-child(6) { order: 6; } /* テキスト3 */
    .twoCol .inner:nth-child(8) { order: 7; } /* 画像4 */
    .twoCol .inner:nth-child(7) { order: 8; } /* テキスト4 */
	
    .business .twoCol .inner h3 {
        font-size: 20px;
		text-align: left;
    }
    .business .twoCol .inner .text {
		padding: 30px;
		white-space: normal;
    }
    .business .twoCol .inner .text p {
		margin-bottom: 0;
    }
}

@media screen and (max-width:500px) {
    .business .twoCol .inner h3 {
        font-size: 18px;
    }
}

/*================================================
 *  業務実績
 ================================================*/
.works {
    box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 60px 150px;
}

.works .twoCol {
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	position:relative;
	overflow:hidden;
	margin-bottom:0;
}
.works .twoCol .inner {
	position: relative;
	overflow:hidden;
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-align: center;
	-webkit-box-align: center;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	-ms-flex-pack: justify;
	-webkit-box-pack: justify;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-ms-flex-direction: column-reverse;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: column-reverse;
	flex-direction: column;
	width: 48%;
	height: auto;
	margin:0 0 20px;
}
.works .twoCol .inner .image {
	width: 100%;
	min-height: 0%;
	margin-bottom: 1em;
}
.works .twoCol .inner img {
	width:100%;
	margin-bottom: 1em;
}
.works .twoCol .inner p {
	line-height: 1.8;
}

@media screen and (max-width:500px) {
    .works {
        box-sizing: border-box;
        width: 100%;
        margin: 0;
        padding: 40px 0;
    }
	
	.works .twoCol {
		display: block;
		margin-bottom:20px;
        padding: 0;
	}
	.works .twoCol .inner {
		width :100%;
		margin:0 0 10px 0;
	}
}

/*================================================
 *  会社概要
 ================================================*/
.company {
    box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 60px 250px;
}

.company table {
	font-size: 18px;
	margin-bottom: 1.5em;
}
.company table th {
	width: 25%;
	text-align: left;
}

@media screen and (max-width:500px) {
    .company {
        padding: 40px 0;
	}

    .company table th {
        box-sizing: border-box;
        width: 100%;
    }
}

/*================================================
 *  お問い合わせ
 ================================================*/
.contact {
    box-sizing: border-box;
	width: 100%;
	margin: 0;
	padding: 60px 250px;
}

.result {
	margin: 0 0 1.2em;
	padding: 0;
    font-family: serif;
	font-size: 30px;
	font-weight: bold;
	color:#004025;
	text-align: center;
	line-height: 1.4;
}

@media screen and (max-width:768px) {
    .result {
    	margin: 0 0 25px;
		font-size: 26px;
    }
}

@media screen and (max-width:500px) {
    .result {
		margin: 0 0 20px;
		font-size: 22px;
    }
}

@media screen and (max-width:500px) {
    .contact {
        padding: 40px 0;
	}

    .contact table th {
        box-sizing: border-box;
        width: 100%;
    }
}

.contact_form {
	overflow: hidden;
	margin: 0;
	padding: 0;
}

table.contact_form {
	font-size: 16px;
	margin-bottom: 1.5em;
}
table.contact_form th {
	width: 30%;
	text-align: left;
}

.form {
	margin:0 0 3em;
	padding:0;
}
.form:last-child {
	margin-bottom:0;
}
.form ul {
	text-align:left;
}

input#submit_btn {
	display:inline-block;
	padding:15px 20px;
	font-size: 16px;
	font-weight: bold;
	color:#008d56;
	text-decoration:none;
	border-radius:5px;
	border:1px solid #008d56;
	background:#fff;
	transition:all 0.2s ease 0s;
}
input#submit_btn:hover {
	font-weight: bold;
	color:#fff;
	background:#008d56;
	transition:all 0.2s ease 0s;
}

input#reset_btn {
	display:inline-block;
	padding:15px 20px;
	font-size: 16px;
	font-weight: bold;
	color:#008d56;
	text-decoration:none;
	border-radius:5px;
	border:1px solid #008d56;
	background:#fff;
	transition:all 0.2s ease 0s;
}
input#reset_btn:hover {
	font-weight: bold;
	color:#fff;
	background:#008d56;
	transition:all 0.2s ease 0s;
}

input#back_btn {
	display:inline-block;
	padding:15px 20px;
	font-size: 16px;
	font-weight: bold;
	color:#008d56;
	text-decoration:none;
	border-radius:5px;
	border:1px solid #008d56;
	background:#fff;
	transition:all 0.2s ease 0s;
}
input#back_btn:hover {
	font-size: 16px;
	font-weight: bold;
	color:#fff;
	background:#008d56;
	transition:all 0.2s ease 0s;
}

input {
    cursor: pointer;
    cursor: hand;
}

td input {
    height:30px;
}

input, select, textarea {
    font-size: 16px;
}

/* --- フォーム部品のサイズ --- */
#name, #name2, #tel {
    width: 60%;
}
#email,#add {
    box-sizing: border-box;
    width: 100%;
}

/* --- （複数行のテキスト入力欄） --- */
#message {
    box-sizing: border-box;
    width: 100%;
    height: 10em;
}

.required {
	color: #d00;
}

.msg {
	color: #d00;
}

span.msg {
	color: #d00;
}

.contact_btn {
	text-align: center;
}

@media screen and (max-width:500px) {
    #name, #name2, #tel {
        box-sizing: border-box;
        width: 100%;
    }
}

/*================================================
 *  タブレット・スマートフォン
 ================================================*/
/* テンプレートより小さくなった場合に適用 */
@media screen and (max-width:979px) {
	.inner {
		box-sizing: border-box;
		width: 100%;
		padding: 0 15px;
	}

	#contents {
		width: 100%;
		padding: 0;
	}
	
	#main {
		float:none;
		width:100%;
	}

	#sub {
		width:100%;
	}

	footer {
		width: 100%;
	}

	.lock {
		position: fixed;
		z-index: -1;
		width: 100%;
		height: 100%;
		top: 0;
		right: 0;
	}
}

@media screen and (max-width:500px) {
    table.contact_form th {
        width: 100%;
    }

    .table_sp { margin: 0 0 20px; }
    .table_sp th,
    .table_sp td{
        width: auto;
        display: block;
        border: none;
    }
    .table_sp th {border-top: 1px #ccc solid; border-bottom: 0;}
    .table_sp td {border-top: 1px #ccc solid; border-bottom: 0;}
    .table_sp tr:first-child th {border-top: none;}
}

