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

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 right;
  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: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  padding-right: 20px;
  list-style: none;
  text-align: right;
}
#main-slider .slick-dots li.slick-active button:before {
  opacity: .75;
  color: #c39527;
}
#main-slider .slick-dots li button:before {
  /*font-family: 'slick';*/
  font-size: 22px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  content: '■';
  text-align: right;
  opacity: .8;
  color: #513d1d;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#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: 90%;
  top: 70%;
  text-align: center;
  transform: translateY(-100%);
  /*transform: rotate(-5deg);*/
}
#main-slider h3 {
	position: absolute;
	width: 40%;
	bottom: 10px;
	right: 5%;
	text-align: right;
  transform: translateY(-100%);
  /*transform: rotate(-5deg);*/
}
@media (min-width: 415px) {
  #main-slider h2 {
    font-size: 38px;
    width: 100%;
    left: 0px;
	top: 75%;
	padding: 10px;
  }
}
@media (min-width: 960px) {
  #main-slider h2 {
    left: 25px;
    font-size: 38px;
	top: 75%;
  }
#main-slider h3 {
  position: absolute;
  width: 100%;
  bottom: 0%;
  right:5%;
  text-align: right;
  transform: translateY(-100%);
  /*transform: rotate(-5deg);*/
}
}
/* common
----------------------------------------------------*/
.ctt-box {
  text-align: left;
  margin-bottom: 30px;
}
.ctt-box h2 {
  font-size: 2.3rem;
  margin-bottom: 1.5em;
  letter-spacing: 0.1em;
  line-height: 1.3;
	color: #77b52a;
	text-align: center;
	font-weight: 500;
}
.ctt-box strong {
  font-size: 2rem;
}
.ctt-box h2:after {
  content: attr(data-en);
  font-size: 1.3rem;
  display: block;
  letter-spacing: .1em;
}
.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: 415px) {
  .ctt-box {
    margin-bottom: 40px;
  }
  .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: 1.5em;
  }
  .ctt-box strong {
    font-size: 3rem;
  }
  .ctt-box h2:after {
    font-size: 1.5rem;
  }
}


/* 新型コロナウイルスについて
----------------------------------------------------*/
#sec00 {
  margin-top: -30px;
}
#sec00 .sec-box {
  margin-top: -30px;
  margin: 0 auto;
  padding-top: 80px;
}
#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: #77b52a;
	color: #FFF;
	padding: 70px 2% 15px 2%;
	font-weight: bold;
	font-size: 1.8rem;
	background-repeat: no-repeat;
	background-size: auto 50px;
	background-position: center top 15px;
	margin-bottom: 15px;
	text-align: center;
}
#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: 415px) {
  #sec00 {
    margin-top: -30px;
  }
  #sec00 .sec-box {
    margin-top: -30px;
    margin: 0 auto;
	padding-bottom: 70px;
  }
  #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: 1100px;
	margin: 0px auto;
}
#sec00 .sec-box .meritWrp4 li {
	width: 49%;
	background-color: #77b52a;
	color: #FFF;
	padding: 1.5em 3% 1.5em 15%;
	font-weight: bold;
	font-size: 30px;
	background-repeat: no-repeat;
	background-size: 16% auto;
	background-position: left 10% center;
	margin-bottom: 25px;
}
#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;
  }
}




/* 新型コロナウイルスについて
----------------------------------------------------*/
#sec01 {
  margin-top: -30px;
  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 .aboutWrp {
  /*display: flex;
  flex-direction: column;*/
  padding-bottom: 10px;
}
#sec01 .sec-box .read {
  font-weight: 500;
  text-align: center;
  margin-bottom: 2em;
}
#sec01 .sec-box .pic-taisaku {
  text-align: center;
  margin-bottom: 2em;
}
#sec01 .sec-box .relief {
	border: solid 2px #e0e0e0;
	padding: .9em;
	background-color: #FFF;
	box-sizing: border-box;
	text-align: center;
}
#sec01 .sec-box .taisaku-list {
	margin: 0 auto 20px;
}
#sec01 .sec-box .taisaku-list li {
	font-size: 1.4rem;
}

@media (min-width: 415px) {
  #sec01 {
    margin-top: -30px;
  }
  #sec01 .sec-box {
    margin-top: -30px;
    margin: 0 auto;
  }
