@charset "UTF-8";
/*  タグ
======================*/
a:hover {
  opacity: .5;
}

@media screen and (min-width: 1000px) {
  :target:before {
    content: "";
    display: block;
    height: 140px;
    margin-top: calc(140px * -1);
    visibility: hidden;
  }
}

/*  共通クラス
======================*/
.SPonly {
  display: inline-block;
}

@media screen and (min-width: 1000px) {
  .SPonly {
    display: none;
  }
}

.PConly {
  display: none;
}

@media screen and (min-width: 1000px) {
  .PConly {
    display: inline-block;
  }
}

.containor {
  width: 95%;
  margin: auto;
}

@media screen and (min-width: 1000px) {
  .containor {
    width: 1000px;
  }
}

.dubble-btn {
  background-color: #2A7A64;
  color: #fff;
  border-radius: .5em;
  padding: .3em;
  display: inline-block;
}

.dubble-btn .inner {
  border: 1px solid #fff;
  border-radius: .4em;
  padding: .2em .5em;
  display: block;
}

/*  ヘッダー
======================*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(60, 161, 37, 0.5)), to(rgba(255, 255, 255, 0.6)));
  background: linear-gradient(rgba(60, 161, 37, 0.5), rgba(255, 255, 255, 0.6));
  height: 40px;
  z-index: 100;
}

@media screen and (min-width: 1000px) {
  .site-header {
    height: auto;
  }
}

.site-header .containor {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 1000px) {
  .site-header .containor {
    padding: 1em 0;
  }
}

.site-header .logo {
  width: 50%;
}

.site-header .tel {
  display: block;
  padding: 3px 7px 7px 7px;
  border-radius: 0;
  height: 40px;
  width: 50px;
  position: fixed;
  top:0;
  right:50px;
}

@media screen and (min-width: 1000px) {
  .site-header .tel {
    width: auto;
    height: auto;
    border-radius: .4rem;
    margin-right: 0;
    padding: .3em;
    position:static;
  }
}

.site-header .tel .inner {
  display: none;
}

@media screen and (min-width: 1000px) {
  .site-header .tel .inner {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: .8em;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.site-header .tel .number {
  font-size: 1.5em;
  margin-left: 1em;
}

@media screen and (min-width: 1000px) {
  .site-header .tel .icon {
    display: none;
  }
}

.site-header #hamburger {
  position: fixed;
  top: 0rem;
  right: 0rem;
  width: 50px;
  height: 40px;
  z-index: 1000;
  background-color: #fff;
  padding: .5em;
}

@media screen and (min-width: 1000px) {
  .site-header #hamburger {
    display: none;
  }
}

.site-header #hamburger span {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #2A7A64;
  position: relative;
  border-radius: 3px;
  -webkit-transition: .2s;
  transition: .2s;
}

.site-header #hamburger span:nth-of-type(1) {
  top: -6px;
}

.site-header #hamburger span:nth-of-type(2) {
  top: 0px;
}

.site-header #hamburger span:nth-of-type(3) {
  top: 7px;
}

.site-header #hamburger.is-active span:nth-of-type(1) {
  top: 2px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.site-header #hamburger.is-active span:nth-of-type(2) {
  display: none;
}

.site-header #hamburger.is-active span:nth-of-type(3) {
  top: -1px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.site-header .gnav {
  display: none;
  z-index: 100;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
}

@media screen and (min-width: 1000px) {
  .site-header .gnav {
    background-color: transparent;
    display: inline-block;
    width: 100%;
    position: static;
  }
}

.site-header .gnav .gnav-list {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}

@media screen and (min-width: 1000px) {
  .site-header .gnav .gnav-list {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 1em;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.site-header .gnav .gnav-list > li {
  text-align: center;
  color: #3CA125;
  margin-bottom: 2em;
  font-size: 1.5em;
  font-weight: bold;
}

@media screen and (min-width: 1000px) {
  .site-header .gnav .gnav-list > li {
    width: calc(95% / 6);
    background-color: #fff;
    border: 2px solid #3CA125;
    border-radius: .4rem;
    text-align: center;
    font-size: .8em;
    padding: .3em 0;
    position: relative;
    font-weight: normal;
    margin-bottom: 0;
  }
}

.site-header .gnav .gnav-list > li a {
  display: block;
}

.site-header .gnav .gnav-child-list {
  font-size: .8rem;
  margin-left: 1rem;
}

@media screen and (min-width: 1000px) {
  .site-header .gnav .gnav-child-list {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    border-left: 1px solid #707070;
    border-right: 1px solid #707070;
    border-bottom: 1px solid #707070;
    width: 100%;
    margin-left: 0;
    top: 2.4em;
    padding: 0 .5rem;
  }
}

.site-header .gnav .gnav-child-list li {
  margin-bottom: .5rem;
}

@media screen and (min-width: 1000px) {
  .site-header .gnav .gnav-child-list li {
    border-bottom: 1px solid #707070;
    margin-bottom: 0;
    margin-left: 0;
  }
}

@media screen and (min-width: 1000px) {
  .site-header .gnav .gnav-child-list li:last-child {
    border-bottom: none;
  }
}

.site-header .gnav .gnav-child-list li a {
  margin-left: -1em;
}

@media screen and (min-width: 1000px) {
  .site-header .gnav .gnav-child-list li a {
    padding: .5rem 0;
    display: block;
  }
}

.site-header .gnav .gnav-child-list li a:before {
  content: "■";
  margin-right: .5em;
}

@media screen and (min-width: 1000px) {
  .site-header .gnav .gnav-child-list li a:before {
    display: none;
  }
}

/*  フッター
======================*/
.site-footer {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.6)), to(#3ca125));
  background: linear-gradient(rgba(255, 255, 255, 0.6), #3ca125);
  padding-top: 6em;
  position: relative;
}

.site-footer .to-top {
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: .5em;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
}

@media screen and (min-width: 1200px) {
  .site-footer .to-top {
    top: 6em;
    right: calc((100% - 1200px) / 2);
  }
}

.site-footer .to-top span {
  display: block;
  background-color: #3CA125;
  color: #fff;
  font-size: .8em;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  line-height: 2.5rem;
  text-align: center;
  font-size: .6em;
}

.site-footer .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 2em;
/*  justify-content: center;*/
}

