﻿@charset "UTF-8";
@import "base.css";
@import "font-family.css";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
  font-size: 16px;
  -webkit-text-size-adjust: none;
}
header, section, footer, aside, nav, main, article, figure {
  display: block;
}
img {
  vertical-align: bottom;
}
a {
  color: #04592e;
}
a:hover, a:active {
  text-decoration: none;
}
table {
  width: 100%
}
p {
  margin: 0 0 1.5em;
}
.section {
  padding: 0 0 30px;
}
p, dd, td, th, li {
  line-height: 1.5em;
}
#totop {
  position: fixed;
  bottom: 60px;
  right: 50px;
  z-index: 10;
  margin-bottom: 0;
  width: 60px;
}
#totop a {
  display: block;
  transition: all 0.5s;
  -webkit-animation: slide-top 0.8s linear infinite alternate-reverse;
  animation: slide-top 0.8s linear infinite alternate-reverse;
}
#totop a:hover {
  opacity: 0.7;
}
@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
.bold {
  font-weight: bold;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
*, *:before, *:after {
  box-sizing: border-box;
  outline: none;
}
/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
body {
  color: #000;
  font-family: 'Montserrat', sans-serif;
}
#wrapper {
  min-width: 1200px;
  overflow: hidden;
}
.container {
  width: 100%;
  padding: 0 5%;
  margin: 0 auto;
  position: relative;
}
img {
  max-width: 100%;
}
.sp {
  display: none;
}
h1 {
	display: none;
}
#header {
	padding: 10px 0;
	background: #fff;
}
#header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo {
	margin: 0;
}
.h_tel {
	margin: 0 0 0 30px;
	width: 200px;
	border: 1px solid #04592e;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 600;
	text-align: center;
	letter-spacing: 0.05em;
	color: #04592e;
	height: 50px;
	border-radius: 30px;
}
.h_tel:before {
	content: '';
	position: relative;
	display: inline-block;
	background: url("/W_images/h_tel.png") no-repeat center center/100% auto;
	width: 14px;
	height: 14px;
	margin-right: 5px;
}
.h_search {
	position: relative;
	margin-left: 50px;
}
.h_search_ttl {
	margin: 0;
	cursor: pointer;
}
.h_search_form {
	position: absolute;
	right: 0;
	top: 30px;
	background: #f0f0f0;
	padding: 5px;
	width: 250px;
	z-index: 5;
	display: none;
}
.h_search_form input {
	width: 100%;
	font-size: 14px;
	padding: 5px 10px;
	border: none;
	background: #fff;
}
.h_search_form .button {
	position: absolute;
	right: 5px;
	top: 5px;
	background: #04592e;
	border: none;
	color: #fff;
	text-align: center;
	padding: 5px 10px;
	font-size: 14px;
	cursor: pointer;
    text-decoration:none;
}
.gnavi {
	display: flex;
}
.gnavi>li {
	position: relative;
	margin: 0 25px;
}
.gnavi>li>a {
	display: block;
	text-decoration: none;
	font-weight: 500;
	color: #000;
	padding: 10px 0;
	position: relative;
	font-size:18px;
}
.gnavi>li>a:after {
	content: '';
	position: absolute;
	width: 0;
	height: 1px;
	background: #04592e;
	bottom: 0;
	left: 0;
	transition: all 0.3s;
}
.gnavi>li>a:before {
	content: '';
	position: absolute;
	width: 5px;
	height: 5px;
	background: #04592e;
	border-radius: 50%;
	bottom: -2px;
	left: 0;
	transition: all 0.3s;
	opacity: 0;
}
.gnavi>li.active>a:after,.gnavi>li:hover>a:after {
	width: 100%;
}
.gnavi>li.active>a:before,.gnavi>li:hover>a:before {
	left: calc(50% - 2px);
	opacity: 1;
}
.submenu {
	position: absolute;
	z-index: 10;
	left: 50%;
	transform: translateX(-50%);
	margin-top: 5px;
	display: none;
}
.submenu a {
	display: block;
	text-decoration: none;
	background: #04592e;
	color: #fff;
	white-space: nowrap;
	padding: 10px 20px;
	margin-top: 1px;
	transition: all 0.3s;
}
.submenu a:hover {
	opacity: 0.7;
}
#header.fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  /*background: rgba(255,255,255,0.9);*/
  box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
  -webkit-animation: header-fixed 0.6s;
  -moz-animation: header-fixed 0.6s;
  -ms-animation: header-fixed 0.6s;
  animation: header-fixed 0.6s;
  padding:5px 0;
}
@keyframes header-fixed {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes header-fixed {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
@-moz-keyframes header-fixed {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
}
#header.fixed .logo img{
	height: 55px;
	
}
#header.fixed .h_tel{height: 40px;}
.main_slide p {
	margin: 0;
}
.main_slide img {
	width: 100%;
}
.main_slide .slick-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}
.main_slide .slick-dots li {
    margin: 0 8px;
    line-height: 0;
}
.main_slide .slick-dots li button {
	width: 14px;
	height: 14px;
	background: #a3a3a3;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	transition: all 0.3s;
	text-indent: -5000000px;
}
.main_slide li.slick-active button, .main_slide li:hover button {
	background: #04592e;
}
.box01 {
	padding: 80px 0;
}
.box01 .container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.b01_main {
    width: 50%;
    padding-right: 60px;
}
.b01_img {
    width: 50%;
    text-align: center;
    position: relative;
    margin: 0;
}
.idx_h2 {
    font-size: 40px;
    color: #04592e;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.3em;
    margin-bottom: 25px;
}
.b01_txt {
    margin-bottom: 55px;
}
.b01_item {
    position: relative;
    margin-bottom: 60px;
	padding-left: 100px;
}
.b01_item:before {
	content: '';
	position: absolute;
	background: url("/W_images/b01_icon01.png") no-repeat center center/100% auto;
	width: 75px;
	height: 75px;
	left: 0;
	top: 0;
}
.b01_item:nth-child(2):before{
	background: url("/W_images/b01_icon02.png") no-repeat center center/100% auto;
}
.b01_item:nth-child(3):before{
	background: url("/W_images/b01_icon03.png") no-repeat center center/100% auto;
}
.b01_itm_ttl {
    font-size: 22px;
    font-weight: bold;
    color: #04592e;
    line-height: 1.3em;
    margin-bottom: 10px;
}
.b01_itm_txt {
	margin: 0;
}
.b01_item:last-child {
	margin-bottom: 0;
}
.b01_img .ttl {
    width: 180px;
    height: 180px;
    border: 10px solid rgba(255,255,255,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    bottom: 81px;
    left: calc(50% - 120px);
    border-radius: 50%;
    color: #fff;
	-webkit-box-shadow: 0px 0px 16px 0px rgba(255, 255, 255, 0.19);
	-moz-box-shadow:    0px 0px 16px 0px rgba(255, 255, 255, 0.19);
	box-shadow:         0px 0px 16px 0px rgba(255, 255, 255, 0.19);
}
.b01_img .txt {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #04592e;
    border-radius: 50%;
	font-weight: bold;
}
.b01_img .num {
    font-size: 225%;
    font-weight: 400;
}
.b01_img .lager {
    font-size: 111.11%;
    font-weight: bold;
    line-height: 1em;
}
.box02 {
	background: #efefef;
	padding: 80px 0;
}
.b02_list {
    display: flex;
    justify-content: space-between;
}
.b02_item {
    width: 100%;
}
.b02_item:not(:last-child) {
	margin-right: 25px;
}
.b02_item a {
    display: block;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
    color: #000;
	font-weight: 600;
}
.b02_item a:hover {
	transform: translateY(-10px);
}
.b02_itm_img {
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 15px;
	-webkit-box-shadow: 0px 0px 16px 0px rgba(5, 5, 5, 0.17);
-moz-box-shadow:    0px 0px 16px 0px rgba(5, 5, 5, 0.17);
box-shadow:         0px 0px 16px 0px rgba(5, 5, 5, 0.17);
}
.b02_itm_img img {
	max-height: 100%;
}
.b02_item:nth-child(1) .b02_itm_img {
	background: #f9f9f9;
}
.b02_itm_ttl {
    font-weight: 500;
    line-height: 1.3em;
}
.box03 {
	padding: 80px 0;
	text-align: center;
}
.b03_list {
    display: flex;
	margin-bottom: 30px;
}
.b03_item {
    width: calc(20% - 20px);
    margin: 0 25px 0 0;
}
.b03_item:last-child {
	margin-right: 0;
}
.b03_itm_img img {
	width: 100%;
}
.b03_item a {
	display: block;
	text-decoration: none;
	color: #000;
	transition: all 0.3s;
}
.b03_item a:hover {
	transform: translateY(-10px);
}
.b03_itm_ttl {
    font-weight: 500;
    line-height: 1.3em;
    font-size: 18px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
}
.b03_itm_img {
	margin-bottom: 15px;
}
.idx_btn {
	margin: 0;
	text-align: center;
}
.idx_btn a {
	display: inline-block;
	background: #04592e;
	color: #fff;
	text-align: center;
	font-weight: 500;
	padding: 10px 20px;
	border-radius: 30px;
	min-width: 160px;
	text-decoration: none;
	transition: all 0.3s;
}
.idx_btn a:hover {
	opacity: 0.7;
}
.b03_txt {
	margin-bottom: 30px;
}
.box04 {
	background: #efefef;
	padding: 80px 0;
}
.b04_list {
    display: flex;
    flex-flow: column wrap;
	height: 520px;
	max-width: 1200px;
	margin: 0 auto;
}
.b04_h2 {
    width: 248px;
    height: 248px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
    flex-direction: column;
    font-weight: bold;
    line-height: 1.4em;
    color: #333333;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.b04_h2 .lager {
    font-size: 125%;
}
.b04_h2:before {
	content: '';
	position: relative;
	display: block;
	background: url("/W_images/b05_icon.png") no-repeat center center/100% auto;
	width: 88px;
	height: 108px;
	margin-top: -20px;
}
.b04_list .txt {
    width: 356px;
    height: 83px;
    background: #fff;
    border-radius: 200px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    overflow: hidden;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    position: relative;
	padding-right: 40px;
}
.b04_list .txt:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background: #04592e;
	top: 0;
	left: 0;
}
.b04_list li {
    display: flex;
    align-items: center;
	margin-bottom: 91px;
}
.b04_list li:nth-child(3n) {
	margin-bottom: 0;
}
.b04_list li:nth-child(n+4) {
    justify-content: flex-end;
}
.b04_list .num {
    width: 112px;
    height: 112px;
    background: #04592e;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 48px;
    font-weight: bold;
	margin-left: -61px;
	order: 2;
	z-index: 2;
	position: relative;
	flex-shrink: 0;
}
.b04_list li:nth-child(2n+1) {
	margin-left: 75px;
}
.b04_list li:nth-child(3n+1), .b04_list li:nth-child(3n+3) {
    margin-right: 75px;
}
.b04_list li:nth-child(n+4) .num {
	order: -1;
	margin: 0 -61px 0 0;
}
.b04_list .num:before {
    content: '';
    position: absolute;
    width: 30px;
    height: 5px;
    background: #04592e;
    right: 0;
    bottom: 0;
    transform: rotate(45deg);
}
.b04_list .num:after {
    content: '';
    position: absolute;
    width: 23px;
    height: 22px;
    background: #04592e;
    right: -10px;
    bottom: -23px;
    border-radius: 50%;
}
.b04_list li:nth-child(n+4) .txt {
	padding-left: 0;
	padding-right: 40px;
}
.b04_list li:nth-child(5) .txt {padding-left: 60px;}
.b04_list li:nth-child(2) .num, .b04_list li:nth-child(2) .txt:before, .b04_list li:nth-child(2) .num:before, .b04_list li:nth-child(2) .num:after {
	background: #608d4f;
}
.b04_list li:nth-child(3) .num, .b04_list li:nth-child(3) .txt:before, .b04_list li:nth-child(3) .num:before, .b04_list li:nth-child(3) .num:after {
	background: #a4be7b;
}
.b04_list li:nth-child(4) .num, .b04_list li:nth-child(4) .txt:before, .b04_list li:nth-child(4) .num:before, .b04_list li:nth-child(4) .num:after {
	background: #cadcad;
}
.b04_list li:nth-child(5) .num, .b04_list li:nth-child(5) .txt:before, .b04_list li:nth-child(5) .num:before, .b04_list li:nth-child(5) .num:after {
	background: #afc1b8;
}
.b04_list li:nth-child(6) .num, .b04_list li:nth-child(6) .txt:before, .b04_list li:nth-child(6) .num:before, .b04_list li:nth-child(6) .num:after {
	background: #bfbfbf;
}
.b04_list li:nth-child(2) .num:before {
    top: calc(50% - 2px);
    bottom: auto;
    transform: none;
    right: -20px;
}
.b04_list li:nth-child(2) .num:after {
    top: calc(50% - 11px);
    right: -40px;
}
.b04_list li:nth-child(3) .num:before {
	top: 0;
	bottom: auto;
	transform: rotate(-45deg);
}
.b04_list li:nth-child(3) .num:after {
	top: -23px;
	bottom: auto;
}
.b04_list li:nth-child(4) .num:before {
	right: auto;
	left: 0;
	transform: rotate(-45deg);
}
.b04_list li:nth-child(4) .num:after {
	left: -10px;
	right: auto;
}
.b04_list li:nth-child(5) .num:before {
    top: calc(50% - 2px);
    bottom: auto;
    transform: none;
    left: -20px;
	right: auto;
}
.b04_list li:nth-child(5) .num:after {
    top: calc(50% - 11px);
    left: -40px;
	right: auto;
}
.b04_list li:nth-child(6) .num:before {
	top: 0;
	bottom: auto;
	right: auto;
	left: 0;
}
.b04_list li:nth-child(6) .num:after {
	top: -23px;
	right: auto;
	left: -10px;
	bottom: auto;
}
.box05 {
	padding: 80px 0;
	text-align: center;
}
.b05_list {
    display: flex;
    flex-wrap: wrap;
}
.b05_list li {
    width: 20%;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #ededed;
	position: relative;
}
.b05_list li:after {
	content: '';
	position: absolute;
	width: 1px;
	height: calc(100% - 20px);
	background: #ededed;
	top: 10px;
	right: 0;
}
.b05_list li:nth-child(5n):after {
	display: none;
}
.box06 {
	background: url("/W_images/b07_img.png") no-repeat bottom center #efefef;
	padding: 80px 0;
}
.b06_txt {
    max-width: 50%;
    font-style: italic;
}
.b06_form {
    width: 50%;
}
.b06_form input {
    display: block;
    width: 100%;
    background: #fff;
    border: 1px solid #d2d2d2;
    padding: 13px 20px;
    font-style: italic;
    margin-bottom: 10px;
    color: #000;
}
.b06_form textarea {
    display: block;
    width: 100%;
    background: #fff;
    border: 1px solid #d2d2d2;
    padding: 13px 20px;
    font-style: italic;
    margin-bottom: 40px;
    color: #000;
	height: 100px;
}
.b06_form .button {
    width: 160px;
    display: block;
    margin: 0 auto;
    background: #04592e;
    border: none;
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}
.b06_form .button:hover {
	opacity: 0.7;
}
.footer_main {
    padding: 40px 0;
}
.footer_main .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.f_mod {
    width: calc(33.33% - 20px);
}
.f_logo {
    display: flex;
    align-items: flex-end;
    font-size: 18px;
    color: #04592e;
    font-weight: bold;
    text-transform: uppercase;
}
.f_logo .name {
	margin-left: 20px;
}
.f_txt {
    margin: 0;
    text-align: justify;
}
.f_ttl {
    font-size: 18px;
    font-weight: bold;
    margin: 50px 0 20px;
}
.f_info li {
    position: relative;
	margin-bottom: 10px;
	padding-left: 25px;
}
.f_info li:before {
	content: '';
	position: absolute;
	background: url("/W_images/f_add.png") no-repeat center center;
	width: 17px;
	height: 15px;
	left: 0;
	top: 4px;
}
.f_info li:nth-child(2):before {
	background-image: url("/W_images/f_tel.png");
}
.f_info li:nth-child(3):before {
	background-image: url("/W_images/f_mail.png");
}
.f_info a {
	text-decoration: none;
	color: #000;
}
.f_social {
    margin: 30px 0 0;
    display: flex;
    align-items: center;
	font-weight: bold;
}
.f_social a {
	margin-left: 10px;
}
.f_social a:first-of-type {
	margin-left: 30px;
}
.f_menu li {
	position: relative;
	margin-bottom: 3px;
	padding-left: 15px;
}
.f_menu li:before {
	content: '';
	position: absolute;
	background: #04592e;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	left: 0;
	top: 8px;
}
.f_menu a {
	color: #000;
	text-decoration: none;
	transition: all 0.3s;
}
.f_menu a:hover {
	color: #04592e;
}
.copyright {
	background: #04592e;
	color: #fff;
	margin: 0;
	padding: 16px 0;
	text-align: center;
	font-size: 14px;
}
.copyright a {
	color: #fff;
	text-decoration: none;
}

