@charset"UTF-8";

:root {
	--color-base-bg: #EEEBE1;
	--color-base-text: #333333;
	--color-base-key: #197743;
	--color-base-bg-gray: #f1f1f1;
}

/**************************************
 * Common Styles
 **************************************/
html {
	font-size: 62.5%; /* 62.5%を指定すると「1.0 rem = 10px」 */
	box-sizing: border-box;
	scroll-padding-top: 200px;
	scroll-behavior: smooth;
	height: 100%;
}
@media screen and (min-width: 768px) and (max-width: 960px) {
	html {
		scroll-padding-top: 170px;
	}
}
@media screen and (max-width: 767px) {
	html {
		scroll-padding-top: 130px;
	}
}
body{
	font-family: 'Noto Sans JP','Hiragino Kaku Gothic ProN','游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', 'メイリオ',Arial ,sans-serif;
	background-color: white;
	color: var(--color-base-text);
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: normal;
	font-weight: 400;
	font-style: normal;
	line-height: 1.7;
	letter-spacing: 0.03em;
}
p{
	word-break:break-all;
	letter-spacing: 0.03em;
	line-height: 1.6;
}
hr {
	margin: 0;
	border-top:1px solid white;
	color: inherit;
}
img{
	vertical-align: bottom;
}
img.full{
	width:100%;
	height: auto;
}
a {
	text-decoration: none;
	cursor: pointer;
	color: inherit;
	background: 0 0;
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	letter-spacing: 0.03em;
}
a:link{
	color: inherit;
	text-decoration: none;
	outline: none;
	-webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
}
a:focus,
a:visited,
a:active {
	color: inherit;
	text-decoration: none;
	outline: none;
}
a:hover{
	cursor: pointer;
	opacity: 0.8;
}
a.decoration{
	display: inline-block;
	border-bottom: 1px dashed #663333;
}
a img {
	border: none;
	text-decoration: none;
}
a.img-wrap{
	display: inline-block;
	line-height: 1;
	vertical-align: bottom;
}
a.img-wrap img,
a.img-wrap svg
{
	display: block;
	margin: 0;
	padding: 0;	
	vertical-align: bottom;
}

.container-full {
	position: relative;
	display: block;
	width:100%;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 767px) {
	.container-full {
	padding-right: 0px;
	}
}
.sr-text{
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}
.grecaptcha-badge{
	display: none;
}

/* common font
============================================== */
strong {
	font-weight: bold;
	font-weight: 700;
}

/* common color
============================================== */
.bg-light-beige {
 background-color: var(--color-base-bg);
}
.bg-light-gray {
 background-color: var(--color-base-bg-gray);
}


/* common width
============================================== */
.wd960{width:100%;max-width:960px;margin-right: auto;margin-left: auto;}
.wd940{width:100%;max-width:940px;margin-right: auto;margin-left: auto;}
.wd930{width:100%;max-width:930px;margin-right: auto;margin-left: auto;}
.wd900{width:100%;max-width:900px;margin-right: auto;margin-left: auto;}
.wd880{width:100%;max-width:880px;margin-right: auto;margin-left: auto;}
.wd790{width:100%;max-width:790px;margin-right: auto;margin-left: auto;}
.wd760{width:100%;max-width:760px;margin-right: auto;margin-left: auto;}
.wd730{width:100%;max-width:730px;margin-right: auto;margin-left: auto;}
.wd700{width:100%;max-width:700px;margin-right: auto;margin-left: auto;}
.wd690{width:100%;max-width:690px;margin-right: auto;margin-left: auto;}
.wd640{width:100%;max-width:640px;margin-right: auto;margin-left: auto;}
@media screen and (max-width: 767px) {
	.wd960{max-width:600px}
	.wd940{max-width:600px}
	.wd930{max-width:600px}
	.wd900{max-width:600px}
	.wd880{max-width:600px}
	.wd790{max-width:600px}
	.wd760{max-width:600px}
	.wd730{max-width:600px}
	.wd700{max-width:600px}
	.wd690{max-width:600px}
	.wd640{max-width:600px}
}

.mt_100 {
	margin-top: 100px;
}
/* site
============================================== */
h1, h2, h3, h4, h5, h6{
	font-weight: bold;
	font-weight: 700;
}
.site-wrapper {
	height: 100%;
	width: 100%;
}
.site-container {
	display:block;
	margin: 0 auto;
	min-height: 100vh;
	width: 100%;
}
.site-content--wrapper {
	display:block;
	height: 100%;
	width: 100%;
}
.site-content--container {
	height: 100%;
	margin: 0 auto;
	position: relative;
	width: 100%;
	min-height:500px;
}
.info-wrapper {
	margin-bottom: 20px;
}
/***********************************************
   Common styles
***********************************************/

/* common:animation
============================================== */
.cover,
.cover_fast{
  position: relative;
}
.cover::after,
.cover_fast::after{
  content: "";
  display: block;
  position: absolute;
  background: white;
  width: 100%;
  height: 103%;
  top:-1%;
  right:0;
  transition-property: width;
  transition-duration: 1.1s;
  transition-delay: .5s;
}
.cover_fast::after{
  transition-duration: .8s;
  transition-delay: 0;
}
.cover.show::after,
.cover_fast.show::after{
  width: 0;
}
.fade_fast-list .fade-list-item,
.fade_fast,
.fade-list .fade-list-item,
.fade{
  opacity: 0;
  transition-duration: 0.26s;
  transition-property: opacity;
}
.fade-list .fade-list-item,
.fade{
  transition-duration: 1s;
}
.fade_fast-list .fade-list-item.show,
.fade-list .fade-list-item.show,
.fade_fast.show,
.fade.show{
  opacity: 1;
}

/* common:headding
============================================== */
[class*="h-type-"] .text{
	display: inline-block;
}
.h-type-1{
	position: relative;
	display: block;
	overflow: hidden;
  font-size: 2.7rem;
	width: 100%;
	text-align: center;
	line-height: 1.5;
}
.h-type-1 .text{
	margin: 90px 0 45px 0;
	position: relative;
  font-weight: bold;
	color: #067C00;
	padding-left: 1.05em;
  padding-right: 1em;
 }

