@charset "UTF-8";
body {
  color: #333;
  line-height: 1.8;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", "メイリオ", "Meiryo", sans-serif;
}
body * {
  box-sizing: border-box;
}
a {
  color: #333;
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

/* p {
  margin-bottom: 1.5em;
} */
/* p:last-of-type {
  margin-bottom: 0;
} */

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

@media screen and (max-width: 1200px) {
.only_pc {
    display: none;
  }
}
/* --------------------------------------------
 * 　共通
 * -------------------------------------------- */
#about,
#office,
#info {
    padding-top: 80px;
    margin-top: -80px;
  }
#info {
    margin-bottom: 0;
  }
 h2.c-title {
  font-size: 2.5rem;
  color: #333;
  text-align: center;
  margin: 1em 0;
  position: relative;
}
h2.c-title:before {
  content:url('../images/title_img.png') ;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
  transform: scale(0.9);
  position: relative;
  top: 5px;
 }
.img_area {
  flex: 0 1 650px;
  margin-right: 30px;
  z-index: 999;
}
.img_area_right {
  /* flex: 0 1 550px; */
  margin-left: 30px;
}
.img_area_left {
  flex: 0 1 550px;
  margin-right: 30px;
}
/*文章右*/
.text_area_right{
 flex: 0 1 520px;
 z-index: 999;
}
 /*文章左*/
 .text_area_left{
  flex:0 1 520px;
  display: flex;
  align-items: center;
  line-height: 2.5;
}

.color_white {
  color: #fff;
}
.grid_bg {
  background: url('../images/grid_bg.png') no-repeat;
  background-position: top left;
}
#about{
  position: relative;
}
.grid_bg_right {
  background: url('../images/grid_bg.png') no-repeat;
  background-position: top right;
  background-color: #FFFFF8;
}
.text_center {
  text-align: center;
}
/*fade----------------------------------------*/
.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 2.5s, transform 1s;
}
.fade.active {
  opacity: 1;
  transform: translateY(0px);
}

/* --------------------------------------------
 * 　共通 SP
 * -------------------------------------------- */
@media screen and (max-width: 767px) {
#about,
#office,
#info {
    padding-top: 50px;
    margin-top: -50px;
  }
 .c-title {
  color: #333;
  text-align: center;
  margin: 0.5em 0;
}

  /*文章右*/
.text_area_right{
 flex: auto;
  margin-bottom: 0;
}
 /*文章左*/
 .text_area_left{
 flex: auto;
}
.img_area{
  flex: auto;
  margin-right: 0;
  padding-bottom: 1em;
  text-align: center;
}
.img_area_right{
  flex: auto;
}
.img_area_left{
  flex: auto;
}
}
/* -
-------------------------------------------
 * 　header PC
 * -------------------------------------------- */
.header {
  position: sticky; /* headerを追従にする */
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: flex;
  z-index: 99;
}
.header__inner {
  width: 100%;
  max-width: 1500px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  margin: auto;
}
.logo_area {
  display: flex;
  align-items: center;
}
.header__inner img{
  padding: 0.5rem 0;
  width: 40%;
  max-width: 100%;
}
.logo {
  width: 100%;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: left;
  margin-left: 15px;
}
.logo > span {
  display: block;
  font-size: 1rem;
}
 /* --------------------------------------------
  * 　header sp
  * -------------------------------------------- */
@media screen and (max-width: 767px) {
  .only_sp {
    display: block;
  }
.header__inner img{
  width: 30%;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  height: 85px;
}
.header__inner img{
  padding: 0.5rem 0;
  width: 15vw;
  max-width: 100%;
}
.logo {
  font-size: 4.8vw;
  font-weight: bold;
  line-height: 1.5;
}
}

 /* --------------------------------------------
  * 　nav TB
  * -------------------------------------------- */
  /* ハンバーガーボタン内の線 */
