@charset "utf-8";

/* 全体 */
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.2;
  background-color: #fff;
}
img {
  max-width: 100%;
}
ol,ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  opacity: 0.3;
}
a:active {
  opacity: 0.1;
}
.container {
  max-width: 900px;
  width: calc(100% - 24px * 2);
  margin: 0 auto;

}

/* 部分 */
.header-inner {
  /* background-color: lightgray; */
  max-width: 1200px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo {
  display: block;
  width: 200px;
}
.toggle-menu-button {
  display: none;
}
.site-menu ul {
  display: flex;
}
.site-menu ul li {
  margin-left: 10px;
  margin-right: 10px;
}

.top-pic {
  height: calc(80vh - 60px);
  background-image: url(./pics/top20221125-01.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.movie {
  width: 930px;
  max-width: 90%;
  background-color: #f8f8f8;
  padding: 20px 60px;
  margin-top: 55px;
  margin-left: auto;
  margin-right: auto;
}
.movie iframe {
  display: block;
  width: 100%;
  height: 456px;
  margin-top: 30px;
}
.movie h2 {
  padding-top: 16px;
  font-size: 16px;
  font-weight: normal;
}
.v_title {
  font-size: 14px;
}
.caption {
  font-size: 14px;
  color:gray;
}

.bnr {
  padding-top: 30px;
}
.banners {
  padding-top: 20px;
}
.banners IMG {
  margin-right: 8px;
}
.apeal {
  padding-top: 12px;
  line-height: 1.5;
}



.footer {
  /* background: lightgray; */
  border-top: 1px solid lightgray;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 20px;
  /* display: flex;
  flex-direction: column; */
  text-align: center;
}
.footer-logo {
  display: block;
  width: 100px;
  margin: 20px auto 8px;
}
.footer  nav  {
  display: inline-block;
}

/* レスポンシブ */
@media (max-width: 800px) {
  .site-menu ul {
    display: block;
  }
  .site-menu li {
    margin-top: 10px;
  }
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    height: 50px;
    z-index: 10;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
  }
  .header-inner {
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
    position: relative;
  }
  .header-site-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    color: #fff;
    background-color: pink;
    text-align: center;
    padding: 20px 0;
    font-weight: bold;
    display: none;
  }
  .header-site-menu.is-show {
    display: block;
  }

  .header-logo {
    width: 120px;
  }
  .toggle-menu-button {
    display: block;
    width: 44px;
    height: 34px;
    background-image: url(./pics/trebar.png);
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    outline: none;
  }

  .main {
    padding-top: 60px;
  }
  .movie {
    width: 500px;
    padding: 20px 20px;
    margin-top: 0px;
  }
  .movie iframe {
    height: 240px;
  }
  .apeal {
    padding-top: 12px;
    line-height: 1.2;
  }
  

}
