/*----------------------------------------------------

Top
https://www.webdlab.com/labs/responsive-web-design-4/
414pxまでをスマホ縦画面用
415px〜959pxをスマホ横画面及びタブレット縦画面用
960px以上をタブレット横画面とPC用として使用
----------------------------------------------------*/
.visible, .invisible {
  opacity: 0.0;
  transition: opacity 1s ease;
}
.visible {
  opacity: 1.0;
}
.visible.translateY, .invisible.translateY {
  transform: translateY(50px);
  transition: all 2s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.visible.translateY {
  transform: translateY(0);
}
.visible.translateToLeft, .invisible.translateToLeft {
  transform: translateX(100px);
  transition: all 2s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.visible.translateToLeft {
  transform: translateX(0);
}
.visible.translateToRight, .invisible.translateToRight {
  transform: translateX(-100px);
  transition: all 2s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.visible.translateToRight {
  transform: translateX(0);
}
.visible.translateScaleUp, .invisible.translateScaleUp {
  transform: scale(.5);
  transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.visible.translateScaleUp {
  transform: scale(1);
}
.visible.translateScaleDown, .invisible.translateScaleDown {
  transform: scale(1.4);
  transition: all 2s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.visible.translateScaleDown {
  transform: scale(1);
}
.visible.translateRotate, .invisible.translateRotate {
  transform: rotate(360deg);
  transition: all 2s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.visible.translateRotate {
  transform: rotate(0deg);
}
/* main-slider
----------------------------------------------------*/
#main-slider {
  position: relative;
}
.slider li {
  position: relative;
}
/*.slider li::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  display: block;
  z-index: 2;
  background: -moz-linear-gradient(rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 100%);
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=1);
}
.slider li::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  display: block;
  background: -moz-linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 85%, rgba(0, 0, 0, 0.9) 100%);
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 85%, rgba(0, 0, 0, 0.9) 100%);
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 85%, rgba(0, 0, 0, 0.9) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=1);
}*/
.slider li .img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 90vh;
  transform-origin: center top;
  transform: scale(1);
  transition: 2s transform ease-out;
}
.slider .slick-active .img {
  transform: scale(1.05);
}
.slider .slick-dotted {
  color: #FFF !important;
}
#main-slider .slick-dots {
  position: absolute;
  bottom: -50px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  padding-right: 20px;
  list-style: none;
  text-align: center;
  z-index: 1;
}
#main-slider .slick-dots li.slick-active button:before {
  opacity: .75;
  color: #37921e;
}
#main-slider .slick-dots li button:before {
  /*font-family: 'slick';*/
  font-size: 15px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height:20px;
  content: '■';
  text-align: right;
  opacity: .8;
  color: #c8e3c1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  z-index:9999;
}
#main-slider h2 {
  position: absolute;
  font-size: 25px;
  text-shadow:
    2px 0 0 #000, 2px 2px 0 #000, 0 2px 0 #000, -2px 2px 0 #000, -2px 0 0 #000, -2px -2px 0 #000, 0 -2px 0 #000, 2px -2px 0 #000;
  font-weight: bold;
	width: 80%;
	top: 60%;
  text-align: left;
  transform: translateY(-100%);
  /*transform: rotate(-5deg);*/
}
#main-slider h3 {
	position: absolute;
	width: 40%;
	bottom: -32%;
	right: 5%;
	text-align: right;
  transform: translateY(-100%);
  /*transform: rotate(-5deg);*/
}
#main-slider h4 {
	position: absolute;
	width: 40%;
	bottom: -16%;
	left: 5%;
	text-align: left;
  transform: translateY(-100%);
  /*transform: rotate(-5deg);*/
}
@media (min-width: 640px) {
  #main-slider h2 {
    font-size: 38px;
    /*width: 100%;*/
    left: 0px;
	top: 75%;
	padding: 10px;
  }
}
@media (min-width: 960px) {
  #main-slider h2 {
	left: 10%;
	font-size: 38px;
	top: 75%;
  }
