
body {
    font-family: 'Noto Sans JP',sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #333;
    -webkit-text-size-adjust: 100%;
    letter-spacing: 1.3px;
    word-break: break-all;
    background-color: #fff;
}

.container { max-width: 960px; }
/*.container img { width: 100%; }*/

/* header */
.header {
  background-color: #fff;
  z-index: 6000;
  padding: 0;
}

.header > .container {
  background-color: #fff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: none;
}


.header > .container > .menu {
  position: relative;
  display: none;
  width: 60px;
  height: 37px;
  background-color: transparent;
  border: none;
  text-align: center;
}

@media screen and (max-width: 840px) {
  .header > .container > .menu {
    display: block;
  }
}

.header > .container > .menu .txt {
  position: absolute;
  right: 6px;
  left: 6px;
  bottom: 4px;
  display: initial;
  font-size: 12px;
  line-height: 1em;
  white-space: nowrap;
  color: #008563;
}

.header > .container > .menu .txt-open {
  display: inherit;
}

.header > .container > .menu .txt-close {
  display: none;
}

.header > .container > .menu::before, .header > .container > .menu::after{
  content: "";
  top: 10px;
  right: 50%;
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background-color: #008563;
}

.header > .container > .menu::before {
  -webkit-transform: translate(50%, -4px);
  transform: translate(50%, -4px);
}

.header > .container > .menu::after {
  -webkit-transform: translate(50%, 3px);
  transform: translate(50%, 3px);
}


.header > .container > .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header > .container  .logo-info {
 font-size: /*1.6vw;*/1.4vw;
}

.header > .container > .logo .logo-img {
  height: 90px;
}

.header > .container > .logo .logo-board-img {
  width: 100%;
  height: 48px;
}

.header > .container > .pages {
  /*width: 100%;*/
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header > .container > .pages > .posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 840px) {
  .header > .container > .pages {
    display: none;
  }
}

.header > .container > .pages .page-link {
  width: 100%;
  line-height: 48px;
  border-radius: 4px;
}

.header > .container > .pages .page-link-contact {
  background-color: rgb(255,192,41);
  text: white;
  float: right;
}

@media screen and (max-width: 840px) {
  .header > .container > .pages .page-link-contact {
    display: none;
  }
}

.header > .container > .bg {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  display: block;
  height: 1px;
  background-color: #eee;
}

.header > .container-hover {
  display: none;
  height: 0;
  padding: 0;
  background-color: #fff;
  position: absolute;
}

.header > .container-hover > .pages {
  display: none;
  max-width: none;
 /*width: 100%;*/
}

.header > .container-hover > .pages .posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 160px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 20px;
  width: 100%;
}

.header > .container-hover > .pages .posts .post {
  max-width: 160px;
  width: 100%;
  margin: 0 16px 32px 16px;
}

.header > .container-hover > .pages .posts .post-thumb {
  max-width: 160px;
  width: 100%;
  height: 80px;
  background-position: center;
  background-size: cover;
}

.header > .container-menu {
  display: none;
}

