@media screen and (max-width: 767px) {
  .only-lg {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .only-sp {
    display: none;
  }
}
.top_logo {
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top_logo {
    left: 10px;
  }
}

.fv {
  position: relative;
  text-align: center;
}
.fv__logoarea {
  position: relative;
  padding: 20px 0 60px;
  background: #fffcd1;
}
@media screen and (max-width: 767px) {
  .fv__logoarea {
    padding-bottom: 40px;
  }
}
.fv__logoarea::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 120px;
  background: url(../img/fv-bg.png?a) repeat-x;
  background-size: contain;
  background-position: bottom;
  left: 0;
  bottom: -2px;
  z-index: 0;
}
.fv__logo {
  position: relative;
  width: 60%;
  margin: 0 auto;
  max-width: 500px;
  z-index: 1;
}
.fv__ttlarea {
  position: relative;
  padding-top: 20px;
  background: #008b69;
  z-index: 1;
}
.fv__ttlarea img {
  width: 100%;
  max-width: 700px;
}

.con {
  padding: 40px 0;
  width: 95%;
  margin: 0 auto;
}
.con__ttlarea {
  text-align: center;
}
.con__ttlarea .day p {
  font-size: 1.4em;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .con__ttlarea .day p {
    font-size: 1.2em;
  }
}
.con__ttlarea h3 {
  font-size: 2em;
  font-weight: 700;
  color: #008b69;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .con__ttlarea h3 {
    font-size: 1.5em;
  }
}
.con__txt {
  width: 95%;
  margin: 0 auto;
  max-width: 900px;
  margin-top: 20px;
}
.con__txt p {
  margin-bottom: 1.5em;
}
.con__txt p span.bold {
  font-weight: 700;
}
.con__txt p span.red {
  color: #b50d23;
}
.con__txt p span.green {
  color: #007c0e;
}
.con__btn {
  margin: 0 auto;
  margin-top: 16px;
  max-width: 400px;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .con__btn {
    max-width: 400px;
  }
}
.con__btn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  background: #b40067;
  color: #fff;
  border-radius: 999px;
  text-align: center;
  font-size: 1.1em;
  font-weight: 600;
}
.con__btn a::after {
  content: "";
  position: absolute;
  background: url("../img/newTab_white.svg") no-repeat;
  background-position: center;
  background-size: contain;
  width: 16px;
  height: 16px;
  right: 6%;
  top: 40%;
  transition: all 0.3s;
}
.con__btn a:hover::after {
  right: 4%;
}