#main-slider h3 {
  position: absolute;
  width: 100%;
  bottom: -30%;
  right:5%;
  text-align: right;
  transform: translateY(-100%);
  /*transform: rotate(-5deg);*/
}
#main-slider h4 {
  position: absolute;
  width: 100%;
  bottom: -18%;
  left: 5%;
  text-align: left;
  transform: translateY(-100%);
  /*transform: rotate(-5deg);*/
}
}
/* common
----------------------------------------------------*/
.ctt-box {
  margin-bottom: 0px;
}
.ctt-box h2 {
  font-size: 2.3rem;
  margin-bottom: 0.5em;
  letter-spacing: 0.1em;
  line-height: 1.3;
	/*color: #ff0084;*/
	color: #22b063;
	font-weight: 500;
	/*padding-top: 20px;*/
  text-align: center;
}
  .ctt-box h2 span {
   display:block;
   font-size:70%;
  }
.ctt-box strong {
  font-size: 2rem;
}
.ctt-box h2:after {
  content: attr(data-en);
  font-size: 1.3rem;
  display: block;
  letter-spacing: .1em;
  color: #e60011;
}
.visible.ctt-box, .invisible.ctt-box {
  transform: translateY(30px);
  transition: all 2s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}
.visible.ctt-box {
  transform: translateY(0);
}
.btn-box {
  margin-top: 15px;
}
.btn-box a {
  display: block;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  padding: 8px;
  text-decoration: none;
  line-height: 1.5;
  background: linear-gradient(to bottom, #836a30, #9a7b32);
  border-radius: 35px;
}
ruby {
  padding: 0 5px;
  letter-spacing: 0.1em;
}
[data-ruby] {
  position: relative;
}
[data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: -1.5em;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 1rem;
  letter-spacing: 0;
}
rt {
  display: none;
}
.pc {
	display: none;
}
.sp {
	display: block;
}
@media (max-width: 414px) {
.sec-box {
	padding: 60px 15px 40px;
}
}
@media (min-width: 640px) {
  .ctt-box h2 {
    font-size: 2rem;
	font-size: 2.6rem;
  }
  .ctt-box strong {
    font-size: 2.4rem;
  }
  .ctt-box h2:after {
    font-size: 1.4rem;
  }
  .btn-box a {
    width: 400px;
  }
.pc {
	display: block;
}
.sp {
	display: none;
}
}
@media (min-width: 960px) {
  .ctt-box {
    margin-bottom: 60px;
  }
  .ctt-box h2 {
    font-size: 3.6rem;
	margin-bottom: .8em;
  }
  .ctt-box strong {
    font-size: 3rem;
  }
  .ctt-box h2:after {
    font-size: 1.5rem;
  }
}


/* サービスについて
----------------------------------------------------*/
#sec00 {
  margin-top: 30px;
  margin-bottom: 50px;
}
#sec00 .sec-box {
  margin-top: -30px;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 10px;
}
#sec00 .sec-box .read {
  font-weight: 400;
  margin-bottom: 50px;
  width:100%;
  margin:auto;
  font-size: 1.8rem;
  text-align: center;
}
#sec00 .sec-box .meritWrp4 {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	/*padding-bottom: 60px;*/
	margin: 0px auto;
}
#sec00 .sec-box .meritWrp4 li {
	width: 48%;
	background-color: #fff;
	color: #111;
	padding: 90px 0px 2%;
	font-weight: bold;
	font-size: 1.8rem;
	background-repeat: no-repeat;
	background-size: auto 80px;
	background-position: center top 15px;
	margin-bottom: 15px;
	text-align: center;
	line-height: 1;
}
#sec00 .sec-box .meritWrp4 li span{
	display:block;
	/*color:#ff0084;*/
	color:#c50018;
	font-size:14px;
	margin:5px;
}
#sec00 .sec-box .meritWrp4 li:last-child,
#sec00 .sec-box .meritWrp4 li:nth-last-child(2):nth-child(odd) {
	margin-bottom: 0px;
}
#sec00 .sec-box .meritWrp4 li.merit01 {
	background-image: url("../img/icon01.png");
}
#sec00 .sec-box .meritWrp4 li.merit02 {
	background-image: url("../img/icon02.png");
}
#sec00 .sec-box .meritWrp4 li.merit03 {
	background-image: url("../img/icon03.png");
}
#sec00 .sec-box .meritWrp4 li.merit04 {
	background-image: url("../img/icon04.png");
}

