@charset "UTF-8";
/* CSS Document */

/* common */
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 0;
  outline: 0;
}
html {
  font-size: 62.5%;
}
body {
  line-height: 1.75;
  font-size: 14px;
  font-size: 1.4rem;
  color: #333;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Helvetica Neue", Helvetica, Arial, sans-serif;
  overflow-x: hidden !important;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  text-decoration: none;
  color: #333;
  transition: all 0.3s 0s;
}
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
  opacity: .7;
}
ul,
ol,
li {
  list-style: none;
}

/* header */
header {
  border-bottom: 15px solid #000;
}
header div {
  position: relative;
}
header div a {
  position: absolute;
  top: 0;
  right: 30px;
  background-color: #000;
  color: #fff;
  border-radius: 0 0 10px 10px;
  padding: 1em 2em;
}

/* main */
.main {
  background-color: #e9ecec;
  text-align: center;
  padding: 0 2em 5vw;
}

/* Information  */
.Information {
  padding: 5vw 0;
}
.Information h1 {
  text-align: center;
  margin-bottom: 3vw;
}

/* scene_box  */
.scene_box {
  max-width: 980px;
  margin: 5vw auto 10vw;
  border: 1px solid #000;
  background-color: #fff;
  border-radius: 15px;
  padding: 5em 2em 2em;
  position: relative;
}
.scene_box:last-child {
  margin: 5vw auto;
}
.scene_icon {
  position: absolute;
  top: -45px;
  left: 0;
  right: 0;
  margin: auto;
}
.presenter {
  background-color: #f7c933;
  border-radius: 10px;
  max-width: 400px;
  margin: 3em auto 2em;
  padding: 1.5em 2em 1em;
  position: relative;
}
.presenter_icon {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: auto;
}
.presenter ul li:before {
  content: "●";
  color: #fff;
  margin-right: 3px;
}
.photo_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.photo_list li {
  margin: 1%;
  width: calc(100% / 4 - 2%);
}
.photo_list li .modal_photo {
  border: 4px solid #000;
  display: block;
  border-radius: 15px;
}
.photo_list li .modal_photo img {
  border-radius: 10px;
}

/* aside */
aside {
  background-color: #124967;
  text-align: center;
  padding: 8vw 2em 10em;
}
aside div {
  max-width: 980px;
  margin: 0 auto;
}
.contact1 {
  display: flex;
  justify-content: space-between;
  margin: 3vw 0;
  flex-wrap: wrap;
}
.contact1 p {
  width: 48%;
}
.contact2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact2 li {
  width: 22%;
}
.contact2 li:last-child {
  margin-right: 0;
}

/*-----------------
pagetop
-----------------*/
#pagetop {
  position: relative;
  height: 40px;
  margin: -40px 0 0;
  text-align: center;
}

/* footer */
footer {
  background-color: #000;
  color: #fff;
  padding: 8vw 2em;
  text-align: center;
}
.footer_btn {
  background-color: #fff;
  padding: 1em 2em;
  display: block;
  position: relative;
  border-radius: 2px;
  max-width: 300px;
  margin: 5vw auto 3vw;
}
.footer_btn:before {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 1em;
  width: 10px;
  height: 10px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
}
footer p {
  font-size: 12px;
  font-size: 1.2rem;
}

/*           */
/*   modal   */
/*           */
.modal-close {
  background-color: #f7c933;
  color: #fff;
  width: 50px;
  height: 50px;
  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;
  border-radius: 25px;
  font-size: 30px;
  font-weight: 700;
  position: absolute;
  top: 15px;
  right: -15px;
  margin: auto;
  z-index: 9999;
  cursor: pointer;
}
.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 25px;
  background-color: #000;
  border-radius: 10px;
}
.modal-close::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
.modal-close::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 10;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.75);
  text-align: center;
}
.modal-content {
  display: none;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100vh;
  text-align: center;
}
.modal{
  display: none;
}
.modal_box {
  max-width: 980px;
  margin: auto;
  position: relative;
  height: 100vh;
}
.modalWrap {
  margin: auto;
  border: 2px solid #000;
  border-radius: 15px;
  max-width: 980px;
  background-color: #fff;
  overflow: hidden;
  height: 90vh;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: left;
}
.modalWrap>div {
  overflow-y: scroll;
  width: 100%;
  height: 100%;
  padding: 4em 2em;
}
.modal_kv {
  max-width: 800px;
  margin: 0 auto;
}
.modal_kv img {
  border-radius: 10px;
}
.modalWrap h4 {
  font-size: 30px;
  font-size: 3.0rem;
  font-weight: bold;
  border-bottom: 5px solid #000;
  padding: 1.5em 0 15px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.2;
}
.modal_comment {
  font-size: 20px;
  font-size: 2.0rem;
  font-weight: bold;
  max-width: 800px;
  margin: 1em auto 2em;
  line-height: 2;
}
.caution {
  max-width: 800px;
  margin: 0 auto;
  font-size: 12px;
  font-size: 1.2rem;
  border-top: 5px solid #000;
  padding-top: 3em;
}

@media screen and (max-width: 768px) {
  header div a {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .Information {
    padding: 8vw 0;
  }
  .Information h1 {
    width: 50vw;
    margin: 0 auto 5vw;
  }
  h2 img {
    height: 5vw;
    width: auto;
  }
  .scene_box {
    padding: 3em 2em 2em;
    margin: 5vw auto 15vw;
  }
  .scene_icon {
    width: 12vw;
    top: -6vw;
  }
  .presenter {
    margin: 2em auto 1em;
  }
  .presenter_icon {
    width: 6vw;
    top: -3vw;
  }
  .photo_list li {
    width: calc(100% / 2 - 2%);
  }
  .presenter li {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .contact1 {
    margin: 5vw 0;
  }
  .contact1 p {
    width: 100%;
    margin-top: 1em;
  }
  .contact2 li {
    width: 47%;
    margin-bottom: 1em;
  }
  aside {
    padding: 8vw 2em 14vw;
  }
  footer p {
    text-align: left;
  }
  .modal-content {
    padding: 2em;
  }
  .modalWrap>div {
    padding: 2em;
  }
  .modalWrap {
    margin: initial;
  }
  .modal-close {
    top: -15px;
  }
  .modalWrap h4 {
    font-size: 4vw;
  }
  .modal_comment {
    font-size: 14px;
    font-size: 1.4rem;
  }
}