@charset "UTF-8";


@media screen and (min-width: 767.98px){
  body {
    font-size: .9rem;
  }
}
@media screen and (max-width: 767.98px){
  body {
    font-size: .8rem;
  }
  body h4 {
    font-size: 1rem;
  }
}



#navi {
  position: fixed;
  top: 0;
  left: 0;
  height: 48px;
  width: 100%;
}
#navi ul, #navi a {
  color: #2e8046;
}

#navi ul {
  list-style: none;
  padding-left: 0;
  padding-bottom: 1rem;
  text-align: center;
  margin-bottom: 0;
}
#navi label {
  margin-bottom: 0;
}

/* チェックボックスを非表示 */
#navi input {
  display: none;
}
/* 左上ロゴ */
.menu-left {
  line-height: 48px;
}
.menu-left img {
  vertical-align: middle;
  margin-left: 10px;
}
@media screen and (min-width: 992px) {
.menu-left img {
  padding: 0 1.5rem 1rem 1.5rem;
}
}

/* 左部メニュー */
#menu li {
font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
font-weight: 800;
}
#menu a {
  display: block;
}
/* パソコンでは V を非表示 */
#menu > li .pd {
  display: none;
}

#menu-navibtn {
  display: none;
  cursor: pointer;
  cursor: hand;
}

/* スマホ用 */
@media screen and (max-width: 992px) {
  /* 基本非表示 */
  #menu {
    display: none;
  }
  #navi label {
  width: 100%;
  }

  #menu li {
    position: relative;
    height: auto;
    min-height: 3rem;
    line-height: 3rem;
    width: 100%;
    border-bottom: 1px solid #DDD;
    white-space: nowrap;
  }
  #menu > li {
    margin-right: -20px;
  }
  #menu .menu_link {
    padding: 0 1rem;
  }

  /* V を表示 */
  #menu > li .pd {
    display: inline-block;
    position: absolute;
    right: 1rem;
  }
  #menu li a {
    display: block;
    text-decoration: none;
    padding: 0 1rem;
  }
  #menu li a::after {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-weight: 900;
    position: absolute;
    right: 1rem;
  }
  #menu li:first-child {
    border-top: 1px solid #DDD;
  }
  #menu li i {
    padding: 0px 6px;
  }

  /* メニューを移動させないため */
  #menu-navibtn:checked ~ #navi {
    position: fixed;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
  }
}

/* ドロップダウンメニュー */
#menu > li > ul {
  display: none;
  position: absolute;
}

/* パソコン用 */
@media screen and (min-width: 992px) {
  #navi {
    width: 15rem;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  span.menu_link {
    display: inline-block;
    padding: 0.5rem 1rem 0.5rem 2rem;
  }
  span.menu_link_pc {
    display: inline-block;
    padding: 0.5rem 1rem 0.5rem 2rem;
  }
  #menu li:hover {
    background-color: #b9d9c5;
    transition: all 0.3s ease;
  }
  #menu li.nav-info:hover {
    background-color: #e3f2dd;
  }
  #menu > li {
    text-align: left;
    float: initial;
    position: static;
  }
  #menu > li > ul {
    margin-top: -37.6px;
    position: absolute;
    left: 12rem;
    width: 15rem;
    padding: 0;
    background-color: #b9d9c5;
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s left, 0.5s opacity;
  }
  #menu li:hover > ul {
    left: 15rem;
    opacity: 1;
    visibility: visible;
  }

  #menu > li > ul > li > a {
    display: block;
    padding: 0.5rem 1rem;
    transition: all 0.3s;
  }
  #menu > li > ul > li > a:hover {
    text-decoration: none;
    background: #e3f2dd;
  }
  #menu > li:hover > ul {
    display: block;
  }
  #menu > li > ul li {
    text-align: left;
    display: block;
  }
}
/* スマホ用 */
@media screen and (max-width: 992px) {
  /* ハンバーガーメニューがクリックされた時 */
  #menu-navibtn:checked ~ * #menu {
    display: block;
    animation: appear .5s ease;
  }
  #menu-navibtn:checked ~ * #menu > li {
    max-height: inherit;
    overflow-y: visible;
    text-align: left;
  }
  #menu {
    padding-left: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  #menu a:hover {
    opacity: 0.7;
  }
  #menu > li ul {
    line-height: 50px;
  }
  #menu > li > ul {
    padding: 0;
  }
  /* アコーディオン部分初期状態 */
  #menu li ul li {
    display: none;
  }
  #menu > li > label:hover {
    cursor: pointer;
    cursor: hand;
  }
  #menu li ul {
    position: static;
    display: inline;
  }
  /* 子メニュー */
  #menu > li > ul {
    margin-left: initial;
  }
  #menu ul li:last-child {
    border-bottom: none;
  }
  #menu li ul li ul {
    top: inherit;
    left: 0;
  }
  span.menu_link_sp {
    display: inline-block;
    padding: 0 1rem;
  }

  /* 子メニューがクリックされた時 */
  #menu input[type="checkbox"]:checked ~ label ~ ul > li {
    text-align: left;
    max-height: inherit;
    overflow-y: visible;
    display: block;
    background: #d6f0cb;
    animation: appear .5s ease;
  }
  @keyframes appear {
    0%{
      opacity: 0;
    }
    100%{
      opacity: 1;
    }
  }
  .fa-angle-down:before {
    content: "\f107";
  }
  #navi input[type="checkbox"]:checked ~ label .pd .fa-angle-down:before {
    content: "\f106";
  }
}