.mde_popup_check {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: #24110b82;
    z-index: 99999999999;
}
.page-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.check {
    overflow:hidden;
}


@media screen and (max-width: 1400px) {
	.gnavi>li>a{
		font-size:16px;
	}
  .container {
    padding: 0 3%;
  }
}
@media screen and (min-width: 769px) {

#gnavi {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-direction: row-reverse;
}
.b05_list li:nth-child(n+6) {
	border-bottom: none;
}
}
@media screen and (max-width: 768px) {
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
  font-size: 14px;
}
  #wrapper {
    min-width: 100%;
    margin: 0;
    padding-top: 78px;
  }
  #main, #footer {
    min-width: 100%;
  }
  .container {
    padding: 0 3%;
    width: 100%;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  /* MENU-ICON */
  .menu-icon {
    width: 50px;
    height: 43px;
    box-sizing: border-box;
    text-align: center;
    text-transform: uppercase;
    line-height: 1em;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
    z-index: 99999;
    background: #04592e;
    margin-left: 10px;
  }
  .menu-icon span {
    display: block;
    margin: 0 auto 15px;
    width: 30px;
    height: 3px;
    background-color: #fff;
    -webkit-transition-duration: 0;
    -moz-transition-duration: 0;
    -ms-transition-duration: 0;
    -o-transition-duration: 0;
    transition-duration: 0;
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
    top: 12px;
    left: 0;
    position: relative;
  }
  .menu-icon span::after, .menu-icon span::before {
    display: block;
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #fff;
    -webkit-transition-property: margin, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0;
    -moz-transition-delay: 0.2s, 0;
    -ms-transition-delay: 0.2s, 0;
    -o-transition-delay: 0.2s, 0;
    transition-delay: 0.2s, 0;
  }
  .menu-icon span::before {
    margin-top: -10px;
  }
  .menu-icon span::after {
    margin-top: 10px;
  }
  .menu-icon.active span {
    background-color: transparent;
  }
  .menu-icon.active span::before, .menu-icon.active span::after {
    margin-top: 0px;
    -webkit-transition-delay: 0, 0.2s;
    -moz-transition-delay: 0, 0.2s;
    -ms-transition-delay: 0, 0.2s;
    -o-transition-delay: 0, 0.2s;
    transition-delay: 0, 0.2s;
  }
  .menu-icon.active span::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .menu-icon.active span::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .gnv-ico {
    width: 50px;
    height: 52px;
    position: absolute;
    background: rgba(0, 0, 0, 0.3);
    right: 0;
    top: 0 !important;
    transform: none !important;
    border: none !important;
  }
  .gnv-ico:before {
    content: '';
    position: absolute;
    border: solid #fff;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: calc(50% - 3px);
    top: calc(50% - 3px);
    transition: all 0.5s ease;
  }
  .gnavi li.active > .gnv-ico:before {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  #totop {
    width: 40px;
    right: 3%;
    bottom: 50px;
    line-height: 0;
  }
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
	background: rgba(255,255,255,0.9);
}
.logo {
    width: 40px;
}
#gnavi {
    position: fixed;
    top: 77px;
    background: rgba(255,255,255,0.9);
    left: 0;
    width: 100%;
    height: calc(100% - 77px);
    padding: 40px 3%;
	display: none;
}
	.h_tel {
		display: none;
	}
