@charset "UTF-8";
/*** THEME ***/
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}

@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 100;
}

@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 200;
}

@font-face {
  font-family: 'FuturaHeavyBT';
  /* フォント名 */
  /* フォーマットごとにパスを指定 */
  src: url("/common/css/fonts/FuturaHeavyBT.ttf");
}

/* modal */
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

.modal_bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(100, 100, 100, 0.8);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.modal_bg .demo_view {
  width: 90%;
  height: auto;
  max-height: 90vh;
  padding: 3.57143rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 2.14286rem;
  max-width: 100rem;
  position: relative;
  background: #f1f1f1;
}

@media only screen and (max-width: 736px) {
  .modal_bg .demo_view {
    width: 98%;
    height: 90%;
    max-height: auto;
    padding: 2.85714rem 1.42857rem;
    border-radius: 0.71429rem;
  }
}

.modal_bg .close_btn {
  width: 2.14286rem;
  height: 2.14286rem;
  background-image: url("img/close1.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  right: 1%;
  top: 2%;
  cursor: pointer;
}

@media only screen and (max-width: 736px) {
  .modal_bg .close_btn {
    top: 0.35714rem;
    z-index: 999;
  }
}

.modal_active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.btn_area {
  width: 100%;
  padding: 2.14286rem 0;
}

.btn_area button {
  width: 30%;
  padding: 1.07143rem;
  color: #fff;
  background: #ff6600;
  border-radius: 0.71429rem;
  display: block;
  margin: 0 auto;
  font-size: 1.14286rem;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn_area button:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 736px) {
  .btn_area button {
    width: 80%;
    padding: 0.71429rem;
  }
}

/* content */
#contents .pop_contents {
  overflow: auto;
  height: 100%;
}

#contents #view_area {
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}

@media only screen and (max-width: 736px) {
  #contents #view_area {
    height: 100%;
    padding-bottom: 0;
  }
}

#contents #view_area iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 2.14286rem;
}

@media only screen and (max-width: 736px) {
  #contents #view_area iframe {
    border-radius: 0.71429rem;
  }
}