/* ハンバーガー */
#navi #navibtn {
  display: none;
}
@media screen and (max-width: 992px) {
  #navi #navibtn {
    display: block;
    position: absolute;
    top: 4px;
    right: 10px;
    width: auto;
  }
  #navibtn span {
    display: block;
    width: 40px;
    height: 39px;
    background-color: #b9d9c5;
    border-radius: 5px;
  }
  #navibtn span span {
    display: block;
    overflow: hidden;
    width: 1px;
    height: 1px;
  }
  #navibtn span span::before,
  #navibtn span span::after,
  #navibtn span::after {
    position: absolute;
    left:10px;
    content:"";
    width: 20px;
    height: 3px;
    background-color: #FFF;
  }
  /* 上の棒 */
  #navibtn span span::before {
    top:10px;
    transition: all 0.3s;
  }
  #menu-navibtn:checked ~ #navi label#navibtn span span::before {
    top:19px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transition: all 0.3s;
  }
  /* 下の棒 */
  #navibtn span::after {
    bottom:10px;
    transition: all 0.3s;
  }
  #menu-navibtn:checked ~ #navi label#navibtn > span::after {
    bottom:18px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transition: all 0.3s;
  }
  /* 中の棒 */
  #navibtn span span::after {
    top:18px;
    transition: all 0.3s;
  }
  #menu-navibtn:checked ~ #navi label#navibtn span span::after {
    display: none;
  }
}



/*改行位置*/
@media screen and (min-width: 767.98px){
  .br-pc { display:block; }
  .br-sp { display:none; }
}
@media screen and (max-width: 767.98px){
  .br-pc { display:none; }
  .br-sp {
   display:block;
   line-height: 0;
}
}

.bg_moegi {
  background: #f7fbf6;
}


/*ボタン*/
.btn-border {
  display: inline-block;
  text-align: center;
  border: 2px solid #43B589;
  min-width: 12rem;
  font-size: 16px;
  color: #43B589;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 4px;
  transition: .4s;
}

.btn-border:hover {
  background-color: #43B589;
  color: #FFF;
}

.btn-border.btn-small {
  font-size: 14px;
}

.btn-circle-border-simple {
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 800;
  display: inline-block;
  text-decoration: none;
  background: #f9f9f9;
  color: #62915e;
  width: 7rem;
  height: 7rem;
  line-height: 7rem;
  border-radius: 50%;
  border: solid 2px #62915e;
  text-align: center;
  overflow: hidden;
  font-weight: bold;
  transition: .4s;
  margin: -5rem auto 2rem;
  position: relative;
}
.btn-circle-border-simple:hover {
  color: #fff;
  background: #759c70;
  text-decoration: none;
}
.btn-circle-border-simple i {
  position: absolute;
  bottom: 0.5rem;
  left: 45%;
}

@media (max-width: 767.98px) {
.btn-circle-border-simple {
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
}
.btn-circle-border-simple i {
  bottom: 0.2rem;
}
}

/*アニメーション*/
.animation{
  animation: fuwafuwa 2s linear infinite;
  scale: 1;
}

@keyframes fuwafuwa{
  0%{transform:translateY(0)}
  50%{transform:translateY(-5px)}
  100%{transform:translateY(0)}
}



.line_color {
  color: #00b900 !important;
}

.sp_anchor{
  display: block;
  margin-top:-100px;
  padding-top:100px;
}