@media screen and (min-width: 768px) {
.drawer__button > span{
  display: none;
  }
.drawer__nav {
  display: block;
}
.drawer__nav__inner {
  display: block;
  width: 100%;
  padding: 0.5rem 0;
  margin: 0 0 0 auto;

}
.drawer__nav__menu {
  display: flex;
}
.drawer__nav__item {
  padding: 2em;
}
li.drawer__nav__item:nth-last-of-type(2) {
  padding-right: 0;
}

.drawer__nav__link {
  display: inline-block;
  padding: 0.5em;
  font-size: 0.8rem;
  transition: .3s;
  position: relative;
}
.drawer__nav__link::after{
position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #6A9B5C;
  border-radius: 50%;
  top: -15px;
  left: calc(50% - 5px);
  /*不透明度0で非表示*/
  opacity: 0;
  /*アニメーションの速度設定*/
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.drawer__nav__link:hover::after{
  opacity: 1;
}
.bg_green_info {
  display: none;
}

}
 /* --------------------------------------------
  * 　nav TB
  * -------------------------------------------- */
@media screen and (max-width: 1023px) {
.drawer__nav__item {
  padding: 1em;
}
.drawer__nav__link  {
  display: inline-block;
  padding: .5em 0.2em;
  font-size: 0.8rem;
}
  .drawer__nav__item{
    font-size: 0.5rem;
    padding: 0 0.8em
  }
}
 /* --------------------------------------------
  * 　nav ハンバーガーボタン SP
  * -------------------------------------------- */
/* ハンバーガーボタンのデザイン */
@media screen and (max-width: 767px) {
.drawer__button {
  position: relative;
  width: 3rem;
  height: 3rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
}
/* ハンバーガーボタン内の線 */
.drawer__button > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 2px;
  background-color: black;
  transform: translateX(-50%);
}
.drawer__button > span:first-child {
  transform: translate(-50%, calc(-50% - 0.5rem));
  transition: transform 0.3s ease;
}
.drawer__button > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.drawer__button > span:last-child {
  transform: translate(-50%, calc(-50% + 0.5rem));
  transition: transform 0.3s ease;
}
/* 展開時のデザイン */
.drawer__button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer__button.active > span:nth-child(2) {
  opacity: 0;
}
.drawer__button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
/* メニューのデザイン */
.drawer__nav {
  position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.drawer__nav.active {
  opacity: 1;
  visibility: visible;
}
.drawer__nav__inner {
  position: relative;
  height: 100%;
  background: rgba(246, 255, 238, 0.8);
  padding: 4rem 1.5rem 1rem;
  margin: 0 0 0 auto;
  overflow: scroll;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.drawer__nav.active .drawer__nav__inner {
  transform: translateX(0);
}
.drawer__nav__menu {
  flex-direction: column;
  padding-left: 0;
}
.drawer__nav__item {
  padding: 1.5em 0;
}
.drawer__nav__link {
  display: block;
  color: black;
  text-decoration: none;
  padding: 0;
  /* border-bottom: solid 1px lightgray; */
}
.bg_green_info {
  background: #44633b;
  color:#fff;
  padding: 1em 0;
  margin-top: 10px;
  text-align: center;
  border-radius: 15px;
}
.bg_green_info a{
  color:#fff;
}
/* .nav_tel::before {
  content:url(../images/nav_tel.svg);
  vertical-align: middle;
  display: inline-block;
  transform: scale(0.5);
} */
.nav_tel {
  font-size: 1.2rem;
}
.business_hours{
  font-size: 1rem;
}
/* ハンバーガーメニュー展開時、背景を固定 */
body.active {
  height: 100%;
  overflow: hidden;
}

}
 /* --------------------------------------------
  * 　基本幅 PC
  * -------------------------------------------- */
  section {
    padding: 1.5em 0;
    /* margin-bottom:100px; */
  }
  .wrap {
    width: 1200px;
    max-width: 100%;
    margin:auto;
    padding: 0 2em;
  }
   /* --------------------------------------------
  * 　基本幅 sp
  * -------------------------------------------- */
@media screen and (max-width: 767px) {
    section {
      padding: 1.5em;
      margin-bottom: 0;
    }
    .wrap {
      max-width: 100%;
      padding: 0 ;
    }
}

 /* --------------------------------------------
  * 　main PC
  * -------------------------------------------- */
/* .keyVisual{
  position: relative;
  width: 100%;
  } */
.topMain {
  width: 100%;
  margin-top: -50px;
}
.keyVisual__text {
position: absolute;
top:50%;
left: 50%;
transform: translate(-50%, -50%);
}
.top_img {
  width: 1200px;
  max-width: 100%;
}
#slider {
  width: 100%;
  height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  position: relative;
  background-color: #333;
}
.slider_catch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4.8vw;
  font-weight: bold;
  color: #ffffff;
}
.wrapper{
  position: relative;
}
 /* --------------------------------------------
  * 　slider SP
  * -------------------------------------------- */