/*.h-type-1 .text::before,*/
.h-type-1 .text::after {
    display: inline-block;
    position: absolute;
    bottom: -0.5em;
    left: 40%;
    content: '';
    border-bottom: 2px solid #067C00;
    width: 2em;
}
.h-type-1 .text::before {
	left: 0;
}
.h-type-1 .text::after {
	right: 0;
}

.h-type-2{
	display: inline-block;
	width: 100%;
	font-size: 2.36rem;
	text-align: center;
	line-height: 1.33;
}
.h-type-2 .text {
	display: inline-block;
	position: relative;
	padding-bottom: 0.4em;
}
.h-type-2 .text .small {
	font-size: 0.66em;
}
/*.h-type-2 .text::before {
	content: "";
  display: block;
  position: absolute;
  box-sizing: border-box;
  width: 200px;
  bottom: 0;
  left: calc(50% - 102px);
  border-top: 1px solid #000;
}*/

.h-type-3{
	width:100%;
	font-size: 22px;
	text-align: center;
	padding: 0.74em 0 0.48em;
}
.h-type-3 text {
	font-size: 26px;
	margin: 25px 0 15px 0;
}

.h-type-4{
	display: block;
	width: 100%;
	text-align: center;
	margin-bottom: 30px;
}
/*.h-type-4 .text {
	font-size: 22px;
	position: relative;
	font-weight: bold;
	margin-bottom: 20px;
}
.h-type-4 .text::before {
	content: "";
    display: block;
    position: absolute;
    box-sizing: border-box;
    width: 3em;
    left: calc(50% - 30px);
    top: 118%;
    bottom: 0px;
    border-top: 3px solid #000;
}*/

.h-type-4 .text {
	font-size: 22px;
	position: relative;
	font-weight: bold;
	margin-bottom: 20px;
	color: #057B00;
}
.h-type-4 .text:before,
.h-type-4 .text:after{
  content: '';
  display: block;
  position: absolute;
  box-sizing: border-box;
  width: 18px;
  top: 20px;
  border-top: 1px solid #057B00;
}
.h-type-4 .text:before{
  left: -2.2em;
}
.h-type-4 .text:after{
  right: -2.2em;
}


.title-desc-1{
	text-align: center;
	font-weight: bold;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.5;
	/*margin-top:0.6em;*/
}
.title-desc-2{
	text-align: center;
	font-weight: bold;
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.5;
	/*margin-top:0.6em;*/
}
.title-desc-2 span {
	color: #fff;
	background: #2C3131;
	padding: 2px 10px;
	border-radius: 50px;
	font-size: 12px;
  margin-right: 10px;
}

.content-body ul {
	margin-bottom: 75px;
}
.content-body ul li{
	padding-bottom: 30px;
}

.desc-wrap {
	background-color: #fff;
	border-radius: 10px;
}
.desc-wrap .image-wrap .full {
	padding: 20px;
}
.service1-list.type-2 .desc-wrap {
	background-color: var(--color-base-bg)
	/*border-radius: 0 0 10px 10px;*/
}

.desc-wrap p.desc-text {
	padding: 0 18px 18px 18px;
}

.copy-type-1{
	font-size: 1.7rem;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1.6;
}
.copy-type-1 .text {
	font-size: 30px;
}

.lead-type-1{
	line-height: 1.8;
	font-size: 16px;
	margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
	.h-type-1{
	}
	.h-type-2{
	}
	.h-type-3{
	}
	.copy-type-1{
	}
	.lead-type-1{
	}
}

/* common:link-btn
============================================== */
[class*="link-btn-"]{
	position: relative;
	display: inline-block;
	width: 187px;
	line-height :50px;
	padding-left:20px;
}
[class*="link-btn-"]::after{
	display: block;
	position: absolute;
	width:36px;
	height:8px;
	background-position: top left;
	background-repeat:no-repeat;
	background-size: 36px 8px;
	content: '';
	top:calc(50% - 4px);
	right:1em;
	z-index: 2;
}
a.link-button-1 {
	position: relative;
	display: block;
	font-size: 1.4rem;
	font-size: 22px;
	padding: 	0.5em 3.5em 0.5em 4em;
	background: #fff;
	color: #fff;
	margin: 40px 0;
	background: var(--color-base-key);
}
a.link-button-1::after {
	border-color: #EFBD27;
	border-style: solid;
	border-width: 0 2px 2px 0;
	content: "";
	display: inline-block;
	height: 8px;
	vertical-align: middle;
	width: 8px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	left: 2.5em;
	top: calc(50% - 4px);
}
a.link-button-2 {
  position: relative;
  display: block;
  font-size: 1.4rem;
  font-size: 17px;
  padding: 0.5em 3em 0.5em 4em;
  background: var(--color-base-key);
  color: #fff;
	margin-bottom: -20px;
}
a.link-button-2::after {
	border-color: #EFBD27;
	border-style: solid;
	border-width: 0 1px 1px 0;
	content: "";
	display: inline-block;
	height: 8px;
	vertical-align: middle;
	width: 8px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	left: 2.5em;
	top: calc(50% - 4px);
}
a.link-button-3 {
	position: relative;
	display: block;
	font-size: 1.4rem;
	font-size: 17px;
	padding: 0.5em 3em 0.5em 4em;
	background: var(--color-base-key);
	color: #fff;
}
a.link-button-3::after {
	border-color: #EFBD27;
	border-style: solid;
	border-width: 0 1px 1px 0;
	content: "";
	display: inline-block;
	height: 8px;
	vertical-align: middle;
	width: 8px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	left: 2.5em;
	top: calc(50% - 4px);
}
a.link-button-4 {
	position: relative;
	display: block;
	font-size: 1.4rem;
	font-size: 17px;
	padding: 0.5em 4em 0.5em 4em;
	background: var(--color-base-key);
	color: #fff !important;
	margin-top: 20px;
}