h2.baloon {
  position: relative;
  display: inline-block;
  padding: 0 6rem 1rem;
}
h2.baloon::before {
  content: '';
  position: absolute;
  display: inline-block;
  top: -1rem;
  width: 72px;
  height: 97px;
  background: url(../img/ttl_left.png) no-repeat;
}
h2.baloon:after {
  content: '';
  position: absolute;
  display: inline-block;
  top: -1rem;
  width: 72px;
  height: 97px;
  background: url(../img/ttl_right.png) no-repeat;
}
h2.baloon::before {
  left:0;
}
h2.baloon::after {
  right: 0;
}
h2.baloon span{
  display: block;
  font-size: 0.7rem;
  padding-top: 0.5rem;
}

@media (max-width: 767.98px) {
h2.baloon::before, h2.baloon::after {
  width: 40px;
  height: 60px;
  background-size: 100%;
  top:0;
}
h2.baloon {
  padding: 0 3rem;
  font-size: 1rem;
}
}


h3 {
  position: relative;
  display: inline-block;
  padding: 0 55px;
}
h3:before, h3:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: #666;
}
h3:before {
  left:0;
}
h3:after {
  right: 0;
}
@media (max-width: 767.98px) {
h3::before, h3::after {
  width: 30px;
}
h3 {
  font-size: 1rem;
}
.subheading {
  font-size: 1rem;
}
}

.short_line {
  position: relative;
  margin-bottom: 3rem;
}
.short_line:before {
  display: inline-block;
  position: absolute;
  content: '';
  left: 50%;
  width: 5rem;
  height: 3px;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translate(-50%);
  background-color: #a7c898;
}

.nav_logo {
  display: block;
  height: 2rem;
  margin: 0 auto 1rem;
}
#line_link {
  position: fixed;
  bottom: 5rem;
  right: 0;
  transition: all 0.3s ease;
  z-index: 100;
}
#line_link:hover {
  opacity: 0.9;
}
@media (max-width: 992px) {
#line_link img{
  width: 4rem;
}
}
@media (max-width: 480px) {
#line_link {
  display: none;
}
}

.side_info {
  font-size: 1.6rem;
  text-align: center;
  padding-bottom: rem;
}
.side_info a:hover{
  text-decoration: none;
  transition: all 0.3s ease;
}
.side_info_time {
  font-size: 0.7rem;
  font-weight: normal;
  text-align: center;
}

.balloon1 {
  color: #fff;
  font-size: .7rem;
  position: relative;
  text-align: center;
  display: block;
  width: 10rem;
  margin: 3rem auto .5rem;
  padding: 7px 10px;
  background: #62915e;
  border-radius: 0.5rem;
}

.balloon1:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top: 5px solid #62915e;
}

.balloon1 p {
  margin: 0;
  padding: 0;
}

#menu a.tel01 {
  font-weight: bold;
  color: #d7667b;
  display: block;
  padding: 0;
}
#menu a.tel02 {
  font-weight: bold;
  color: #518d9b;
  font-size: 1.2rem;
  display: block;
  padding: 0;
}
#menu>li.line_recruit {
  text-align: center;
}
#menu>li.line_recruit:hover {
  background-color: #e3f2dd;
}

@media screen and (min-width: 992px) {
  #menu .nav-recruit {
    text-align: center;
    display: inline-block;
  }
  #menu .nav-recruit a {
    padding: 0.5rem 1rem;
    border: 1px solid #2e8046;
    animation:katakata 6s infinite ease-in-out alternate;
  }
  @keyframes katakata {
    0% {transform:translate(0, 0) rotate(0deg);}
    21% {transform:translate(0, 0) rotate(0deg);}

    22% {transform:translate(0, 0) rotate(-3deg);}
    23% {transform:translate(0, -1px) rotate(0deg);}
    24% {transform:translate(0, -1px) rotate(3deg);}

    25% {transform:translate(1px, 0) rotate(-2deg);}
    26% {transform:translate(0, 1px) rotate(0deg);}
    27% {transform:translate(0, 0) rotate(3deg);}

    28% {transform:translate(0, 0) rotate(0deg);}
    100% {transform:translate(0, 0) rotate(0deg);}
  }
}


#menu li>div.sp_line {
  display: none;
}