@media (min-width: 640px) {
  #sec00 {
    margin-top: -30px;
	margin-bottom: 0;
  }
  #sec00 .sec-box {
    margin-top: -30px;
    margin: 0 auto;
	padding-bottom: 70px;
  }
#sec00 .sec-box .read {
  margin-bottom: 50px;
  max-width:90%;
}
  #sec00 .sec-box .aboutWrp {
    display: flex;
    flex-direction: unset;
  }
 #sec00 .sec-box .meritWrp4 {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	/*padding-bottom: 60px;*/
	max-width: 900px;
	margin: 0px auto;
}
#sec00 .sec-box .meritWrp4 li {
	width: 25%;
	background-color: #fff;
	padding: 100px 0px 2%;
	font-weight: bold;
	font-size: 18px;
	background-repeat: no-repeat;
	background-size: 95% auto;
	/*background-position: left 10% center;*/
	margin-bottom: 0px;
}
#sec00 .sec-box .meritWrp4 li:last-child,
#sec00 .sec-box .meritWrp4 li:nth-last-child(2):nth-child(odd) {
	margin-bottom: 0px;
} 
}

@media (min-width: 960px) {
  #sec00 {
    margin-top: 30px;
  }
  #sec00 .sec-box {
    margin-top: -30px;
    margin: 0 auto;
  }
#sec00 .sec-box .read {
  margin-bottom: 50px;
  max-width:70%;
  font-size: 2.0rem;
}
#sec00 .sec-box .meritWrp4 li {
	width: 25%;
	background-color: #fff;
	padding: 120px 0px 2%;
	font-weight: bold;
	font-size: 18px;
	background-repeat: no-repeat;
	background-size: 70% auto;
	/*background-position: left 10% center;*/
	margin-bottom: 0px;
}
}




/* サービスについて
----------------------------------------------------*/
#sec01 {
  /*background-color:#2263b3;
  background-color: #fcf9f1;
  */
  background-color: #65b849;
  /*background-image: url("../img/bg_sec_wh.png");*/
  background-repeat: repeat;
  background-position: left top;
}
#sec01 .sec-box {
  margin-top: -30px;
  margin: 0 auto;
}
#sec01 .sec-box .service01Wrp {
  display: block;
}
#sec01 .sec-box .service01Wrp .pht {
	width: 100%;
	text-align: center;text-align: center;
}
#sec01 .sec-box .read {
  margin-bottom: 30px;
}
#sec01 .sec-box .expWrp {
 	width:100%;
}
#sec01 .sec-box .expWrp h2 {
    text-align: left;
	color: #fff;
	/*color: #f8e01c;*/
}

#sec01  .btn {
	color: #396306;
	font-weight: 500;
	font-size: 20px;
	margin: 0 auto;
	max-width:550px;
}
#sec01  .btn.sp {
	margin-top: 30px;
}
#sec01  .btn a {
	display: block;
	background-color: #FFF;
	text-align: center;
	border-radius: 100px;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: .05em;
	border: 2px solid #cdb98d;
}
#sec01  .btn a span {
	display: inline-block;
	padding: 1em 0 1em 4em;
	background-image: url("../img/icon01.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 28% auto;
}

@media (min-width: 640px) {
  #sec01 .sec-box {
    margin-top: -30px;
    margin: 0 auto;
  }
