@charset "UTF-8";
@import url(reset.css);
/*--------------------------------------------------------------

reset.css
リセット関係・clearfixなど

common.css
上記cssのimport、レイアウト（大枠）を記載したcss

sub.css
下層のレイアウト（大枠）を記載したcss

--------------------------------------------------------------*/
* html body {
	background: url(null) fixed;
}

*, *:before, *:after {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	background: #fff;
	color: #333;
	font-size: 16px;
	*font-size: small;
	*font: x-small;
	line-height: 1.5;
	letter-spacing: .06em;
	font-family: a-otf-gothic-bbb-pr6n, "メイリオ", "Meiryo", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
	-webkit-text-size-adjust: 100%; /*レスポンシブのとき*/
}

html {
	overflow-x: hidden;
}

.sp {
	display: none;
}

.min {
	font-family: a-otf-ryumin-pr6n, serif;
	/*font-family: ten-mincho-text, serif;
    font-weight: 400;
    font-style: normal;*/
}

/* link------------------------------------------------------------ */
::selection {
	background: rgba(0, 0, 0, .1);
	color: #5cabdc;
}

::-moz-selection {
	background: rgba(0, 0, 0, .1);
	color: #5cabdc;
}

a {
	color: #000;
	cursor: pointer;
	line-height: inherit;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	text-decoration: none;
}

/* PCで電話番号リンクを無効に */
a[href*="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
}

a:link {
	text-decoration: none;
}

a:visited {
	text-decoration: none;
}

a:hover {
	color: #00913a;
	text-decoration: none;
}

a:active {
	color: #00913a;
	text-decoration: none;
}

img {
	width: 100%;
}

a img {
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
a:hover img {
	opacity: .7;
}

.logo img,
.thum img,
.image img,
.slider img {
	width: 100%;
	height: auto;
	margin: 0 auto;
}

/* 全体格納  ------------------------------------------------------------ */
.wrapper {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}

.inner {
	width: 90%;
	max-width: 1200px;
	height: auto;
	margin: 0 auto;
	clear: both;
}

.inner::after {
	content: "";
	clear: both;
	display: block;
}

.content {
	display: block;
	width: 100%;
	height: auto;
}

h3 {
	font-size: 30px;
}

.column {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
}

/* header  ------------------------------------------------------------ */
header {
	width: 100%;
	height: auto;
	margin: 0 auto;
	background: #fff;
	/*position: fixed;
	top: 0;
	left: 0;*/
	z-index: 9999;
	position: relative;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, .3);
	-webkit-transition: all .5s;
	transition: all .5s;
	border-top: 6px solid #00913a;
	padding: 25px 0;
}

header .inner {
	width: 97%;
	display: table;
}

header h1.logo {
	width: 300px;
	display: table-cell;
	vertical-align: middle;
}

header h1.logo span {
	line-height: 1.3;
	font-size: 14px;
	color: #595757;
	display: block;
	font-weight: normal;
	margin-bottom: 10px;
}

header .gNav {
	width: auto;
	display: table-cell;
	vertical-align: middle;
}

header .gNav .info {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-bottom: 20px;
}

header .gNav .info .call p {
	font-size: 20px;
	color: #00913a;
	padding: 0 25px;
	position: relative;
}

header .gNav .info .call p a {
	color: #00913a;
}

header .gNav .info .call p a:hover {
	opacity: .7;
}

header .gNav .info .call p.tel::after {
	content: '';
	background: url("../img/icon-tel.svg") no-repeat center / contain;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 20px;
	height: 22px;
}

header .gNav .info .call p.fax::after {
	content: '';
	background: url("../img/icon-fax.svg") no-repeat center / contain;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 20px;
	height: 17px;
}

