@charset "UTF-8";
h1, h2, h3, h4, h5, p, figure, dl, dt, dd, ul, ol, li {
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 769px) {
  html {
    font-size: min(0.782vw, 10px);
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 1.334vw;
  }
}

body {
  margin: 0;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}
a img {
  transition: opacity 0.2s linear 0s;
}
a:hover img {
  opacity: 0.7;
}

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

*, *::before, *::after {
  box-sizing: border-box;
}

.header {
  position: relative;
  background: #fff;
  border-bottom: 1px solid #43ae37;
  top: 0;
}
@media screen and (min-width: 769px) {
  .header {
    height: 7rem;
  }
}
@media screen and (max-width: 768px) {
  .header {
    height: 10rem;
  }
}
.header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .header .inner {
    width: 128rem;
    padding: 0.4rem 14.2rem 0;
  }
}
@media screen and (max-width: 768px) {
  .header .inner {
    padding: 0 4rem;
  }
}
@media screen and (min-width: 769px) {
  .header .logo {
    width: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .header .logo {
    width: 20rem;
  }
}

.main {
  position: relative;
}

.pagetop_anchor {
  position: sticky;
  width: 9.4rem;
  z-index: 50;
}
@media screen and (min-width: 769px) {
  .pagetop_anchor {
    bottom: 4rem;
    margin: 0 4rem 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .pagetop_anchor {
    bottom: 5rem;
    margin: 0 4rem 0 auto;
  }
}

.footer .top {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 769px) {
  .footer .top {
    row-gap: 2rem;
    background-image: url(../img/footer_bg_pc.jpg);
    padding: 5rem 0 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .footer .top {
    row-gap: 3rem;
    background-image: url(../img/footer_bg_sp.jpg);
    padding: 4.7rem 0 2.5rem;
  }
}
.footer .share {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .footer .share {
    column-gap: 4.7rem;
  }
}
@media screen and (max-width: 768px) {
  .footer .share {
    column-gap: 6.3rem;
  }
}
.footer .share p {
  fill: #000;
}
@media screen and (min-width: 769px) {
  .footer .share p {
    width: 11.2rem;
    height: 6.4rem;
  }
}
@media screen and (max-width: 768px) {
  .footer .share p {
    width: 13.4rem;
    height: 8.8rem;
  }
}
@media screen and (min-width: 769px) {
  .footer .share a {
    width: 5rem;
    height: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .footer .share a {
    width: 6.8rem;
    height: 6.8rem;
  }
}
@media screen and (min-width: 769px) {
  .footer .share a + a {
    margin-left: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .footer .share a + a {
    margin-left: 0.8rem;
  }
}
.footer .privacy {
  text-align: center;
  color: #000;
}
@media screen and (min-width: 769px) {
  .footer .privacy {
    line-height: 1.429em;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .footer .privacy {
    line-height: 1.5em;
    font-size: 2rem;
  }
}
.footer .privacy a {
  transition: opacity 0.2s linear 0s;
}
.footer .privacy a svg {
  display: inline-block;
  width: 0.55em;
  height: 1em;
  margin-left: 0.1em;
  vertical-align: middle;
  translate: 0 -10%;
  transition: translate 0.2s linear 0s;
}
.footer .privacy a:hover {
  opacity: 0.7;
}
.footer .privacy a:hover svg {
  translate: 50% -10%;
}
.footer .bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
@media screen and (min-width: 769px) {
  .footer .bottom {
    height: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .footer .bottom {
    height: 10rem;
  }
}
.footer .copylight {
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .footer .copylight {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .footer .copylight {
    font-size: 2rem;
  }
}

.js-animation.fadeIn {
  opacity: 0;
  transition: opacity 0.6s ease 0s;
}
.js-animation.fadeIn.is-animated {
  opacity: 1;
}
.js-animation.blurIn {
  opacity: 0;
  filter: blur(2px);
  transition: opacity 0.3s linear 0s, filter 0.6s ease 0.3s;
}
.js-animation.blurIn.is-animated {
  opacity: 1;
  filter: blur(0px);
}
.js-animation.slideIn {
  opacity: 0;
  transition: opacity 0.3s linear 0s, translate 0.6s ease 0s;
}
.js-animation.slideIn.is-animated {
  opacity: 1 !important;
  translate: 0 0 !important;
}
.js-animation.slideDown {
  opacity: 0;
  translate: 0 -30px;
  transition: opacity 0.3s linear 0s, translate 0.6s ease 0s;
}
.js-animation.slideDown.is-animated {
  opacity: 1 !important;
  translate: 0 0 !important;
}
.js-animation.slideUp {
  opacity: 0;
  translate: 0 30px;
  transition: opacity 0.3s linear 0s, translate 0.6s ease 0s;
}
.js-animation.slideUp.is-animated {
  opacity: 1 !important;
  translate: 0 0 !important;
}
.js-animation.boundUp {
  opacity: 0;
  translate: 0 20px;
  transition: opacity 0.3s linear 0s, translate 0.7s cubic-bezier(0, 0, 0, 3) 0s;
}
.js-animation.boundUp.is-animated {
  opacity: 1 !important;
  translate: 0 0 !important;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .buttons {
    column-gap: 6rem;
    row-gap: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .buttons {
    column-gap: 4rem;
    row-gap: 4rem;
  }
}

.button {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  align-items: center;
  position: relative;
  transition: opacity 0.2s linear 0s;
}
.button > svg {
  position: absolute;
  transition: translate 0.2s linear 0s;
}
.button.wid1 {
  border-radius: 3.149em;
  width: 15em;
  height: 3.149em;
  line-height: 1.4em;
  font-size: 2.16rem;
}
.button.wid1 > svg {
  width: 0.649em;
  height: 1.112em;
  right: 8.642%;
}
.button.wid2 {
  border-radius: 3.149em;
  width: 15.926em;
  height: 3.149em;
  letter-spacing: 0.02em;
  line-height: 1.4em;
  font-size: 2.2rem;
}
@media screen and (min-width: 769px) {
  .button.wid2 {
    border: 2px solid;
  }
}
@media screen and (max-width: 768px) {
  .button.wid2 {
    border: 1px solid;
  }
}
.button.wid2 > svg {
  width: 0.649em;
  height: 1.112em;
  right: 8.642%;
}
.button.col1 {
  color: #fff;
}
.button.col1 > svg {
  fill: #fff;
}
.button.col2 {
  background-color: #54b349;
  background-image: url(../img/button_col1.jpg);
  color: #fff;
}
.button.col2 > svg {
  fill: #fff;
}
.button.col3 {
  background: #fff;
  border-color: #43ae37;
  color: #644c42;
}
.button.col3 > svg {
  fill: #43ae37;
  stroke: #43ae37;
  stroke-width: 0.5px;
}
.button:hover {
  opacity: 0.7;
}
.button:hover > svg {
  translate: 30% 0;
}