#sec01 .sec-box .aboutWrp {
  padding-bottom: 60px;
}
  /*#sec01 .sec-box .aboutWrp {
    display: flex;
    flex-direction: unset;
  }*/
#sec01 .sec-box .taisaku-list {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 940px;
	margin: 0 auto 50px;
	box-sizing: border-box;
}
#sec01 .sec-box .taisaku-list li {
  	width: 48.5%;
	font-size: 1.7rem;
}
  
}
@media (min-width: 960px) {
  #sec01 {
    margin-top: -30px;
  }
  #sec01 .sec-box {
    margin-top: -30px;
    margin: 0 auto;
	padding-bottom: 30px;
  }
#sec01 .sec-box .read {
  font-size: 2.2rem;
}
#sec01 .sec-box .relief {
	max-width: 940px;
	margin: 0 auto;
	font-size: 2.6rem;
	line-height: 1.5;
	font-weight: 400;
	text-align: center;
}
}



/* 
----------------------------------------------------*/
#sec02 {
	background: url("../img/bg_sec_lg.png");
}
#sec02 .sec-box {
	margin-top: -30px;
	margin: 0 auto;
}
.priceWrp .kakaku {
	border: solid 1px #77b52a;
	box-sizing: border-box;
	margin: 30px auto 30px;
}
.priceWrp .kakaku div {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
}
.priceWrp .kakaku dt {
	background-color: #afd67f;
	width: 40%;
	flex-shrink: 0;
	border-right: solid 1px #77b52a;
}
.priceWrp .kakaku dt:nth-child(2) {
	width: 60%;
	border-right: none;
}
.priceWrp .kakaku dd {
	background-color: #FFF;
	width: 60%;
	flex-shrink: 0;
}
.priceWrp .kakaku dt,
.priceWrp .kakaku dd {
	color: #396306;
	font-weight: 500;
	font-size: 1.5rem;
	padding: 1em;
	border-bottom: solid 1px #77b52a;
	box-sizing: border-box;
}
.priceWrp .kakaku div:last-child dt,
.priceWrp .kakaku div:last-child dd {
  border-bottom: none;
}

.priceWrp .gentei-box .pht {
	margin-bottom: 30px;
}

.priceWrp .btn {
	color: #396306;
	font-weight: 500;
	font-size: 2.0rem;
	margin: 0 auto;
}
.priceWrp .btn a {
	display: block;
	background-color: #FFF;
	text-align: center;
	border-radius: 100px;
	font-size: 1.8rem;
	font-weight: 400;
	letter-spacing: .05em;
}
.priceWrp .btn a span {
	display: inline-block;
	padding: 1.2em 0 1.2em 2.5em;
	background-image: url("../img/line.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 15% auto;
}
.priceWrp .att {
	font-size: 1.4rem;
	text-align: center;
	margin-top: 1em;
}
@media (min-width: 415px) {
#sec02 {
	margin-top: -30px;
}
#sec02 .sec-box {
	margin-top: -30px;
	margin: 0 auto;
	padding-bottom: 50px;
}
.priceWrp .btn {
	max-width: 880px;
}
.priceWrp .btn a {
	font-size: 2.4rem;
}

.priceWrp .gentei-box {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 1110px;
	margin: 5em auto 2em;
}
.priceWrp .gentei-box p {
	width: 48%;
}
.priceWrp .gentei-box .pht {
	margin-bottom: 0px;
}

.priceWrp .imgcnt {
	text-align: center;
}
.priceWrp .kakaku {
	max-width: 1110px;
	margin: 4em auto ;
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
}
.priceWrp .kakaku div {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width : 50% ;
	/* width : 33.33333% ; 未対応ブラウザ用フォールバック */
	width : -webkit-calc(100% / 2) ;
	width : calc(100% / 2) ;
}
.priceWrp .kakaku div {
	border-right: solid 1px #77b52a;
}
.priceWrp .kakaku div:last-child {
	border-right: none;
}
.priceWrp .kakaku dt,
.priceWrp .kakaku dt:nth-child(2),
.priceWrp .kakaku dd {
	width : 100% ;
	padding: .5em;
	box-sizing: border-box;
	text-align: center;
	font-size: 2.0rem;
	flex-shrink: 0;
	border-right: none;
}
.priceWrp .kakaku div:last-child dt {
	border-bottom: solid 1px #77b52a;
}
.priceWrp .kakaku dt:nth-child(2),
.priceWrp .kakaku dd {
	flex: 1;
	min-height: 0%;
	border-bottom: none;
}