@media (max-width: 992px) {
#menu li.nav-info {
  border-bottom: none;
}
.side_info {
  display: flex;
  padding: 0;
}
.balloon1 {
  display: block;
  width: 80%;
  color: #fff;
  text-align: center;
  margin: 1rem auto;
  padding: 0;
  border-radius: 0.5rem;
  line-height: 2rem;
}
#menu li i {
  padding: 0;
}
#menu a.tel01 {
  width: 50%;
  font-size: 1.2rem;
  margin: 0 0.2rem 0 0.5rem;
  border: 1px solid #d7667b;
}
#menu a.tel02 {
  width: 50%;
  font-size: 1.2rem;
  margin: 0 0.5rem 0 0.2rem;
  border: 1px solid #518d9b;
}
.side_info_time {
  line-height: 2rem;
  margin-bottom: 0;
}
#menu li div.side_info a::after {
  display: none;
}
#menu>li>div.sp_line {
  display: inline-block;
  width: 50%;
  padding: 0 0.2rem 0 0.5rem;
}
#menu>li>div.sp_line a {
  border: 1px solid #2e8046;
}
#navi #menu>li.line_recruit {
  display: flex;
  border-bottom: none;
  line-height: 2rem;
  text-align: center;
}
#menu li.line_recruit a {
  border: 1px solid #2e8046;
}
#menu li.line_recruit a::after {
  display: none;
}
#menu>li>div.nav-recruit{
  width: 50%;
  padding: 0 0.5rem 0 0.2rem;
}
}

@media (max-width: 480px) {
.side_info .tel01 {
  font-size: 1rem;
  padding: .5rem;
}
.side_info .tel02 {
  font-size: 1rem;
  padding: .5rem;
}
}



#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 10000;
}
#pagetop a {
    display: block;
    background: #6d975f;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
}
#pagetop a:hover {
    background: #666;
}

.header_logo {
	max-height: 2rem;
}

.main_visual {
    width: 100%;
    max-width: 1600px;
    height: 0;
    min-height: 500px;
    background-size: cover;
    padding-top: 50%;
}
.main_txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.main_txt img {
	width: 35rem;
}

@media screen and (max-width: 767.98px){
.main_visual {
    min-height: 300px;
    margin-top: 48px;
}
.main_txt img{
  max-width: 20rem;
}
}
.vegas-content-scrollable {
  overflow: hidden!important;
}

.info_notice {
  text-align: center;
}
.info_notice_ttl {
  font-size: 1.25rem;
  text-align: center;
  color: #555555;
}

.info_notice img {
  max-width: 500px;
  width: 90%;
  margin-bottom: 3rem;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.info_notice img:hover
{
  filter: brightness(0.9);
}

.info_notice_text {
  padding-left: 1rem;
  margin-bottom: 3rem;
}


.modal_body {
  padding: 4rem;
}
@media screen and (max-width: 767.98px){
.modal_body {
  padding: 1rem !important;
}
}

.modal_img {
  max-width: 100%;
  display: block;
  margin: 0 auto 1rem;
}

#news {
 	background: url(../img/bg_dot01.jpg);
  padding: 2rem 0 6rem;
  position: relative;
}
.news_wrapper {
  padding-bottom: 5rem;
}
.news_wrapper .btn-border {
  background: #fff;
}
.news_wrapper .btn-border:hover {
  background: #43B589;
}
.new-txt {
  color: #fff;
  background: #bf4d4d;
  padding: 0 0.2rem;
  font-size: 0.7rem;
}

.main_bg {
  text-align: left;
}
.main_bg img {
  width: 100%;
  position: absolute;
  bottom: 0;
}
.illust01 {
  position: absolute;
  bottom: 1rem;
  width: 100%;
}
.illust01 img{
  width: 30rem;
}

.news_inner {
	background: #fff;
	padding-bottom: .5rem;
  width: 50rem;
  margin: 0 auto 3rem;
  border-radius: 20px;
}
.news_inner h3 {
  text-align: left;
  background: #a6bd92;
  color: #fff;
  display: block;
  font-size: 1rem;
  padding: .5rem .5rem .5rem 2rem;
  margin-bottom: 1rem;
  border-radius: 20px 20px 0 0;
}
.news_inner h3::before,
.news_inner h3::after {
  display: none;
}

.news_inner h3 span {
  font-size: .8rem;
  padding-left: .2rem;
}

.news_box {
  margin: 0 2.5rem 0.5rem;
}
.news_box h4 {
 text-align: left;
  color: #666;
  font-size: 0.9rem;
  font-weight: normal;
}
.news_box:hover {
  text-decoration: none;
}
.news_box h4:hover {
  color: #7eb06d;
}
.info_link {
  color: #fff;
  font-size: .9rem;
  position: absolute;
  right: 20px;
  text-align: right;
}
.info_link:hover{
  color: #fff899;
}

@media (max-width: 1280px) {
.news_inner {
  width: 40rem;
}
}
@media (max-width: 767.98px) {
.news_inner {
  width: 90%;
}
.news_box {
  text-align: left;
  margin: 0 1rem 0.5rem;
}
}
@media (max-width: 500px) {
.illust01 img {
  width: 80%;
}
.news_wrapper {
  padding-bottom: 0;
}
}