/* common:table
============================================== */
.table{
	width:100%;
	font-size: 1.5rem;
	padding-bottom: 100px;
}
.table .tr{
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;	
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: transparent;
  min-height: 50px;
}
.table .tr:first-child{
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: transparent;
}
.table .th{
  display: -ms-flexbox;
  display: flex;
	width: 156px;
	max-width: 156px;
	-ms-flex: 0 0 156px;
	flex: 0 0 156px;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-pack: center;
  /*justify-content: center;*/  
  align-items: center;
  font-weight: bold;
  font-weight: 700;
  /*padding:1em;*/
  /*background-color: #989898;*/
	color: white;
}
.table .th2{
  display: -ms-flexbox;
  display: flex;
	width: 156px;
	max-width: 156px;
	-ms-flex: 0 0 156px;
	flex: 0 0 156px;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: center;
  align-content: center;
  -ms-flex-pack: center;
  justify-content: center;  
  align-items: center;
  font-weight: bold;
  font-weight: 700;
  padding:1em;
}
.table .th2 span {
	background-color: #CACBCB;
	width: 90px;
  text-align: center;
}
.table .tr span {
	background-color: #818484;
	width: 90px;
  text-align: center;
}
.table .td{
  display: -ms-flexbox;
  display: flex;
	-ms-flex: 0 0 calc(100% - 156px);
	flex: 0 0 calc(100% - 156px);
	width: calc(100% - 156px);
	max-width: calc(100% - 156px);
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: center;
  align-content: center;
  align-items: center;
  padding:1em;
}
.table.type-2 .td{
  background-color: var(--color-base-bg-gray);
}
.table .tr{
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	/*border-bottom-color: transparent;*/
	border-bottom-color: #333;
}
.table .tr:first-child{
	border-top: none;
}
/*
@media screen and (max-width: 767px) {
  .table .tr{
    border-bottom: none;
  }
  .table .tr:first-child{
    border-top: none;
  }
  .table .th{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
  .table .td{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }
}
*/

/* common:blog
============================================== */
.blog.type-1 .blog-list .list-item .item-inner > .d-flex {
	border-radius: 10px;
	background-color: var(--color-base-bg-gray);
}
.blog.type-1.white .blog-list .list-item .item-inner > .d-flex {
	background-color: white;
}
.blog.type-1 .image-wrap{
	display: block;
	position: relative;
	width:100%;
	background-color: white;
	border-radius: 10px 10px 0 0;
}
.blog.type-1 .image-wrap figure img {
	border-radius: 10px 10px 0 0;
}
.blog.type-1 .text-wrap{
	display: block;
	position: relative;
	width:100%;
	/*background-color: var(--color-base-bg-gray);*/
}

.blog.type-1 .content-wrap {
	display: block;
	position: relative;
	padding: 0 16px;
}
.blog.type-1 .content-wrap .category {
	background: #fff;
	border: solid 1px var(--color-base-key);
	font-size: 11px;
	padding: 0.2em 1.3em 0.28em;
 	display: inline;
}
.blog.type-1 .content-wrap .date  time {
	font-size: 11px;
}
.blog.type-1 .content-wrap .title {
	font-size: 16px;
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}

.blog.type-2 .blog-body{
	background: #fff;
	padding: 75px 55px 10px;
	margin-bottom: 85px;
}
.blog.type-2 .blog-body.bg-gray{
	background: var(--color-base-bg-gray);
}
.blog.type-2 .blog-body p.date {
    font-size: 14px;
}
.blog.type-2 .blog-body h3.title {
	font-size: 28px;
}
.blog.type-2 article.list-item {
    border-bottom: 1px solid #CBCBCB;
    margin-bottom: 35px;
}


/* 
.top-bar
============================================== */
/*
.top-bar{
	height:26px;
	background-color: white;
}
.top-bar p{
	height:100%;
}
.top-bar .text{
	position: relative;
	font-size: 14px;
	line-height: 1;
	display: inline-block;
	padding-left:25px;
}
.top-bar .text::before{
	position: absolute;
	display: inline-block;
	content: '';
	top:0;
	left:0;
	width:20px;
	height:13px;
	background-image: url("../img/icon-ship-small.svg");
	background-position: left top;
	background-size: 100%px auto;
}
*/

/* header
============================================== */
.site-header {
	position: sticky;
	background-color: #fff;
	color: white;
	height:100px;
	top: 0px;
	left: 0px;
	z-index: 99999;
}
.header-wrapper{
	position: relative;
	height:100%;
	width:100%;
	padding-bottom: 0px;
}
@media screen and (min-width: 768px) and (max-width: 960px) {
	.site-header {
		height:60px;
	}
}
@media screen and (max-width: 767px) {
	.site-header {
		height:85px;
	}
}
.site-header a {
	/*color: white;*/
	color: #000;
}
.site-logo{
	display: inline-flex;
	position: relative;
	margin-bottom:24px;
	z-index: 2;
}
.site-logo a{
	display: inline-flex;
}
.site-logo img{
	width: 260px;
}
@media screen and (min-width: 768px) and (max-width: 960px) {
	.site-logo img{
		width: 200px;
	}
}
@media (max-width: 767px){
	.site-logo{
		width: 160px;
		top:15px;
		margin-bottom:0px;
	}
	.site-logo img{
		width: 160px;
	}
}

/* nav
============================================== */
.g_nav{
	margin-bottom: 19px;
	z-index: 1
}
.g_nav-items {
	border-bottom: none;
	height: 60px;
	overflow: visible;
	font-size: 1em;
}
@media screen and (min-width: 768px) and (max-width: 960px) {
	.g_nav-items {
		height: 50px;
		font-size: 1.5rem;
	}
}
.g_nav-item{
	overflow: visible;
	position: relative;
	height:100%;
	display: -ms-inline-flexbox;
	display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
	padding-left:20px;
	padding-right:20px;
	/*border-left: solid 1px #000;*/
}
li.g_nav-item:first-child{
	border: none;
}

