@charset "UTF-8";
body {
  padding-top: 60px;
}
@media print, screen and (min-width: 768px) {
  body {
    padding-top: 80px;
  }
}

header {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-animation-name: headerIn;
          animation-name: headerIn;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

main {
  display: block;
}
main div.main_ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
  background-color: #007a36;
  position: relative;
  overflow: hidden;
}
main div.main_ttl::before {
  content: "";
  display: block;
  width: 320px;
  height: 320px;
  border: solid 3px #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%) rotate(-60deg);
          transform: translate(-50%, -50%) rotate(-60deg);
  -webkit-animation-name: ttlIn;
          animation-name: ttlIn;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@media print, screen and (min-width: 768px) {
  main div.main_ttl::before {
    width: 600px;
    height: 600px;
  }
}
main div.main_ttl h1 {
  text-align: center;
  width: 100%;
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  main div.main_ttl h1 {
    font-size: 3rem;
  }
}
main div.Breadcrumb {
  padding: 5px;
  max-width: 1000px;
  width: 92%;
  margin-left: auto;
  margin-right: auto;
}
main div.Breadcrumb ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
main div.Breadcrumb ul li {
  font-size: 1.2rem;
  font-family: "游ゴシック Bold", sans-serif;
}
main div.Breadcrumb ul li + li {
  margin-left: 10px;
}
main div.Breadcrumb ul li + li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border: solid 1px #000;
  margin-right: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-width: 1px 1px 0 0;
}
main div.Breadcrumb ul li a {
  font-family: "游ゴシック Bold", sans-serif;
  font-size: 1.2rem;
}
main div.main_content {
  max-width: 1000px;
  width: 92%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  margin-bottom: 100px;
}
@media print, screen and (min-width: 768px) {
  main div.main_content {
    margin-top: 100px;
  }
}
main div.main_content article {
  border-radius: 15px;
}
main div.main_content article section + section {
  margin-top: 50px;
}
@media print, screen and (min-width: 768px) {
  main div.main_content article section + section {
    margin-top: 150px;
  }
}
main div.main_content article section h2 {
  font-size: 2rem;
  font-weight: bold;
  border: solid #007a36;
  border-width: 0 0 2px 10px;
  margin-bottom: 20px;
  padding: 10px;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
}
@media print, screen and (min-width: 768px) {
  main div.main_content article section h2 {
    margin-bottom: 50px;
    font-size: 2.5rem;
  }
}
main div.main_content article section p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 30px;
}
@media print, screen and (min-width: 768px) {
  main div.main_content article section p {
    font-size: 2.1rem;
  }
}
main div.main_content article section p:first-of-type {
  margin-top: 0;
}
main div.main_content article section div.img_wrap {
  margin-top: 50px;
}
@media print, screen and (min-width: 768px) {
  main div.main_content article section div.img_wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
main div.main_content article section div.img_wrap div.img {
  margin-top: 15px;
}
main div.main_content article section div.img_wrap div.img:first-of-type {
  margin-top: 0;
}
@media print, screen and (min-width: 768px) {
  main div.main_content article section div.img_wrap div.img {
    -webkit-flex-basis: 30%;
        -ms-flex-preferred-size: 30%;
            flex-basis: 30%;
    margin-left: 4%;
    margin-top: 0;
  }
  main div.main_content article section div.img_wrap div.img:first-of-type {
    margin-left: 0;
  }
}
main div.main_content article section div.img_wrap div.img em {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.faq_list dt,
.faq_list dd {
  font-size: 1.6rem;
  line-height: 1.4;
  position: relative;
  padding: 10px;
  padding-left: 3em;
}
@media print, screen and (min-width: 768px) {
  .faq_list dt,
.faq_list dd {
    font-size: 2.1rem;
    padding: 15px;
    padding-left: 3em;
  }
}
.faq_list dt::before,
.faq_list dd::before {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: "Russo One", sans-serif;
}
@media print, screen and (min-width: 768px) {
  .faq_list dt::before,
.faq_list dd::before {
    top: 15px;
    left: 15px;
  }
}
.faq_list dt {
  margin-top: 30px;
  background-color: #edffed;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border: solid 1px #3d7a59;
  border-bottom: none;
}
@media print, screen and (min-width: 768px) {
  .faq_list dt {
    margin-top: 50px;
  }
}
.faq_list dt:first-of-type {
  margin-top: 0;
}
.faq_list dt::before {
  content: "Q.";
  color: #0000ff;
}
.faq_list dd {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border: solid 1px #3d7a59;
  border-top: dotted 1px #3d7a59;
}
.faq_list dd::before {
  content: "A.";
  color: #f00;
}
.faq_list dd div.detail_link {
  margin-top: 10px;
  text-align: right;
}
.faq_list dd div.detail_link a::after {
  font-family: "Font Awesome 5 Free";
  content: " \f105";
  font-weight: 900;
}

@-webkit-keyframes ttlIn {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) rotate(-60deg) scale(3, 3);
            transform: translate(-50%, -50%) rotate(-60deg) scale(3, 3);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) rotate(-60deg) scale(1, 1);
            transform: translate(-50%, -50%) rotate(-60deg) scale(1, 1);
  }
}

@keyframes ttlIn {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) rotate(-60deg) scale(3, 3);
            transform: translate(-50%, -50%) rotate(-60deg) scale(3, 3);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) rotate(-60deg) scale(1, 1);
            transform: translate(-50%, -50%) rotate(-60deg) scale(1, 1);
  }
}/*# sourceMappingURL=page_cmn.css.map */