.open {
  color: #ddffcc;
}
.closed {
  color: #ffc0bd;
}
.inquiry {
  color: #fee2a0;
}


.about {
  text-align: center;
}
.about img {
  max-width: 20rem;
  display: block;
  margin: 0 auto 2rem;
}
@media screen and (max-width: 767.98px){
.about img {
    max-width: 60%;
}
}
.pickup {
  border:2px dashed #ffffff;
  background-color:#eaf4f4;
  box-shadow:0 0 0 6px #eaf4f4;
  padding:16px;margin:20px;
}

@media screen and (max-width: 767.98px){
.movie {
  position: relative;
  padding-bottom : 56.25%;
  height: 0;
  overflow: hidden;
}
.movie iframe {
  position: absolute;
  top: 0%;
  left: 50%;
  width: 96%;
  height: 96%;
  transform: translateX(-50%);
}
}

.sub_comment {
  font-size: .7rem;
}


.features_point {
  background: #f5fbf2;
}
.point_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.point_list {
  background: #fff;
  width: 24%;
  margin-bottom: 3rem;
  padding: 1rem;
  border-bottom: 5px solid #e5f7db;
}
.point_list img {
  width:100%;
  max-width: 280px;
}
.point_inner {
  padding: 1.5rem 0 0;
}
.point_inner h4 {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: normal;
}
.point_inner h4:first-letter {
  font-size: 2em;
  color: #a7c898;
  font-weight: bold;
  vertical-align: sub;
}
.point_inner p {
  text-align: left;
  font-size: .9rem;
}

@media (max-width: 1480px){
.point_list {
  width: 49%;
  padding: 1.5rem;
}
}
@media (max-width: 767.98px) {
.point_list {
  width: 100%;
}
}


.about_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto;
}
.about_list {
  background: #fff;
  width: 33.3%;
  padding: 1rem;
}
.about_list img {
  width:100%;
}
.about_inner {
  padding: 1rem 0 0;
}
.about_inner h4 {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: normal;
}
.about_inner p {
  text-align: left;
  font-size: .8rem;
}

@media (max-width: 767.98px){
.about_list {
  padding: .25rem;
  margin-bottom: 1rem;
}
}


.photo {
    list-style-type: none;
    display: block;
    text-align: center;
    padding-left: 0;
}
.photo ul {
	display: block;
}
.photo li {
	display: inline-block;
}
.photo li img {
    width: 120px;
    margin: 5px;
}


.center_img {
  max-width: 30rem;
  display: block;
  margin: 0 auto 2rem;
}
@media (max-width: 767.98px) {
.center_img {
  width: 80%;
}
}
.center_img_l {
  max-width: 40rem;
  display: block;
  margin: 0 auto 2rem;
}
@media (max-width: 767.98px) {
.center_img_l {
  width: 90%;
}
}

img.line_s:hover{
  opacity: 0.7;
  transition: all 0.3s ease;
}

.center_bnr {
  max-width: 30rem;
  display: block;
  margin: 2rem auto 3rem;
}
@media (max-width: 767.98px) {
.center_bnr {
  width: 80%;
}
}



.info_box {
  text-align: left;
  background: #fff;
  padding: 2rem 3rem;
  width: 50rem;
  margin: 1rem auto 3rem;
  border: 1px solid #ddd;
}
.info_box p {
  line-height: 1.6;
}
.info_box li {
  color: #415938;
}
.info_box img {
  max-width: 100%;
}
.info_sub {
  display: inline-block;
  font-size: 1rem;
  padding-left: 2rem;
  margin-bottom: .5rem;
}

.care_bag {
  display: inline-block;
  color: #62915e;
  border: 2px dotted #62915e;
  padding: .5rem .8rem;
  margin-bottom: 3rem;
}

.careinfo_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto 2rem;
}
.careinfo_list {
  background: #fff;
  width: 33.3%;
  margin-bottom: 3rem;
  padding: 2rem;
  display: flex;
}
.careinfo_list img {
  width:100%;
  max-width: 300px;
  margin: 0 auto 2rem;
}
.careinfo_inner {
  padding: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  position: relative;
}
.careinfo_inner h4 {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  padding-bottom: .5rem;
  border-bottom: 2px dotted #a7c898;
}
.careinfo_inner p {
  text-align: left;
  font-size: .9rem;
}
.careinfo_inner img:hover {
  opacity: 0.7;
  transition: all 0.3s ease;
}