@media screen and (min-width: 768px) and (max-width: 960px) {
	.g_nav-item{
		padding-left:14px;
		padding-right:14px;
	}
}
.g_nav-item .g_nav-label {
	display: inline-flex;
	position: relative;
	/*padding: 0 20px 0;*/
	cursor: pointer;
	line-height: 1.5;
}
.g_nav-sub-menu{
	position: relative;
	display: block;
	width:100%;
}
.g_nav-item.has-child .g_nav-label{
	width:100%;
	text-align: center;
}
/*.g_nav-item.has-child .g_nav-label::before {
	position: absolute;
	right: 0px;
	top: 3px;
	content: '';
	background-color: var(--color-base-key);
	width:20px;
	height:20px;
	z-index: 3;
	cursor: pointer;
	border-radius: 50%;
}*/
.g_nav-item.has-child .g_nav-label::after {
	position: absolute;
	right: 45px;
  top: 26px;
	border-bottom: 2px solid var(--color-base-key);
	border-left: 2px solid var(--color-base-key);
	content: '';
	display: block;
	height: 1.7rem;
	width: 1.7rem;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: .2s;
	transition: .2s;
	z-index: 3;
}
@media screen and (min-width: 768px) and (max-width: 960px) {
	.g_nav-item.has-child .g_nav-label::before {
		width:17px;
		height:17px;
		top: 3px;
	}
	.g_nav-item.has-child .g_nav-label::after {
		height: 0.65rem;
		width: 0.65rem;
		right: 0.5rem;
		top:7px;
	}
}
.g_nav-item.has-child .g_nav-sub-items .g_nav-label::before,
.g_nav-item.has-child .g_nav-sub-items .g_nav-label::after {
	content:none;	
}
.g_nav-sub-items {
	padding:0 0 3px;
	position:absolute;
	visibility: hidden;
	opacity: 0;
	z-index: 1;
	width: calc(100% + 100px);
	display: none;
	overflow: hidden;
	/*background-color: var(--color-base-bg);*/
	background-color: rgba( 255, 255, 255, 0.80 );
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
	text-align: left;
	top:65px;
	left:-20px;
	font-size: 15px;
}
@media screen and (min-width: 768px) and (max-width: 960px) {
	.g_nav-sub-items {
		top:49px;
		font-size: 13px;
	}
}
.g_nav-sub-items .g_nav-label{
	padding: 11px 0 13px;
	width:100%;
	text-align: left;
}
.g_nav-sub-item{
	position: relative;
	padding: 0 20px;
}
.g_nav-item .g_nav-sub-item::after{
	display: block;
	content: '';
	border-bottom: 0.5px dashed #2C3131;
}
.g_nav-item .g_nav-sub-item:last-child::after{
	content: none;
}
.g_nav-item.has-child.hover ul.g_nav-sub-items{
	display: block;
	visibility:visible;
	opacity: 1;
}
.g_nav-btn-entry{
	/*background-color: var(--color-base-key);
	height:72px;
	top:-12px;
	margin-left:2em;*/
	isplay: block;
  display: block;
  /*font-size: 1.07rem;*/
  padding: 0em 1.5em 0em 3.5em;
  background: var(--color-base-key);
  margin-left: 15px;
}
.g_nav-btn-entry .g_nav-label{
	height:100%;
	display: flex;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}
.g_nav-btn-entry .g_nav-label::after {
    border-color: #EFBD27;
    border-style: solid;
    border-width: 0 1px 1px 0;
    content: "";
    display: inline-block;
    height: 8px;
    vertical-align: middle;
    width: 8px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    left: -1.5em;
    top: calc(50% - 4px);
}
.g_nav-item .g_nav-sub-items .g_nav-items-2 .g_nav-sub-item-2{
	margin-top: -20px;
}
.g_nav-item .g_nav-sub-items .g_nav-sub-item-2 .g_nav-label {
	margin-left: 25px;
}
.g_nav-item .g_nav-sub-items .g_nav-sub-item-2 .g_nav-label::before {
  content: '';
  display: inline-block;
  position: relative;
  left: -5px;
  top: 10px;
  width: 10px;
  height: 2px;
  background: var(--color-base-key);
}



@media screen and (min-width: 768px) and (max-width: 960px) {
	.g_nav-btn-entry{
		background-color: #1a1a1a;
		height:60px;
		top:-10px;
	}
}
@media (max-width: 767px){
	.g_nav{
		margin-top: 17px;
	}
	.g_nav-items{
		-ms-flex-pack: center !important;
		justify-content: center !important;
		height: 42px;
		font-size: 1.5rem;
	}
	.g_nav-item{
		padding-left:12px;
		padding-right:12px;
	}
	.g_nav-item.has-child .g_nav-label{
		padding-right:0px;
	}
	.g_nav-item.has-child .g_nav-label::before,
	.g_nav-item.has-child .g_nav-label::after {
		content: none;
	}
	.g_nav-sub-items {
		display: none;
	}
	.g_nav-item.has-child.hover ul.g_nav-sub-items {
		display: none;
		visibility:hidden;
		opacity: 0;
	}
	.g_nav-btn-entry {
		position: absolute;
		top:12px;
		right:17px;
		height: 33px;
		z-index: 2;
		width: 158px;
		padding-left:0px;
		padding-right:0px;
		margin-left: 0px;
		text-align: center;
	}	
	.g_nav-btn-entry .g_nav-label {
		position: relative;
		width:100%;
		justify-content: center;
		padding-top: 0.2em;
		line-height: 1;
	}
}
@media (max-width: 374px){
	.g_nav-btn-entry {
		width: 114px;
	}
}

