@charset "UTF-8";
/* CSS Document */
/*共通*/
html {
  font-size: 62.5%;
}
body {
  font-family: 'Zen Maru Gothic', serif;
  box-sizing: border-box;
  background: #ffffff;
  line-height: 1.5;
  margin: 0 auto;
  color: #333333;
  letter-spacing: 0.4px;
}
img {
  max-width: 100%;
  display: block;
}
:root {
  --black: #333333;
  --orange: #ffa318;
  --white: #ffffff;
  --d-green: #2b6b04;
  --m-green: #a3d088;
  --l-green: #f6fff0;
  --gray: #cccccc;
  --beige: #fff7dd;
  --main: 'Zen Maru Gothic', serif;
}
.wrapper {
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
}
.section-title {
  text-align: center;
}
.section-title h2 {
  font-size: 3rem;
  font-weight: 600;
  color: var(--d-green);
  position: relative;
  display: inline-block;
}
.section-title h2:before {
  position: absolute;
  top: 20%;
  left: -40px;
  content: '';
  width: 27px;
  height: 100%;
  background: url(../images/section-title-dec.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.section-title h2:after {
  position: absolute;
  top: 20%;
  right: -40px;
  content: '';
  width: 27px;
  height: 100%;
  background: url(../images/section-title-dec.png);
  background-repeat: no-repeat;
  background-size: contain;
}

/* アニメーションに関するcss */
/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 1s;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeInTrigger {
	opacity: 0;
}

.fadeUpTrigger {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fadeUpTrigger.show {
  opacity: 1;
  transform: translateY(0);
}

/* 上から */

.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 左から */

.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右から */

.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* アニメーションに関するcssここまで   */

/* 共通ここまで */
/* ヘッダーここから */
#header {
  padding: 20px 0 40px;
}
.header__container {
  display: flex;
  align-items: center;
}
.header__title {
  margin-right: 40px;
  position: relative;
}
.header__title:before {
  position: absolute;
  content: '';
  background: url(../images/decoration_01.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 92px;
  height: 86px;
  top: 0;
  left: -15px;
  z-index: -1;
}

.header__title p {
  font-family: var(--main);
  display: block;
  color: var(--d-green);
  text-align: center;
}
.header__title--main {
  font-size: 4.5rem;
  letter-spacing: 5px;
  font-weight: 600;
}
.header__title--main span {
  color: var(--orange);
}
.header__title--sub {
  font-size: 1.7rem;
  letter-spacing: 0.8px;
  font-weight: 600;
}

.header__nav {
  display: flex;
  align-items: center;
}
.header__title.sp {
  display: none;
}
.header__nav ul {
  display: flex;
  gap: 30px;
  margin-right: 24px;
}
.header__nav ul li {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--d-green);
}
.header__action {
  background: var(--m-green);
  padding: 0 20px;
  border-radius: 33px;
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 600;
  height: 66px;
  line-height: 66px;
  vertical-align: middle;
  letter-spacing: 0.8px;
}
.header__action a {
  background-image: radial-gradient(circle, #ffffff 1px, transparent 2px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 7px 2px;
}
.header__action.header__contact {
  margin-right: 10px;
}
.header__action.header__tell a {
  font-size: 2.6rem;
}
.header__action.header__tell a img {
  display: inline-block;
  vertical-align: middle;
  padding-bottom: 3px;
}

/* ヘッダーここまで */
/* フッターここから */
.footer .wrapper {
  background-image: radial-gradient(
    closest-side,
    rgba(255, 247, 221, 1),
    rgba(255, 247, 221, 0.96) 89%,
    rgba(255, 247, 221, 0)
  );
  padding: 60px 0 20px;
}
.footer__title {
  margin-bottom: 30px;
}

.footer__title p {
  font-family: var(--main);
  display: block;
  color: var(--d-green);
  text-align: center;
}
.footer__title--main {
  font-size: 4.5rem;
  letter-spacing: 5px;
  font-weight: 600;
}
.footer__title--main span {
  color: var(--orange);
}
.footer__title--sub {
  font-size: 1.7rem;
  letter-spacing: 0.8px;
  font-weight: 600;
}
.footer__info {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  text-align: center;
  position: relative;
  margin-bottom: 60px;
}
.footer__info:before {
  position: absolute;
  content: '';
  width: 71px;
  height: 71px;
  background: url(../images/clover_01.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  left: 30%;
}
.footer__info:after {
  position: absolute;
  content: '';
  width: 90px;
  height: 140px;
  background: url(../images/clover_02.png);
  background-repeat: no-repeat;
  background-size: 120%;
  top: 30%;
  right: 30%;
  transform: rotate(38deg);
}
.footer__info--address {
  margin-bottom: 10px;
}
.footer__info--time {
  margin-bottom: 20px;
}
.footer__info--tell {
  display: flex;
  align-items: center;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--d-green);
  justify-content: center;
}
.footer__info--tell:before {
  content: '';
  width: 21px;
  height: 21px;
  background: url(../images/tell_icon_03.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
}
.footer__nav {
  padding-top: 20px;
  border-top: 1px solid var(--m-green);
  max-width: 600px;
  margin: 0 auto 60px;
}
.footer__nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.footer__nav ul li a {
  color: var(--black);
  font-weight: 400;
  font-size: 15px;
}
.footer__copy {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: center;
  display: block;
}
/* フッターここまで */

/* サンクスページに関する記述 */
.thanks h2 {
  color: var(--d-green);
  font-weight: 600;
  font-size: 4.5rem;
  text-align: center;
  margin-top: 60px;
}
.thanks p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  padding: 50px 0;
}
.thanks .top-btn {
  display: block;
  margin: 30px auto 100px;
  text-align: center;
  padding: 0;
}
.thanks .top-btn:hover a {
  color: var(--white);
  background: var(--d-green);
  border: 1px solid var(--d-green);
  transition: 0.3s;
}
.thanks .top-btn a {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  border: 1px solid var(--d-green);
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  color: var(--d-green);
  transition: 0.3s;
}

/* サンクスページに関する記述ここまで */

/* メニューボタン */
@media screen and (max-width: 800px) {
  nav {
    padding: 0;
  }
  nav ul {
    display: block;
  }
  nav li.has-child ul,
  nav li.has-child ul ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible; /*JSで制御するため一旦表示*/
    opacity: 1; /*JSで制御するため一旦表示*/
    display: none; /*JSのslidetoggleで表示させるため非表示に*/
    transition: none; /*JSで制御するためCSSのアニメーションを切る*/
  }

  /*矢印の位置と向き*/
  nav ul li.has-child::before {
    left: 45%;
    top: 32px;
    transition: 0.5s;
  }
  nav ul ul li.has-child::before {
    transform: rotate(135deg);
    left: 20px;
  }
  nav ul li.has-child.active::before {
    transform: rotate(-45deg);
  }
  nav ul li.has-child ul li a span {
    color: var(--white);
  }
}
@media (max-width: 1040px) {
  /* 共通 */
  .wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 6%;
    overflow: hidden;
  }
  .section-title h2 {
    font-size: 2.4rem;
  }
  /* 共通ここまで */
  /*========= ナビゲーションのためのCSS ===============*/
  #g-nav {
    position: fixed;
    left: 100%;
    opacity: 0; /*はじめは透過0*/
    top: 0;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    background: var(--white);
    z-index: 999;
    transition: 0.5s;
  }
  /*アクティブクラスがついたら透過なしにして最前面へ*/
  #g-nav.panelactive {
    display: block;
    opacity: 1;
    max-width: 100%;
    left: 0;
  }
  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    max-width: 100%;
    width: 100%;
    height: 100vh; /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  /*ナビゲーション*/
  #g-nav ul.g-nav-list {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
  #g-nav.panelactive ul.g-nav-list {
    display: block;
    height: 100%;
    padding-top: 100px;
  }
  .header__nav {
    text-align: center;
    padding: 80px 20px 40px;
  }
  .header__title.sp {
    margin-right: 0;
    display: inline-block;
  }
  .header__title.sp:before {
    position: absolute;
    content: '';
    background: url(../images/decoration_01.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 47px;
    top: 0;
    left: -7px;
    z-index: -1;
  }
  .header__title--main.sp {
    font-size: 2.4rem;
    letter-spacing: 1px;
  }

  .header__title--sub.sp {
    font-size: 0.9rem;
    letter-spacing: 0.8px;
  }

  .header__nav ul {
    display: block;
    gap: 0;
    margin: 60px 0;
  }
  .header__nav ul li {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 30px;
  }
  .header__action {
    background: var(--m-green);
    padding: 0 20px;
    border-radius: 33px;
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 600;
    height: 66px;
    line-height: 66px;
    vertical-align: middle;
    letter-spacing: 0.8px;
    width: 70%;
    margin: 0 auto;
  }
  .header__action a {
    background-image: radial-gradient(circle, #ffffff 1px, transparent 2px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 7px 2px;
  }
  .header__action.header__contact {
    margin: 0 auto 20px;
  }
  .header__action.header__tell a {
    font-size: 2.6rem;
  }
  .header__action.header__tell a img {
    display: inline-block;
    vertical-align: middle;
    padding-bottom: 3px;
  }
  /*リストのレイアウト設定*/

  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    display: block;
    position: fixed; /*  固定する場合はfixed*/
    z-index: 9999; /*ボタンを最前面に*/
    top: 15px;
    right: 0;
    cursor: pointer;
    width: 60px; /*90px*/
    height: 60px; /*90px*/
  }
  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 2px;
    background-color: var(--d-green);
    width: 30px; /*46px*/
    height: 3px; /*5px*/
  }
  .openbtn span:nth-of-type(1) {
    top: 25%;
  }
  .openbtn span:nth-of-type(2) {
    top: 45%;
  }
  .openbtn span:nth-of-type(3) {
    top: 65%;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 46px;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 46px;
  }
  .openbtn p {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translate(-50%, 0);
    font-family: var(--zen-maru);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.79px;
  }
  .openbtn.active p {
    display: none;
  }
  /* ヘッダー */

  #header {
    padding: 20px 0 35px;
  }
  .header__container {
    justify-content: space-between;
  }
  .header__title {
    margin-right: 0;
  }
  .header__title:before {
    position: absolute;
    content: '';
    background: url(../images/decoration_01.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 47px;
    top: 0;
    left: -7px;
    z-index: -1;
  }
  .header__title--main {
    font-size: 2.4rem;
    letter-spacing: 1px;
  }

  .header__title--sub {
    font-size: 0.9rem;
    letter-spacing: 0.8px;
  }
  /* ヘッダーここまで */
  /* フッターここから */
  .footer {
    background-image: radial-gradient(
      closest-side,
      rgba(255, 247, 221, 1),
      rgba(255, 247, 221, 0.96) 89%,
      rgba(255, 247, 221, 0)
    );
    background-size: 200%;
    background-position: center;
  }

  .footer .wrapper {
    max-width: 400px;
    background-image: none;
    padding: 60px 6% 20px;
  }
  .footer__title {
    margin-bottom: 10px;
  }

  .footer__title p {
    font-family: var(--main);
    display: block;
    color: var(--d-green);
    text-align: center;
  }
  .footer__title--main {
    font-size: 3.7rem;
  }
  .footer__title--main span {
    color: var(--orange);
  }
  .footer__title--sub {
    font-size: 1.4rem;
    letter-spacing: 0.8px;
    font-weight: 600;
  }
  .footer__info {
    margin-bottom: 50px;
  }
  .footer__info:before {
    position: absolute;
    content: '';
    width: 50px;
    height: 40px;
    background: url(../images/clover_01.png);
    background-repeat: no-repeat;
    background-size: contain;
    top: 50%;
    left: 5%;
  }
  .footer__info:after {
    position: absolute;
    content: '';
    width: 50px;
    height: 60px;
    background: url(../images/clover_02.png);
    background-repeat: no-repeat;
    background-size: 120%;
    top: 40%;
    right: 5%;
    transform: rotate(38deg);
  }
  .footer__info--address {
    margin-bottom: 10px;
  }
  .footer__info--time {
    margin-bottom: 30px;
  }

  .footer__nav {
    padding-top: 20px;
    border-top: 1px solid var(--m-green);
    max-width: 600px;
    margin: 0 auto 60px;
  }
  .footer__nav ul {
    display: block;
  }
  .footer__nav ul li {
    text-align: center;
    margin-bottom: 10px;
  }

  .footer__nav ul li a {
    color: var(--black);
    font-weight: 400;
    font-size: 15px;
    text-align: center;
  }
  .footer__copy {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: center;
    display: block;
  }
  /* フッターここまで */
  /* サンクスページに関する記述 */
  .thanks h2 {
    color: var(--d-green);
    font-weight: 600;
    font-size: 2.6rem;
    text-align: center;
    margin-top: 40px;
  }
  .thanks p {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    padding: 30px 0;
  }
  .thanks .top-btn {
    display: block;
    margin: 30px auto 80px;
    text-align: center;
    padding: 0;
  }
  .thanks .top-btn:hover a {
    color: var(--white);
    background: var(--d-green);
    border: 1px solid var(--d-green);
    transition: 0.3s;
  }
  .thanks .top-btn a {
    display: inline-block;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid var(--d-green);
    background: var(--white);
    border-radius: 20px;
    padding: 20px;
    color: var(--d-green);
    transition: 0.3s;
  }

  /* サンクスページに関する記述ここまで */
}