.site-footer .nav-list li {
  width: 48%;
  margin-bottom: .5em;
}

@media screen and (min-width: 1000px) {
  .site-footer .nav-list li {
    width: calc(96% / 3);
  }
}

/*.site-footer .nav-list li:nth-of-type(odd) {
  margin-right: 4%;
}*/

@media screen and (min-width: 1000px) {
  .site-footer .nav-list li:nth-of-type(odd) {
    margin-right: 0;
  }
}

/*.site-footer .nav-list li:not(:nth-of-type(4n)) {
  margin-right: 1%;
}*/

.site-footer .nav-list li a {
  display: block;
  background-color: #fff;
  border-radius: .4em;
  border: 1px solid #ccc;
  padding: .2em;
  text-align: center;
}

.site-footer .nav-list li a.brackets:before {
  content: "【";
  margin-right: .5em;
}

.site-footer .nav-list li a.brackets:after {
  content: "】";
  margin-left: .5em;
}

.site-footer .info {
  margin-bottom: 2em;
}

@media screen and (min-width: 1000px) {
  .site-footer .info {
    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;
  }
}

.site-footer .info .logo {
  display: block;
  margin: 0 auto 1em;
  width: 80%;
}

@media screen and (min-width: 1000px) {
  .site-footer .info .logo {
    width: auto;
    margin: 0;
  }
}

.site-footer .info .tel {
  display: block;
  text-align: center;
}

.site-footer .info .tel .inner {
  font-size: .8em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.site-footer .info .tel .number {
  font-size: 1.5em;
  margin-left: 1em;
}

.site-footer .copyright {
  text-align: center;
  color: #fff;
  font-size: .8em;
  padding-bottom: 2em;
}

/*  下層共通
===========================*/
.page-ttl {
  background-color: #C2E880;
  padding: .5em;
  text-align: center;
  color: #3CA125;
  font-size: 1.5em;
  margin-bottom: 2em;
}

@media screen and (min-width: 1000px) {
  .page-ttl {
    font-size: 2em;
  }
}

.section-box {
  margin-bottom: 4em;
}

.section-ttl {
  background-color: #3CA125;
  color: #fff;
  border-radius: .4rem;
  margin-bottom: 1em;
  padding: .5em;
  font-size: 1.5em;
}

@media screen and (min-width: 768px) {
  .section-ttl {
    text-align: center;
    padding: .3em;
  }
}
/*# sourceMappingURL=common.css.map */

/*20240501*/
._a_fbox{display: flex;flex-flow: row wrap;}
._jcsb{justify-content: space-between;}
._w18{width: 18%;}._w30{width: 30%;}
._mb10{margin-bottom: 10px;}._mb15{margin-bottom: 15px;}

._disclosure-list{padding: 0 2rem;}
._disclosure-list ul li{list-style-type: disc;}
._disclosure-list ul li > ul{margin-bottom: 0.75rem;}
._disclosure-list ul li > ul li{list-style-type: circle;padding:0 0 .25rem 2rem;}
._disclosure-list .mtli_pdf {
  background-image: url(https://www.peacefull-care.com/wp-content/themes/peacefull/img/material/icon_pdf.png);
  background-repeat: no-repeat;
  background-size: contain;
  padding: 0 0 0 1.75rem;
}

@media screen and (max-width: 750px) {
  ._sp_w45{width: 45%;}._sp_w48{width: 48%;}
}