@media screen and (max-width: 767px) {
  #slider {
    background-size: contain;
  }
 .slider_catch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  width: 100%;
  padding: 0 0.5em;
  text-align: center;
}
}
/* .sp_br {
  display: none;
} */
/* Page-top --------------------------------------*/
#page-top a {
  background-color: #6A9B5C;
  bottom: 0;
  color: #fff;
  padding: 20px;
  position: fixed;
  right: 0;
}
#page-top a:hover {
  background-color: rgba(106, 155, 92, .5);
}

 /* --------------------------------------------
  * 　message-PC
  * -------------------------------------------- */
  .message_area{
    background: url(../images/message_bg1.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    /* padding-left: 1em;
    padding-right: 1em; */
    position: relative;
    z-index: 0;
  }
  .message_area:after{
    content: '';
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -10;
  }
.over-lay {
  background-color: rgba( 0, 0, 0 , 0.4 );
  background-color: #000;
}
.message_catch {
  text-align: center;
  font-size: 2rem;
  padding-bottom: 2em;
  color: #fff;
  z-index: 999;
  margin-top: 50px;
}
.top_message_wrap {
  display: flex;
  margin-bottom: 80px;
}
.message_wrap {
  display: flex;
}

 /* --------------------------------------------
  * 　message-SP
  * -------------------------------------------- */
@media screen and (max-width: 767px) {
  .message_catch {
    margin: 0;
    font-size: 5.5vw;
    padding: 1em 0;
  }
  .top_message_wrap {
    flex-direction: column;
    justify-content: center;
    margin: 40px 0;
  }
  .message_wrap {
    flex-direction: column;
    justify-content: center;
    margin: 40px 0;
  }
  .feature_area {
    margin: auto;
    padding: 1em 0;
  }
}

 /* --------------------------------------------
  * feature-PC
  * -------------------------------------------- */
#feature {
  position: relative;
}
.feature_area {

}
.feature_img {
  border-radius: 10px;
}
 /* --------------------------------------------
  * about-PC
  * -------------------------------------------- */
.block_contents{
  padding: 2em 0;
}
.block_contents__about_title{
  font-size: 1.75rem;
  padding: 0.2rem 1rem;
  margin-bottom: 1rem;
  border-left: 10px solid #00913a;
}
.block_contents  {
  margin:0 1em;
}
.block_contents__list  {
  list-style-position: inside;
}
.block_contents__list::before  {
  content: '●';
  color:#00913a;
  margin-right: 5px;
}
ol {

}
.about_list {
  margin-left: 20px;
  margin-top: 20px;
}

@media screen and (max-width: 834px) {
  .block_contents__about_title{
    font-size: 1.5rem;
  }
.block_contents__list{
  font-size: 1.2rem;
  font-weight: 500;
}
.img_area_right.feature_area {
 margin: 20px auto;
 text-align: center;
}

}
 /* --------------------------------------------
  * 新畳について-PC
  * -------------------------------------------- */