header .gNav .info .conBox {
	padding: 10px 20px 10px 70px;
	border: 2px solid #00913a;
	font-size: 16px;
	color: #00913a;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

header .gNav .info:hover .conBox {
	color: #fff;
}

header .gNav .info .conBox::before {
	content: '';
	background: url("../img/icon-mail.svg") no-repeat center /contain;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	position: absolute;
}

header .gNav .info .conBox:hover::before {
	background: url("../img/icon-mail_wh.svg") no-repeat center / contain;
}

header .gNav .info .conBox::after {
	content: '';
	background: #00913a;
	width: 15%;
	height: 100%;
	right: -40px;
	top: 0;
	transform: skew(45deg);
	position: absolute;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	z-index: -1;
}

header .gNav .info .conBox:hover::after {
	width: 150%;
	height: 100%;
}

header .gNav ul {
	display: flex;
	justify-content: flex-end;
}

header .gNav ul li {
	padding: 0 1.2em;
	position: relative;
}

header .gNav ul li:last-of-type {
	padding-right: 0;
}

header .gNav ul li::after {
	content: '';
	background: #5f5f5f;
	width: 1px;
	height: 20px;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	position: absolute;
	color: #333;
	font-weight: normal;
}

header .gNav ul li:last-of-type::after {
	display: none;
}

header .gNav ul a {
	color: #5f5f5f;
	display: block;
	font-size: 17px;
	padding: 0 10px;
	position: relative;
}

header .gNav ul a:hover {
	color: #3db870;
}

/* mainvisual ------------------------ */
.main-visual {
	position: relative;
	margin-bottom: 80px;
}

.slider {
	position: relative;
}

.slider .swiper-wrapper {
	overflow: hidden;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
	bottom: -30px;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 10px;
	border-radius: 0;
}

.swiper-pagination-bullet-active {
	background: #3db870;
}

.main-visual .mvComment {
	position: absolute;
	font-size: 22px;
	bottom: 30px;
	right: 30px;
	color: #fff;
	text-align: right;
	z-index: 99;
	text-shadow: 0 0 8px black;
}

.main-visual .mvComment h2 {
	font-size: 35px;
	margin: 0 0 30px;
}

/* category ------------------------ */
.category {
	margin: 0 auto 30px;
}

.category .col04 {
	display: flex;
	flex-wrap: wrap;
}

.category .col04 .item {
	width: calc( 97% / 4);
	margin-right: 1%;
	margin-bottom: 15px;
}

.category .col04 .item:last-of-type {
	margin-right: 0;
}

.category .item a {
	display: block;
	text-align: center;
	font-size: 14px;
	width: 100%;
	height: 100%;
	border: 2px solid #3db870;
	position: relative;
	overflow: hidden;
}

.category .item a::before {
	content: '';
	background: url("../img/bg-dot.png") rgba(61, 184, 112, .6);
	width: 100%;
	height: 0;
	bottom: 0;
	left: 0;
	position: absolute;
	z-index: 10;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.category .item a:hover::before {
	height: 100%;
}

/*.category .item a::after {
    content: '>詳しくはこちら';
    position: absolute;
    width: 100%;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}*/

.category .item a .overtxt {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	font-weight: 600;
	font-size: 12px;
	opacity: 0;
	z-index: 99;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.category .item a .overtxt p {
	font-size: 22px;
}

.category .item a .overtxt span {
	display: inline-block;
	vertical-align: middle;
	background: url("../img/arrow.svg") no-repeat center / contain;
	width: 20px;
	height: 20px;
	margin-left: 5px;
}

.category .item a:hover .overtxt {
	bottom: 50%;
	transform: translateX(-50%) translateY(-50%);
	opacity: 1;
}

.category .item .txt {
	padding: 20px 10px 70px;
	font-size: 15px;
	position: relative;
}

.category .item .txt p.cat-tit {
	color: #3db870;
	font-size: 24px;
	letter-spacing: .2em;
	font-weight: 600;
	margin-bottom: 20px;
	padding-bottom: 5px;
	text-align: center;
	position: relative;
}

.category .item .txt p.cat-tit::after {
	content: '';
	background: #3db870;
	width: 50%;
	height: 2px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
}

.category .item .more {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 20px;
	width: 100%;
	color: #3db870;
}


.category .col02 {
	padding: 60px 0;
}

.category .col02 .item {
	width: calc(100%/2);
	padding: 0 1em;
	margin: 0 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.category .col02 .item .thum {
	width: 45%;
}

.category .col02 .item .thum img {
	max-width: 100%;
	width: auto;
}

.category .col02 .item .txt {
	width: 55%;
	padding: 0 20px 0 0;
}

.category .col02 .item h4 {
	border-bottom: 2px solid #3db870;
	font-size: 20px;
	color: #3db870;
	padding: 0 8px 3px;
	margin: 0 auto 10px;
}

.category .col02 .item a {
	color: #3db870;
	text-decoration: underline;
	border: none;
	display: block;
	text-align: left;
	margin: 10px 0 0;
}

.category .col02 .item a::before {
	display: none;
}

.category .col02 .item a:hover {
	text-decoration: none;
	color: #666;	
	opacity: .7;
}


/*banner-area------------------------------------------------------------ */
.banner-area {
	background: url("../img/bg-dot.png");
	padding: 50px 0;
}

.banner-area ul {
	display: flex;
	width: 100%;
}

.banner-area ul li {
	width: 49%;
}

.banner-area ul li:first-of-type {
	margin-right: 2%;
}

.banner-area ul li a {
	display: block;
	position: relative;
}

.banner-area ul li a::after {
	content: '';
	border: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	-webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}

.banner-area ul li a:hover::after {
	border: 5px solid #00913a;
}

.banner-area ul li a:hover img {
	opacity: 1;
}

/*footer------------------------------------------------------------ */
footer {
	background: #00913a;
	padding: 50px 0;
	color: #fff;
}

footer .inner {
	display: table;
}

footer .info, 
footer .ftNav,
footer .ftCon {
	display: table-cell;
	vertical-align: top;
}

footer .info {
	font-size: 13px;
}

footer a {
	color: #fff;
}

footer a:hover {
	opacity: .7;
}

footer .info h1.ft-logo {
	width: 220px;
	margin-bottom: 30px;
}

footer .info p.copy {
	font-size: 9px;
	padding-top: 10px;
}

footer .ftNav ul {
	display: flex;
	align-content: flex-start;
	align-items: flex-end;
	justify-content: flex-start;
}

footer .ftNav ul a {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	padding: 5px 10px;
	display: block;
	margin-right: 20px;
}

footer .ftNav ul li:last-of-type a {
	margin-right: 0;
}

footer .ftNav ul a:hover {
	color: #bfbfbf;
}

footer .ftCon a {
	display: block;
	vertical-align: bottom;
	padding: 70px 0 20px;
	border: 2px solid #fff;
	text-align: center;
	color: #fff;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

footer .ftCon a:hover {
	color: #00913a
}

footer .ftCon a::before {
	content: '';
	background: url("../img/icon-mail_wh.svg") no-repeat center / contain;
	position: absolute;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 30px;
}

footer .ftCon a:hover::before {
	background: url("../img/icon-mail.svg") no-repeat center / contain;
}

footer .ftCon a::after {
	content: '';
	background: #fff;
	width: 15%;
	height: 100%;
	transform: skew(45deg);
	position: absolute;
	top: 0;
	right: -70px;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	z-index: -1;
}

footer .ftCon a:hover::after {
	width: 200%;
}

.pagetop {
	display: none;
	position: fixed;
	bottom: 200px;
	right: 4%;
	z-index: 9998;
}

.pagetop a {
	display: block;
	background: #fff;
	border: 2px solid #3db870;
	width: 60px;
	height: 60px;
	padding: 10px 18px;
}

.pagetop a img {
	width: auto;
	height: 100%;
}

@media screen and (max-width: 1023px) {
/* 1023px以下用（タブレット用）の記述 */
.pc {
	display: none!important;
}

.sp {
	display: block;
}

/* 電話番号リンクを有効に */
a[href*="tel:"] {
	pointer-events: auto;
	cursor: pointer;
}

.sb-toggle-right {
	width: 35px;
	height: 25px;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
}

#spBtn {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	outline: none;
	border: none;
	background: none;
	cursor: pointer;
	z-index: 999;
}

#spBtn span {
	display: inline-block;
	width: 100%;
	height: 3px;
	background-color: #00913a;
	position: absolute;
	left: 0;
	transition: all .4s;
}

#spBtn span:nth-of-type(1) {
	top: 0;
}

#spBtn span:nth-of-type(2) {
	top: 50%;
	transform: translateY(-50%);
}

#spBtn span:nth-of-type(3) {
	bottom: 0;
}

.sb-active #spBtn span:nth-of-type(1) {
	-webkit-transform: translateY(10px) rotate(-45deg);
	transform: translateY(10px) rotate(-45deg);
}