@media (max-width: 1024px){
.careinfo_list {
  padding: 1rem;
}
}
@media (max-width: 767.98px){
.careinfo_list {
  width: 100%;
  margin-bottom: 1rem;
}
.careinfo_list img {
  width:100%;
  max-width: 200px;
}
.careinfo_inner {
  padding: 0;
}
}

.list_sub {
  color: #415938;
  margin-left: 1rem;
  font-size: 0.8rem;
}

.special_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto 5rem;
}
.special_list {
  width: 49%;
  display: flex;
}
.special_list img {
  width: 100%;
}
.special_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.special_inner:hover {
  opacity: 0.8;
}

@media (max-width: 767.98px){
.special_list {
  width: 100%;
  margin-bottom: 1rem;
}
}

.btn_bottom {
  margin-top: auto;
}

.ac_price {
  display: inline-block;
  color: #62915e;
  border: 1px solid #62915e;
  font-size: .9rem;
  padding: 0 .5rem;
}
.ac_price span {
  font-size: .8rem;
}
.ac_guide {
  padding-left: 1rem;
  list-style: none;
  font-size: .9rem;
  margin-bottom: 3rem;
}



@media (max-width: 1280px) {
.info_box {
  width: 40rem;
}
}
@media (max-width: 767.98px) {
.info_box {
  width: 100%;
  padding: 1rem;
}
}

