@charset "UTF-8";
/**
 * 変数
 */
/**
 * color
 * ---------------------------
 */
/**
 * コンテンツ幅
 * ---------------------------
 */
/**
 * font famiry
 * ---------------------------
 */
/**
 * font size
 * ---------------------------
 */
:root {
  --fontSize: 20px;
  --font-2xs: calc(var(--fontSize) * 0.6); /* 12px */
  --font-xs: calc(var(--fontSize) * 0.7); /* 14px */
  --font-s: calc(var(--fontSize) * 0.8); /* 16px */
  --font-m: calc(var(--fontSize) * 0.9); /* 18px */
  --font-l: calc(var(--fontSize) * 1);
  --font-xl: calc(var(--fontSize) * 1.1); /* 22px */
  --font-2xl: calc(var(--fontSize) * 1.1); /* 22px */
  --font-3xl: calc(var(--fontSize) * 1.25); /* 25px */
  --font-4xl: calc(var(--fontSize) * 1.5); /* 30px */
  --font-4_2xl: calc(var(--fontSize) * 1.5); /* 30px */
  --font-5xl: calc(var(--fontSize) * 1.5); /* 30px */
}

@media (min-width: 768px) {
  :root {
    --font-2xs: calc(var(--fontSize) * 0.7); /* 14px */
    --font-xs: calc(var(--fontSize) * 0.8); /* 16px */
    --font-s: calc(var(--fontSize) * 0.9); /* 18px */
    --font-m: calc(var(--fontSize) * 1);
    --font-l: calc(var(--fontSize) * 1.1); /* 22px */
    --font-xl: calc(var(--fontSize) * 1.25); /* 25px */
    --font-2xl: calc(var(--fontSize) * 1.5); /* 30px */
    --font-3xl: calc(var(--fontSize) * 1.75); /* 35px */
    --font-4xl: calc(var(--fontSize) * 2); /* 40px */
    --font-4_2xl: calc(var(--fontSize) * 2.1); /* 42px */
    --font-5xl: calc(var(--fontSize) * 2.25); /* 45px */
  }
}
/*
common
---------------------------*/
#mv h1 {
  max-width: 160px;
}
@media (min-width: 769px) {
  #mv h1 {
    max-width: initial;
  }
}

/*
#link
---------------------------*/
#link {
  margin-bottom: 60px;
}
#link .link__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  font-size: var(--font-xl);
  font-weight: 700;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #60432A;
}
#link .link__title::before, #link .link__title::after {
  content: "";
  height: 2px;
  background-color: #026934;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
#link .btn__list a, #link .btn__list span:not(.ib), #link .btn__list button, #link .btn__list input {
  padding: 14px 35px;
  font-size: var(--font-s);
  font-weight: 700;
  color: #60432A;
}
@media (min-width: 769px) {
  #link .btn__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #link .btn__list .btn__white {
    width: 49%;
  }
  #link .btn__list .btn__white + .btn__white {
    margin-top: 0;
  }
  #link .btn__list .btn__white:nth-of-type(2n) {
    margin-left: 2%;
  }
  #link .btn__list .btn__white:nth-of-type(n+3) {
    margin-top: 15px;
  }
  #link .btn__list a, #link .btn__list span:not(.ib), #link .btn__list button, #link .btn__list input {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