.priceWrp .att {
	font-size: 1.8rem;
}
}
@media (min-width: 960px) {
#sec02 {
	margin-top: -30px;
}
#sec02 .sec-box {
	margin-top: -30px;
	margin: 0 auto;
}
.priceWrp .btn a {
	font-size: 3.6rem;
}
.priceWrp .att {
	font-size: 2rem;
}
}



/* 
----------------------------------------------------*/
#sec03 {
	background: url("../img/bg_sec_wh.png");
}
#sec03 .sec-box {
	margin-top: -30px;
	margin: 0 auto;
}
#sec03 .sec-box .txt {
	margin: 0 0 1.5em 0;
}
#sec03 .sec-box .doctor {
	padding: 8px;
	background-color: #e4f2dd;
	/*
	padding-bottom: 1px;*/
}
#sec03 .sec-box .doctor .career {
	border: solid 1px #FFF;
	margin: 10px;
	padding: 15px;
}
#sec03 .sec-box .doctor .career h3 {
	color: #FFF;
	font-size: 1.8rem;
	text-align: center;
	margin-bottom: .5em;
}
#sec03 .sec-box .doctor .career p {
	color: #FFF;
	font-size: 1.4rem;
	line-height: 1.3;
}
@media (min-width: 415px) {
#sec03 {
	margin-top: -30px;
}
#sec03 .sec-box {
	margin-top: -30px;
	margin: 0 auto;
	padding-bottom: 50px;
}
#sec03 .sec-box .doctor .career h3 {
	font-size: 2.2rem;
}
#sec03 .sec-box .txt {
	font-size: 1.6rem;
}
#sec03 .introWrp {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	max-width: 1110px;
	margin: 0 auto;
}
#sec03 .message {
  	width: 53%;
}
#sec03 .doctor {
  	width: 40%;
}
#sec03 .sec-box .doctor .career p {
	font-size: 1.5rem;
}
}
@media (min-width: 960px) {
#sec03 {
	margin-top: -30px;
}
#sec03 .sec-box {
	margin-top: -30px;
	margin: 0 auto;
}
}



/* 
----------------------------------------------------*/
#sec04 {
	background: url("../img/bg_sec_lg.png");
}
#sec04 .sec-box {
	margin-top: -30px;
	margin: 0 auto;
	padding-bottom: 0;
}
#sec04 .flow-list {
	max-width: 1110px;
	margin: 0 auto;
}
#sec04 .flow-list li {
	background-color: #FFF;
	padding: 15px 15px 25px;
	position: relative;
	margin-bottom: 40px;
}
#sec04 .flow-list li:last-child {
	margin-bottom: 0px;
}
#sec04 .flow-list li:after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 20px 20px 0 20px;
	border-color: #fff transparent transparent transparent;
	position: absolute;
	left: 50%;
	bottom: -20px;
	transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
}
#sec04 .flow-list li:last-child:after {
	display: none;
}
#sec04 .flow-list li .txt-box h3 span {
	width: 75px; 
	display: block;
	margin-bottom: .3em;
}
#sec04 .flow-list li .txt-box h3 {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: .5em;
	margin-top: 1em;
}
#sec04 .feel-free {
	margin: 40px auto 0;
	position: relative;
}
#sec04 .feel-free .signboard {
	width: 45%;
	position: absolute;
	right: 0;
	top: 7em;
}
#sec04 .feel-free .pht {
	width: 70%;
	text-align: center;
}
#sec04 .feel-free .txt {
	margin-bottom: 50px;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}
#sec04 .feel-free .txt span {
	background: linear-gradient(transparent 90%, #cce1b1 0%);
	display: inline;
	/*横に余白をつけたり、下にずらしたりするときは以下のpaddingを調整してください*/
	padding: 0 2px 4px;
	font-weight: bold;
	font-size: 1.8rem;
}

