@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%;
  width: 100%;
  box-sizing: border-box;
}
main {
  overflow: hidden;
}
body {
  color: #333;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-size: 1.6em;
  line-height: 1.5;
  background-color: #f3f2ed;
}
.section-title {
  text-align: center;
}
.trial-btn {
  text-align: center;
}
.under-btn_text {
  text-decoration: underline solid #333;
}
@media(max-width: 480px) {
  .trial-btn img {
    width: 327px;
  }
  .under-btn_text {
    font-size: 1.3rem;
  }
}
.under-line {
  background: linear-gradient(transparent 50%, #ffff66 0%);
}
a:hover {
  opacity: 0.5;
}
/* return to top */
#scroll-top a {
  position: fixed;
  bottom: 85px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #32630c;
  opacity: 0.6;
  border-radius: 50%;
}
/* return to top__arrow */
.arrow {
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(-45deg);
  margin-top: 5px;
}
/*フローティングバナー（スマホ）*/
#banner {
  position: fixed; /* バナーを追従させる */
  z-index: 99999; /* 他の要素の下に隠れないように */
  bottom: 0; /* バナーの上下の位置 */
  right: 0; /* バナーの左右の位置 */
}
.banner__image {
  max-width: 100%; /* 画像の最大幅 */
}
#banner-close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 2rem;
  color: #333;
  cursor: pointer; /*カーソルをポインターに*/
}
@media(min-width: 500px) {
  .banner {
    display: none; /* スマホサイズ以外ではバナーを非表示に */
  }
}