@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
  letter-spacing: 0.12rem;
  background-color: #f7fbec;
}
body{
  text-size-adjust:100%;
  -webkit-text-size-adjust:100%;
}
body h5 {
  font-weight: 400;
}
body h6 {
  font-weight: 400;
}
body h3 {
  font-weight: 400;
}
main {
  padding-top: 60px;
}
section h2 {
  font-size: 2.4rem;
  color: #512e18;
}
section h3 {
  color: #512e18;
}
@media(min-width:960px) {
  section h2 {
    font-size: 3.2rem;
  }
}
a:hover {
  opacity: 0.5;
}
*, *:before, *:after {
  box-sizing: border-box;
}
.header {
  height: 60px;
  width: 100%;
  background: #cfe1c8;
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.3);
  position: fixed;
  z-index: 100;
}
.header__logo img {
  width: 220px;
  position: absolute;
  left: 24px;
  top: 15px;
}
.header-nav__tel {
  display: none;
}
.header__calendar img {
  width: 26px;
}
.header__calendar a {
  font-size: 0.8rem;
  text-decoration: none;
  color: #496b5f;
  line-height: 1.0rem;
  letter-spacing: 0;
}
.header__calendar {
  position: absolute;
  right: 65px;
  top: 10px;
}
.header-nav__pc nav {
  display: none;
}
.header-nav__mb nav{
  z-index: 999;
  position: fixed;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  padding-top: 60px;
  background-color: #cfe1c8;
  box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.5);
  transition: all 0.6s;
}


/*アクティブクラスがついたら位置を0に*/
.header-nav__mb nav.panelactive{
 right: 0;

}

/*ナビゲーションの縦スクロール*/
.header-nav__mb nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/



/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
    right: 3px;
  top: 3px;
  cursor: pointer;
  width: 60px;
  height: 60px;
  border-radius: 5px;
}
/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all .4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 5px;
  background: #496b5f;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 13px;
}
.openbtn span:nth-of-type(2) {
  top: 19px;
}
.openbtn span:nth-of-type(3) {
  top: 25px;
}
.openbtn span:nth-of-type(3)::after {
  content: "Menu"; /*3つ目の要素のafterにMenu表示を指定*/
  position: absolute;
  top: 5px;
  left: 1px;
  color: #496b5f;
  font-size: 0.8rem;
  text-transform: uppercase;
}
/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
.openbtn.active span:nth-of-type(1) {
  top: 14px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 26px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(3)::after {
  content: "Close"; /*3つ目の要素のafterにClose表示を指定*/
  transform: translateY(0) rotate(-45deg);
  top: 3px;
  left: 8px;
  font-size: 0.8rem
}


.header-nav__mb ul {
  width: 200px;
  margin: 0 auto;
}
.header-nav__mb ul li {
  border-bottom: solid 1px rgba(7, 44, 23, 0.3);
  margin-bottom: 7px;
}
.header-nav__mb ul li a{
  line-height: 4.0rem;
  text-decoration: none;
  color: #496b5f;
  font-size: 1.7rem;
}
.header-nav__mb-tel {
  padding-top: 25px;
}

.header-nav__mb-tel a {
  text-decoration: none;
  color: #496b5f;
  font-size: 2.0rem;
}
.header-nav__mb-tel p {
  font-size: 1.3rem;
  letter-spacing: 0;
}
.header-nav__mb-tel img{
 width: 18px; 
 margin-right: 10px;
}
.header-nav__mb__logo {
  padding-top: 25px;
}
.header-nav__mb__logo img {
  width: 270px;
}
.header-nav__mb-address {
  padding-top: 15px;
}
.header-nav__mb-address p {
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1.8rem;
  color: #496b5f;
}
.header-nav__mb-sns {
  padding-top: 30px;
}
.header-nav__mb-sns img {
  width: 20px;
  margin-left: 10px;
  margin-right: 10px;
}
@media(max-width:350px) {
  .header__logo img {
    width: 190px;
  }
}

@media(min-width:1240px) {
  .header-nav__mb nav {
    display: none;
  }
  .header-nav__pc nav{
    display: block;
    padding-top: 10px;
  }
  .header {
    height: 70px;
    position: fixed;
  }
  .header-content-wrapper {
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
  }
  .header__logo img {
    width: 260px;
    position: absolute;
    left: 0;
  }
  .header nav ul {
    display: flex;
    justify-content: space-between;
    position: absolute;
    left: 290px;
  }
  .header nav ul li {
    margin-right: 15px;
    padding-left: 15px;
  }
  .header ul li img {
    padding-top: 10px;
  }
  .header ul li a {
    text-decoration: none;
    color: #496b5f;
    font-size: 16px;
    letter-spacing: 0;
    margin-top: 20px;
  }
  .header-nav__tel {
    display: block;
    padding-top: 5px;
  }
  .header-nav__tel a {
    font-size: 22px;
    position: absolute;
    right: 90px;
    text-decoration: none;
    color: #496b5f;
  }
  .header-nav__tel p {
    font-size: 11px;
  }
  .header-nav__tel img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
  }
  .header__calendar {
    position: absolute;
    right: 0;
    padding-top: 5px;
  }
  .header__calendar img {
  width: 31px;
}
.header__calendar a {
  font-size: 1.0rem;
  }
  .header-space {
    padding-top: 10px;
  }
  .openbtn {
    display: none;
  }
  main {
    padding-top: 70px;
  }
}



.footer {
  background-color: #cfe1c8;
  padding-top: 60px;
  padding-bottom: 60px;
  color: #496b5f;
}
.footer-logo img {
  width: 270px;
}
.footer address {
  font-style: normal;
  padding-top: 20px;
  margin-bottom: 30px;
  letter-spacing: 0;
}
.footer-tel img {
  width: 23px;
  height: 23px;
  margin-right: 20px;
}
.footer-tel {
  font-size: 2.2rem;
  padding-top: 30px;
  margin-bottom: 10px;
  letter-spacing: 0.12rem;
}
.footer-tel a {
  text-decoration: none;
  color: #496b5f;
}
.footer-time {
  font-size: 1.5rem;
}
.footer-sns img {
  width: 25px;
  height: 25px;
  margin: 0 15px;
}
.footer-name {
  padding-top: 30px;
}
.footer-name {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.footer-name p {
  line-height: 1.8rem;
}
.footer-name img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
@media(min-width:960px) {
  .footer {
    padding-top: 70px;
    padding-bottom: 60px;
  }
  .footer-logo img {
    width: 380px;
  }
  .footer address {
    padding-top: 40px;
    margin-bottom: 30px;
    letter-spacing: 0.12rem;
    font-size: 1.8rem
  }
  .footer-tel img {
    width: 23px;
    height: 23px;
    margin-right: 20px;
  }
  .footer-tel {
    font-size: 2.6rem;
    padding-top: 30px;
    margin-bottom: 10px;
    letter-spacing: 0.12rem;
  }
  .footer-time {
    font-size: 1.8rem;
  }
  .footer-sns img {
    margin: 0 20px;
  }
  .footer-name {
    padding-top: 40px;
  }
}

.fadeInUpTrigger,.fadeInTrigger {
   opacity:0;
   
}