/* footer
============================================== */
.site-footer{
	background-color: #fff;
	color: var(--color-base-text);
	padding-top:100px;
	padding-bottom:20px;
}
.site-footer a {
	color: var(--color-base-text);
}
.site-footer .footer-inner{
	width:100%;
}
.site-footer .footer-nav-items{
	font-size: 17px;
}
.site-footer .footer-nav-item{
	padding-left:17px;
	padding-right:7px;
	position: relative;
}
.site-footer .footer-nav-item::before{
	position: absolute;
	display: inline-block;
	content: '';
	top:7px;
	left:0;
	width:10px;
	height:18px;
	background-image: url("../img/icon-nav-slash-white.svg");
	background-position: left top;
	background-size: 10px 18px;
}
.site-footer .footer-nav-item:first-child{
	padding-left:0px;
}
.site-footer .footer-nav-item:first-child::before{
	content: none;
}
.site-footer .footer-content-wrapper{
	margin-top:62px;
}
.site-footer .footer-logo{
	display: inline-block;
}
.site-footer .footer-logo img{
	width: 268px;
}
.site-footer .footer-sns-link{
	display: inline-block;
}
.site-footer .footer-sns-link img{
	width: 30px;
}
.site-footer .footer-content{
	width:100%;
}
.site-footer .footer-copyright{
	margin-top:2em;
	width: 100%;
	font-size: 1.0rem;	
}
@media screen and (min-width: 768px) and (max-width: 960px) {
	.site-footer .footer-logo img{
		width: 200px;
	}
}
@media screen and (max-width: 767px) {
	.site-footer{
		height: auto;
	}
	.site-footer .footer-nav-items{
		width:100%;max-width:600px;margin-right: auto;margin-left: auto;
		font-size: 15px;
	}
	.site-footer .footer-nav-item{
		display: inline-flex;
		width: 100%;
		padding-left: 0px;
		padding-right: 0px;
		border-bottom:1px solid white;
	}
	.site-footer .footer-nav-item:first-child{
		border-top:1px solid white;
	}
	.site-footer .footer-nav-item::before{
		content: none;
	}
	.site-footer .footer-nav-label{
		display: inline-block;
		width:100%;
		line-height: 40px;
	}
	.site-footer .footer-content-wrapper {
    margin-top: 38px;
	}
	.site-footer .footer-logo{
		width: 100%;
		text-align: center;
	}
	.site-footer .footer-logo a{
		display: inline-block;
	}
	.site-footer .footer-logo img{
		width: 200px;
	}
	.site-footer .footer-sns-links{
		width:100%;
		text-align: center;
	}
	.site-footer .footer-sns-link{
		display: inline-block;
	}
	.site-footer .copyright{
		height:5.6em;
	}
}

.site-footer .footer-inner{
	font-size: 14px;
}
.site-footer .footer-inner .footer-text {
	font-size: 1.3rem;
	margin-top: 20px;
}
.site-footer .footer-inner .footer-text span{
	font-size: 25px;
	color: var(--color-base-key);
}
.site-footer .footer-inner .footer-menw .footer-menw-text {
	font-size: 12px;
}
/*.site-footer .footer-inner .footer-menw .footer-menw-text a::after {
    border-color: #EFBD27;
    border-style: solid;
    border-width: 0 2px 2px 0;
    content: "";
    display: inline-block;
    height: 8px;
    vertical-align: middle;
    width: 8px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    left: 2.5em;
    top: calc(50% - 4px);
}*/
.site-footer .footer-inner .footer-menw .footer-menw-text a::before {
    border-color: #EFBD27;
    border-style: solid;
    border-width: 0 2px 2px 0;
    content: "";
    display: inline-block;
    height: 8px;
    vertical-align: middle;
    width: 8px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-right: 6px;
}
.site-footer .footer-inner .footer_logo{
	width:240px;
}
.footer_logo{
 width: 250px;
 -ms-flex: 0 0 250px;
 flex: 0 0 250px;
 max-width: 250px;
}
.footer-nav-wrap{
 width: calc(100% - 250px);
 max-width: calc(100% - 250px);
 -ms-flex: 0 0 calc(100% - 250px);
 flex: 0 0 calc(100% - 250px);  
}
.footer_logo_nav{
 width: 150px;
 -ms-flex: 0 0 150px;
 flex: 0 0 150px;
 max-width: 150px;
}
.footer-nav{
 width: calc(100% - 150px);
 max-width: calc(100% - 150px);
 -ms-flex: 0 0 calc(100% - 150px);
 flex: 0 0 calc(100% - 150px);  
}

/***********************************************
   Page styles
***********************************************/


/* .page-home section#main-visual
============================================== */
/*.page-home #main-visual,
.page-home #main-visual .main-visual--container{
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
}
.page-home #main-visual img{
	max-width: 100%;
	height: auto;
	aspect-ratio: 2 / 1;
	-o-object-position: center;
	object-position: center;
	-o-object-fit: cover;
	object-fit: cover;
}
@media screen and (min-width: 1281px) {
	.page-home #main-visual img{
		aspect-ratio: 2 / 1;
	}
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
	.page-home #main-visual img{
		aspect-ratio: 3 / 2;
	}
}
@media screen and (min-width: 768px) and (max-width: 960px) {
	.page-home #main-visual img{
		aspect-ratio: 3 / 2.5;
	}
}
@media screen and (max-width: 767px) {
	.page-home #main-visual img{		aspect-ratio: 3 / 2.5;
	}
}*/

/* .page-home section#mainVisual
============================================== */
.mainVisual{
	position: relative;
	display: block;
	width: 100%;
	overflow: hidden;
}
.mainVisual_image{
  position: relative;
	width: 100%;
	height: auto;
  aspect-ratio: 1200 / 300;
	-o-object-position: center;
	object-position: center;
	-o-object-fit: cover;
	object-fit: cover;
}
.page-home .mainVisual_image{
	aspect-ratio: 1920 / 794;
}
.mainVisual_image img{
  width: auto;
  height: 100%;
	-o-object-position: center;
	object-position: center;
	-o-object-fit: cover;
	object-fit: cover;
}
.mainVisual_overlay{
  position: absolute;
  width:100%;
  height:100%;
  z-index: 1;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
.mainVisual_overlay__titleWrap{
  position: relative;
  display: inline-block;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
  color: #fff;
}
.mainVisual_overlay__titleJa{
  text-align: center;
  font-size: 31px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.mainVisual_overlay__titleEn{
  text-align: center;
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  letter-spacing: 0.16em;
}
.page-home .mainVisual_overlay > span{
  display: inline-block;
  width: 49.16%;
  height: auto;
  line-height: 1;
}
@media screen and (min-width: 1281px) {
	.page-home .mainVisual_image{
		aspect-ratio: 1920 / 794;
	}
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
  .mainVisual_overlay__titleJa{
    font-size: 28px;
  }
  .mainVisual_image{
    aspect-ratio: 5 / 1.7;
  }
	.page-home .mainVisual_image{
		aspect-ratio: 1920 / 794;
	}
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  .mainVisual_overlay__titleJa{
    font-size: 26px;
  }
  .mainVisual_image{
    aspect-ratio: 5 / 1.7;
  }
	.page-home .mainVisual_image{
		aspect-ratio: 1920 / 794;
	}
}
@media screen and (max-width: 767px) {
  .mainVisual_overlay__titleJa{
    font-size: 20px;
  }
  .mainVisual_overlay__titleEn{
    font-weight: 500;
    font-size: 12px;
  }
  .mainVisual_image{
    aspect-ratio: 5 / 2.5;
  }
	.page-home .mainVisual_image{
		aspect-ratio: 1920 / 794;
	}
}

/* .page-home #intro
============================================== */
.page-home #intro {
	margin-bottom: 75px;
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}

/* .page-home section#guide
============================================== */
.page-home #guide{
}
.page-home #guide .section-body h3 {
	font-size: 70px;
	text-align: center;
	color: var(--color-base-key);
	font-weight: bold;
}
.page-home #guide .section-body p {
	font-size: 20px;
	text-align: center;
	margin-bottom: 30px;
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}

