@charset "UTF-8";
/*-----------------------------------------------------------------------------------------------------
共通設定(PC)
--------------------------------------------------------------------------------------------------------*/
html,
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  font-style: normal;
  line-height: 1.5;
  background-color: #fff;
  scroll-behavior: smooth;
  color: #232323;
}
body .sp-item {
  display: none !important;
}
body .pc-item {
  display: block !important;
}
/*リンク文字の設定*/
a {
  text-decoration: underline;
}
/*ボタンホバー設定(半透明)*/
.btn:hover {
  opacity: 0.7;
}
img {
  width: 100%;
}
/*-----------------------------------------------------------------------------------------------------
各エリアの設定(PC)
-----------------------------------------------------------------------------------------------------*/
/*ページ全体*/
.container {
  max-width: 750px;
  margin: 0 auto;
  padding: 0;
}
.cta-area {
  position: relative;
}
.cta-btn1 {
  position: absolute;
  top: 35%;
  left: 5%;
  width: 90%;
}
.cta-btn2 {
  position: absolute;
  top: 66%;
  left: 5%;
  width: 90%;
}
.cta-btn1:hover,
.cta-btn2:hover {
  cursor: pointer;
  opacity: 0.6;
  transition-duration: 0.3s;
}
.cta-btn1 img,
.cta-btn2 img {
  animation: anime1 0.8s ease 0s infinite alternate;
  transform-origin: center;
}
@keyframes anime1 {
  from {
    transform: scale(95%, 95%);
  }
  to {
    transform: scale(100%, 100%);
  }
}
.footer {
  max-width: 750px;
  text-align: center;
  font-size: 2.2rem;
  font-weight: normal;
  background-color: #61732b;
  margin: 0 auto;
  padding: 20px 0;
}
.footer-in {
  padding: 40px;
  margin: 0 auto;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer .menu {
  text-align: center;
  margin: 30px auto;
  color: #fff;
}
.accordion-header {
  cursor: pointer;
}
.accordion-header:hover {
  background-color: #ddd;
}
.accordion-header img {
  display: block;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}
.accordion-content img {
  width: 100%;
  display: block;
}
/*-----------------------------------------------------------------------------------------------------
スマホ用
-----------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  body {
    min-width: inherit;
    height: 100%;
  }
  body .sp-item {
    display: block !important;
  }
  body .pc-item {
    display: none !important;
  }
  body .sp-item img {
    width: 100%;
  }
  .footer {
    font-size: 1.4rem;
    padding: 10px 0;
  }
}
