@charset "UTF-8";

.frame_outer {
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .frame_outer {
    margin: 0;
  }
}

#lnr_container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  min-height: 100vh;
  text-align: left;
}

#container {
  width: 100%;
  flex: 1;
  margin: 0px auto;
  padding: 0;
  text-align: left;
  background-color: #fff;
}

.lp-content-wrap {
  text-align: center;
}

@media screen and (max-width: 1280px) {
  #container {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {

  #lnr_container,
  #lnr_header,
  #container,
  #lnr_footer {
    width: 100%;
  }
}

.clearfix {
  display: block;
}



.lp_img img {
  width: auto;
  margin: 0 auto;
  display: block;
}

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

.video-1 {
  position: relative;
}

.video-1 .video-box {
  position: absolute;
  bottom: 2em;
  left: 50%;
  transform: translate(-50%, 0);
  width: 70%;
  margin: 0 auto;
}

.movie-box iframe,
.video-box video {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.video-box {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

@media screen and (min-width: 480px) {
  .video-1 .video-box {
    bottom: 3em;
  }
}

@media screen and (min-width: 750px) {
  .video-1 .video-box {
    bottom: 4em;
  }
}

.video-2 {
  position: relative;
}

.video-2 .video-box {
  position: absolute;
  bottom: 5em;
  left: 48%;
  transform: translate(-50%, 0);
  width: 65%;
  margin: 0 auto;
}

@media screen and (min-width: 480px) {
  .video-2 .video-box {
    bottom: 9em;
  }
}

@media screen and (min-width: 769px) {
  .video-2 .video-box {
    bottom: 11em;
  }
}

@media screen and (max-width:750px) {
  .lp_img img {
    width: 100%;
    margin: 0 auto;
    display: block;
  }
}

@media screen and (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 1024px) {
  body {
    font-size: 1.3vw;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 2.1vw;
  }
}

@media screen and (max-width: 480px) {
  body {
    font-size: 3.6vw;
  }
}

body * {
  box-sizing: border-box;
}

.hydrated {
  visibility: inherit;
}

/* --------------------------------------------
 *                 modal
 * -------------------------------------------- */
.modal {
  z-index: 999;
  position: fixed;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 43%;
  max-width: 900px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* 半透明の背景色 */
  z-index: 9999;
  /* モーダルよりも手前に配置 */
}

.modal-close {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 20px;
  color: white;
  cursor: pointer;
}

@media (max-width: 767px) {

  /* モーダルの幅を調整 */
  .modal {
    width: 90%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .modal {
    width: 80%;
  }
}