/* .page-home section#access
============================================== */
.page-home #access h2.name{
	padding: 0.7em 0 0.7em;
    border-bottom: 0.5px dotted #000;
    line-height: 1.3;
    color: #057B00;
}
.page-home #access .neme_2 {
	font-size: 14px;
  font-weight: normal;
  color: var(--color-base-text);
}

.page-home #access .info-list li {
	padding: 0.7em 0 0.7em;
    border-bottom: 0.5px dotted #000;
    line-height: 1.3;
}
.page-home #access .info-list .info1-cell.title {
    display: table-cell;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    width: 100px;
    max-width: 100px;
    text-align: justify;
    text-justify: inter-ideograph;
    -moz-text-align-last: justify;
    text-align-last: justify;
    font-size: 15px;
    vertical-align: middle;
}
.page-home #access .info-list .info1-cell.detail {

    -ms-flex: 0 0 calc(100% - 70px);
    flex: 0 0 calc(100% - 70px);
    width: calc(100% - 70px);
    max-width: calc(100% - 100px);
    padding-left: 1em;
    font-size: 15px;
}
.page-home #access .map{
	padding: 30px 0;
}
.page-home #access .shuttle-car {
	margin-bottom: 80px;
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (min-width: 768px){
	.page-home #access .photo-area .r-2 ul li:last-child{
		margin-top: 1.5rem!important;
	}
}
@media screen and (max-width: 767px) {
}

/* .page-home section#service
============================================== */
.page-home #service{
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}

#service h3.service_title01 {
	position: relative;
}
#service h3.service_title01::before{
  position: absolute;
  top: -1px;
  left: 210px;
  width: 40px;
  content: url(../img/icon_c-service_heading.svg);
}
#service h3.service_title02, {
	position: relative;
}
#service h3.service_title02::before{
  position: absolute;
  top: -1px;
  left: 210px;
  width: 40px;
  content: url(../img/icon_c-service_title4.svg);
}
#service h3.service_title03 {
	position: relative;
}
#service h3.service_title03::before{
  position: absolute;
  top: -1px;
  left: 210px;
  width: 40px;
  content: url(../img/icon_c-service_title5.svg);
}



/* .page-about section#intro
============================================== */
.about_img {
	border-radius: 5px;
}
.page-about #intro .section-head {
	margin:85px 0 42px 0;
}
.page-about #intro .section-body {
	margin-bottom: 50px;
}
.page-about #message .section-body figure img.face-pic {
	border-radius: 5px;
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}

.page-about .section-body .member-list > li{
	border: 1px solid #D8D8D8;
	padding: 20px;
	border-radius: 15px;
}
.page-about .section-body .member-list ul.career{
	background: #EAF2E9;
	font-size: 12px;
	padding: 15px;
}
.page-about .section-body .member-list li .career{
	background: #EAF2E9;
	font-size: 12px;
	padding: 15px;
}
/*.page-about .section-body .member-list > li .career  {
	padding-left: 10px;
  position: relative;
}
.page-about .section-body .member-list > li .career .check:before {
    content:  "";
    width:  8px;
    height:  8px;
    display:  inline-block;
    margin-right: 5px;
    background-color: #057B00;
    border-radius:  50%;
}*/
.page-about .section-body .member-list > li .career .check {
	padding-left:14px;
	position:relative;
}
.page-about .section-body .member-list > li .career .check:before{
	content:"";
	display:block;
	position:absolute;
}
.page-about .section-body .member-list > li .career .check:before{
	content:  "";
  width:  8px;
  height:  8px;
  left: 0px;
  top: 7px;
  display:  inline-block;
  margin-right: 5px;
  background-color: #057B00;
  border-radius:  50%;
}

/*.page-about .section-body .member-list > li .career .check:before {
    content:  "";
    width:  8px;
    height:  8px;
    display:  inline-block;
    margin-right: 5px;
    background-color: #057B00;
    border-radius:  50%;
}*/
.page-about .section-body .member-list figure img {
	border-radius: 5px;
}
.page-about .section-body .member-list .name {
	font-size: 22px;
	font-weight: bold;
	border-left: solid 2px #057B00;
	padding-left: 10px;
	line-height: 0.9;
}
.page-about .section-body .member-list .name .name2{
	font-size: 20px;
}
.page-about .section-body .member-list .name .pseudonym{
	font-size: 11px;
	color: #6D6D6D;
	font-weight: normal;
}


/* .page-about section#message
============================================== */
.page-about #message{
	padding-bottom: 80px;
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}

/* .page-about section#advisory-board
============================================== */
.page-about #advisory-board{
	padding-bottom: 100px;
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}

/* .page-about section#corporate
============================================== */
.page-about #corporate{
}
.page-about #corporate .philosophy{
	background: #fff;
	padding: 65px 50px;
	border: solid 3px #D8D8D8;
}
.page-about #corporate .philosophy .worry-list ul {
	margin-top: 45px;
}
.page-about #corporate .philosophy .worry-list li {
	font-size: 23px;
}
.page-about #corporate .checkmark{
	padding-left:50px;
	position:relative;
}
.page-about #corporate .checkmark:before,
.page-about #corporate .checkmark:after{
	content:"";
	display:block;
	position:absolute;
}
.page-about #corporate .checkmark:before{
	width: 25px;
  height: 25px;
  background: #ffffff;
  border: 2px solid var(--color-base-key);
  left: 1px;
  border-radius: 5;
  border-radius: 50px;
  margin-top: 9px;
}
.page-about #corporate .checkmark:after{
  border: 7px solid var(--color-base-key);
  width: 13px;
  height: 13px;
  left: 7px;
  top: 15px;
  border-radius: 50px;
}
.page-about #corporate .table {
	padding: 60px 0 70px 0;
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}