#sec01 .sec-box .service01Wrp {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#sec01 .sec-box .service01Wrp .pht {
	width:35%;
}
#sec01 .sec-box .expWrp {
 	width:60%;
	padding-left:20px;
}
#sec01 .sec-box .expWrp  h2 {
	text-align:left;
}
}
@media (min-width: 960px) {
	#sec01 .sec-box .expWrp  h2 {
	text-align:left;
}
	#sec01 .sec-box {
    margin-top: -30px;
    margin: 0 auto;
	padding-bottom: 50px;
  }
    #sec01 .ctt-box {
    margin-bottom: 0;
  }
  #sec01  .btn {
	margin: 30px 0 0;
}
}



/* 
----------------------------------------------------*/
#sec02 {
	background-color:#e7f4e3;
	/*background: url("../img/bg_sec_lg.png");*/
}
#sec02  h2{
	color: #22b063;
}
#sec02 .sec-box {
	margin-top: -30px;
	margin: 0 auto;
}
#sec02 .sec-box .service02Wrp {
  display: block;
  padding-bottom: 10px;
}
#sec02 .sec-box .service02Wrp .pht {
	width:100%;
}
#sec02 .sec-box .read {
  margin-bottom: 30px;
}
#sec02 .sec-box .expWrp {
 	width:100%;
}
#sec02 .sec-box .expWrp  h2 {
	text-align:left;
}
@media (min-width: 640px) {
#sec02 .ctt-box {
	margin-bottom: 0;
}
#sec02 .sec-box .service02Wrp {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row-reverse;
}
#sec02 .sec-box .service02Wrp .pht {
	width:35%;
}
#sec02 .sec-box .expWrp {
 	width:60%;
	padding-right:20px;
}
}
@media (min-width: 960px) {
#sec02 .sec-box {
	margin-top: -30px;
	margin: 0 auto;
}
}



/* 
----------------------------------------------------*/
#sec03 {
  background-color: #fcf9f1;
  /*background-image: url("../img/bg_sec_wh.png");*/
  background-repeat: repeat;
  background-position: left top;
}
#sec03 .sec-box {
  margin: 0 auto;
}
#sec03 .sec-box .service03Wrp {
  display: block;
  padding-bottom: 10px;
}
#sec03 .sec-box .service03Wrp .pht {
	width: 100%;
	text-align: center;
}
#sec03 .sec-box .read {
  margin-bottom: 30px;
}
#sec03 .sec-box .expWrp {
 	width:100%;
}
#sec03 .sec-box .expWrp h2 {
    text-align: left;
	color: #d5ac52;
}
#sec03  .btn {
	color: #396306;
	font-weight: 500;
	font-size: 25px;
	margin: 0 auto;
	max-width:550px;
}
#sec03  .btn a {
	display: block;
	background-color: #FFF;
	text-align: center;
	border-radius: 100px;
	font-size: 25px;
	font-weight: 500;
	letter-spacing: .05em;
}
#sec03  .btn a span {
	display: inline-block;
	padding: 1em 0 1em 4em;
	background-image: url("../img/icon01.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 28% auto;
}

@media (min-width: 640px) {
  #sec03 {
    margin-top: -30px;
  }
  #sec03 .ctt-box {
	margin-bottom: 0;
}
  #sec03 .sec-box {
    margin-top: -30px;
    margin: 0 auto;
  }
#sec03 .sec-box .service03Wrp {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#sec03 .sec-box .service03Wrp .pht {
	width:35%;
}
#sec03 .sec-box .expWrp {
 	width:60%;
	padding-left:20px;
}
#sec03 .sec-box .expWrp  h2 {
	text-align:left;
}
}
@media (min-width: 960px) {
  #sec03 {
    margin-top: -30px;
  }
  #sec03 .sec-box {
    margin-top: -30px;
    margin: 0 auto;
  }
}