/*
#faq
---------------------------*/
#faq section {
  margin-top: -80px;
  padding-top: 80px;
}
#faq section + section h2 {
  margin-top: 40px;
}
#faq section > dl {
  background: #ffffff;
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.05);
          box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.05);
}
#faq section > dl.active > dt .question__inner::after {
  top: 9.5px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#faq section > dl + dl {
  margin-top: 20px;
}
#faq section > dl > dt {
  padding: 18px 10px 26px 15px;
  cursor: pointer;
}
#faq section > dl > dt .question__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-right: 30px;
}
#faq section > dl > dt .question__inner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 0;
  width: 25px;
  height: 25px;
  background: #026934;
  border-radius: 50%;
}
#faq section > dl > dt .question__inner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 9px;
  margin: auto 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#faq section > dl > dt .question__inner span {
  font-size: 22.5px;
  font-weight: 700;
  font-family: "Quattrocento Sans", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #E75611;
}
#faq section > dl > dt .question__inner p {
  margin-top: 8px;
  margin-left: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #60432A;
}
#faq section > dl > dd {
  display: none;
}
#faq section > dl > dd .answer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 18px 25px 30px 23px;
  border-top: 1px solid #EEEEEE;
}
#faq section > dl > dd .answer__inner > span {
  font-size: 22.5px;
  font-weight: 700;
  font-family: "Quattrocento Sans", sans-serif;
  color: #026934;
  line-height: 140%;
}
#faq section > dl > dd .answer__inner .answer__detail {
  margin-left: 14px;
}
#faq section > dl > dd .answer__inner .answer__detail p {
  color: #60432A;
}
#faq section > dl > dd .answer__inner .answer__detail p + p {
  margin-top: 20px;
}
#faq section > dl > dd .answer__inner .answer__detail p a.link {
  color: #026934;
  text-decoration: underline;
}
#faq section > dl > dd .answer__inner .answer__detail p.answer__detail--title {
  position: relative;
  padding-left: 10px;
  font-size: var(--font-xl);
  font-weight: 600;
  color: #026934;
}
#faq section > dl > dd .answer__inner .answer__detail p.answer__detail--title::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 0;
  width: 5px;
  height: 75%;
  background: #026934;
}
#faq section > dl > dd .answer__inner .answer__detail p.answer__detail--title + * {
  margin-top: 5px;
}
#faq section > dl > dd .answer__inner .answer__detail dl + dl {
  margin-top: 15px;
}
#faq section > dl > dd .answer__inner .answer__detail dt p,
#faq section > dl > dd .answer__inner .answer__detail dd p {
  font-size: var(--font-xs);
}
#faq section > dl > dd .answer__inner .answer__detail ul li p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
#faq section > dl > dd .answer__inner .answer__detail ul li p span {
  margin-right: 10px;
  font-size: inherit;
  line-height: inherit;
}
#faq section > dl > dd .answer__inner .answer__detail .answer__detail--box {
  margin-top: 10px;
  padding: 10px;
  border: 2px solid #89D8A7;
}
#faq section > dl > dd .answer__inner .answer__detail .answer__detail--indent-1 {
  padding-left: 1em;
}
#faq section > dl > dd .answer__inner .answer__detail .answer__detail--indent-2 {
  padding-left: 2em;
}
@media (min-width: 350px) {
  #faq section > dl.active > dt .question__inner::after {
    top: 4px;
  }
  #faq section > dl > dt .question__inner {
    padding-right: 35px;
  }
  #faq section > dl > dt .question__inner::before {
    width: 28px;
    height: 28px;
  }
  #faq section > dl > dt .question__inner::after {
    top: -1px;
    right: 10px;
  }
  #faq section > dl > dt .question__inner span {
    font-size: 26.25px;
  }
  #faq section > dl > dd .answer__inner span {
    font-size: 26.25px;
  }
  #faq section > dl > dd .answer__inner .answer__detail dt p,
  #faq section > dl > dd .answer__inner .answer__detail dd p {
    font-size: var(--font-s);
  }
}
@media (min-width: 769px) {
  #faq section {
    margin-top: -175px;
    padding-top: 175px;
  }
  #faq section > dl > dt {
    padding: 18px 25px 26px 20px;
  }
}
@media (min-width: 1120px) {
  #faq section + section h2 {
    margin-top: 81px;
  }
  #faq section > dl.active > dt .question__inner::after {
    top: 0;
  }
  #faq section > dl > dt .question__inner::before {
    top: -2px;
    width: 33px;
    height: 33px;
  }
  #faq section > dl > dt .question__inner::after {
    top: -3px;
    right: 12.5px;
    width: 8px;
    height: 8px;
  }
  #faq section > dl > dt .question__inner > span {
    font-size: 30px;
  }
  #faq section > dl > dd .answer__inner {
    padding: 18px 25px 40px 23px;
  }
  #faq section > dl > dd .answer__inner > span {
    font-size: 30px;
  }
  #faq section > dl > dd .answer__inner .answer__detail dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #faq section > dl > dd .answer__inner .answer__detail .answer__detail--box {
    padding: 10px 20px;
  }
}/*# sourceMappingURL=faq.css.map */