.about_wrap__inner {
  display: flex;
  justify-content: space-around;
  padding: 2em 0;

}
.about_wrap__inner.reverse {
flex-direction: row-reverse;
}
.about_wrap__inner_text {
  width: 50%;
}
/* @media screen and (max-width: 834px) {
.about_wrap__inner,
.about_wrap__inner.reverse {
  flex-direction: column-reverse;
  padding: 1em 0;
}
.img_area_left.feature_area{
  width: 100%;
  margin-top: 0;
  padding-bottom: 0;
}
.about_wrap__inner_text{
  width: 100%;
  z-index: 1;
}
.text_area_right {
   flex: 0 1 100px;
   margin: auto;
   margin-bottom: 20px;
}
.img_area_left {
  text-align: center;
}
.img_area_right,
.img_area_left
{
flex: 1;
}
} */
 /* --------------------------------------------
  * 新畳について-SP
  * -------------------------------------------- */
@media screen and (max-width: 767px) {
.about_wrap__inner,
.about_wrap__inner.reverse {
  flex-direction: column-reverse;
  padding: 1em 0;
}
.img_area_left.feature_area{
  margin-bottom: 20px;
}
.about_wrap__inner_text{
  width: 100%;
  z-index: 1;
}

}
 /* --------------------------------------------
  * comment-PC
  * -------------------------------------------- */
.comment_area {
  background: #ECF9D9;
  padding: 2em;
}

 /* --------------------------------------------
  * link-PC
  * -------------------------------------------- */
.link_area {
  display: flex;
  justify-content: space-around;
  margin: 50px 0;
  padding: 0 2em;
  }
.link_btn {
  width: calc(50% - 10px);
  border:1px solid #7CC28E;
  background: #fff;
}
.link_btn a{
  display: block;

  padding: 1em 3em 1em;
  background: #fff;
  font-size: clamp(18px,1.2vw, 28px);
  text-align: center;
}

.about_link--text{
  margin-top: 10px;
  text-align: center;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0;
  background: #6A9B5C;
  padding: 0 15px;
}
.link_btn a:hover{
  background: rgba(0, 145, 58, .1);
  color: #6A9B5C;
  transition: all .8s;
}

 /* --------------------------------------------
  * link-sp
  * -------------------------------------------- */
@media screen and (max-width: 767px) {
  .link_area {
  margin-top: 50px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 1em;
  }
.link_btn {
  width: 100%;
}
.link_btn a{
  font-size: 1.2rem;
  padding: 1em;
  text-align: center;
}

  .link_btn:nth-child(2) {
    margin-top: 50px;
}
.about_link--text{
  width: 80%;
  margin: 0 auto;
}
}

 /* --------------------------------------------
  * office-PC
  * -------------------------------------------- */
.office_table {
  max-width: 900px;
  margin: 0 auto;
}
table {
  width: 100%;
}
tr {
  background: #F2F2F2;
  text-align: left;
}
tr:nth-child(even) {
  background: #fff;
}
th,
td {
  padding: 1.2em ;
}

 /* --------------------------------------------
  * office-sp
  * -------------------------------------------- */
  @media screen and (max-width: 767px) {
.office_table th,
td {
  display: block;
  text-align: center;
  padding: 0.8em 0;
}
  }
/*map----------------------------------------*/
.map {
  max-width: 900px;
  width: 100%;
  padding: 3em 0;
  margin: 20px auto;
}

 /* --------------------------------------------
  * ifno-PC
  * -------------------------------------------- */
.info_link_btn--title {
  background: #6A9B5C;
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  padding: 0.2em 0;
  display: block;
  margin-bottom: 0;
}
.info_text {
  color: #333;
  font-size: 1.2rem;
  text-align: center;
}
/* .center_text {
  text-align: center;
  margin: 20px 0;
  font-size: 1.5rem;
} */
 /* --------------------------------------------
  * ifno-sp
  * -------------------------------------------- */
@media screen and (max-width: 767px) {
.info_text {
  max-width: 100%;
  text-align: center;
}
.info_text b{
  font-size: 1rem;
}
/* .info_btn a {
  padding: 1.1em ;
  text-align: left;
} */
.info_btn img {
  margin-top: 10px;
}
.br {
  display: block;
}
}
 /* --------------------------------------------
  * footer
  * -------------------------------------------- */
.footer {
  background: #6A9B5C;
  padding: 2em 0;
  width: 100%;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 20px;
    padding: 1em 0;
  }
}
