.l-wrap {
  overflow: hidden;
}

.scene_title {
  width: 800px;
  width: 50%;
  margin: 0 auto 40px;
}

@media screen and (max-width: 899px) {
  .scene_title {
    width: 90%;
    margin: 0 auto 30px;
  }
}

.scene_lead {
  text-align: center;
  font-size: 18px;
  line-height: 1.5em;
  margin-bottom: 40px;
}
.scene_lead .att{
  font-size: 13px;
  line-height: 1.5em;
  margin-top: 10px;
}

@media screen and (max-width: 899px) {
  .scene_lead {
    font-size: 14px;
  }
  .scene_lead .att{
    font-size: 11px;
    line-height: 1.5em;
  }
}

.scene_about {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
  border: var(--color-yellow01) solid 2px;
  background: #fff;
  border-radius: 10px;
  font-size: 15px;
  padding: 40px 50px;
}

@media screen and (max-width: 899px) {
  .scene_about {
    width: 100%;
    padding: 8% 5%;
  }
}

.scene_about dt {
  font-size: 25px;
  text-align: center;
  color: var(--color-yellow02);
  margin-bottom: 30px;
}

@media screen and (max-width: 899px) {
  .scene_about dt {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.scene_about dd {
  text-indent: -15px;
  padding-left: 15px;
  line-height: 1.5em;
  margin-top: 10px;
}

@media screen and (max-width: 899px) {
  .scene_about dd {
    font-size: 13px;
  }
}

.scene_photo {
  position: relative;
  padding: 60px 0;
  margin-top: 80px;
}

@media screen and (max-width: 899px) {
  .scene_photo {
    margin-top: 50px;
    padding: 40px 0;
  }
}

.scene_photo_text {
  text-align: center;
  font-size: 25px;
  margin-bottom: 30px;
  font-weight: 800;
}

@media screen and (max-width: 899px) {
  .scene_photo_text {
    font-size: 18px;
    line-height: 1.5em;
    margin-bottom: 20px;
  }
}

.scene_photo::before {
  content: "";
  background: var(--color-blue);
  position: absolute;
  width: 200%;
  height: 100%;
  top: 0;
  left: -50%;
  z-index: -1;
}

.scene_photo_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 899px) {
  .scene_photo_list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 900px) {
  .scene_photo_list li {
    margin-left: 2%;
  }
  .scene_photo_list li:first-child {
    margin-left: 0;
  }
}

@media screen and (max-width: 899px) {
  .scene_photo_list li {
    width: 49%;
    margin: 2% 0 0 2%;
  }
  .scene_photo_list li:nth-child(2n+1) {
    margin-left: 0;
  }
  .scene_photo_list li:nth-child(n+1):nth-child(-n+2) {
    margin-top: 0;
  }
}

.scene_photo .-thumb_list__item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.scene_photo .-thumb_list__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-yellow02);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  -webkit-transition: all 0.5s var(--ease-main);
  transition: all 0.5s var(--ease-main);
}

.scene_photo .-thumb_list__item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.scene_photo .-thumb_list__item .-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  color: #fff;
  text-align: center;
  font-size: 2rem;
  width: 100%;
  z-index: 2;
  pointer-events: none;
  -webkit-transition: all 0.5s var(--ease-main);
  transition: all 0.5s var(--ease-main);
}

@media screen and (min-width: 900px) {
  .scene_photo .-thumb_list__item {
    -webkit-transition: all 0.5s var(--ease-main);
    transition: all 0.5s var(--ease-main);
  }
  .scene_photo .-thumb_list__item:hover .-text {
    opacity: 1;
  }
  .scene_photo .-thumb_list__item:hover::before {
    opacity: 0.8;
  }
}

.scene_thanks {
  width: 32%;
  max-width: 500px;
  margin: 0 auto;
  padding-top: 50px;
}

@media screen and (max-width: 899px) {
  .scene_thanks {
    width: 100%;
  }
}

