@charset "UTF-8";
/* CSSリセット */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: normal;
}

input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
  background: #29abe2;
  border: 0;
  color: #fff;
  padding: 20px 30px;
  display: block;
  margin: 60px auto 0;
  transition: 0.25s;
}

input[type="submit"]:hover {
  cursor: pointer;
  opacity: 0.9;
}

img, video {
  border-radius: 10px;
}

.navi {
  width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.navi #humberger {
  cursor: pointer;
}

.navi #humberger span {
  display: block;
  width: 40px;
  height: 1px;
  background: #333;
  margin-bottom: 10px;
}

.navi #humberger span:nth-child(2) {
  margin-bottom: 0;
}

main {
  width: 95%;
  margin: 0 auto;
}

.main_movie .content_main {
  width: 100%;
  height: auto;
}

.main_movie .content_main video {
  width: 100%;
  height: 50%;
  object-fit: cover;
}

.content_sub {
  width: 100%;
}

.content_sub ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.content_sub ul li {
  margin: 0 10px;
}

.content_sub ul li img {
  width: 100%;
  max-width: 300px;
}

#menu {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 100vw;
  height: 100vh;
  background: #333;
  z-index: 9;
  padding: 100px 50px 50px;
  box-sizing: border-box;
  transition: 0.3s;
  opacity: 0.9;
}

#menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  list-style: none;
}

#menu ul li {
  width: 100px;
  height: 100px;
  position: relative;
  background: #ccc;
  margin-bottom: 20px;
  border-radius: 5px;
}

#menu ul li p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#aaa {
  width: 100vw;
  height: 100vh;
}

#load_img {
  display: none;
}

img {
  width: 100%;
  user-select: none;
}

#aaa img {
  width: 100%;
  height: 70%;
  object-fit: cover;
}

.swipe_area {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 20px;
  width: 80%;
  background: #eee;
  text-align: center;
  font-size: 14px;
}

#infor_btn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 20px;
}

#infor_btn::after {
  position: absolute;
  content: "i";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#infor_box {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100vw;
  background: #333333cc;
  padding: 10%;
  box-sizing: border-box;
  color: #fff;
  transition: 0.3s;
}

/*# sourceMappingURL=style.css.map */