.sb-active #spBtn span:nth-of-type(2) {
	opacity: 0;
}

.sb-active #spBtn span:nth-of-type(3) {
	-webkit-transform: translateY(-12px) rotate(45deg);
	transform: translateY(-12px) rotate(45deg);
}

/* ドロワーナビ ------------------------ */
.sbNav {
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
	background: #00913a;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, .1);
}

.sb-right-inner {
	width: 100%;
	height: 100%;
	padding: 0 10px;
}

.sb-right-inner .logo {
	width: 100%;
	height: auto;
	max-width: none;
	max-height: none;
	margin: 0 0 15px;
	padding: 20px 10px 0;
}

.sb-right-inner .logo img {
	width: 100%;
	height: auto;
}

.drawrNav {
	width: 100%;
	height: auto;
	margin: 0 auto 30px;
}

.drawrNav ul {
	width: 100%;
	height: auto;
}

#accordion li {
	margin: 0 auto;
	width: 100%;
	text-align: left;
}

#accordion li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 15px 8px;
	color: #fff;
	border-bottom: 1px solid #fff;
}

#accordion li a span {
	display: block;
	font-size: 12px;
}

header {
	height: auto;
	padding: 0;
}

header .inner {
	padding: 10px 0;
}

header h1.logo {
	height: 30px;
}