/* サービス共通上書き　*/
.sec-service {
	background-color: #fcf9f1!important;
}
.service-ttl {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: flex-end;
	border-bottom: 3px solid #22b063;
	padding-bottom: 1em;
	margin-bottom: 1em;
}
.service-ttl .num {
	display: block;
	width: 80px;
	margin-right: 20px;
	margin-left: 10px;
}
.sec-service h2 {
	color: #22b063!important;
	margin-bottom: 0!important;
}
#sec01 .sec-box,
#sec02 .sec-box {
	padding-bottom: 0;
}
.sec-service .ctt-box {
	background-color: #fff;
	padding: 4%;
	position: relative;
}
.sec-service .ctt-box::before {
	position: absolute;
	content: "";
	display: block;
	width: 120px;
	height: 80px;
	background-image: url("../img/ico-flower.png");
	background-repeat: no-repeat;
	background-size: 100%;
	left: -2%;
	top: -4%;
}
@media (min-width: 960px) {
	.sec-service .read {
	margin-bottom: 0!important;
}
	.service-ttl {
	border-bottom: 4px solid #22b063;
	padding-bottom: 1.5em;
	margin-bottom: 2em;
}
	.service-ttl .num {
	width: 180px;
	margin-right: 30px;
}
	.sec-service .ctt-box::before {
	width: 180px;
	height: 120px;
	left: -2%;
	top: -4%;
}
	#sec02.sec-service .ctt-box::before {
	left: 38%;
}
}

/* 
----------------------------------------------------*/
#sec04 {
	/*background: #254589;*/
	/*background: #f29018;*/
	background: #22b063;
}
#sec04 .sec-box {
	margin: 0 auto;
}

#sec04  .contact {
	text-align:center;
	color:#fff;
	font-size:25px;
	font-weight:bold;
	padding-bottom:15px;
}
#sec04  .btn {
	color: #396306;
	font-weight: 500;
	font-size: 25px;
	margin: 0 auto;
	max-width:500px;
}
#sec04  .btn a {
	display: block;
	background-color: #FFF;
	text-align: center;
	border-radius: 100px;
	font-weight: 500;
	letter-spacing: .05em;
	font-size: 25px;
}
#sec04  .btn a span {
	display: inline-block;
	padding: .5em 0 .5em 2em;
	background-image: url("../img/icon_tel.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 12% auto;
	font-size: 32px;
}

@media (min-width: 640px) {
#sec04 .sec-box {
	margin-top: -30px;
	margin: 0 auto;
}
}
@media (min-width: 960px) {
#sec04 .sec-box {
	margin-top: -30px;
	margin: 0 auto;
}
}



/* 
----------------------------------------------------*/
#sec05 {
	background-color: #fff0dd;
	/*background: url("../img/bg_sec_lg.png");*/
}
#sec05  h2{
	color: #f29018;
	}
#sec05 .sec-box {
	margin: 0 auto;
}
#sec02 .sec-box {
  margin-top: -30px;
  margin: 0 auto;
}
#sec05 .sec-box .service05Wrp {
  display: block;
  padding-bottom: 10px;
}
#sec05 .sec-box .service05Wrp .pht {
	width: 100%;
	text-align: center;
}
#sec05 .sec-box .read {
  margin-bottom: 30px;
}
#sec05 .sec-box .expWrp {
 	width:100%;
}
#sec05 .sec-box .expWrp  h2 {
	text-align:left;
}
#sec05  .btnWrp {
	text-align:center;
}
#sec05  .contact {
	text-align:center;
	font-size:25px;
	line-height: 1.5;
	font-weight:bold;
	padding-bottom:15px;
	padding-top: 15px;
}
#sec05  .btn {
	font-weight: 500;
	font-size: 25px;
	margin: 0 auto;
	max-width:500px;
	padding: 20px 50px;
	background-color:#FFF;
	/*border: 1px solid #111;*/
	border-radius: 100px;
}
#sec05  .btn a {
	display: block;
	background-color: #FFF;
	text-align: center;
	font-weight: 500;
	letter-spacing: .05em;
	font-size: 25px;
}
#sec05  .btn span {
	margin-left: -50px;
}
@media (min-width: 640px) {
#sec05 .sec-box .service05Wrp {
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding-bottom: 10px;
}
#sec05 .sec-box .service05Wrp .pht {
	width:35%;
	padding-top:40px;
}
#sec05 .sec-box .expWrp {
 	width:60%;
	padding-right:20px;
}
}
@media (min-width: 960px) {
#sec05 {
	margin-top: -60px;
}
#sec05 .ctt-box {
	margin-bottom: 0;
}
#sec05 .sec-box {
	margin-top: -30px;
	margin: 0 auto;
}
#sec05 .sec-box .service05Wrp {
	padding-bottom: 40px;
}
#sec05 .sec-box .service05Wrp .pht {
	padding-top: 0;
}
#sec05  .contact {
	font-size: 28px;
}
}