.h_search_form {
    position: relative;
    display: block;
    margin: 0 auto;
    top: 0;
}
.h_search {
    margin: 0 auto 30px;
}
.h_search_ttl {
    display: none;
}
.gnavi {
    display: block;
}
.gnavi>li>a {
    text-align: center;
    padding: 15px 20px;
    border-bottom: 1px solid #04592e;
}
	.gnavi>li>a:before, .gnavi>li>a:after {
		display: none;
	}
.gnavi>li {
    margin: 0;
}
.submenu {
    position: relative;
    margin: 0;
	text-align: center;
}
.main_slide .slick-dots li button {
    width: 10px;
    height: 10px;
}
	.main_slide .slick-dots {
		bottom: 25px;
	}
.box01 {
    padding: 40px 0;
}
.box01 .container {
    display: block;
}
.b01_main {
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
}
.idx_h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}
.b01_txt {
    margin-bottom: 25px;
}
.b01_itm_ttl {
    font-size: 18px;
	margin-bottom: 10px;
}
.b01_item:before {
    width: 55px;
    height: 55px;
}
.b01_item {
    padding-left: 70px;
	margin-bottom: 30px;
}
.b01_img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
.box02 {
    padding: 40px 0 10px;
}
.b02_list {
    justify-content: center;
    flex-wrap: wrap;
}
.b02_item {
    width: calc(25% - 15px);
    margin-bottom: 30px;
}
.b02_item:not(:last-child) {
    margin-right: 20px;
}
.b02_item:nth-child(4n) {
	margin-right: 0;
}
.box03 {
    padding: 40px 0;
}
.b03_list {
    flex-wrap: wrap;
	margin: 0;
}
.b03_item {
    width: 48%;
    margin: 0 4% 30px 0;
}
	.b03_item:nth-child(2n) {
		margin-right: 0;
	}