header h1.logo img {
	height: 100%;
	width: auto;
}

h3 {
	font-size: 20px;
}

.btn a {
	font-size: 16px;
}

.main-visual {
	margin-bottom: 50px;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
	bottom: -25px;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 5px;
}

.category .col04 .item .thum {
	height: 180px;
	overflow: hidden;
	position: relative;
}

.category .col04 .item .thum img {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.category .item .txt p.cat-tit {
	font-size: 18px;
}

.category .item .txt {
	padding: 15px 10px 50px;
	font-size: 13px;
}

.category .item .more {
	font-size: 13px;
	bottom: 10px;
}

.category .col02 {
	padding: 40px 0 20px;
}
	
.category .col02 .item {
	width: 100%;
	padding: 0;
	margin: 0 0 40px;
	align-items: flex-start;
}

.category .col02 .item .thum {
	width: 35%;
}
	
.category .col02 .item .txt {
	width: 65%;
	padding: 0 3em 0 0;
}	
	
	
}


@media screen and (max-width: 767px) {
/* 767px以下用（タブレット／スマートフォン用）の記述 */
.main-visual .mvComment h2 {
	font-size: 22px;
	margin: 0 0 15px;
}

.main-visual .mvComment {
	font-size: 14px;
}

.category .col04 .item {
	width: calc( 100% / 2);
	padding: 0 1%;
	margin: 0 0 15px;
}
	
.category .col02 .item .txt {
	padding: 0 2em 0 0;
	font-size: 12px;
}	
	
.category .col02 .item h4 {
	font-size: 1rem;
}	
	
.category .col02 .item a {
	font-size: 12px;
}	
	

footer {
	padding: 30px 0 15px;
}

footer .info {
	text-align: center;
}

footer .info h1.ft-logo {
	margin: 0 auto 30px;
}

footer .ftCon {
	display: none;
}

}


@media screen and (max-width: 479px) {
/* 479px以下用（スマートフォン用）の記述 */
.main-visual .mvComment {
	bottom: 20px;
	right: 3%;
	width: 90%;
}
	
.category .col02 {
	padding: 30px 0 0;
}
	
.category .col02 .item {
	flex-wrap: wrap;
}	
	
.category .col02 .item .txt {
	width: 100%;
	padding: 0;
}	
	
.category .col02 .item .thum {
	width: 100%;	
	text-align: center;
	padding: 1em 0 0;
}	

.banner-area {
	padding: 30px 0;
}

.pagetop {
	bottom: 150px;
}

}


@media screen and (max-width: 360px) {
/* 360px以下用（スマートフォン用）の記述 */
}