/* 
----------------------------------------------------*/
#sec06 {
	background: url("../img/bg_sec_wh.png");
}
#sec06 .sec-box {
	margin-top: -30px;
	margin: 0 auto;
}
#sec06 .sec-box .read {
	text-align: center;
	font-weight: 400;
	font-size: 1.6rem;
}
#sec06 .sec-box .activities-list {
  	margin: 30px auto 0;
}
#sec06 .sec-box .activities-list li {
  	/*width: 96%;*/
	box-sizing: border-box;
	padding: 30px 15px;
	margin: 20px auto 20px;
	border: solid 2px #e0e0e0;
	background-color: #FFF;
}
#sec06 .sec-box .activities-list li .pht {
  	margin-bottom: 15px;
}
@media (min-width: 640px) {
#sec06 {
	margin-top: -30px;
}
#sec06 .sec-box {
	margin-top: -30px;
	margin: 0 auto;
	padding-bottom: 50px;
}
#sec06 .sec-box .read {
	font-size: 2rem;
}
#sec06 .sec-box .activities-list {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
#sec06 .sec-box .activities-list li {
  	width: 46%;
	box-sizing: border-box;
	padding: 30px 4%;
	margin: 20px 2% 20px;
	margin-bottom: 30px;
}
#sec06 .sec-box .activities-list li:last-child,
#sec06 .sec-box .activities-list li:nth-last-child(2):nth-child(odd) {
	margin-bottom: 0px;
}
#sec06 .sec-box .activities-list li .date,
#sec06 .sec-box .activities-list li h3{
  	font-size: 2rem;
	font-weight: 400;
}
}
@media (min-width: 960px) {
#sec06 {
	margin-top: -30px;
}
#sec06 .sec-box {
	margin-top: -30px;
	margin: 0 auto;
}
}


/* 
----------------------------------------------------*/
#sec07 .sec-box {
  margin: 0 auto;
}
 #sec07 dl {
  display: flex;
  flex-wrap: wrap;
}
 #sec07 dl dt {
  width: 25%;
}
 #sec07 dl dd {
  width: 75%;
}  
#sec07 .ctt-box h2 {
	text-align:center;
	font-weight:bold;
	letter-spacing:0.1em;
	color:#111;
	margin-bottom: 30px;
}
#sec07 .accessWrp {
  display: block;
}
#sec07 .accessWrp .gmap {
	margin-bottom: 30px;
}
#sec07 .accessWrp ul {
  padding-right: 0px;
  padding-bottom: 20px;
}
#sec07 .accessWrp ul li {
  padding-bottom: 20px;
}
#sec07 .accessWrp ul li:last-child {
  padding-bottom: 0px;
}
#sec07 .accessWrp ul h2 {
  display: block;
  border-bottom: 1px solid #666;
  padding-bottom: 10px;
  margin-bottom: 20px;
  padding: 10px 34px 20px;
  text-align: center;
	font-size:22px;
  background: url("../img/logo_mark.svg");
  background-repeat:no-repeat;
  background-size:contain;
  height:70px;
}
#sec07 .accessWrp ul h2 span{
  display: none;
}
#sec07 .accessWrp ul h2 span {
  font-size: 16px;
}
/* 看板　*/
#sec07 .signboard {
	width: 80%;
	max-width: 400px;
	margin: 20px auto 0;
}