.care_info span{
  background: linear-gradient(transparent 60%, #fff8c3 60%);
  margin-bottom: 3rem;
}

.price_list {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 90%;
  max-width: 800px;
}

.price_list tr {
  background-color: #fff;
  border: 1px solid #b9cab2;
}
.price_list th,
.price_list td {
  padding: 1em 10px 1em 1em;
  border-right: 1px solid #b9cab2;
  text-align: left;
}
.price_list th {
  background-color: #e3f2e2;
  font-size: .85em;
  font-weight: normal;
}
.price_value {
  background: #f2fcf1;
}
.price_txt {
  font-size: .9rem;
}


.contact_tel {
  text-align: center;
}
.contact_tel a:hover {
  text-decoration: none;
}
.contact_tel .tel01 {
  color: #d7667b;
  line-height: 3rem;
  font-size: 3rem;
  display: block;
}
.contact_tel .tel02 {
  color: #518d9b;
  font-size: 2rem;
  display: block;
}
.contact_memo {
  text-align: left;
}

.line_add{
  margin-right: 2rem;
}
.line_qr {
  margin: 1rem 0 3rem;
  width: 7rem;
}

.flow {
  display: flex;
  list-style: none;
}
.flow li {
  flex:1;
  position: relative;
}
.flow li::after {
  position: absolute;
  top: 25%;
  right: -20px;
  content: "";
  border-top: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #00B900;
}
.flow li:last-child::after {
    content: none;
}
.flow_txt {
  padding: 0 1rem;
  font-size: .8rem;
}
@media (max-width: 767.98px) {
.contact_tel {
  margin-bottom: 5rem;
}
.contact_tel .tel01 {
  line-height: 2rem;
  font-size: 2rem;
}
.contact_tel .tel02 {
  font-size: 1.5rem;
}
.line_add {
  display: block;
  margin-right: 0;
}
.flow {
  padding-left: 0;
  display: block;
}
.flow_txt {
  margin-bottom: 2rem;
}
.flow li {
  display: block;
  margin-bottom: 0;
}
.flow li::after {
  position: static;
  border-top: 20px solid #00B900;
  border-right: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid transparent;
}
}

.footer {
  background: #f7fbf6;
  padding: 5rem 3rem 0;
}
.footer_logo {
  width: 25rem;
  margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
.footer {
  padding: 5rem 1rem;
}
.footer_logo {
  width: 90%;
}
}

.footer .btn-border {
  background: #fff;
}
.footer .btn-border:hover {
  background: #43B589;
}
.time_table {
  border-collapse: collapse;
  margin: 0 auto 3rem;
  padding: 0;
  width: 30rem;
  table-layout: fixed;
  font-size: .9rem;
}
.time_table tr:nth-child(1) th:nth-child(1) {
  width: 30%;
}
.time_table tr {
  background-color: #fff;
  border: 1px solid #b9cab2;
}
.time_table th,
.time_table td {
  border-right: 1px solid #b9cab2;
}
.time_table th {
  background-color: #e3f2e2;
  font-weight: normal;
  padding: .5rem;
}
.maru {
  color: #5bc8ac;
  font-size: 1.75rem;
}
@media (max-width: 767.98px) {
.time_table {
  width: 90%;
}
}

.pp_link {
  font-size: .9rem;
}

.grecaptcha-badge {
 visibility: hidden;
}
.recaptcha {
  font-size: .6rem;
}

.copyright {
  font-size: .7rem;
}


/* ----about---- */

.max_img {
  width: 100%;
}
.philosophy {
  list-style: none;
  font-size: 1rem;
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  padding-left: 0;
}
.philosophy li {
  position: relative;
  background-color: #f9fbf9;
  border-top: 1px solid #B7D7B7;
  border-bottom: 1px solid #B7D7B7;
  box-shadow: 0 0 0 10px #f9fbf9;
  padding: 20px 20px 40px 20px;
  margin-bottom: 3rem;
}
.philosophy p {
  font-size: 1.5rem;
  color: #B7D7B7;
  margin-bottom: 0;
}

.text-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.achievement {
  width: 96%;
  max-width: 800px;
  margin: 0 auto 1rem;
  text-align: center;
}
.achievement td {
  padding: .3rem;
  border: 1px solid #b9cab2;
  border-collapse: collapse;
}
.achievement th {
  padding: 1em 10px 1em 1em;
  border: 1px solid #b9cab2;
  background: #f2fcf1;
  font-size: .7rem;
}

.achievement.childbirth{
  text-align: left;
}
.childbirth td {
  padding: 0.6rem;
}
table.childbirth tr:nth-child(odd) td {  background: #fdfdfd;}
span.takamori {
  color: #2fad66;
}
span.jitaku {
  color: #ad422f;
}
span.byouin {
  color: #2f7fad;
}


/* ----下層ページ共通---- */

.prof_top {
  background-color: #cbd9bf;
  height: 2rem;
}
.prof_inner h1 {
  font-size: .7rem;
  color: #fff;
  font-weight: normal;
  line-height: 2rem;
  text-align: right;
  padding-right: 2rem;
}

@media (max-width: 980px) {
.prof_top {
  height: 5rem;
}
.prof_inner {
  padding-top: 3rem;
}
}
@media (max-width: 480px) {
.prof_top {
  height: 5rem;
}
.prof_inner h1 {
  font-size: .6rem;
  line-height: 2rem;
}
}


/*==================================================
アコーディオンのためのcss
===================================*/

/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    max-width: 900px;
    margin:0 auto 5rem;
    text-align: left;
    padding: 0;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
  border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1rem;
    font-weight: normal;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
    margin-bottom: 0;
    display: block;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 14px;
    height: 2px;
    background-color: #333;
}
.title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
}
.title::after{
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.title.ac_close::before{
  transform: rotate(45deg);
}

.title.ac_close::after{
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background: #f3f3f3;
  margin:0 3% 3% 3%;
    padding: 3%;
}



/* ----profile---- */

.prof_box {
  display: flex;
}
.profile_img {
  flex-grow: 1;
  margin-bottom: 3rem;
}
.profile_img img {
  width: 20rem;
}
.prof_txt {
  flex-grow: 2;
  padding: 0 3rem;
  text-align: left;
  align-self: center;
}

.prof_txt .name {
  font-size: 2rem;
  margin-bottom: 3rem;
}
.prof_txt .name span {
  display: block;
  font-size: 1rem;
}
.prof_txt h3 {
  display: block;
  font-size: 1rem;
  margin-bottom: 1rem;
  padding: 0;
}
.prof_txt h3::before,
.prof_txt h3::after {
  display: none;
}
.prof_txt p {
  margin-bottom: 2rem;
}

@media (max-width: 767.98px) {
.prof_box {
  flex-direction: column;
}
.profile_img img {
  width: 90%;
}
.prof_txt {
  padding: 1rem;
}
}


.prof_favorite {
  width: 100%;
}
.prof_favorite img {
  text-align: center;
  width: 80%;
  max-width: 800px;
  margin-bottom: 1rem;
}
.favorite_box {
  width: 80%;
  max-width: 800px;
  margin: 0 auto 5rem;
}
.favorite_box th {
  background: #8fb78b;
  border: 1px solid #ddd;
  color: #fff;
  padding: 10px;
}
.favorite_box td {
  border: 1px solid #ddd;
  text-align: left;
  padding: 10px 10px 10px 20px;
}
@media (max-width: 767.98px) {
  .prof_favorite img {
    width: 95%;
  }
  .last td:last-child {
    border-bottom: 1px solid #ddd;
    width: 100%;
  }
  .favorite_box {
    width: 95%;
  }
  .favorite_box th,
  .favorite_box td {
　　border-bottom: none;
    display: block;
    width: 100%;
  }
}


.about_txt {
  font-size: 1.25rem;
  font-weight: 400;
  border-bottom: 2px solid #d7e1d5;
}
.timeline {
  padding: 3rem 1.5rem;
  margin: 0 auto;
  list-style: none;
}
.timeline h4 {
  font-size: .9rem;
  font-weight: 400;
}

.timeline > li {
  display: flex;
  margin-bottom: 1rem;
  border-bottom: 1px dotted #7c9f74;
}

.timeline-date {
  width: 100px;
  flex-grow: 1
}
.timeline-content {
  width: 75%;
  text-align: left;
  flex-grow: 2
  padding-left: 1rem;
}


@media (max-width: 767.98px) {
.timeline {
  padding: 1rem;
}
.timeline > li {
  flex-direction: column;
}
.timeline-date {
  width: 100%;
  text-align: left;
}
.timeline-content {
  width: 100%;
}
}

.staff {
  max-width: 900px;
  margin: 0 auto;
}
.staff img {
  width: 12rem;
}
.prof_txt .s_name {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.prof_txt .s_name span {
  display: block;
  font-size: 1rem;
}

/* ----cere---- */

.care_pagelink {
  padding-left: 0;
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  text-align: left;
}
.care_pagelink li {
  list-style: none;
  padding: 10px;
}

@media screen and (max-width: 720px){
.care_pagelink {
  display: block;
}
.care_pagelink {
  border-top: 1px solid #f0f0f0;
}
.care_pagelink li {
  border-bottom: 1px solid #f0f0f0;
}
}


/* ----info---- */

.info_ttl {
  padding: 0;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.info_ttl::before,
.info_ttl::after {
  display: none;
}
.info_ttl span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  color: #5e7656;
  margin-bottom: .25rem;
}
.info_txtarea img {
  max-width: 100%;
  height: auto;
}


.pager {
  text-align: center;
  padding: 0;
}
.pager ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding-left: 0;
  font-size: .8rem;
}
.pager .prev a,
.pager .next a{
    color: #fff;
    margin: 5px 0;
    background-color: #6d975f;
    border-style: none;
    padding: 10px 25px;
}

.pagenation {
  text-align: center;
  padding: 0;
}
.pagenation .prev a,
.pagenation .next a{
    color: #fff;
    margin: 5px 0;
    background-color: #6d975f;
    border-style: none;
    padding: 10px 25px;
}


/* ----privacy---- */

.pp_ttl {
  padding: 0;
  margin-bottom: 1.5rem;
}
.pp_ttl::before,
.pp_ttl::after {
  display: none;
}
.pp_txtarea p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.pp_txtarea h4 {
  font-size: 1rem;
  font-weight: 400;
  margin: 1rem 0;
}
.pp_txtarea ul {
  font-size: .9rem;
  list-style-type: decimal;
  margin-bottom: 0.5rem;
}
.pp_txtarea ul li {
  color: #666;
}


/* ----access---- */
.access_list {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}
.access_list li {
  margin: 0 .5rem;
}
@media screen and (max-width: 480px) {
.access_list {
  display: block;
  padding: 0;
}
.access_list li {
  margin: 0 auto 1rem;
}
.access_list button {
  width: 100%;
}
}

.access_map {
  width: 90%;
  margin: 0 auto;
  display: block;
}
.underline{
  background: linear-gradient(transparent 60%, #fff8c3 60%);
}

/* ----contact---- */

.Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
  text-align: center;
}
.contact7 {
  max-width: 100%;
  box-sizing: border-box;
}
.contact7 dd {
  margin: 0 0 30px 0;
  background-color:
}
.contact7 dt {
  font-weight: normal;
}

/* 必須マーク */
.contact7 .must {
  background: #FF1A00;
}

/* 任意マーク */
.contact7 .optional {
  background: #999;
}

.contact7 .must,
.contact7 .optional {
  color: #FFF;
  border-radius: 3px;
  font-size: 10px;
  margin-left: 10px;
  padding: 2px 10px;
  letter-spacing: 2px;
  vertical-align: middle;
  line-height: 3;
}
.btn_contact7 {
  text-align: center;
}
.btn_contact7 input {
  color: #43B589;
  background: #e9e9ed;
  border: 2px solid #43B589;
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 20px;
  transition: all 0.3s ease;
}
.btn_contact7 input:hover {
  background: #43B589;
  color: #fff;
}
@media screen and (max-width: 480px) {
.btn_contact7 input {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 180px;
    font-size: 16px;
  }
}


@media screen and (min-width: 768px) {
.contact7 dt {
  text-align: left;
  float: left;
  clear: left;
  width: 35%;
  padding: 5px 10px 5px 0;
  }
.contact7 dd {
  margin-left: 35%;
  }
}