.header > .container-menu > .nav {
  font-size: 15px;
  line-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.header > .container-menu > .nav > .page-link {
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px solid #d1f5ee;
  font-weight: bold;
  color: green;
}

.header > .container-menu > .nav > .page-link:nth-of-type(2n-1) {
  background-color: #d1f5ee;
}
.page-link { border: 1px solid #d1f5ee; }

.header > .container-nav {
  padding: 0;
}

@media screen and (max-width: 840px) {
  .header > .container-nav {
    display: none;
  }
}

.header > .container-nav > .page-link {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0px 5px;
  padding: 8px 5px;
  border-bottom: 1px solid transparent;
  text-align: center;
  color: white;
  background-color: rgb(169,209,145);
  font-weight: bold;
  font-size: 1.4vw;
}

.header > .container-nav > .page-link.page-link-active {
  border-bottom: 1px solid #008563;
}


.header.header-open {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.header.header-open .container .menu .txt {
  color: #999;
}

.header.header-open .container .menu .txt-open {
  display: none;
}

.header.header-open .container .menu .txt-close {
  display: inherit;
}

.header.header-open .container .menu::before, .header.header-open .container .menu::after {
  background-color: #999;
}

.header.header-open .container .menu::before {
  -webkit-transform: translate(50%, -1px) rotate(45deg);
  transform: translate(50%, -1px) rotate(45deg);
}

.header.header-open .container .menu::after {
  -webkit-transform: translate(50%, -1px) rotate(-45deg);
  transform: translate(50%, -1px) rotate(-45deg);
}

.header.header-open .container-menu {
  display: block;
}

.header.header-open .container-menu .nav .page-link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.header.header-open .container-menu .nav .page-link .icon {
  width: 10px;
}

.header.header-open .container-menu > .pages {
  display: block;
  width: 100%;
  max-width: none;
  margin-top: 32px;
}

.header.header-open .container-menu > .pages .page-link {
  display: block;
  width: 100%;
  max-width: none;
  margin-bottom: 10px;
}

.header.header-hover:hover > .container-hover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}

.header.header-hover:hover > .container-hover > .pages-appear {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header.header-hover:hover > .bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000000;
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
}
header > .bg,
footer > .bg,
section > .bg,
.section > .bg {
  position: absolute;
  z-index: -1;
}

header > .bg.bg-cover,
footer > .bg.bg-cover,
section > .bg.bg-cover,
.section > .bg.bg-cover {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
header > .bg.bg-center,
footer > .bg.bg-center,
section > .bg.bg-center,
.section > .bg.bg-center {
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  width: 100%;
  height: 100%;
}

header > .bg.bg-hidden,
footer > .bg.bg-hidden,
section > .bg.bg-hidden,
.section > .bg.bg-hidden {
  overflow: hidden;
}
.page-top .top-banner .bg-cover {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-size: cover;
  background-position: center;
}

.page-top .top-banner .bg-cover::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-top: 32%;
}

.topics {
	max-width: 960px;
	margin: auto;
}

.topics .card-header{
	background-color: rgb(255,204,253);
	font-size: 2.8vw;
	line-height: 36px;
  	text-align: center;
  	font-weight: bold;
  	padding: 15px 5px;
}

@media screen and (max-width: 480px){/* 480px以下でスマホ画面時*/
.lead {  font-size: 15px;}
.topics .card-header{ font-size: 15px;}
}

a.contact-btn {
  position: absolute;
  width: 70%;
  bottom: 5%;
  left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
a.hd-contact-btn:hover, a.contact-btn:hover {
  opacity:0.5;
}

#areaMap .title {
  background-color: rgb(154,204,68);
  color: white;
  font-weight: bold;

}

footer.footer { border-top: 1px solid #d3d3d3; }

/* pager btn */
a.link-btn {
  position: absolute;
  bottom: 3%;
  left: 55%;
  font-weight: bold;
  font-size: 2vw;
  background-color: #20b36f;
}

.feature > a.link-btn { bottom: 18%; left: 60%; }

.lead { font-size: 2.0vw; }

/* 640px以下でタブレット画面時*/
@media screen and (max-width: 767px) {
  a.link-btn {
    padding: 10px 15px;
    bottom: 2%;
    left: 58%;
  }
  .feature > a.link-btn { bottom: 20%; }

  .header > .container > .logo .logo-img { height: 60px; }

  .lead { font-size: 16px; }
}

/* 576px以下でスマホ画面時*/
@media screen and (max-width: 575px){
  .header > .container > .logo {
    flex-flow: column-reverse; align-items: flex-start;
  }
  .header > .container .logo-info {
    font-size: 18px;
  }
  section > .container {
    padding-bottom: 20px;
  }
  a.link-btn {
    padding: 5px 7px;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    font-size: 14px;
    white-space: nowrap;
  }
  
  .feature > a.link-btn {
    padding: 5px 7px;
    bottom: 9%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    font-size: 14px;
    white-space: nowrap;
  }


  .lead {  font-size: 15px;}
  .topics .card-header{ font-size: 15px;}

  .header > .container .logo-info {
    font-size: 14px;
  }
  .header > .container > .logo {
   flex-flow: column-reverse; align-items: flex-start;
  }
  .header > .container > .logo .logo-img { height: 45px; }
}