/* .page-service section#child-develop
============================================== */
.page-service #child-develop{
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}

/* .page-service section#serv1-service
============================================== */
.page-service #serv1-service{
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}

/* .page-service section#serv1-price
============================================== */
.page-service #serv1-price{
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}

/* .page-service section#serv1-schedule
============================================== */
.page-service #serv1-schedule{
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}

/* .page-service section#inclusive-educ
============================================== */
.page-service #inclusive-educ{
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}

/* .page-service section#serv2-price
============================================== */
.page-service #serv2-price{
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}

/* .page-service section#consultation
============================================== */
.page-service #consultation{
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}

/* .page-service section#serv3-intro
============================================== */
.page-service #serv3-intro{

}
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}

/* .page-service section#serv3-service
============================================== */
.page-service #serv3-service .section-body {
	background: #F1F1F1;
	padding: 40px 85px;
	margin-bottom: 70px;
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}

/* .page-service section#serv3-price
============================================== */
.page-service #serv3-price{
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}

/* .page-horse-therapy section#intro
============================================== */
.page-horse-therapy #intro .container-fluid{
	margin-top: 85px;
}

@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}

/* .page-horse-therapy section#activity
============================================== */
.page-horse-therapy h2.title2 {
  font-size: 21px;
  margin-bottom: 18px;
}
.page-horse-therapy h2.title2:after {
    content: '';
    display: block;
    position: absolute;
    box-sizing: border-box;
    width: 18px;
    top: 19px;
    border-top: 1px solid #057B00;
}

.page-horse-therapy #activity {
	padding: 70px 0;
}
.page-horse-therapy #activity .section-body-wrap{
	background-color: #E7E7DD;
	padding: 75px 0 60px 0;
}

.page-horse-therapy #activity .text-wrap .title .text {
  font-size: 23px;
  margin-bottom: 18px;
}

.page-horse-therapy #activity ul.activity-list.row {
	margin-bottom: 60px;
}
.page-horse-therapy #activity .desc-wrap {
	position: relative;
  border: solid 3px #CACBCB;
  padding: 3.4375em 2.3125em;
  margin-top: 68px;
}
.page-horse-therapy #activity .desc-wrap .topics-title {
    position: absolute;
    display: inline-block;
    top: -16px;
    left: 274px;
    padding: 3px 35px;
    /* height: 25px; */
    line-height: 25px;
    font-size: 17px;
    background: #CACBCB;
    color: #ffffff;
    font-weight: bold;
    border-radius: 20px;
}
.desc-wrap p.desc {
    margin: 0;
    padding: 0;
}

/* .page-horse-therapy section.section-body
============================================== */
.page-horse-therapy #sightseeing{
  padding-bottom: 103px;
}
.page-horse-therapy .sightseeing-list{
  margin-top:9px;
}
.page-horse-therapy .sightseeing-list > li{
}
.page-horse-therapy .sightseeing-list .content-wrap{
  /*background-color: #ecf0d4;*/
  margin-bottom: 30px;
  padding: 30px 35px;
  background: #fff;
  border-radius: 5px;
}
.sightseeing-list .content-wrap{
  position:relative;
}
.sightseeing-list .content-wrap::before{
	content: "" ;
	display: block;
	width: 44px;
	height: 44px;
	left: 13px;
  top: 13px;
	position: absolute;
	background: url("../img/icon_horse-therapy_activity1.svg");
}
.sightseeing-list > li:nth-child(1) .content-wrap::before{
	content: "" ;
	display: block;
	width: 44px;
	height: 44px;
	left: 13px;
  top: 13px;
	position: absolute;
	background: url("../img/icon_horse-therapy_activity1.svg");
}
.sightseeing-list > li:nth-child(2) .content-wrap::before{
	content: "" ;
	display: block;
	width: 44px;
	height: 44px;
	left: 13px;
  top: 13px;
	position: absolute;
 background: url("../img/icon_horse-therapy_activity2.svg");
}
.sightseeing-list > li:nth-child(3) .content-wrap::before{
	content: "" ;
	display: block;
	width: 44px;
	height: 44px;
	left: 13px;
  top: 13px;
	position: absolute;
 background: url("../img/icon_horse-therapy_activity3.svg");
}
.sightseeing-list > li:nth-child(4) .content-wrap::before{
	content: "" ;
	display: block;
	width: 44px;
	height: 44px;
	left: 13px;
  top: 13px;
	position: absolute;
background: url("../img/icon_horse-therapy_activity4.svg");
}
.sightseeing-list > li:nth-child(5) .content-wrap::before{
	content: "" ;
	display: block;
	width: 44px;
	height: 44px;
	left: 13px;
  top: 13px;
	position: absolute;
 background: url("../img/icon_horse-therapy_activity5.svg");
}
.sightseeing-list > li:nth-child(6) .content-wrap::before{
	content: "" ;
	display: block;
	width: 44px;
	height: 44px;
	left: 13px;
  top: 13px;
	position: absolute;
 background: url("../img/icon_horse-therapy_activity6.svg");
}

.page-horse-therapy .sightseeing-list .detail{
  position: relative;
  padding-left:0px;
  /*margin-top:1.3rem;*/
  padding-bottom:1.2rem;
}
.page-horse-therapy .sightseeing-list .detail .transport{
  font-size: 23px;
  font-weight: bold;
  font-weight: 700;
  color: #407035;
  margin: 30px 0;
}
#page-home.lang-en #sightseeing .sightseeing-list .detail .transport{
  font-size:1.2rem;
  padding: 3px 4px 4px 17px;
  letter-spacing: 0;
}
#page-home.lang-en #sightseeing .sightseeing-list .detail .transport::before{
  left: 2px;
  top: 3px;
	font-size: 1.5rem;
}
#page-home.lang-en #sightseeing .sightseeing-list .detail .transport .num{
  font-size:1.4rem;
  margin-left:0px;
  margin-right:0px;
}