@media (min-width: 415px) {
#sec04 {
	margin-top: -30px;
}
#sec04 .sec-box {
	margin-top: -30px;
	margin: 0 auto;
}
#sec04 .flow-list li {
	padding: 25px;
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
#sec04 .flow-list li .pht {
	width: 35%; 
}
#sec04 .flow-list li .txt-box {
	width: 62%; 
	padding: 20px 0;
}
#sec04 .flow-list li .txt-box h3 {
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: .5em;
	margin-top: 0;
}
#sec04 .flow-list li .txt-box h3 span {
	width: 75px; 
	display: block;
	margin-bottom: 0;
}
#sec04 .feel-free {
  	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
  	-webkit-box-orient: horizontal;
  	-webkit-box-direction: normal;
  	-ms-flex-direction: row;
  	flex-direction: row;
	margin: 50px auto 0;
	max-width: 1100px;
}
#sec04 .feel-free .txt,
#sec04 .feel-free div {
	box-sizing: border-box;
	padding: 0 2%;
}
#sec04 .feel-free .signboard {
	width: 30%;
	position: relative;
	right: auto;
	top: auto;
}
#sec04 .feel-free .pht {
	width: 40%;
}
#sec04 .feel-free .txt {
	width: 30%;
	padding: 0 2% 0 6%;
	box-sizing: border-box;
	margin-bottom: 0;
}
#sec04 .feel-free .txt .sp {
	display: none;
}
}
@media (min-width: 960px) {
#sec04 {
	margin-top: -30px;
}
#sec04 .sec-box {
	margin-top: -30px;
	margin: 0 auto;
}
}



/* 
----------------------------------------------------*/
#sec04-2 .sec-box {
	margin-top: -30px;
	margin: 0 auto;
	padding-top: 0;
}
#sec04-2 .sec-box .btn a {
	background-color: #f3f1ed;
}



/* 
----------------------------------------------------*/
#sec05 {
	background: url("../img/bg_sec_lg.png");
}
#sec05 .sec-box {
	margin-top: -30px;
	margin: 0 auto;
}
@media (min-width: 415px) {
#sec05 {
	margin-top: -30px;
}
#sec05 .sec-box {
	margin-top: -30px;
	margin: 0 auto;
	padding-bottom: 50px;
}
}
#sec05 .sec-box .txt {
	font-weight: 500;
	text-align: center;
	font-size: 1.6rem;
}
#sec05 .sec-box .instagram {
	width: 90%;
	max-width: 365px;
	margin: 20px auto 0;
}
#sec05 .sec-box .instagram a {
	display: block;
	box-sizing: border-box;
	border: solid 2px #e0e0e0;
}
@media (min-width: 960px) {
#sec05 {
	margin-top: -30px;
}
#sec05 .sec-box {
	margin-top: -30px;
	margin: 0 auto;
}
#sec05 .sec-box .txt {
	font-size: 1.8rem;
}
}


/* 
----------------------------------------------------*/
#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: 415px) {
#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 {
  background: url("../img/bg_sec_lg.png");
}
#sec07 .sec-box {
  margin: 0 auto;
}
#sec07 .ctt-box h2 {
	text-align:center;
	/*font-size:28px;*/
	font-weight:bold;
	letter-spacing:0.1em;
	/*padding: 0 0 30px 0;*/
	color:#77b52a;
}
#sec07 .accessWrp {
  display: block;
}
#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;
}
@media (max-width: 414px) {
#sec07 .accessWrp ul {
  padding-bottom: 0px;
}
#sec07 .accessWrp .gmap {
	margin-bottom: 20px;
}
#sec07 .accessWrp .gmap iframe {
	width: 100%;
	height: 350px;
}
}
@media (min-width: 415px) {
  #sec07 {
    margin-top: -30px;
  }
  #sec07 .sec-box {
    margin-top: -30px;
    margin: 0 auto;
  }
  #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;
  }
  #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: 415px) {
  .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: 415px) {
  .pager .pagination li {
    margin: 0 3px;
    width: 30px;
    height: 30px;
  }
  .pager .pagination li a {
    line-height: 30px;
  }
}
@media (min-width: 960px) {}
/* 
----------------------------------------------------*/
@media (min-width: 415px) {}
@media (min-width: 960px) {}