.b03_itm_ttl {
    font-size: 16px;
}
.b04_h2:before {
    width: 55px;
    height: 72px;
	margin-top: 0;
}
.b04_h2 {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin: 0 auto 20px;
    font-size: 16px;
    width: auto;
    height: auto;
    border-radius: 0;
	background: none;
}
.b04_list {
    flex-direction: column;
    height: auto;
    align-items: center;
	max-width: 500px;
}
	.b04_list .num:after, .b04_list .num:before {
		display: none;
	}
.b04_list .num {
    order: -1;
    margin: 0 -50px 0 0;
    width: 90px;
    height: 90px;
    font-size: 30px;
}
.b04_list li {
    margin: 0 0 25px!important;
    justify-content: flex-start!important;
	width: 100%;
}
.b04_list .txt {
    font-size: 16px;
    padding: 0 30px 0 60px!important;
    height: 70px;
    width: 100%;
}
.box04 {
    padding: 40px 0 10px;
}
.box05 {
    padding: 40px 0;
}
.b05_list li {
    width: 50%;
    padding: 10px;
}
	.b05_list li:nth-child(2n):after {
		display: none;
	}
	.b05_list li:nth-last-child(-n+2) {
		border-bottom: none;
	}
.box06 {
    padding: 40px 0;
    background: #efefef;
}
.b06_txt {
    max-width: 100%;
}
.b06_form {
    width: 100%;
}
.footer_main .container {
    display: block;
}
.f_mod {
    width: 100%;
}
.f_logo {
    font-size: 16px;
}
.f_ttl {
    font-size: 16px;
    margin: 30px 0 15px;
}
.copyright {
    font-size: 12px;
}
}
@media screen and (max-width: 425px) {
.b01_img .ttl {
    width: 150px;
    height: 150px;
    border-width: 7px;
}
.b02_item {
    width: 48%;
    margin: 0 4% 30px 0!important;
}
	.b02_item:nth-child(2n) {
		margin-right: 0!important;
	}
.b04_list .txt {
    font-size: 14px;
    padding: 0 20px 0 40px!important;
}
.b04_list .num {
    width: 80px;
    height: 80px;
}
}