@charset "utf-8";
/* CSS Document */
body {
  width: 100%;
  color: #000;
  margin: 0;
  background-color: #000;
}
a {
  font-family: "Segoe UI", Verdana, "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
p, figure, figcaption, span, h1, h2 {
  font-family: 'Noto Sans JP', sans-serif;
}
header {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px 0;
  position: fixed;
  z-index: 3;
  width: 100%;
}
header .pc_nav {
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
}
header .pc_nav ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
}
header .pc_nav ul li {
  margin: 0 20px;
}
header .pc_nav ul li a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
header .pc_nav ul li a:hover {
  color: #9F886E;
}
header nav p {
  position: absolute;
  top: -10px;
  margin: 0 0 0 10px;
}
#top {
  position: relative;
  width: 100%;
  padding: 50px 0 0 0;
  height: 100%;
}
#top h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
  text-align: center;
  /*font-size: 60px;*/
  /*line-height: 70px;*/
  /*color: rgba(255, 255, 255, 0.9);*/
}
#top h1 img {
  width: 100%;
}
#top video {
  display: block;
  width: 100%;
  vertical-align: bottom;
  /*margin-top: 76px;*/ /*ヘッダーの高さ*/
  position: fixed;
  z-index: -1; /*最背面に設定*/
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /*縦横幅指定*/
  width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
  overflow: hidden;
}
.main_visual {
  height: 100vh;
  overflow: hidden;
}
main {
  background-color: rgba(0, 0, 0, 0.5);
}
main h2 {
  text-align: center;
  font-size: 30px;
  color: #fff;
  font-weight: 500;
  /*margin-top: -76px;*/
  padding-top: 76px;
}
.content1 {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  text-align: center;
}
.content1 img {
  width: 60%;
}
.content1 p {
  text-align: left;
  display: inline-block;
  width: 55%;
  font-size: 14px;
  line-height: 34px;
  margin: 30px 0;
  color: #fff;
}
.content2 {
  background-color: rgba(255, 255, 255, 0.5);
  width: 100%;
  padding: 0 0 60px 0;
}
.content2 h2 img {
  width: 50%;
}
.content2_container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px auto;
}
/*.content2 iframe {
  display: block;
  height: 168px;
  width: 100%;
}*/
.content2 figure img {
  display: block;
  height: auto;
  width: 100%;
  transition: 1s all;
}
.content2 figure img:hover {
  opacity: .8;
  transform: scale(1.2, 1.2);
  transition: 1s all;
}
.content2 .content2_container figure a {
  display: block;
  overflow: hidden;
}
.content2 .content2_container figure {
  width: 300px;
  height: auto;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  margin: 20px;
}
.content2 figure figcaption {
  font-size: 14px;
}
.content2 figure figcaption span {
  display: block;
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  color: #9F886E;
  margin: 10px 0;
}
.content3 {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 0 60px 0;
}
.content3 img {
  width: 70%;
}
.button img {
  margin-top: 50px;
  width: 40%;
}
.button img:hover {
  opacity: 0.8;
}
.content3 p {
  line-height: 60px;
  font-size: 14px;
  display: inline-block;
  text-align: center;
  margin: 30px 0;
  color: #fff;
}
.content3 div p {
  width: 55%;
  margin: 0 auto;
  line-height: inherit;
}
.content3 span {
  text-align: left;
  font-size: 14px;
  line-height: initial;
  display: block;
}
.sns {
  display: flex;
  justify-content: center;
}
.sns img {
  width: 100px;
  margin: 20px;
}
.sns a:hover {
  opacity: 0.8;
}
footer {
  padding: 30px 0;
  width: 100%;
  text-align: center;
  background-color: #000;
}
footer p {
  width: 100%;
  color: #fff;
  font-size: 14px;
}
footer div a {
  text-decoration: none;
  color: #fff;
  position: relative;
  z-index: 2;
  font-size: 14px;
  padding: 0 20px;
}
footer div a:first-child {
  border-right: 1px solid #fff;
}
footer div a:hover {
  color: #ccc;
}
/*レスポンシブ*/
@media screen and (max-width:1028px) {
  header {
    background-color: #000;
  }
  header nav p {
    top: -15px;
  }
}
@media screen and (max-width:780px) {
  .content1 img {
    width: 80%;
  }
  .content2 h2 img {
    width: 80%;
  }
  .content3 img {
    width: 90%;
  }
  .button img {
    width: 90%;
  }
  .sns img {
    width: 60px;
  }
}
@media screen and (max-width:680px) {
  .content2 figure {
    width: 70%;
    margin: 10px 20px;
  }
}
@media screen and (max-width:480px) {
  main h2 {
    font-size: 24px;
  }
  .sns img {
    margin: 10px;
  }
  #top video {
    min-height: auto;
    height: 578px;
    position: fixed;
    top: 0;
    transform: translate(-50%, 0%);
  }
}
@media screen and (max-width:380px) {
  .sns img {
    width: 40px;
  }
}