@media (max-width: 414px) {
 #sec07 dl {
  display: flex;
  flex-wrap: wrap;
}
 #sec07 dl dt {
  width: 25%;
}
 #sec07 dl dd {
  width: 75%;
}  
#sec07 .accessWrp ul {
  padding-bottom: 0px;
}
#sec07 .accessWrp .gmap {
	margin-bottom: 20px;
}
#sec07 .accessWrp .gmap iframe {
	width: 100%;
	height: 350px;
}
}
@media (min-width: 640px) {
  #sec07 {
    margin-top: -30px;
  }
  #sec07 .sec-box {
    margin-top: -30px;
    margin: 0 auto;
  }
 #sec07 dl {
  display: flex;
  flex-wrap: wrap;
}
 #sec07 dl dt {
  width: 25%;
}
 #sec07 dl dd {
  width: 75%;
}  
  #sec07 .accessWrp {
    display: block;
  }
  #sec07 .accessWrp ul {
    padding-right: 0px;
    padding-bottom: 20px;
    width: 100%;
  }
  #sec07 .accessWrp ul h2 {
    display: block;
    border-bottom: 1px solid #77b52a;
    padding-bottom: 10px;
    margin-bottom: 10px;
    padding: 10px 20px 20px;
    text-align: center;
  }
}
@media (min-width: 960px) {
 #sec07 {
    margin-top: -30px;
	background-image: url("../img/ill-foot-l.gif"),url("../img/ill-foot-r.gif");
	background-repeat: no-repeat,no-repeat;
	background-position: calc(50% - 500px) bottom,calc(50% + 560px) bottom;
}
#sec07 .sec-box {
	padding-bottom: 50px;
}
#sec07 dl {
  display: flex;
  flex-wrap: wrap;
}
 #sec07 dl dt {
  width: 25%;
}
 #sec07 dl dd {
  width: 75%;
}  
 #sec07 .sec-box {
    margin-top: -30px;
    margin: 0 auto;
  }
#sec07 .ctt-box h2 {
	font-size:36px;
	font-weight:bold;
	padding: 0 0 50px 0;
}
#sec07 .accessWrp ul h2 {
  height:100px;
}
  #sec07 .accessWrp {
    display: flex;
    justify-content: center;
  }
  #sec07 .accessWrp ul {
    padding-left: 30px;
    margin: 0 10px;
    width: 55%;
  }
  #sec07 .accessWrp .gmap {
    width: 60%;
  }
}
/*----------------------------------------------------

Lower

----------------------------------------------------*/
.pankuzu-box {
  width: 100%;
  padding-top: 100px;
  height: 40px;
  background: #222;
  font-size: 1.1rem;
}
.pankuzu {
  margin: auto;
  max-width: 90%;
}
.pankuzu ul {
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-end;
}
.pankuzu li {
  line-height: 40px;
}
.pankuzu li a {
  position: relative;
  padding-right: 40px;
  display: block;
}
.pankuzu li a::after {
  content: ">";
  display: block;
  position: absolute;
  width: 9px;
  height: 15px;
  top: 0;
  right: 15px;
}
@media screen and (max-width:960px) {
  .pankuzu-box {
    width: 100%;
    padding-top: 40px;
    height: 40px;
    background: #222;
    font-size: 1.1rem;
  }
  .pankuzu ul {
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    overflow: auto;
    white-space: nowrap;
    text-align: right;
  }
  .pankuzu li {
    display: inline-block;
    flex: 0 0 40%;
  }
}