.page-horse-therapy #riding-ground {
	padding: 65px 0;
}
.page-horse-therapy #riding-ground .section-head .desc {
	padding-bottom: 45px;
}
.page-horse-therapy #riding-ground .photo {
	padding-bottom: 125px;
}
.page-horse-therapy #riding-ground .photo img {
	border-radius: 5px;
}
.page-horse-therapy #riding-ground .whats {
	padding-bottom: 125px;
}
.page-horse-therapy #riding-ground .point .point-list{
	background: #EAF2E9;
	padding: 44px 85px;
}
.page-horse-therapy #riding-ground .point .point-list .check {
	padding-left:16px;
	position:relative;
}
.page-horse-therapy #riding-ground .point .point-list .check:before{
	content:"";
	display:block;
	position:absolute;
}
.page-horse-therapy #riding-ground .point .point-list .check:before{
	content:  "";
  width:  14px;
  height:  14px;
  left: 0px;
  top: 7px;
  display:  inline-block;
  margin-right: 5px;
  background-color: #EFBD27;
  border-radius:  50%;
}

/*.page-horse-therapy #riding-ground .point .point-list{
	background: #EAF2E9;
	padding: 44px 85px;
}
.page-horse-therapy #riding-ground .point .point-list li:before {
    content:  "";
    width:  10px;
    height:  10px;
    display:  inline-block;
    background-color: #EFBD27;
    border-radius:  50%;
}*/
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}





/* .page-horse-therapy section#riding-ground
============================================== */
.page-horse-therapy #riding-ground{
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}

/* .page-horse-therapy section#price
============================================== */
.page-horse-therapy #price{
	margin-top: 58px;
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}

/* .page-hydro-therapy section#intro
============================================== */
.page-hydro-therapy #intro{
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}

/* .page-hydro-therapy section#activity
============================================== */
.page-hydro-therapy #activity .title.h-type-4 .text {
	margin-top: 100px;
}
.page-hydro-therapy #activity .desc {
	margin-bottom: 100px;
}
.page-hydro-therapy #activity .section-body .photo-list.row{
	margin-bottom: 100px;
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}

/* .page-hydro-therapy section#price
============================================== */
.page-hydro-therapy #price{

}
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}

/* .page-hydro-therapy section#blog
============================================== */
.page-hydro-therapy .blog{
	padding-top: 40px;
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}
/* .page-music-therapy section#intro
============================================== */
.page-music-therapy #intro{
	margin-top: 60px;
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}

/* .page-music-therapy section#activity
============================================== */
.page-music-therapy #activity .desc-wrap_2{
    border: 1px solid #067C00;
    border-radius: 40px;
    padding: 37px 100px;
    margin-bottom: 60px;
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}

/* .page-music-therapy section#price
============================================== */
/*.page-music-therapy #price .container-fluid .title.h-type-4 {
	margin-top: 60px;
}*/
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}
/* .page-music-therapy section#blog
============================================== */
.page-music-therapy .blog{
	padding-top: 40px;
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}
/* .page-recruit section#recruit
============================================== */
.page-recruit #recruit #intro .title.copy-type-1{
	margin-top: 100px;
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}

/* .page-contact section#contact
============================================== */
.page-contact #contact{
	padding-top:140px;
}
.page-contact #contact .table .th{
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	width: 100%;
	max-width: 100%;
	font-weight: 600;
	padding: 0;
	justify-content: flex-start;
	background-color: transparent;
	color: inherit;
}
.page-contact #contact .table .td{
	border-left: 0;
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	width: 100%;
	max-width: 100%;	
	padding: 0;
}	
.page-contact #contact .table .tr:last-child{
	border-bottom: none;
}

.page-contact #contact .table .td > p {
	width:100%;
}
.page-contact #contact .table .td input{
	width:100%;
	height: 44px;
	box-sizing: border-box;
	border-width: 2px;
  border-style:solid;
  border-color:#000000;
	padding-left: 1em;
	padding-right: 1em;
	font-size: 14px;
	-webkit-appearance: none;
}
.page-contact #contact .table .td textarea{
	width:100%;
	font-size: 16px;
	box-sizing: border-box;
	border-width: 2px;
  border-style:solid;
  border-color:#000000;
	padding:1em;
	-webkit-appearance: none;
}
.page-contact #contact .table .td select{
  width:100%;
  height: 44px;
	font-size: 16px;
  background-color: #fff;
	border-width: 2px;
  border-style:solid;
  border-color:#000000;
  outline: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
	padding-left: 1em;
	padding-right: 1em;
}
.page-contact #contact .table .td .wpcf7-form-control-wrap > option{
  background-color: #fff;
	border-width: 2px;
  border-style:solid;
  border-color:#000000;
  border-radius: 0;
}
.page-contact #contact .submit-btn{
	padding-top:36px; 
}
.page-contact #contact .submit-btn input[type="submit"] {
	width: 200px;
	position: relative;
	display: inline-block;
	background-color: black;
	color: #fff;
	font-size: 16px;
	line-height: 54px;
	text-align: center;
	appearance: none;
	-webkit-appearance: none;
	font-weight: 500;
	letter-spacing: 0.5em;
	border-width: 2px;
  border-style:solid;
  border-color:#000000;
	border-image: initial;
	padding:0;
	cursor: pointer;
}
.page-contact #contact .txt-required{
	display:inline-block;
	margin-left:0.3em;
}
.page-contact #contact .wpcf7-spinner{
	display: none;
}
.page-contact #contact h4.h-type-4 .text{
	font-size: 26px !important;
}
h4.title.h-type-4 {
	text-align: left;
  margin-left: 8px;
}
@media screen and (min-width: 961px) and (max-width: 1280px) {
}
@media screen and (min-width: 768px) and (max-width: 960px) {
}
@media screen and (max-width: 767px) {
}

/***********************************************
   Blog styles
***********************************************/