.scene_thanks_text {
  text-align: center;
  font-size: 15px;
  margin-bottom: 30px;
}

@media screen and (max-width: 899px) {
  .scene_thanks_text {
    font-size: 13px;
    margin-bottom: 20px;
  }
}

.scene_thanks_wp {
  border: solid #efefef 1px;
  overflow: hidden;
  border-radius: 15px;
}

@media screen and (max-width: 899px) {
  .scene_thanks_wp {
    width: 60%;
    margin: 0 auto;
  }
}

.btn_dl {
  position: relative;
  background-color: var(--color-link);
  color: #fff;
  margin-top: 8px;
  text-align: center;
  padding: 15px 0;
  font-size: 1.3rem;
  border-radius: 100px;
  border: solid 1px var(--color-link);
  -webkit-transition: all 0.7s var(--ease-main);
  transition: all 0.7s var(--ease-main);
}

@media screen and (max-width: 899px) {
  .btn_dl {
    width: 60%;
    margin: 0 auto;
    font-size: 1.1rem;
    padding: 12px 0;
    margin-top: 5px;
  }
}

.btn_dl::before {
  content: "";
  width: 15px;
  height: 15px;
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 18">\a  <path d="M3548.67,1217.04a3.616,3.616,0,0,0-1.67.96,0.227,0.227,0,0,0-.04-0.01,0.939,0.939,0,0,1-.92-0.25l-5.66-5.65a1.008,1.008,0,0,1,0-1.42,1,1,0,0,1,1.41,0l4.21,4.21V1205a1,1,0,0,1,2,0v9.88l4.21-4.21a1,1,0,0,1,1.41,0,1.008,1.008,0,0,1,0,1.42ZM3541,1220h12a1,1,0,0,1,0,2h-12A1,1,0,0,1,3541,1220Z" transform="translate(-3540 -1204)" fill="%23ffffff" ></path> </svg>') no-repeat center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 15px;
  -webkit-transition: all 0.7s var(--ease-main);
  transition: all 0.7s var(--ease-main);
}

@media screen and (max-width: 899px) {
  .btn_dl::before {
    width: 12px;
    height: 12px;
    left: 10px;
  }
}

.btn_dl a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

@media screen and (min-width: 900px) {
  .btn_dl:hover {
    background-color: var(--color-white);
    color: var(--color-link);
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  .btn_dl:hover::before {
    background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 18">\a  <path d="M3548.67,1217.04a3.616,3.616,0,0,0-1.67.96,0.227,0.227,0,0,0-.04-0.01,0.939,0.939,0,0,1-.92-0.25l-5.66-5.65a1.008,1.008,0,0,1,0-1.42,1,1,0,0,1,1.41,0l4.21,4.21V1205a1,1,0,0,1,2,0v9.88l4.21-4.21a1,1,0,0,1,1.41,0,1.008,1.008,0,0,1,0,1.42ZM3541,1220h12a1,1,0,0,1,0,2h-12A1,1,0,0,1,3541,1220Z" transform="translate(-3540 -1204)" fill="%2386cdeb" ></path> </svg>') no-repeat center;
    position: absolute;
  }
}

.p-challenge__link-item {
  width: 50%;
  margin: 100px auto 0;
}

@media screen and (max-width: 899px) {
  .p-challenge__link-item {
    margin: 80px auto 0;
    width: 60%;
  }
}

.tokuten {
  padding-top: 80px;
  display: none;
  position: relative;
}

@media screen and (max-width: 900px) {
  .tokuten {
    padding-top: 40px;
  }
}

.tokuten .cap {
  text-align: center;
  margin-bottom: 40px;
  font-size: 20px;
}

@media screen and (max-width: 900px) {
  .tokuten .cap {
    font-size: 15px;
    margin-bottom: 20px;
  }
}

.tokuten_box {
  width: 100%;
  margin: 0 auto;
  max-width: 400px;
}
/*# sourceMappingURL=style.scene.css.map */