/* 
----------------------------------------------------*/
#kiji-dtl {
  background: url("../img/bg_sec.png");
}
#kiji-dtl h2 {
  text-align: center;
}
.kiji-ttl {
  font-size: 1.6rem;
  padding: 10px 0 15px;
  position: relative;
}
.kiji-ttl h2 {
  text-align: center;
}
.kiji-ttl:after {
  position: absolute;
  content: '';
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: #155507;
  /*  background: url("../img/bg.png");*/
}
.kiji-data {
  text-align: right;
  font-size: 1.2rem;
}
.kiji-box {
  padding: 1em 0 0;
  line-height: 1.8;
}
.kiji-box p, .kiji-box figure {
  margin: 0 0 1.5em 0;
}
.kiji-box figure figcaption {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #999;
}
.kiji-box figure img {
  max-width: 100%;
}
.kiji-box figure img + figcaption {
  margin-top: 0.5em;
}
.kiji-box figure figcaption.blocks-gallery-item__caption {
  font-size: 1.2rem;
}
.kiji-box figure ul.blocks-gallery-grid {
  margin: 0;
}
.kiji-box h1, .kiji-box h2, .kiji-box h3, .kiji-box h4, .kiji-box h5, .kiji-box h6 {
  line-height: 1.4;
  margin-bottom: 0.5em;
}
.kiji-box h1 {
  font-size: 200%
}
.kiji-box h2 {
  font-size: 180%
}
.kiji-box h3 {
  font-size: 140%
}
.kiji-box h4 {
  font-size: 120%
}
.kiji-box h5 {
  font-size: 100%
}
.kiji-box h6 {
  font-size: 90%
}
.kiji-box strong {
  font-weight: 700;
}
.kiji-box em {
  font-style: italic;
}
.kiji-box ul {
  list-style: disc;
  margin: 1em 0 1em 1.5em;
}
.kiji-box ol {
  list-style: decimal;
  margin: 1em 0 1em 1.5em;
}
.kiji-box blockquote {
  margin: 0 0 1.5em;
  padding: 0 0 0 10px;
  border-left: 3px solid #ccc;
  font-size: 1.2rem;
  color: #999;
  line-height: 1.4;
}
.kiji-box figure.wp-block-table table {}
.kiji-box figure.wp-block-table table th {
  padding: 10px;
  border: 1px solid #ccc;
}
.kiji-box figure.wp-block-table table td {
  padding: 10px;
  border: 1px solid #ccc;
}
.kiji-nav::after {
  clear: both;
  display: block;
  content: '';
}
.kiji-nav {
  margin: 1.5em 0;
  display: flex;
  justify-content: center;
}
.kiji-nav .nav {}
.kiji-nav a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  padding: 10px 15px;
  margin: 0 1em;
  background: #155507;
  /*background: url("../img/bg_sec.png");*/
}
@media (min-width: 640px) {
  .kiji-ttl {
    font-size: 1.7rem;
  }
}
@media (min-width: 960px) {
  #kiji-dtl .txt-box {
    width: 80%;
    margin: 0 auto;
  }
  .kiji-box {
    padding: 2em 1em 0;
  }
  .kiji-ttl {
    font-size: 2.4rem;
  }
  .kiji-nav a {
    padding: 15px 25px;
  }
}
/* 
----------------------------------------------------*/
.pager {
  padding-top: 30px;
}
.pager ul.pagination {
  text-align: center;
}
.pager .pagination li {
  margin: 0 5px;
  padding: 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  position: relative;
}
.pager .pagination li a {
  display: block;
  line-height: 40px;
  background: #eee;
  color: #333;
  text-decoration: none;
}
.pager .pagination li a span {
  display: block;
}
.pager .pagination li a:hover, .pager .pagination li a.active {
  color: #fff;
  background: #155507;
}
@media only screen and (max-width: 640px) {
  .pager .pagination li {
    margin: 0 3px;
    width: 30px;
    height: 30px;
  }
  .pager .pagination li a {
    line-height: 30px;
  }
}
@media (min-width: 960px) {}
/* 
----------------------------------------------------*/
@media (min-width: 640px) {}
@media (min-width: 960px) {}